From d1269f86899eedc7b4b0dab202eb9f9366ee3fd1 Mon Sep 17 00:00:00 2001
From: Thijs Kinkhorst <thijs@kinkhorst.com>
Date: Tue, 15 Nov 2016 10:46:59 +0000
Subject: [PATCH] Update Logger class usage to new namespace

---
 modules/ldap/lib/Auth/Process/AttributeAddUsersGroups.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/ldap/lib/Auth/Process/AttributeAddUsersGroups.php b/modules/ldap/lib/Auth/Process/AttributeAddUsersGroups.php
index a9ee77f70..6a43f7c0c 100644
--- a/modules/ldap/lib/Auth/Process/AttributeAddUsersGroups.php
+++ b/modules/ldap/lib/Auth/Process/AttributeAddUsersGroups.php
@@ -116,12 +116,12 @@ class sspmod_ldap_Auth_Process_AttributeAddUsersGroups extends sspmod_ldap_Auth_
 				
             case 'OPENLDAP':
                 // Log the OpenLDAP specific search
-                SimpleSAML_Logger::debug(
+                SimpleSAML\Logger::debug(
                     $this->title . 'Searching LDAP using OpenLDAP specific method.'
                 );
                 // Print group search string and search for all group names
                 $openldap_base = $this->config->getString('ldap.basedn','ou=groups,dc=example,dc=com');
-                SimpleSAML_Logger::debug(
+                SimpleSAML\Logger::debug(
                     $this->title . "Searching for groups in ldap.basedn ".$openldap_base." with filter (".$map['memberof']."=".$attributes['uid'][0].") and attributes ".$map['member']
                 );
                 $groups = array();
-- 
GitLab