Skip to content

Commit

Permalink
droplet: disable LLL_NOTICE logging in release
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Jul 8, 2024
1 parent 698cbcf commit f35a221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion droplet/src/droplet.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ int main(int argc, const char** argv)
#ifndef NDEBUG
lws_set_log_level(LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE, NULL);
#else
lws_set_log_level(LLL_ERR | LLL_WARN | LLL_NOTICE, NULL);
lws_set_log_level(LLL_ERR | LLL_WARN, NULL);
#endif

struct lws_http_mount mount = { 0 };
Expand Down

0 comments on commit f35a221

Please sign in to comment.