chore: Debug error in REPL

This commit is contained in:
Tibo De Peuter 2025-05-18 20:28:38 +02:00
parent 50b4d192f3
commit d50ec0f715
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -20,6 +20,7 @@ class Repl {
printAnswers(query()) printAnswers(query())
} catch (e: Exception) { } catch (e: Exception) {
Logger.error("Error parsing REPL: ${e.message}") Logger.error("Error parsing REPL: ${e.message}")
Logger.debug(e.stackTraceToString())
} }
} }
} }