0

Is it possible to setup Loglevel so that it will ignore a specific module, such as ssl_engine_io.c ?

Ben
  • 3,800
  • 18
  • 65
  • 96

1 Answers1

0

Sure, anything is possible. You have the source. :) However, there is no way to do it without recompiling.

Anyway, the log level is set in the server_rec struct, implying it is set per-vhost.

The ap_log_* functions get the file and line info of the caller so it would be possible to hack this feature into the source in a general way.

Mark Wagner
  • 18,019
  • 2
  • 32
  • 47