JNIEXPORT void JNICALL
Java_org_zeromq_czmq_Zproc__1_1logNotice (JNIEnv *env, jclass c, jstring format)
{
    char *format_ = (char *) (*env)->GetStringUTFChars (env, format, NULL);
    zproc_log_notice ("%s", format_);
    (*env)->ReleaseStringUTFChars (env, format, format_);
}
Beispiel #2
0
///
//  Log normal, but significant, condition - normal priority
void QmlZprocAttached::logNotice (const QString &format) {
    zproc_log_notice ("%s", format.toUtf8().data());
};
Beispiel #3
0
///
//  Log normal, but significant, condition - normal priority
void QZproc::logNotice (const QString &param)
{
    zproc_log_notice ("%s", param.toUtf8().data());

}