Skip to main content
Sign in
Snippets Groups Projects
Commit 09f59ba3 authored by Andy Green's avatar Andy Green
Browse files

lwjp-conf: quieten init logging

parent 1f37ec0b
No related branches found
No related tags found
No related merge requests found
...@@ -233,7 +233,7 @@ lws_protocol_init(struct lws_context *context) ...@@ -233,7 +233,7 @@ lws_protocol_init(struct lws_context *context)
pvo = pvo1->options; pvo = pvo1->options;
while (pvo) { while (pvo) {
lwsl_notice( lwsl_debug(
" vhost \"%s\", " " vhost \"%s\", "
"protocol \"%s\", " "protocol \"%s\", "
"option \"%s\"\n", "option \"%s\"\n",
...@@ -242,14 +242,14 @@ lws_protocol_init(struct lws_context *context) ...@@ -242,14 +242,14 @@ lws_protocol_init(struct lws_context *context)
pvo->name); pvo->name);
if (!strcmp(pvo->name, "default")) { if (!strcmp(pvo->name, "default")) {
lwsl_notice("Setting default " lwsl_info("Setting default "
"protocol for vh %s to %s\n", "protocol for vh %s to %s\n",
vh->name, vh->name,
vh->protocols[n].name); vh->protocols[n].name);
vh->default_protocol_index = n; vh->default_protocol_index = n;
} }
if (!strcmp(pvo->name, "raw")) { if (!strcmp(pvo->name, "raw")) {
lwsl_notice("Setting raw " lwsl_info("Setting raw "
"protocol for vh %s to %s\n", "protocol for vh %s to %s\n",
vh->name, vh->name,
vh->protocols[n].name); vh->protocols[n].name);
...@@ -687,7 +687,7 @@ lws_create_vhost(struct lws_context *context, ...@@ -687,7 +687,7 @@ lws_create_vhost(struct lws_context *context,
mounts = info->mounts; mounts = info->mounts;
while (mounts) { while (mounts) {
(void)mount_protocols[0]; (void)mount_protocols[0];
lwsl_notice(" mounting %s%s to %s\n", lwsl_info(" mounting %s%s to %s\n",
mount_protocols[mounts->origin_protocol], mount_protocols[mounts->origin_protocol],
mounts->origin, mounts->mountpoint); mounts->origin, mounts->mountpoint);
... ...
......
...@@ -380,7 +380,7 @@ lejp_vhosts_cb(struct lejp_ctx *ctx, char reason) ...@@ -380,7 +380,7 @@ lejp_vhosts_cb(struct lejp_ctx *ctx, char reason)
a->pvo->next = a->info->pvo; a->pvo->next = a->info->pvo;
a->info->pvo = a->pvo; a->info->pvo = a->pvo;
a->pvo->name = a->p; a->pvo->name = a->p;
lwsl_notice(" adding protocol %s\n", a->p); lwsl_info(" adding protocol %s\n", a->p);
a->p += n; a->p += n;
a->pvo->value = a->p; a->pvo->value = a->p;
a->pvo->options = NULL; a->pvo->options = NULL;
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment