[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-3-0' - common/Util.cpp

Henry Castro hcastro at collabora.com
Fri Feb 9 16:55:17 UTC 2018


 common/Util.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f2ae299f23b22a946f965559b01124ea2c691705
Author: Henry Castro <hcastro at collabora.com>
Date:   Wed Jan 31 17:51:47 2018 -0400

    follow up, avoid logging when closing file descriptors
    
    Change-Id: I38432ae1d042094551d22c2512a416c3b345556b
    Reviewed-on: https://gerrit.libreoffice.org/49066
    Reviewed-by: Jan Holesovsky <kendy at collabora.com>
    Tested-by: Jan Holesovsky <kendy at collabora.com>

diff --git a/common/Util.cpp b/common/Util.cpp
index 8c7792c9..b9ca5951 100644
--- a/common/Util.cpp
+++ b/common/Util.cpp
@@ -153,7 +153,7 @@ namespace Util
     {
         if (!closeFdsFromProc())
         {
-            LOG_WRN("Couldn't close fds efficiently from /proc");
+            std::cerr << "Couldn't close fds efficiently from /proc" << std::endl;
             for (int fd = 3; fd < sysconf(_SC_OPEN_MAX); ++fd)
                 close(fd);
         }


More information about the Libreoffice-commits mailing list