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.
17 lines
321 B
17 lines
321 B
package glog
|
|
|
|
import ()
|
|
|
|
/*
|
|
Copying the original glog because it is missing several convenient methods.
|
|
1. change log file size limit to 180MB
|
|
2. use ToStderrAndLog() in the weed.go
|
|
3. remove nano time in log format
|
|
*/
|
|
|
|
func ToStderr() {
|
|
logging.toStderr = true
|
|
}
|
|
func ToStderrAndLog() {
|
|
logging.alsoToStderr = true
|
|
}
|