0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

chore: debug messages in loader (#5152)

This commit is contained in:
Marc Bernard 2025-03-22 07:24:57 +01:00 committed by GitHub
parent dbe6a76eab
commit 50f20aa004
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 3 deletions

View file

@ -0,0 +1,5 @@
---
'@verdaccio/loaders': patch
---
chore: debug messages in loader

View file

@ -55,7 +55,7 @@ export async function asyncLoadPlugin<T extends pluginUtils.Plugin<T>>(
const { config } = pluginOptions;
let plugins: PluginType<T>[] = [];
for (let pluginId of pluginsIds) {
debug('looking for plugin %o', pluginId);
debug('>>> looking for plugin %o', pluginId);
if (typeof config.plugins === 'string') {
let pluginsPath = config.plugins;
debug('plugin path %s', pluginsPath);
@ -90,6 +90,7 @@ export async function asyncLoadPlugin<T extends pluginUtils.Plugin<T>>(
);
continue;
}
debug('>>> plugin is running and passed sanity check');
plugins.push(plugin);
logger.info(
{ prefix, pluginId, pluginCategory },
@ -119,6 +120,7 @@ export async function asyncLoadPlugin<T extends pluginUtils.Plugin<T>>(
logger.error({ content: pluginName }, "@{content} doesn't look like a valid plugin");
continue;
}
debug('>>> plugin is running and passed sanity check');
plugins.push(plugin);
logger.info(
{ prefix, pluginId, pluginCategory },
@ -134,7 +136,7 @@ export async function asyncLoadPlugin<T extends pluginUtils.Plugin<T>>(
}
}
}
debug('%s plugins found: %s', pluginCategory, plugins.length);
debug('%o plugins found: %o', pluginCategory, plugins.length);
return plugins;
}

View file

@ -28,7 +28,15 @@ export function tryLoad<T>(path: string, onError: any): PluginType<T> | null {
return require(path) as PluginType<T>;
} catch (err: any) {
if (err.code === MODULE_NOT_FOUND) {
debug('plugin %s not found', path);
debug('"require" failed for plugin %s', path);
// If loading fails, because a dependency is missing,
// we want to log the error message and require stack
// to see where the missing dependency is.
const message = err.message.replace(/\\\\/g, '\\').split('\n');
if (!message[0].includes(path)) {
debug('%o', message[0]); // error message
debug('%o', message.slice(1)); // stack trace
}
return null;
}
onError({ err: err.msg }, 'error loading plugin @{err}');