release: 2.0.0-beta.3

This commit is contained in:
hstyi
2025-07-01 10:54:39 +08:00
committed by hstyi
parent d0827c3b0c
commit a4364bcd6a
2 changed files with 4 additions and 2 deletions

View File

@@ -1 +1 @@
2.0.0-beta.2 2.0.0-beta.3

View File

@@ -86,7 +86,9 @@ class FileTransfer(
} }
}.onFailure { }.onFailure {
if (log.isWarnEnabled) { if (log.isWarnEnabled) {
log.error(it.message, it) if (it !is UnsupportedOperationException) {
log.warn(it.message, it)
}
} }
} }
} }