Sip::Configuration::find_service tries to log a warning when it does
not find a matching service defined for a given
address/port/protocol tuple.
This uses the correct LOG_WARNING log level, ensuring that the
desired message is logged.
Thanks to Jason Boyer for catching this!
Signed-off-by: Jeff Godin <jgodin@tadl.org>
}
push @misses, $portstr;
}
- Sys::Syslog::syslog("LOG_WARN", "find_service: No match in: " . join(' ',@misses));
+ Sys::Syslog::syslog("LOG_WARNING", "find_service: No match in: " . join(' ',@misses));
return;
}