Hey JRuby gang.. probably a question here for headius . Is there something I need to configure on the JRuby side to get line numbers and file causing the problems during an exception thrown during eval? The error seems to make it to STDOUT with line and file, but what gets provided as an exception via JSR223 give no hints about where the error came from. For example, this is what I get in the log: ``` org.jruby.embed.EvalFailedException: (LoadError) no such file to load -- openhab/core/entities ``` In STDOUT I get: ``` LoadError: no such file to load -- openhab/core/entities require at org/jruby/RubyKernel.java:974 require at uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:54
at /Users/src/openhab-scripting/tmp/openhab/conf/automation/lib/ruby/gem_home/gems/openhab-scripting-2.14.3/lib/openhab/dsl/group.rb:5 ```