Show / Hide Table of Contents

Interface ISdkLogWriter

Output log for use within VRoidSDK

Namespace: Pixiv.VroidSdk.Logger
Assembly: Pixiv.VroidSdk.dll
Syntax
public interface ISdkLogWriter
Remarks

For example, using UnityEngine.Debug.Log, assumes log output implementation.

Properties

LogLevel

Log level

Declaration
LogLevel LogLevel { get; }
Property Value
Type Description
LogLevel

Methods

Log(Object)

Output default level log

Declaration
void Log(object message)
Parameters
Type Name Description
Object message

Output object

LogError(Object)

Output error level log

Declaration
void LogError(object message)
Parameters
Type Name Description
Object message

Output object

LogException(Exception)

Output exception

Declaration
void LogException(Exception e)
Parameters
Type Name Description
Exception e

Exception output

LogWarning(Object)

Output warning level log

Declaration
void LogWarning(object message)
Parameters
Type Name Description
Object message

Output object

In This Article
Back to top Generated by DocFX