Class UnityLogWriter
Unityにログ出力する
Implements
Namespace: Pixiv.VroidSdk.Unity.Logger
Assembly: Pixiv.VroidSdk.Unity.dll
Syntax
public class UnityLogWriter : MonoBehaviour, ISdkLogWriter
Properties
LogLevel
Declaration
public LogLevel LogLevel { get; }
Property Value
Type | Description |
---|---|
LogLevel |
Methods
Log(Object)
通常レベルのログを出力する
Declaration
public void Log(object message)
Parameters
Type | Name | Description |
---|---|---|
Object | message | 出力するオブジェクト |
LogError(Object)
エラーレベルのログを出力する
Declaration
public void LogError(object message)
Parameters
Type | Name | Description |
---|---|---|
Object | message | 出力するオブジェクト |
LogException(Exception)
例外を出力する
Declaration
public void LogException(Exception e)
Parameters
Type | Name | Description |
---|---|---|
Exception | e | 出力する例外 |
LogWarning(Object)
警告レベルのログを出力する
Declaration
public void LogWarning(object message)
Parameters
Type | Name | Description |
---|---|---|
Object | message | 出力するオブジェクト |