remove rt mode log (#587)

master
bittoy 4 years ago committed by GitHub
parent 9db222bf5b
commit 99a2d95433
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,6 +14,8 @@ const (
DevMode = "dev"
// TestMode means test mode.
TestMode = "test"
// RtMode means rt mode.
RtMode = "rt"
// PreMode means pre-release mode.
PreMode = "pre"
// ProMode means production mode.
@ -56,7 +58,7 @@ func (sc ServiceConf) SetUp() error {
func (sc ServiceConf) initMode() {
switch sc.Mode {
case DevMode, TestMode, PreMode:
case DevMode, TestMode, RtMode, PreMode:
load.Disable()
stat.SetReporter(nil)
}

Loading…
Cancel
Save