mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
Reduce legacy event log level to debug
This is to reduce log flooding on info log level, which is currently expected tue to deprecated event use in many apps and core: https://github.com/nextcloud/server/issues/18331 This information is helpful for developers only, hence should be sufficient as debug log. Especially due to the extremely high frequency this log can happen, this currently practically forces admins to disable info logs, which conflicts with other needs. Signed-off-by: MichaIng <micha@dietpi.com>
This commit is contained in:
parent
357e8b76e8
commit
fbf93de67a
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ class SymfonyAdapter implements EventDispatcherInterface {
|
|||
$this->eventDispatcher->dispatch($eventName, $event);
|
||||
} else {
|
||||
// Legacy event
|
||||
$this->logger->info(
|
||||
$this->logger->debug(
|
||||
'Deprecated event type for {name}: {class}',
|
||||
[ 'name' => $eventName, 'class' => is_object($event) ? get_class($event) : 'null' ]
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue