Skip to content

Commit 0c4b43a

Browse files
committed
Change message for pre-init logging
1 parent 7d3b6fa commit 0c4b43a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/eventLogger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export async function initialize(channel: Channel) {
3737
export async function sendLog(log: LogData) {
3838
// Queue the log if the channel is not initialized
3939
if(!_channel) {
40-
console.log(`Log channel not initialized, this log will be added to the pre-initialization queue! (Log Message: ${log.message})`);
40+
console.debug(`Log added to pre-initialization queue: ${log.message}`);
4141
_logQueues.push(log);
4242
return;
4343
}

0 commit comments

Comments
 (0)