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

github.com/ONLYOFFICE/onlyoffice-nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Linnik <sergey.linnik@onlyoffice.com>2018-09-11 13:49:27 +0300
committerGitHub <noreply@github.com>2018-09-11 13:49:27 +0300
commit6738c68df43e46b9062dfbbb3f6359a2781f49d3 (patch)
treef3938e115d2bc08dd05f6ed4345dd8ee893f18d7 /controller/callbackcontroller.php
parent038d9e72ddf1cfa6c529cbf3bcec392f3a50b882 (diff)
parentfcba6d7d179573ed96bdfc4e9e2b68526abfbd08 (diff)
Merge pull request #10 from ONLYOFFICE/developv2.0.4
Release/2.0.4
Diffstat (limited to 'controller/callbackcontroller.php')
-rw-r--r--controller/callbackcontroller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/controller/callbackcontroller.php b/controller/callbackcontroller.php
index 14ce9f3..014a487 100644
--- a/controller/callbackcontroller.php
+++ b/controller/callbackcontroller.php
@@ -398,10 +398,10 @@ class CallbackController extends Controller {
$key = DocumentService::GenerateRevisionId($fileId . $url);
try {
- $this->logger->debug("GetConvertedUri from " . $downloadExt . " to " . $curExt . " " . $url, array("app" => $this->appName));
+ $this->logger->debug("Converted from " . $downloadExt . " to " . $curExt, array("app" => $this->appName));
$url = $documentService->GetConvertedUri($url, $downloadExt, $curExt, $key);
} catch (\Exception $e) {
- $this->logger->error("GetConvertedUri on save error: " . $e->getMessage(), array("app" => $this->appName));
+ $this->logger->error("Converted on save error: " . $e->getMessage(), array("app" => $this->appName));
return new JSONResponse(["message" => $e->getMessage()], Http::STATUS_INTERNAL_SERVER_ERROR);
}
}