Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ clientSocket and the catch block logic are updated accordingly.
when {
cursor.count == 0 -> {
log.debug(
"Template not found, for ID {}, path {}, MIME type {}, compression {}}",
"Template not found, for ID {}, path {}, MIME type {}, compression {}",
templateId,
path,
dbMimeType,
Expand All @@ -439,7 +439,7 @@ clientSocket and the catch block logic are updated accordingly.
}
cursor.count > 1 -> {
log.debug(
"More than one template found, for ID {}, path {}, MIME type {}, compression {}}",
"More than one template found, for ID {}, path {}, MIME type {}, compression {}",
templateId,
path,
dbMimeType,
Expand All @@ -449,7 +449,7 @@ clientSocket and the catch block logic are updated accordingly.
}
!cursor.moveToFirst() -> {
log.debug(
"Template not found, for ID {}, path {}, MIME type {}, compression {}}",
"Template not found, for ID {}, path {}, MIME type {}, compression {}",
templateId,
path,
dbMimeType,
Expand Down
Loading