We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6292df3 commit 5999a48Copy full SHA for 5999a48
TODO
@@ -11,7 +11,6 @@
11
// }
12
13
# Technical
14
-* logging does not report the current time in UTC as I thought it would with my current configuration
15
* update to go 1.17
16
* update golangci-lint?
17
* restructure package dependencies and increase coverage
main.go
@@ -39,7 +39,7 @@ func run(args []string, out io.Writer) error {
39
return errors.New("both slackChannel and slackApiToken must be either provided or not")
40
}
41
42
- logger := log.New(out, args[0]+" ", log.LUTC)
+ logger := log.New(out, args[0]+" ", log.LstdFlags|log.LUTC)
43
var notifier usage.Notifier
44
if *slackToken != "" && *slackChannel != "" {
45
notifier = slack.New(*slackToken, *slackChannel, logger)
0 commit comments