You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
354 B

#include "webfuse_provider/impl/lws_log.h"
#include <stdbool.h>
#include <libwebsockets.h>
#define WFP_LWSLOG_DISABLE 0
static bool wfp_impl_lwslog_is_diabled = false;
void wfp_impl_lwslog_disable(void)
{
if (!wfp_impl_lwslog_is_diabled)
{
lws_set_log_level(WFP_LWSLOG_DISABLE, NULL);
wfp_impl_lwslog_is_diabled = true;
}
}