From 525163c074785a0b59590ca13f0d1cd6cdc1b2db Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 15 Oct 2019 12:36:42 +0300 Subject: Bin a fairly pointless unconditional NSLog() call Change-Id: I7c1910c3e1bf345966ec289aaf5f9c9b6cbabc22 --- desktop/source/lib/init.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 4fb369ac997c..048b358175c4 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -5497,10 +5497,10 @@ static int lo_initialize(LibreOfficeKit* pThis, const char* pAppPath, const char { // Quick test that ICU works... UConverter *cnv = ucnv_open("iso-8859-3", &icuStatus); - NSLog(@"ucnv_open(iso-8859-3)-> %p, err = %s, name=%s", - (void *)cnv, u_errorName(icuStatus), (!cnv)?"?":ucnv_getName(cnv,&icuStatus)); if (U_SUCCESS(icuStatus)) ucnv_close(cnv); + else + NSLog(@"ucnv_open() failed: %s", u_errorName(icuStatus)); } } } -- cgit