bigbluebutton-Github/bigbluebutton-html5/imports/api/log-client/server/methods/logClient.js
2017-06-05 16:12:06 -03:00

10 lines
216 B
JavaScript

import Logger from '/imports/startup/server/logger';
const logClient = () => {
const args = Array.prototype.slice.call(arguments, 1);
Logger.log(arguments[0], 'Client Log', args);
};
export default logClient;