Logging
Noir.Libraries.Logging: NoirLibrary
A library containing methods related to logging.
Noir.Libraries.Logging.LoggingMode: NoirLoggingMode
The mode to use when logging.
"DebugLog": Sends logs to DebugView
"Chat": Sends logs to chat
Noir.Libraries.Logging.OnLog: NoirEvent
An event called when a log is sent.
Arguments: (log: string)
Noir.Libraries.Logging.Layout: string
Represents the logging layout.
Requires two '%s' in the layout. First %s is the addon name, second %s is the log type, and the third %s is the log title. The message is then added after the layout.
Noir.Libraries.Logging:SetMode(mode)Set the logging mode.
Parameters
mode: NoirLoggingMode
Sends a log.
Parameters
logType: stringtitle: stringmessage: any...: any
Format a log.
Used internally.
Parameters
logType: stringtitle: stringmessage: any...: any
Sends an error log.
Parameters
title: stringmessage: any...: any
Sends a warning log.
Parameters
title: stringmessage: any...: any
Sends an info log.
Parameters
title: stringmessage: any...: any
Sends a success log.
Parameters
title: stringmessage: any...: any
Last updated