Hi, > I noticed that the org.h2.build.Build class (no Ant? no Maven?) never adds a > "-g" option
No, it uses the default settings, which means the "line numbers" debug info is available. In 99% of the cases this is enough. > I had to edit the source of Build.java to supply a > "-g" option so I could debug the server. No, you don't need that: line numbers debug info that is present in the default jar file is sufficient for debugging. You need to point the IDE to the source jar file, which is available for download on Maven, for example: http://repo2.maven.org/maven2/com/h2database/h2/1.3.161/ - h2-1.3.161-sources.jar To analyze stack traces, you can also use the online "Error Analyzer": http://h2database.com/html/sourceError.html Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
