- Timestamp:
- Aug 16, 2017, 12:53:41 PM (7 years ago)
- Branches:
- master
- Children:
- 42779f8
- Parents:
- 5093c6f
- git-author:
- Jason Gross <jgross@mit.edu> (07/12/11 17:10:09)
- git-committer:
- Jason Gross <jasongross9@gmail.com> (08/16/17 12:53:41)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
logging.c
r5093c6f r4ead7b3 17 17 static bool defer_logs; /* to be accessed only on the disk-writing thread */ 18 18 static GQueue *deferred_entry_queue; 19 20 /* This is now the one function that should be called to log a21 * message. It will do all the work necessary by calling the other22 * functions in this file as necessary.23 */24 void owl_log_message(const owl_message *m) {25 owl_function_debugmsg("owl_log_message: entering");26 27 if (m == NULL) {28 owl_function_debugmsg("owl_log_message: passed null message");29 return;30 }31 32 g_free(owl_perlconfig_call_with_message("BarnOwl::Logging::log", m));33 34 owl_function_debugmsg("owl_log_message: leaving");35 }36 19 37 20 static void owl_log_error_main_thread(gpointer data)
Note: See TracChangeset
for help on using the changeset viewer.