Class SdkLogger
SDK内部で使用するログ出力
Inherited Members
Namespace: Pixiv.VroidSdk.Logger
Assembly: Pixiv.VroidSdk.dll
Syntax
public static class SdkLogger
Properties
SdkLogWriter
ログの出力先
Declaration
public static ISdkLogWriter SdkLogWriter { get; set; }
Property Value
Type | Description |
---|---|
ISdkLogWriter |
Methods
Log(Object)
通常レベルのログを出力する
Declaration
public static void Log(object message)
Parameters
Type | Name | Description |
---|---|---|
Object | message | 出力するオブジェクト |
LogError(Object)
エラーレベルのログを出力する
Declaration
public static void LogError(object message)
Parameters
Type | Name | Description |
---|---|---|
Object | message | 出力するオブジェクト |
LogException(Exception)
例外を出力する
Declaration
public static void LogException(Exception e)
Parameters
Type | Name | Description |
---|---|---|
Exception | e | 出力する例外 |
LogWarning(Object)
警告レベルのログを出力する
Declaration
public static void LogWarning(object message)
Parameters
Type | Name | Description |
---|---|---|
Object | message | 出力するオブジェクト |