Remove some OSL_DEBUG_LEVEL > 1 code

...that would no longer compile since 2f5f45921b05904a4be1ff633be09c62cb44ff08
"support O(U)String::number() for fast string concatenation", anyway:

> vcl/unx/generic/app/i18n_cb.cxx:508:56: error: incompatible operand types ('const char [14]' and 'OStringNumber<int>')
>                 << ((call_data->type == XIMBitmapType) ?
>                                                        ^

Change-Id: Id7818ed6228ff317e1bee4efd53f15a2786689d4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94758
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
diff --git a/vcl/unx/generic/app/i18n_cb.cxx b/vcl/unx/generic/app/i18n_cb.cxx
index 2944c85..52bf3bf 100644
--- a/vcl/unx/generic/app/i18n_cb.cxx
+++ b/vcl/unx/generic/app/i18n_cb.cxx
@@ -501,16 +501,6 @@ StatusDrawCallback (XIC, XPointer, XIMStatusDrawCallbackStruct *call_data)
                aText = OUString( pMBString, nLength, osl_getThreadTextEncoding() );
        }
    }
#if OSL_DEBUG_LEVEL > 1
    else
    {
        SAL_WARN("vcl.app", "XIMStatusDataType "
                << ((call_data->type == XIMBitmapType) ?
                    "XIMBitmapType" :
                    OString::number(call_data->type))
                << " not supported.");
    }
#endif
}

// vii. destroy callbacks: internally disable all IC/IM calls