API reference
API reference
Select your platform
No SDKs available
No versions available

VLog Class

A class for internal Meta.Voice logs

Properties

SuppressLogs : bool
[Get][Set]
Hides all errors from the console
Signature
bool Meta.WitAi.VLog.SuppressLogs

Static Methods

D ( log )
Performs a Debug.Log with custom categorization and using the global log level
Signature
static void Meta.WitAi.VLog.D(object log)
Parameters
log: object  The text to be debugged
Returns
void
D ( logCategory , log )
Performs a Debug.Log with custom categorization and using the global log level
Signature
static void Meta.WitAi.VLog.D(string logCategory, object log)
Parameters
logCategory: string  The category of the log
log: object  The text to be debugged
Returns
void
E ( log , e )
Performs a Debug.LogError with custom categorization and using the global log level
Signature
static void Meta.WitAi.VLog.E(object log, Exception e=null)
Parameters
log: object  The text to be debugged
e: Exception
Returns
void
E ( logCategory , log , e )
Performs a Debug.LogError with custom categorization and using the global log level
Signature
static void Meta.WitAi.VLog.E(string logCategory, object log, Exception e=null)
Parameters
logCategory: string  The category of the log
log: object  The text to be debugged
e: Exception
Returns
void
I ( log )
Performs a Debug.Log with custom categorization and using the global log level of Info
Signature
static void Meta.WitAi.VLog.I(object log)
Parameters
log: object  The text to be debugged
Returns
void
I ( logCategory , log )
Performs a Debug.Log with custom categorization and using the global log level of Info
Signature
static void Meta.WitAi.VLog.I(string logCategory, object log)
Parameters
logCategory: string  The category of the log
log: object  The text to be debugged
Returns
void
W ( log , e )
Performs a Debug.LogWarning with custom categorization and using the global log level
Signature
static void Meta.WitAi.VLog.W(object log, Exception e=null)
Parameters
log: object  The text to be debugged
e: Exception
Returns
void
W ( logCategory , log , e )
Performs a Debug.LogWarning with custom categorization and using the global log level
Signature
static void Meta.WitAi.VLog.W(string logCategory, object log, Exception e=null)
Parameters
logCategory: string  The category of the log
log: object  The text to be debugged
e: Exception
Returns
void