[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: PASOE WebSpeed compatibility handler - how to turn off 'Method <X> is not supported by

  • Thread starter Thread starter Peter Judge
  • Start date Start date
Status
Not open for further replies.
P

Peter Judge

Guest
If you just want to change the log output, read on. If you want to change the behaviour (ie an error thrown or a different log level like Info), please log a bug. You’ll see those message (by default) when the agent’s logging-level is 2 ( OpenEdge.Logging.LogLevelEnum:Error ) or greater. The default log writer is the LOG-MANAGER, but you can handle redirect InternalWebRouter’s log messages via a config file. Create a file called logging.config in PROPATH somewhere (before any other files similarly named), with these contents. { "logger" : { "OpenEdge.Web.InternalWebRouter" : { "logLevel" : "OFF" , "filters" : [ "VOID_WRITER" ] } } } This will turn off all logging for that InternalWebRouter (but only that component) which may suffice in the short term.

Continue reading...
 
Status
Not open for further replies.
Back
Top