mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 23:45:11 +01:00
refactor: reduce toString output to avoid log overload
This commit is contained in:
parent
b0170c7c88
commit
e83eded07b
1 changed files with 4 additions and 0 deletions
|
|
@ -16,4 +16,8 @@ data class Media(
|
|||
enum class Status {
|
||||
UNKNOWN, ERROR, READY, UNSUPPORTED, OUTDATED
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
return "Media(status=$status, mediaType=$mediaType, comment=$comment, bookId='$bookId', createdDate=$createdDate, lastModifiedDate=$lastModifiedDate)"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue