lunarflu HF staff commited on
Commit
050eb10
·
1 Parent(s): 3af4c4f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -388,8 +388,11 @@ async def check_github():
388
  @bot.event
389
  async def on_ready():
390
  print('Logged on as', bot.user)
391
- #bot.test_channel = bot.get_channel(1100458786826747945) # bot-test
392
- bot.log_channel = bot.get_channel(1036960509586587689) # admin-logs
 
 
 
393
 
394
 
395
  def run_bot():
 
388
  @bot.event
389
  async def on_ready():
390
  print('Logged on as', bot.user)
391
+ test_server = os.environ.get('TEST_SERVER')
392
+ if test_server == 'True':
393
+ bot.log_channel = bot.get_channel(1163549565270622229) # test server
394
+ if test_server == 'False':
395
+ bot.log_channel = bot.get_channel(1036960509586587689) # admin-logs
396
 
397
 
398
  def run_bot():