Mercurial > prosody-modules
comparison mod_mam/mod_mam.lua @ 2030:66156e4d5274
mod_mam: This was meant to be a debug message
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 22 Jan 2016 16:04:32 +0100 |
parents | ae98bb884110 |
children | acf86edeb1cc |
comparison
equal
deleted
inserted
replaced
2029:3e00cd4a02bc | 2030:66156e4d5274 |
---|---|
43 module:log("debug", "Attempt to open archive storage returned a valid driver but it does not seem to implement the storage API"); | 43 module:log("debug", "Attempt to open archive storage returned a valid driver but it does not seem to implement the storage API"); |
44 module:log("debug", "mod_%s does not support archiving", archive._provided_by or archive.name and "storage_"..archive.name.."(?)" or "<unknown>"); | 44 module:log("debug", "mod_%s does not support archiving", archive._provided_by or archive.name and "storage_"..archive.name.."(?)" or "<unknown>"); |
45 else | 45 else |
46 module:log("debug", "Attempt to open archive storage returned null driver"); | 46 module:log("debug", "Attempt to open archive storage returned null driver"); |
47 end | 47 end |
48 module:log("info", "See https://prosody.im/doc/storage and https://prosody.im/doc/archiving for more information"); | 48 module:log("debug", "See https://prosody.im/doc/storage and https://prosody.im/doc/archiving for more information"); |
49 module:log("info", "Using in-memory fallback archive driver"); | 49 module:log("info", "Using in-memory fallback archive driver"); |
50 archive = module:require "fallback_archive"; | 50 archive = module:require "fallback_archive"; |
51 end | 51 end |
52 | 52 |
53 local cleanup; | 53 local cleanup; |