Commit 7f63a978c855784d013a9d63150d1a20a38c8756

Authored by perry.werneck@gmail.com
1 parent 3856aadb

Melhorando log de popup

Showing 1 changed file with 3 additions and 1 deletions   Show diff stats
src/lib3270/screen.c
@@ -618,7 +618,9 @@ static int logpopup(H3270 *session, void *widget, LIB3270_NOTIFY type, const cha @@ -618,7 +618,9 @@ static int logpopup(H3270 *session, void *widget, LIB3270_NOTIFY type, const cha
618 __android_log_vprint(ANDROID_LOG_VERBOSE, PACKAGE_NAME, mask, arg); 618 __android_log_vprint(ANDROID_LOG_VERBOSE, PACKAGE_NAME, mask, arg);
619 lib3270_free(mask); 619 lib3270_free(mask);
620 #else 620 #else
621 - lib3270_write_va_log(session,"lib3270",fmt,arg); 621 + lib3270_write_log(session,"popup","%s",title);
  622 + lib3270_write_log(session,"popup","%s",msg);
  623 + lib3270_write_va_log(session,"popup",fmt,arg);
622 #endif // ANDROID 624 #endif // ANDROID
623 return 0; 625 return 0;
624 } 626 }