[Libreoffice-commits] online.git: loolwsd/LOOLWSD.cpp
Tor Lillqvist
tml at collabora.com
Fri Oct 7 10:52:41 UTC 2016
loolwsd/LOOLWSD.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit a4b0c22161c3b55f222f15cc9422820082aafd69
Author: Tor Lillqvist <tml at collabora.com>
Date: Fri Oct 7 13:51:55 2016 +0300
There is nothing called 'PocoException'
diff --git a/loolwsd/LOOLWSD.cpp b/loolwsd/LOOLWSD.cpp
index 7bb6522..c41f95a 100644
--- a/loolwsd/LOOLWSD.cpp
+++ b/loolwsd/LOOLWSD.cpp
@@ -604,7 +604,7 @@ private:
}
catch (const Exception& exc)
{
- Log::error() << "Error sending file to client. PocoException: " << exc.displayText()
+ Log::error() << "Error sending file to client: " << exc.displayText()
<< (exc.nested() ? " (" + exc.nested()->displayText() + ")" : "")
<< Log::end;
}
@@ -1050,7 +1050,7 @@ public:
}
catch (const Exception& exc)
{
- Log::error() << "ClientRequestHandler::handleRequest: PocoException: " << exc.displayText()
+ Log::error() << "ClientRequestHandler::handleRequest: " << exc.displayText()
<< (exc.nested() ? " (" + exc.nested()->displayText() + ")" : "")
<< Log::end;
response.setStatusAndReason(HTTPResponse::HTTP_SERVICE_UNAVAILABLE);
More information about the Libreoffice-commits
mailing list