Replies: 0 comments 2 replies
-
Hi, What are you launching to get this error ? And why dont you want to inherit from IApplication ? So my first move would be to remove log4j, understand why XText is now complaining about a missing logger while it didn't before. This should give some clues about the issue. [by the way, beware that I've made a few commits on headless for addressing #3096) |
Beta Was this translation helpful? Give feedback.
-
Context: I'm working on #3076, idea is that we write a separate headless into two parts. The first part is the core that do all the functionality. The second one is a command line parser, it does not do anything on it's own and only load the things it needed on demands (if we are doing daemon or server mode, we are going to need this because we only want to send the input to the server, the client doesn't need to load all the compilers and stuffs).
Right now, I'm trying to do very basic stuffs like generating an xml from experiment files.
Problem:
preloadGAMA()
gives class definition not found, error log:After adding
org.apache.log4j.Logger
to the list of dependencies, there's no error log, but the program hangs atpreloadGAMA()
. I traced the hang to line 51 inGamaStandaloneSetup.java
and got stuck there.Anyone knows about this?
The current code is at https://github.com/ndgnuh/gama
Beta Was this translation helpful? Give feedback.
All reactions