summaryrefslogtreecommitdiffstats
path: root/apps/dav
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dav')
-rw-r--r--apps/dav/l10n/pt_BR.js2
-rw-r--r--apps/dav/l10n/pt_BR.json2
-rw-r--r--apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php4
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/dav/l10n/pt_BR.js b/apps/dav/l10n/pt_BR.js
index b98acb4faa8..75346f3aacb 100644
--- a/apps/dav/l10n/pt_BR.js
+++ b/apps/dav/l10n/pt_BR.js
@@ -64,6 +64,6 @@ OC.L10N.register(
"Please make sure to properly set up the email settings above." : "Certifique-se de configurar corretamente o email acima.",
"Automatically generate a birthday calendar" : "Gerar um calendário de aniversários automaticamente",
"Birthday calendars will be generated by a background job." : "Os calendários de aniversários serão gerados na retaguarda.",
- "Hence they will not be available immediately after enabling but will show up after some time." : "Portanto, eles não estarão disponíveis imediatamente ao habilitar, mas após algum tempo."
+ "Hence they will not be available immediately after enabling but will show up after some time." : "Portanto, eles não estarão disponíveis imediatamente ao habilitar mas após algum tempo."
},
"nplurals=2; plural=(n > 1);");
diff --git a/apps/dav/l10n/pt_BR.json b/apps/dav/l10n/pt_BR.json
index e3797e17f27..f773ee0d93f 100644
--- a/apps/dav/l10n/pt_BR.json
+++ b/apps/dav/l10n/pt_BR.json
@@ -62,6 +62,6 @@
"Please make sure to properly set up the email settings above." : "Certifique-se de configurar corretamente o email acima.",
"Automatically generate a birthday calendar" : "Gerar um calendário de aniversários automaticamente",
"Birthday calendars will be generated by a background job." : "Os calendários de aniversários serão gerados na retaguarda.",
- "Hence they will not be available immediately after enabling but will show up after some time." : "Portanto, eles não estarão disponíveis imediatamente ao habilitar, mas após algum tempo."
+ "Hence they will not be available immediately after enabling but will show up after some time." : "Portanto, eles não estarão disponíveis imediatamente ao habilitar mas após algum tempo."
},"pluralForm" :"nplurals=2; plural=(n > 1);"
} \ No newline at end of file
diff --git a/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php b/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php
index 1678a8831dc..ecfd0e5692d 100644
--- a/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php
+++ b/apps/dav/lib/Connector/Sabre/ExceptionLoggerPlugin.php
@@ -108,14 +108,14 @@ class ExceptionLoggerPlugin extends \Sabre\DAV\ServerPlugin {
*/
public function logException(\Exception $ex) {
$exceptionClass = get_class($ex);
- $level = \OCP\Util::FATAL;
+ $level = ILogger::FATAL;
if (isset($this->nonFatalExceptions[$exceptionClass]) ||
(
$exceptionClass === ServiceUnavailable::class &&
$ex->getMessage() === 'System in maintenance mode.'
)
) {
- $level = \OCP\Util::DEBUG;
+ $level = ILogger::DEBUG;
}
$this->logger->logException($ex, [