]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/OAuth/Revoke.php
Merge pull request #12445 from MrPetovan/bug/12382-tag-attachment
[friendica.git] / src / Module / OAuth / Revoke.php
index 525fdd97e7d54800a736ae3b5d4a21ef30ad3b49..0604e90bf7de2bbcae6b3f0d3f277d3ded09e599 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -49,7 +49,7 @@ class Revoke extends BaseApi
                $condition = ['client_id' => $request['client_id'], 'client_secret' => $request['client_secret'], 'access_token' => $request['token']];
                $token = DBA::selectFirst('application-view', ['id'], $condition);
                if (empty($token['id'])) {
-                       Logger::warning('Token not found', $condition);
+                       Logger::notice('Token not found', $condition);
                        DI::mstdnError()->Unauthorized();
                }