Webapp log file rotation with --logging?

In a stand-alone web app started with “–logging” on the command line, it creates an apache-style log file “Output.log” next to the EXE.

Will this fill just grow and grow forever? Is there any log rotation built in? Does re-launching the app append or overwrite an existing log?

  1. You are responsible for log rotation.
  2. We just keep appending to the file.

Thanks, Greg.

Is it possible to rotate the log file while the web app is running?