static void do_output()

in watchman.c [36:42]


static void do_output(const char* category, const char *msg, va_list params) {
    if (error_handle != NULL) {
        fprintf(error_handle, "%s: ", category);
        vfprintf(error_handle, msg, params);
        fprintf(error_handle, "\n");
    }
}