# HG changeset patch # User Matthew Wild # Date 1294322517 0 # Node ID ba3ab4ecce34e840c468f433a159319d0861eed8 # Parent 00ce990713685d91c4e80a079fce712d460f2261 storagemanager: Fix log message (s/internal/null/) diff -r 00ce99071368 -r ba3ab4ecce34 core/storagemanager.lua --- 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;