You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: log/doc.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
-
// Package log provides functionality to output human readable, colorful test to STDOUT and STDERR. It's best used for programs, such as CLI apps, that write output to people rather than machines. It is not intended for logging to log aggregators or other systems. It takes advantage of the github.com/teamhephy/pkg/prettyprint to provide colorful output.
1
+
// Package log provides functionality to output human readable, colorful test to STDOUT and STDERR. It's best used for programs, such as CLI apps, that write output to people rather than machines. It is not intended for logging to log aggregators or other systems. It takes advantage of the github.com/drycc/pkg/prettyprint to provide colorful output.
2
2
//
3
3
// This package provides global functions for use as well as a 'Logger' struct that you can instantiate at-will for customized logging. All global funcs operate on a DefaultLogger, which is pre-configured to log to os.Stdout and os.Stderr, with debug logs turned off.
4
4
//
5
5
// Example usage of global functions:
6
6
//
7
-
// import "github.com/teamhephy/pkg/log"
7
+
// import "github.com/drycc/pkg/log"
8
8
// log.Info("Hello Gophers!") // equivalent of log.DefaultLogger.Info("hello gophers!")
9
9
// log.Debug("log.DefaultLogger initializes with debug logs turned off, so you can't see me!")
0 commit comments