From d2a4fac09bc6d17b85fd34a3f0777ecc5e3bd286 Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Fri, 26 Oct 2018 14:17:06 +0200 Subject: unopkg: Write to console when no UNO available Change-Id: I159b7e85f53e33c5359cca83aa958387d888f6a2 Reviewed-on: https://gerrit.libreoffice.org/62391 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt --- desktop/source/pkgchk/unopkg/unopkg_app.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'desktop/source') diff --git a/desktop/source/pkgchk/unopkg/unopkg_app.cxx b/desktop/source/pkgchk/unopkg/unopkg_app.cxx index 22d6f66d0255..edbc84eff605 100644 --- a/desktop/source/pkgchk/unopkg/unopkg_app.cxx +++ b/desktop/source/pkgchk/unopkg/unopkg_app.cxx @@ -609,7 +609,8 @@ extern "C" int unopkg_main() } catch (const LockFileException & e) { - logger->log(LogLevel::SEVERE, "Exception occurred: $1$", e.Message); + // No logger since it requires UNO which we don't have here + dp_misc::writeConsoleError(e.Message + "\n"); bNoOtherErrorMsg = true; } catch (const css::uno::Exception & e ) { -- cgit