We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d819ba2 commit 8174483Copy full SHA for 8174483
bootstrap.js
@@ -27,4 +27,6 @@ keydb.log = function()
27
}
28
29
var console = {log: keydb.log} // alias keydb.log to console.log
30
-var redis = keydb; // Alias
+var redis = keydb; // Alias
31
+
32
+keydb.log("verbose", "ModJS firmware v0.1.0 initialized");
module.cpp
@@ -386,6 +386,8 @@ extern "C" int __attribute__((visibility("default"))) RedisModule_OnLoad(RedisMo
386
g_jscontext = new JSContext();
387
g_jscontext->initialize();
388
389
+ RedisModule_Log(g_ctx, "warning", "Initialized ModJS v0.1.0");
390
391
// Run our bootstrap.js code
392
{
393
Dl_info dlInfo;
0 commit comments