You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
281 B
16 lines
281 B
package glog
|
|
|
|
import ()
|
|
|
|
/*
|
|
Copying the original glog because it is missing several convenient methods.
|
|
1. use ToStderrAndLog() in the weed.go
|
|
2. remove nano time in log format
|
|
*/
|
|
|
|
func ToStderr() {
|
|
logging.toStderr = true
|
|
}
|
|
func ToStderrAndLog() {
|
|
logging.alsoToStderr = true
|
|
}
|