Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
* log prefix constants shortened to be more practical
  • Loading branch information
VetSoftKeith committed Jan 28, 2023
1 parent bddaae1 commit 4b5d4ad
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ import (

//goland:noinspection GoUnnecessarilyExportedIdentifiers,GoUnusedConst
const (
LogPrefixCommand = "[COMMAND ]"
LogPrefixCron = "[CRON ]"
LogPrefixDatabase = "[DATABASE ]"
LogPrefixDiscord = "[DISCORD ]"
LogPrefixTrovo = "[TROVO ]"
LogPrefixTwitch = "[TWITCH ]"
LogPrefixYouTubeLive = "[YOUTUBE-L]"
Command = "[COMMAND ]"
Cron = "[CRON ]"
Database = "[DATABASE ]"
Discord = "[DISCORD ]"
Picarto = "[PICARTO ]"
Trovo = "[TROVO ]"
Twitch = "[TWITCH ]"
YouTubeLive = "[YOUTUBE-L]"
YouTubePub = "[YOUTUBE-P]"
)

var (
Expand Down

0 comments on commit 4b5d4ad

Please sign in to comment.