ios/Mobile/AppDelegate.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit ef7e79a20b1ad487164eabe827092ed1da294690 Author: Tor Lillqvist <[email protected]> AuthorDate: Tue Jul 14 16:46:40 2020 +0300 Commit: Tor Lillqvist <[email protected]> CommitDate: Tue Jul 14 16:55:12 2020 +0200 Use LOG_INF_NOFILE() for the FakeSocket logging callbacks (Why not call LOG_INF directly in FakeSocket.cpp instead? Good question. I guess my idea was originally to keep FakeSocket separately testable without all the Online logging stuff.) Change-Id: I1e6b730a9742ad653d431774d88fec6a36d98850 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/98736 Tested-by: Jenkins Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Tor Lillqvist <[email protected]> diff --git a/ios/Mobile/AppDelegate.mm b/ios/Mobile/AppDelegate.mm index c98211205..d6962b840 100644 --- a/ios/Mobile/AppDelegate.mm +++ b/ios/Mobile/AppDelegate.mm @@ -249,7 +249,7 @@ static void updateTemplates(NSData *data, NSURLResponse *response) fakeSocketSetLoggingCallback([](const std::string& line) { - LOG_INF(line); + LOG_INF_NOFILE(line); }); dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
