Fix log file name format and remove old debug prints

This commit is contained in:
Tulir Asokan 2018-09-20 01:47:24 +03:00
parent 2a0106da26
commit a77084b12e
6 changed files with 5 additions and 8 deletions

View file

@ -122,7 +122,6 @@ func (mxc *MatrixClient) LoadCommandSpecs() *MatrixClient {
for _, spec := range specs {
mxc.CommandSpecs[spec.Owner] = spec
}
log.Debugln("Loaded command specs:", mxc.CommandSpecs)
return mxc
}

View file

@ -82,7 +82,6 @@ func (css *CommandSpecStatic) getAllByQuery(query string, args ...interface{}) (
for rows.Next() {
specs = append(specs, css.New().Scan(rows))
}
log.Debugln("getAllByQuery() =", specs)
return
}