Software /
code /
prosody
Diff
core/storagemanager.lua @ 4077:ba3ab4ecce34
storagemanager: Fix log message (s/internal/null/)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 06 Jan 2011 14:01:57 +0000 |
parent | 4076:00ce99071368 |
child | 4085:7699cef04740 |
line wrap: on
line diff
--- a/core/storagemanager.lua Thu Jan 06 13:56:39 2011 +0000 +++ b/core/storagemanager.lua Thu Jan 06 14:01:57 2011 +0000 @@ -99,7 +99,7 @@ local ret, err = driver:open(store, typ); if not ret then if err == "unsupported-store" then - log("debug", "Storage driver %s does not support store %s (%s), falling back to internal driver", + log("debug", "Storage driver %s does not support store %s (%s), falling back to null driver", driver_name, store, typ); ret = null_storage_driver; err = nil;