Add logging.info for all commands
This commit is contained in:
parent
c7e7810bc5
commit
f2352f2aa4
6
index.py
6
index.py
|
@ -295,6 +295,7 @@ def epicgames_step(message):
|
||||||
#Command /shutdown
|
#Command /shutdown
|
||||||
@bot.message_handler(commands=['shutdown'])
|
@bot.message_handler(commands=['shutdown'])
|
||||||
def shutdown(message):
|
def shutdown(message):
|
||||||
|
logging.ingo("Triggered SHUTDOWN")
|
||||||
text = message.text
|
text = message.text
|
||||||
sent_msg = bot.send_message(message.chat.id, "Sei sicuro di voler spegnere il pc?")
|
sent_msg = bot.send_message(message.chat.id, "Sei sicuro di voler spegnere il pc?")
|
||||||
bot.register_next_step_handler(sent_msg, shutdown_step)
|
bot.register_next_step_handler(sent_msg, shutdown_step)
|
||||||
|
@ -317,6 +318,7 @@ def shutdown_step(message):
|
||||||
|
|
||||||
@bot.message_handler(commands=['shortlink'])
|
@bot.message_handler(commands=['shortlink'])
|
||||||
def shortlink(message):
|
def shortlink(message):
|
||||||
|
logging.info("Triggered SHORTLINK")
|
||||||
text = message.text
|
text = message.text
|
||||||
sent_msg = bot.send_message(message.chat.id, "Inserisci il link:")
|
sent_msg = bot.send_message(message.chat.id, "Inserisci il link:")
|
||||||
bot.register_next_step_handler(sent_msg, shortlink_step)
|
bot.register_next_step_handler(sent_msg, shortlink_step)
|
||||||
|
@ -347,6 +349,7 @@ def uptime_step(message):
|
||||||
#Command /convert
|
#Command /convert
|
||||||
@bot.message_handler(commands=["convert"])
|
@bot.message_handler(commands=["convert"])
|
||||||
def addfile(message):
|
def addfile(message):
|
||||||
|
logging.info("Triggered CONVERT")
|
||||||
sent_msg = bot.send_message(message.chat.id, "Manda il file pdf che vuoi convertire in docx")
|
sent_msg = bot.send_message(message.chat.id, "Manda il file pdf che vuoi convertire in docx")
|
||||||
bot.register_next_step_handler(sent_msg, convert)
|
bot.register_next_step_handler(sent_msg, convert)
|
||||||
|
|
||||||
|
@ -369,6 +372,7 @@ def convert(message):
|
||||||
#Command /cloud
|
#Command /cloud
|
||||||
@bot.message_handler(commands=["cloud"])
|
@bot.message_handler(commands=["cloud"])
|
||||||
def cloud(message):
|
def cloud(message):
|
||||||
|
logging.info("Triggered CLOUD")
|
||||||
sent_msg = bot.send_message(message.chat.id, "Invia il file che vuoi caricare")
|
sent_msg = bot.send_message(message.chat.id, "Invia il file che vuoi caricare")
|
||||||
bot.register_next_step_handler(sent_msg, cloud_step)
|
bot.register_next_step_handler(sent_msg, cloud_step)
|
||||||
|
|
||||||
|
@ -395,7 +399,7 @@ def cloud_step(message):
|
||||||
|
|
||||||
"filename" : new_name,
|
"filename" : new_name,
|
||||||
"user_id" : id,
|
"user_id" : id,
|
||||||
|
|
||||||
}
|
}
|
||||||
with open('data.json', 'a') as f:
|
with open('data.json', 'a') as f:
|
||||||
json.dump(dic_exm, f, indent=2)
|
json.dump(dic_exm, f, indent=2)
|
||||||
|
|
Loading…
Reference in New Issue