diff --git a/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php b/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php
index 38bddef87694cc1f7828cd4f31a9e6f978b7cea1..addacec9b035052c8a4e428813ff3f72a55e6718 100644
--- a/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php
+++ b/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php
@@ -32,6 +32,9 @@ use Sabre\HTTP\Response;
 class ExceptionLoggerPlugin extends \Sabre\DAV\ServerPlugin {
 	protected $nonFatalExceptions = array(
 		'Sabre\DAV\Exception\NotAuthenticated' => true,
+		// If tokenauth can throw this exception (which is basically as
+		// NotAuthenticated. So not fatal.
+		'OCA\DAV\Connector\Sabre\Exception\PasswordLoginForbidden' => true,
 		// the sync client uses this to find out whether files exist,
 		// so it is not always an error, log it as debug
 		'Sabre\DAV\Exception\NotFound' => true,