We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d3b6fa commit 0c4b43aCopy full SHA for 0c4b43a
src/utils/eventLogger.ts
@@ -37,7 +37,7 @@ export async function initialize(channel: Channel) {
37
export async function sendLog(log: LogData) {
38
// Queue the log if the channel is not initialized
39
if(!_channel) {
40
- console.log(`Log channel not initialized, this log will be added to the pre-initialization queue! (Log Message: ${log.message})`);
+ console.debug(`Log added to pre-initialization queue: ${log.message}`);
41
_logQueues.push(log);
42
return;
43
}
0 commit comments