MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / ghb_log

Function ghb_log

gtk/src/callbacks.c:4919–4934  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4917}
4918
4919void
4920ghb_log (const char *log, ...)
4921{
4922 va_list args;
4923 time_t _now;
4924 struct tm *now;
4925 gchar fmt[362];
4926
4927 _now = time(NULL);
4928 now = localtime( &_now );
4929 snprintf(fmt, 362, "[%02d:%02d:%02d] gtkgui: %s\n",
4930 now->tm_hour, now->tm_min, now->tm_sec, log);
4931 va_start(args, log);
4932 vfprintf(stderr, fmt, args);
4933 va_end(args);
4934}
4935
4936#if GTK_CHECK_VERSION(4, 10, 0)
4937G_GNUC_BEGIN_IGNORE_DEPRECATIONS

Callers 15

add_multiple_titlesFunction · 0.85
ghb_preset_to_settingsFunction · 0.85
ghb_presets_loadFunction · 0.85
preset_get_folderFunction · 0.85
preset_save_as_write_cbFunction · 0.85
scan_directoryFunction · 0.85
source_dialog_start_scanFunction · 0.85
submit_jobFunction · 0.85
send_to_external_appFunction · 0.85
ghb_file_openFunction · 0.85
chapter_list_import_xmlFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected