mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
vhost: dont log null origin
This commit is contained in:
parent
e2f42387b7
commit
3ff6a9d462
1 changed files with 2 additions and 1 deletions
|
@ -867,7 +867,8 @@ lws_create_vhost(struct lws_context *context,
|
|||
(void)mount_protocols[0];
|
||||
lwsl_info(" mounting %s%s to %s\n",
|
||||
mount_protocols[mounts->origin_protocol],
|
||||
mounts->origin, mounts->mountpoint);
|
||||
mounts->origin ? mounts->origin : "none",
|
||||
mounts->mountpoint);
|
||||
|
||||
mounts = mounts->mount_next;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue