// The logging tool is primarily for managing administrative functions such that administrators can view the app logs and issue commands that might generate administrative logging.
Meteor.log=newLogger();
Logs=newMongo.Collection('Logs');
letlogMongo=newLoggerMongo(Meteor.log,{
collection:Logs
});
logMongo.enable({
enable:true,
client:false,/* Client calls are not executed on the client. */
server:true/* Calls from the client will be executed on the server. */