fix(count-auto): suppress debug output
This commit is contained in:
parent
b03889101d
commit
9c7d2a9c9e
2
main.go
2
main.go
|
@ -46,12 +46,14 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
me.chats = chatpb.NewChats()
|
me.chats = chatpb.NewChats()
|
||||||
|
if !argv.CountAuto {
|
||||||
if err := me.chats.ConfigLoad(); err != nil {
|
if err := me.chats.ConfigLoad(); err != nil {
|
||||||
badExit(err)
|
badExit(err)
|
||||||
}
|
}
|
||||||
if verifyUuids(me.chats) {
|
if verifyUuids(me.chats) {
|
||||||
me.chats.ConfigSave()
|
me.chats.ConfigSave()
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if argv.CountAuto {
|
if argv.CountAuto {
|
||||||
doCountAuto()
|
doCountAuto()
|
||||||
|
|
Loading…
Reference in New Issue