1. 09 Feb, 2021 3 commits
  2. 04 Feb, 2021 1 commit
    • Jérome Perrin's avatar
      proxy: don't set app logger level · ae5b407e
      Jérome Perrin authored
      logging is configured globally in SlapOSApp.configure_logging and:
       - if logging to file is enabled, it is logged with maximum level
       - logging on the console depends on --quiet / --verbose command line flags
      
      Default log level of this logger was DEBUG, which is just fine: the logger
      emit all messages and the file/console handler decide to output them or not
      
      Because we configure logger after Flask initialize its own logging, for
      Flask >= 1.1.2, we remove Flask logger as described in
       https://flask.palletsprojects.com/en/1.1.x/logging/#removing-the-default-handler
      Since this is internal API which doest not exist on old version of Flask, we
      adjust requirements to require a recent version of Flask.
      ae5b407e
  3. 03 Feb, 2021 1 commit
  4. 02 Feb, 2021 3 commits
  5. 29 Jan, 2021 13 commits
  6. 28 Jan, 2021 1 commit
  7. 26 Jan, 2021 4 commits
  8. 22 Jan, 2021 2 commits
  9. 21 Jan, 2021 11 commits
  10. 20 Jan, 2021 1 commit
    • Jérome Perrin's avatar
      slap/standalone: normalize log files in supervisord · 2aad36b9
      Jérome Perrin authored
      Because some programs did not have proper configuration for log files, they
      were using automatically generated file names for log files. Correctly
      define stdout_logfile configuration for all programs, used with
      redirect_stderr=true, so that both stderr and stdout are in the same log
      file.
      2aad36b9