2018-03-19 03:23:05 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
class logging {
|
2018-03-19 04:54:40 +00:00
|
|
|
static get logger () {
|
|
|
|
// Or: const {logger} = require('./logging')
|
|
|
|
return require('./console')
|
|
|
|
}
|
2018-03-19 03:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = logging
|