From 859c761cb6418f75bcb19d8a3a2ca1548bc8598b Mon Sep 17 00:00:00 2001 From: "Thomas B. \"dm8tbr\" Ruecker" Date: Thu, 6 Nov 2014 12:02:00 +0000 Subject: [PATCH] Be more verbose in case of fileserve off. svn path=/icecast/trunk/icecast/; revision=19265 --- src/fserve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fserve.c b/src/fserve.c index ab71772d..a4bf8e16 100644 --- a/src/fserve.c +++ b/src/fserve.c @@ -501,7 +501,7 @@ int fserve_client_create (client_t *httpclient, const char *path) config = config_get_config(); if (config->fileserve == 0) { - ICECAST_LOG_DEBUG("on demand file \"%H\" refused", fullpath); + ICECAST_LOG_DEBUG("on demand file \"%H\" refused. Serving static files has been disabled in the config", fullpath); client_send_404 (httpclient, "The file you requested could not be found"); config_release_config(); free (fullpath);