two changes

- 🆙 **Migration done.**
- ⚠️ **Error while migrating, check `logs` for more informations.**
This commit is contained in:
samvaio 2016-11-22 00:52:28 +05:30 committed by GitHub
parent 62d5ed58c6
commit 9797aebdba

View File

@ -54,12 +54,12 @@ namespace NadekoBot.Modules.Administration
break;
}
}
await umsg.Channel.SendMessageAsync("Migration done.").ConfigureAwait(false);
await umsg.Channel.SendMessageAsync("🆙 **Migration done.**").ConfigureAwait(false);
}
catch (Exception ex)
{
_log.Error(ex);
await umsg.Channel.SendMessageAsync(":warning: Error while migrating, check logs for more informations.").ConfigureAwait(false);
await umsg.Channel.SendMessageAsync("⚠️ **Error while migrating, check `logs` for more informations.**").ConfigureAwait(false);
}
}