Skip to content
Snippets Groups Projects
Commit 389d2a00 authored by Thijs Kinkhorst's avatar Thijs Kinkhorst
Browse files

Replace remaining uses of SimpleSAML_Logger with namespace version

parent 347129b7
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ if ($config->getBoolean('enable.saml20-idp', FALSE) === true) {
if ($isadmin)
$metaentries['remote']['saml20-sp-remote'] = $metadata->getList('saml20-sp-remote');
} catch(Exception $e) {
SimpleSAML_Logger::error('Federation: Error loading saml20-idp: ' . $e->getMessage());
SimpleSAML\Logger::error('Federation: Error loading saml20-idp: ' . $e->getMessage());
}
}
if ($config->getBoolean('enable.shib13-idp', FALSE) === true) {
......@@ -94,7 +94,7 @@ if ($config->getBoolean('enable.shib13-idp', FALSE) === true) {
if ($isadmin)
$metaentries['remote']['shib13-sp-remote'] = $metadata->getList('shib13-sp-remote');
} catch(Exception $e) {
SimpleSAML_Logger::error('Federation: Error loading shib13-idp: ' . $e->getMessage());
SimpleSAML\Logger::error('Federation: Error loading shib13-idp: ' . $e->getMessage());
}
}
if ($config->getBoolean('enable.adfs-idp', FALSE) === true) {
......@@ -105,7 +105,7 @@ if ($config->getBoolean('enable.adfs-idp', FALSE) === true) {
if ($isadmin)
$metaentries['remote']['adfs-sp-remote'] = $metadata->getList('adfs-sp-remote');
} catch(Exception $e) {
SimpleSAML_Logger::error('Federation: Error loading adfs-idp: ' . $e->getMessage());
SimpleSAML\Logger::error('Federation: Error loading adfs-idp: ' . $e->getMessage());
}
}
......
......@@ -80,7 +80,7 @@ if (!empty($stateId)) {
$state = SimpleSAML_Auth_State::loadState($stateId, 'saml:sp:sso');
} catch (Exception $e) {
// something went wrong,
SimpleSAML_Logger::warning('Could not load state specified by InResponseTo: '.$e->getMessage().
SimpleSAML\Logger::warning('Could not load state specified by InResponseTo: '.$e->getMessage().
' Processing response as unsolicited.');
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment