Skip to content
This repository has been archived by the owner on Jan 16, 2025. It is now read-only.

Commit

Permalink
slack
Browse files Browse the repository at this point in the history
  • Loading branch information
maidh91 committed Sep 5, 2022
1 parent 551aad8 commit a6259ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions BotBars/BotBars/BotBars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ protected override void OnBar()
{
Print("Failed to run");
Print(ex);
sendLog("Failed to run BotBars with exception " + ex.Message, "b-error");
sendLog("Failed to run BotBars with exception " + ex.Message, "fp-errors");
}
}

Expand Down Expand Up @@ -177,7 +177,7 @@ private void send(SendData data)
}
}

private void sendLog(string text = "", string channel = "b-error")
private void sendLog(string text = "", string channel = "fp-errors")
{
try
{
Expand Down
4 changes: 2 additions & 2 deletions BotSymbols/BotSymbols/BotSymbols.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected override void OnTick()
{
Print("Failed to run");
Print(ex);
sendLog("Failed to run BotSymbols with exception " + ex.Message, "b-error");
sendLog("Failed to run BotSymbols with exception " + ex.Message, "fp-errors");
}
}
}
Expand Down Expand Up @@ -137,7 +137,7 @@ private void send(SendData data)
}
}

private void sendLog(string text = "", string channel = "b-error")
private void sendLog(string text = "", string channel = "fp-errors")
{
try
{
Expand Down

0 comments on commit a6259ef

Please sign in to comment.