mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-04 02:53:40 +00:00
31 lines
703 B
Go
31 lines
703 B
Go
package common
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/matrix-org/dugong"
|
|
)
|
|
|
|
// SetupLogging configures the logging format and destination(s).
|
|
func SetupLogging(logDir string) {
|
|
formatter := &logrus.TextFormatter{
|
|
TimestampFormat: "2006-01-02 15:04:05.000000",
|
|
DisableColors: true,
|
|
DisableTimestamp: false,
|
|
DisableSorting: false,
|
|
}
|
|
if logDir != "" {
|
|
_ = os.Mkdir(logDir, os.ModePerm)
|
|
logrus.AddHook(dugong.NewFSHook(
|
|
filepath.Join(logDir, "info.log"),
|
|
filepath.Join(logDir, "warn.log"),
|
|
filepath.Join(logDir, "error.log"),
|
|
formatter,
|
|
&dugong.DailyRotationSchedule{GZip: true},
|
|
))
|
|
} else {
|
|
logrus.SetFormatter(formatter)
|
|
}
|
|
}
|