[Libreoffice-commits] online.git: kit/Kit.cpp
Samuel Mehrbrodt
Samuel.Mehrbrodt at cib.de
Tue Jan 30 13:34:10 UTC 2018
kit/Kit.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit e89584f933148dae4129dfd9aa7e1621e9a61ecf
Author: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
Date: Thu Jan 25 15:15:37 2018 +0100
Show info instead of error when linking is not possible
we still try to copy the file after this and fail if that doesn't work.
Change-Id: Ie37022b2454e71f4b1a92217e01e56e58070448b
Reviewed-on: https://gerrit.libreoffice.org/48907
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
diff --git a/kit/Kit.cpp b/kit/Kit.cpp
index b644a029..7651722b 100644
--- a/kit/Kit.cpp
+++ b/kit/Kit.cpp
@@ -215,7 +215,7 @@ namespace
LOG_INF("Linking file \"" << fpath << "\" to \"" << newPath.toString() << "\"");
if (link(fpath, newPath.toString().c_str()) == -1)
{
- LOG_SYS("link(\"" << fpath << "\", \"" <<
+ LOG_INF("link(\"" << fpath << "\", \"" <<
newPath.toString() << "\") failed. Will copy.");
try
{
More information about the Libreoffice-commits
mailing list