You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownew \SimpleSAML\Error\Exception('F-ticks log destination must be one of [local, remote, stdout, errorlog, simplesamlphp]');
247
+
/* warn if we risk mucking up the openlog call (doesn't matter for remote syslog) */
248
+
if (in_array($this->logdest, array('local', 'syslog'))) {
249
+
if (array_key_exists('facility', $this->logconfig) and$this->logconfig['facility'] !== $defaultFacility) {
250
+
\SimpleSAML\Logger::warning('F-ticks syslog facility differs from global config which may cause SimpleSAMLphp\'s logging to behave inconsistently');
251
+
}
252
+
if (array_key_exists('processname', $this->logconfig) and$this->logconfig['processname'] !== $defaultProcessName) {
253
+
\SimpleSAML\Logger::warning('F-ticks syslog processname differs from global config which may cause SimpleSAMLphp\'s logging to behave inconsistently');
0 commit comments