1
0
Fork 0
auth.rxbn.de/bin/cli/cmds/print_cached_log.js

15 lines
277 B
JavaScript
Raw Normal View History

2019-06-17 00:28:44 +00:00
/*
* This file is part of the authRXBN single sign-on package.
*
* (c) Ruben Meyer <contact@rxbn.de>
*/
module.exports = {
'command': 'logs',
'description': 'output logs',
'action': (args, cb) => {
2019-09-25 18:21:00 +00:00
console.log(JSON.stringify(global['gds'].cache.logs));
2019-06-17 00:28:44 +00:00
cb();
}
};