diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2018-10-26 14:17:06 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2018-10-26 16:42:09 +0200 |
commit | d2a4fac09bc6d17b85fd34a3f0777ecc5e3bd286 (patch) | |
tree | b9ca94eac62e54c311ee9e98b828059eafb63cb9 /desktop | |
parent | ca844d61ea19c9b2096db6047110ec0257d817bb (diff) |
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 <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/pkgchk/unopkg/unopkg_app.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
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 ) { |