Software /
code /
prosody
Changeset
7325:7baf1b14defb
storagemanager: Capitalize log message
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 01 Apr 2016 15:56:12 +0200 |
parents | 7323:a1570219b865 |
children | 7326:d11701e86702 |
files | core/storagemanager.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/storagemanager.lua Mon Jan 19 14:01:11 2015 -0500 +++ b/core/storagemanager.lua Fri Apr 01 15:56:12 2016 +0200 @@ -196,7 +196,7 @@ function datamanager.users(host, datastore, typ) local driver = open(host, datastore, typ); if not driver.users then - return function() log("warn", "storage driver %s does not support listing users", driver.name) end + return function() log("warn", "Storage driver %s does not support listing users", driver.name) end end return driver:users(); end