Interface ClientOptions

Configuration options for the chat client.

interface ClientOptions {
    logHandler?: LogHandler;
    logLevel?: LogLevel;
}

Properties

logHandler?: LogHandler

A custom log handler that will be used to log messages from the client.

The client will log messages to the console.
logLevel?: LogLevel

The minimum log level at which messages will be logged.

LogLevel.error