Software /
code /
prosody
Changeset
4077:ba3ab4ecce34
storagemanager: Fix log message (s/internal/null/)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 06 Jan 2011 14:01:57 +0000 |
parents | 4076:00ce99071368 |
children | 4078:05a58497a903 4079:f72f237f3c0b |
files | core/storagemanager.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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;