Add a tip when reading testAccount.txt

This commit is contained in:
Him188 2019-12-19 17:34:36 +08:00
parent 570110902f
commit e9ae6b2d17

View File

@ -27,6 +27,7 @@ private fun readTestAccount(): BotAccount? {
return null
}
println("Reading account from testAccount.text")
val lines = file.readLines()
return try {
BotAccount(lines[0].toLong(), lines[1])