diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-02 03:57:06 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-02 07:35:57 +0200 |
commit | 682cd955c36cb97a8fd276fc57be6bdb4bb0e107 (patch) | |
tree | 7d0ed3846be8128bfcf423bfd72d7bae82f2526b /desktop/source/app/updater.cxx | |
parent | cff13c4b34430c2f70a70d96e758a8278db8f5ca (diff) |
updater: always log all Updater messages also to SAL_INFO
Change-Id: Iafb9ebc8c1bc0ed317fa51b40e22bc8531bda6f1
Reviewed-on: https://gerrit.libreoffice.org/40657
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'desktop/source/app/updater.cxx')
-rw-r--r-- | desktop/source/app/updater.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/source/app/updater.cxx b/desktop/source/app/updater.cxx index ef4dcd29d122..16e847d50df7 100644 --- a/desktop/source/app/updater.cxx +++ b/desktop/source/app/updater.cxx @@ -750,6 +750,7 @@ OUString Updater::getExecutableDirURL() void Updater::log(const OUString& rMessage) { + SAL_INFO("updater", rMessage); OUString aUpdateLog = getUpdateInfoLog(); SvFileStream aLog(aUpdateLog, StreamMode::STD_READWRITE); aLog.Seek(aLog.Tell() + aLog.remainingSize()); // make sure we are at the end @@ -758,6 +759,7 @@ void Updater::log(const OUString& rMessage) void Updater::log(const OString& rMessage) { + SAL_INFO("updater", rMessage); OUString aUpdateLog = getUpdateInfoLog(); SvFileStream aLog(aUpdateLog, StreamMode::STD_READWRITE); aLog.Seek(aLog.Tell() + aLog.remainingSize()); // make sure we are at the end @@ -766,6 +768,7 @@ void Updater::log(const OString& rMessage) void Updater::log(const char* pMessage) { + SAL_INFO("updater", pMessage); OUString aUpdateLog = getUpdateInfoLog(); SvFileStream aLog(aUpdateLog, StreamMode::STD_READWRITE); aLog.Seek(aLog.Tell() + aLog.remainingSize()); // make sure we are at the end |