Add version to plugin load log
This commit is contained in:
parent
e64b186527
commit
7a982555a8
@ -34,7 +34,12 @@ const loadPlugin = async (pluginPath: string, httpServer: HttpServer, args: Args
|
|||||||
try {
|
try {
|
||||||
const plugin: Plugin = require(pluginPath)
|
const plugin: Plugin = require(pluginPath)
|
||||||
plugin.activate(httpServer, args)
|
plugin.activate(httpServer, args)
|
||||||
logger.debug("Loaded plugin", field("name", path.basename(pluginPath)))
|
|
||||||
|
logger.debug(
|
||||||
|
"Loaded plugin",
|
||||||
|
field("name", path.basename(pluginPath)),
|
||||||
|
field("version", require(path.join(pluginPath, "package.json")).version || "n/a"),
|
||||||
|
)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (error.code !== "MODULE_NOT_FOUND") {
|
if (error.code !== "MODULE_NOT_FOUND") {
|
||||||
logger.warn(error.message)
|
logger.warn(error.message)
|
||||||
|
Reference in New Issue
Block a user