aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/FileController.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/FileController.kt')
-rw-r--r--src/main/kotlin/FileController.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/kotlin/FileController.kt b/src/main/kotlin/FileController.kt
index e75969c..d1e1870 100644
--- a/src/main/kotlin/FileController.kt
+++ b/src/main/kotlin/FileController.kt
@@ -47,7 +47,8 @@ class FileController {
ctx.result(FileInputStream(File(fileLocation)))
}
}
- } catch (_: Exception) {
+ } catch (err: Exception) {
+ log.error(err.toString())
throw NotFoundResponse("Error: File or directory does not exist.")
}
}