Skip to content

Commit 7f8b506

Browse files
authored
ADFA-4063 Fix typo in debug message in Pebble template handler (#1325)
Fix typo in debug message in Pebble template handler
1 parent 2dee111 commit 7f8b506

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • app/src/main/java/com/itsaky/androidide/localWebServer

app/src/main/java/com/itsaky/androidide/localWebServer/WebServer.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ clientSocket and the catch block logic are updated accordingly.
429429
when {
430430
cursor.count == 0 -> {
431431
log.debug(
432-
"Template not found, for ID {}, path {}, MIME type {}, compression {}}",
432+
"Template not found, for ID {}, path {}, MIME type {}, compression {}",
433433
templateId,
434434
path,
435435
dbMimeType,
@@ -439,7 +439,7 @@ clientSocket and the catch block logic are updated accordingly.
439439
}
440440
cursor.count > 1 -> {
441441
log.debug(
442-
"More than one template found, for ID {}, path {}, MIME type {}, compression {}}",
442+
"More than one template found, for ID {}, path {}, MIME type {}, compression {}",
443443
templateId,
444444
path,
445445
dbMimeType,
@@ -449,7 +449,7 @@ clientSocket and the catch block logic are updated accordingly.
449449
}
450450
!cursor.moveToFirst() -> {
451451
log.debug(
452-
"Template not found, for ID {}, path {}, MIME type {}, compression {}}",
452+
"Template not found, for ID {}, path {}, MIME type {}, compression {}",
453453
templateId,
454454
path,
455455
dbMimeType,

0 commit comments

Comments
 (0)