Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
exec java \
  -Xmx1024M -Xms512M -XX:+HeapDumpOnOutOfMemoryError\
  -Dorg.eclipse.jetty.level=ERROR -Dorg.eclipse.jetty.websocket.level=ERROR \
  -Djava.util.logging.config.file=/home/wave/wiab-logging \
  -Djava.security.auth.login.config=jaas.config \
  -Dwave.server.config=server.config \
  -jar dist/waveinabox-server-$WAVEINABOX_VERSION.jar

The -Djava.util.logging.config.file=/home/wave/wiab-logging is the only new line.

I have deliberately, turned down the logging from jetty to ERROR only, so that the log fills up with Wave only messages.

...