X-Git-Url: http://git.alex.org.uk diff --git a/include/log.h b/include/log.h index 03b5560..1c31201 100644 --- a/include/log.h +++ b/include/log.h @@ -40,8 +40,15 @@ #include -void guacd_log_info(guac_client* client, const char* format, va_list args); -void guacd_log_error(guac_client* client, const char* format, va_list args); + +void vguacd_log_info(const char* format, va_list args); +void vguacd_log_error(const char* format, va_list args); +void guacd_log_info(const char* format, ...); +void guacd_log_error(const char* format, ...); + +void guacd_client_log_info(guac_client* client, const char* format, va_list args); +void guacd_client_log_error(guac_client* client, const char* format, va_list args); + void guacd_log_guac_error(const char* message); void guacd_client_log_guac_error(guac_client* client, const char* message);