mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
"use strict";
|
|
|
|
module.exports = function(options, imports, register) {
|
|
imports.connect.useStart(imports.connect.getModule().logger(options.format || "tiny"));
|
|
register(null, {
|
|
"connect.logger": {}
|
|
});
|
|
};
|