Skip to content

Commit

Permalink
fix: make debug as error
Browse files Browse the repository at this point in the history
  • Loading branch information
raviteja83 committed Dec 6, 2024
1 parent 5b4e5ed commit 41095f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hms-video-store/src/utils/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default class HMSLogger {
}

static d(tag: string, ...data: any[]) {
this.log(HMSLogLevel.DEBUG, tag, ...data);
this.log(HMSLogLevel.ERROR, tag, ...data);
}

static i(tag: string, ...data: any[]) {
Expand Down

0 comments on commit 41095f5

Please sign in to comment.