Interface LoggerOptions

interface LoggerOptions {
    client: Client<boolean>;
    combinedLogging?: boolean;
    debugLogging?: boolean;
    errorLogging?: boolean;
    httpLogging?: boolean;
    infoLogging?: boolean;
    sillyLogging?: boolean;
    verboseLogging?: boolean;
    warnLogging?: boolean;
}

Implemented by

Properties

client: Client<boolean>

The client that instantiated this logger

combinedLogging?: boolean

Should there be a combined log file that holds everything?

debugLogging?: boolean

Should there be a debug log file?

errorLogging?: boolean

Should there be an error log file?

httpLogging?: boolean

Should there be an http log file?

infoLogging?: boolean

Should there be an info log file?

sillyLogging?: boolean

Should there be a silly log file?

verboseLogging?: boolean

Should there be a verbose log file?

warnLogging?: boolean

Should there be a warning log file?