mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
remove rt mode log (#587)
This commit is contained in:
parent
9db222bf5b
commit
99a2d95433
@ -14,6 +14,8 @@ const (
|
|||||||
DevMode = "dev"
|
DevMode = "dev"
|
||||||
// TestMode means test mode.
|
// TestMode means test mode.
|
||||||
TestMode = "test"
|
TestMode = "test"
|
||||||
|
// RtMode means rt mode.
|
||||||
|
RtMode = "rt"
|
||||||
// PreMode means pre-release mode.
|
// PreMode means pre-release mode.
|
||||||
PreMode = "pre"
|
PreMode = "pre"
|
||||||
// ProMode means production mode.
|
// ProMode means production mode.
|
||||||
@ -56,7 +58,7 @@ func (sc ServiceConf) SetUp() error {
|
|||||||
|
|
||||||
func (sc ServiceConf) initMode() {
|
func (sc ServiceConf) initMode() {
|
||||||
switch sc.Mode {
|
switch sc.Mode {
|
||||||
case DevMode, TestMode, PreMode:
|
case DevMode, TestMode, RtMode, PreMode:
|
||||||
load.Disable()
|
load.Disable()
|
||||||
stat.SetReporter(nil)
|
stat.SetReporter(nil)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user