Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c9ee97c

Browse files
committedJun 26, 2024·
feat(youtube): Increase level of auth update logging when configured to output changes #158
Increasing to INFO makes the signal better for long-running MS processes instead of requiring logging all of DEBUG
1 parent c908aea commit c9ee97c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/backend/sources/YTMusicSource.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ export default class YTMusicSource extends AbstractSource {
139139
for(const [k,v] of updated) {
140140
parts.push(`Cookie ${k}: Old => ${v.old} | New => ${v.new}`);
141141
}
142-
this.logger.debug(`Updated Auth -->\n${parts.join('\n')}`);
142+
this.logger.info(`Updated Auth -->\n${parts.join('\n')}`);
143143
} else {
144-
this.logger.debug(`Updated Auth`);
144+
this.logger.verbose(`Updated Auth`);
145145
}
146146

147147
this.currentCreds = {

0 commit comments

Comments
 (0)
Please sign in to comment.