refactor: spelling in logs

This commit is contained in:
James Evans 2020-10-15 15:12:32 +01:00 committed by GitHub
parent 0136ff6fb2
commit b9eb6936e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -131,7 +131,7 @@ class BookLifecycle(
thumbnailBookRepository.markSelected(selected[0])
}
selected.isEmpty() && all.isNotEmpty() -> {
logger.info { "Book has bo selected thumbnail, choosing one automatically" }
logger.info { "Book has no selected thumbnail, choosing one automatically" }
thumbnailBookRepository.markSelected(all.first())
}
}

View file

@ -189,7 +189,7 @@ class SeriesLifecycle(
thumbnailsSeriesRepository.markSelected(selected[0])
}
selected.isEmpty() && all.isNotEmpty() -> {
logger.info { "Series has bo selected thumbnail, choosing one automatically" }
logger.info { "Series has no selected thumbnail, choosing one automatically" }
thumbnailsSeriesRepository.markSelected(all.first())
}
}