aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-11-27 22:02:30 +0000
committerMatthew Wild <mwild1@gmail.com>2010-11-27 22:02:30 +0000
commit846b1120ca5cacfc1b906bd24e817318dd9cb364 (patch)
treeb0c97a1587e88b7678e4318ec77db75833f7c7ce /core
parent22fdcc08f8418d1e42fbc2107bb9e4d75a1d41ae (diff)
downloadprosody-846b1120ca5cacfc1b906bd24e817318dd9cb364.tar.gz
prosody-846b1120ca5cacfc1b906bd24e817318dd9cb364.zip
storagemanager: Only show fallback warning if storage was configured to use another backend and it failed
Diffstat (limited to 'core')
-rw-r--r--core/storagemanager.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua
index 3501d2c0..0857baf4 100644
--- a/core/storagemanager.lua
+++ b/core/storagemanager.lua
@@ -66,8 +66,10 @@ function open(host, store, typ)
driver_name = config.get(host, "core", "default_storage");
driver = load_driver(host, driver_name);
if not driver then
+ if storage or driver_name then
+ log("warn", "Falling back to default driver for %s storage on %s", store, host);
+ end
driver_name = "internal";
- log("warn", "Falling back to default driver for %s storage on %s", store, host);
driver = load_driver(host, driver_name);
end
end