Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-10-07 16:04:58 +0300
committerGitHub <noreply@github.com>2020-10-07 16:04:58 +0300
commit9974df7fc68439cda65e12fb68e959d5fe931d01 (patch)
tree24889830fd8c4e31da21c8d39e28fb51aa01f7bb
parent5f195d3daa49b75a6d3055ccb7a6ebf861f8b91e (diff)
parent51773d01d0f42fc1a24bdf0957b7a250b74243b4 (diff)
Merge pull request #4316 from nextcloud/techdebt/noid/comments-manager-uses-psr-logger
Comments manager uses the PSR logger now
-rw-r--r--lib/Chat/CommentsManager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Chat/CommentsManager.php b/lib/Chat/CommentsManager.php
index 410d90616..f48bbda12 100644
--- a/lib/Chat/CommentsManager.php
+++ b/lib/Chat/CommentsManager.php
@@ -30,7 +30,7 @@ use OCP\Comments\IComment;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IConfig;
use OCP\IDBConnection;
-use OCP\ILogger;
+use Psr\Log\LoggerInterface;
class CommentsManager extends Manager {
@@ -39,7 +39,7 @@ class CommentsManager extends Manager {
public function __construct(
IDBConnection $db,
- ILogger $logger,
+ LoggerInterface $logger,
IConfig $config,
ITimeFactory $timeFactory
) {