diff --git a/lib/SimpleSAML/Logger.php b/lib/SimpleSAML/Logger.php
index 7954693e7947c097e94b527df4e9879c98493904..c5f433e91a9a6fee725cf354cc28769a173489c2 100644
--- a/lib/SimpleSAML/Logger.php
+++ b/lib/SimpleSAML/Logger.php
@@ -16,7 +16,7 @@ class Logger
 {
 
     /**
-     * @var \SimpleSAML_Logger_LoggingHandler|false|null
+     * @var \SimpleSAML\Logger\LoggingHandlerInterface|false|null
      */
     private static $loggingHandler = null;
 
diff --git a/lib/SimpleSAML/Logger/FileLoggingHandler.php b/lib/SimpleSAML/Logger/FileLoggingHandler.php
index a0a1280d9b7f97fca32b422995700404115a052c..475541f1bfdd60bcbfa699dbe6d3305b28d0f2a0 100644
--- a/lib/SimpleSAML/Logger/FileLoggingHandler.php
+++ b/lib/SimpleSAML/Logger/FileLoggingHandler.php
@@ -23,7 +23,7 @@ class FileLoggingHandler implements LoggingHandlerInterface
 
     /**
      * This array contains the mappings from syslog log levels to names. Copied more or less directly from
-     * SimpleSAML_Logger_LoggingHandlerErrorLog.
+     * SimpleSAML\Logger\ErrorLogLoggingHandler.
      */
     private static $levelNames = array(
         Logger::EMERG   => 'EMERGENCY',
@@ -86,7 +86,7 @@ class FileLoggingHandler implements LoggingHandlerInterface
     public function log($level, $string)
     {
         if (!is_null($this->logFile)) {
-            // set human-readable log level. Copied from SimpleSAML_Logger_LoggingHandlerErrorLog.
+            // set human-readable log level. Copied from SimpleSAML\Logger\ErrorLogLoggingHandler.
             $levelName = sprintf('UNKNOWN%d', $level);
             if (array_key_exists($level, self::$levelNames)) {
                 $levelName = self::$levelNames[$level];