diff --git a/bot.go b/bot.go index fff0b46..6eb2828 100644 --- a/bot.go +++ b/bot.go @@ -736,6 +736,7 @@ func botVault(m *tb.Message, itemTypeList []int64) { p.ItemTypeListID64 = append(p.ItemTypeListID64, itemTypeList...) b, _ := json.Marshal(p) + log.Printf("botVault:\n%s\n", string(b)) t := time.Now().UTC() _, err := createJob(objSubTypeJobVaultStatus, objJobPriority, int64(m.Sender.ID), 0, t, b) diff --git a/main.go b/main.go index 282dc1d..e7cfac2 100644 --- a/main.go +++ b/main.go @@ -90,8 +90,6 @@ func main() { err := gcfg.ReadFileInto(&cfg, *config) failOnError(err, "Parsing config") - log.Printf("DepositChat : %d\n", cfg.Bot.Depositchat) - // Connecting to DB switch cfg.SQL.Driver { case "mysql":