changeset 3658:02a1615d0392

mod_http_upload: Add hint about checking that the base URL is reachable
author Kim Alvefur <zash@zash.se>
date Thu, 29 Aug 2019 23:30:55 +0200
parents 3fb0add97cdb
children bb8a6df5ecba
files mod_http_upload/mod_http_upload.lua
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_http_upload/mod_http_upload.lua	Thu Aug 29 23:29:13 2019 +0200
+++ b/mod_http_upload/mod_http_upload.lua	Thu Aug 29 23:30:55 2019 +0200
@@ -405,7 +405,8 @@
 	};
 });
 
-module:log("info", "URL: <%s>; Storage path: %s", module:http_url(), storage_path);
+module:log("info", "URL: <%s> - Ensure this can be reached by users", module:http_url());
+module:log("info", "Storage path: '%s'", storage_path);
 
 function module.command(args)
 	datamanager = require "core.storagemanager".olddm;