Silence all logs
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
parent
0bd5a5eb40
commit
5efcf196f5
1 changed files with 4 additions and 1 deletions
|
@ -10,7 +10,7 @@ import std/[asyncdispatch, logging, options, strutils, random, with, os, tables,
|
|||
import norm/[model, sqlite]
|
||||
|
||||
# Logging Level
|
||||
var L = newConsoleLogger(fmtStr="$levelname, [$time] ")
|
||||
var L = newConsoleLogger(levelThreshold=lvlError, fmtStr="$levelname, [$time] ")
|
||||
addHandler(L)
|
||||
|
||||
# Custom Types Defined to handle tables on norm
|
||||
|
@ -190,5 +190,8 @@ proc updateHandler(b: Telebot, u: Update): Future[bool] {.async, gcsafe.} =
|
|||
|
||||
# Start the bot
|
||||
let bot = newTeleBot(getEnv("TELEGRAM_TOKEN"))
|
||||
echo "*********************"
|
||||
echo "CensorBot is running!"
|
||||
echo "*********************"
|
||||
bot.onUpdate(updateHandler)
|
||||
bot.poll(timeout=300)
|
||||
|
|
Loading…
Reference in a new issue