[Libreoffice-commits] online.git: common/Util.cpp

Henry Castro hcastro at collabora.com
Wed Jan 31 22:04:54 UTC 2018


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

New commits:
commit f269a9321c81bf0b2193661935b9231206e3a44b
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

diff --git a/common/Util.cpp b/common/Util.cpp
index 9069d054..3c3c7897 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