logLevel property

Level logLevel
final

By default the Chat client will write all messages with level Warn or Error to stdout.

During development you might want to enable more logging information, you can change the default log level when constructing the client.

final client = StreamChatClient("stream-chat-api-key",
logLevel: Level.INFO);

Implementation

final Level logLevel;