From c3bd03fcae6194d167730c47d33bfb776b0a73b3 Mon Sep 17 00:00:00 2001
From: Him188 <Him188@mamoe.net>
Date: Wed, 19 Feb 2020 18:36:04 +0800
Subject: [PATCH] Improve logs

---
 .../src/commonMain/kotlin/net.mamoe.mirai/BotImpl.kt       | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/BotImpl.kt b/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/BotImpl.kt
index edf384811..66ffdd235 100644
--- a/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/BotImpl.kt
+++ b/mirai-core/src/commonMain/kotlin/net.mamoe.mirai/BotImpl.kt
@@ -86,7 +86,7 @@ abstract class BotImpl<N : BotNetworkHandler> constructor(
                 if (!_network.isActive) {
                     return@subscribeAlways
                 }
-                bot.logger.info("Connection dropped or lost by server, retrying login")
+                bot.logger.info("Connection dropped by server or lost, retrying login")
 
                 tryNTimesOrException(configuration.reconnectionRetryTimes) { tryCount ->
                     if (tryCount != 0) {
@@ -95,7 +95,10 @@ abstract class BotImpl<N : BotNetworkHandler> constructor(
                     network.relogin()
                     logger.info("Reconnected successfully")
                     return@subscribeAlways
-                }?.let { throw it }
+                }?.let {
+                    logger.info("Cannot reconnect")
+                    throw it
+                }
             }
             is BotOfflineEvent.Active -> {
                 val msg = if (event.cause == null) {