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
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-10-07 10:00:20 +0300
committerJoas Schilling <coding@schilljs.com>2020-10-07 12:18:44 +0300
commit51773d01d0f42fc1a24bdf0957b7a250b74243b4 (patch)
tree825c2db6be74ddee45e92ce9dbf21b9c3df7906e /lib
parentc4561e8e33a9b8923d2964bed73a28ec44b76e6f (diff)
Comments manager is uing the PSR logger now
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-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
) {