Interface ISdkLogWriter
VRoidSDK内部で使用するログ出力
Namespace: Pixiv.VroidSdk.Logger
Assembly: Pixiv.VroidSdk.dll
Syntax
public interface ISdkLogWriter
Remarks
たとえば UnityEngine.Debug.Log
を使用したり、ファイル出力をする実装を想定している。
Properties
LogLevel
ログレベル
Declaration
LogLevel LogLevel { get; }
Property Value
Type | Description |
---|---|
LogLevel |
Methods
Log(Object)
通常レベルのログを出力する
Declaration
void Log(object message)
Parameters
Type | Name | Description |
---|---|---|
Object | message | 出力するオブジェクト |
LogError(Object)
エラーレベルのログを出力する
Declaration
void LogError(object message)
Parameters
Type | Name | Description |
---|---|---|
Object | message | 出力するオブジェクト |
LogException(Exception)
例外を出力する
Declaration
void LogException(Exception e)
Parameters
Type | Name | Description |
---|---|---|
Exception | e | 出力する例外 |
LogWarning(Object)
警告レベルのログを出力する
Declaration
void LogWarning(object message)
Parameters
Type | Name | Description |
---|---|---|
Object | message | 出力するオブジェクト |