Skip to content
Snippets Groups Projects
Commit 7249ee08 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: cache decorate log

parent 1d92836c
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ export function cache<T>({
await packageCache.set(finalNamespace, finalKey, result, ttlMinutes);
return result;
} catch (err) /* istanbul ignore next */ {
logger.error(err);
logger.error({ err }, 'cache decorate error');
throw err;
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment