Skip to content

Commit

Permalink
1.0.2 -- Replace deprecated function
Browse files Browse the repository at this point in the history
  • Loading branch information
Elschnagoo committed Jul 30, 2024
1 parent 0af30e7 commit 02f5d5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grandlinex/bundle-elogger",
"version": "1.0.1",
"version": "1.0.2",
"description": "",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion src/class/ELogger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default class ELogger extends CoreLogger {
throw new Error('No log path');
}
this.logError = error;
log.transports.file.resolvePath = () => Path.join(path, 'main.log');
log.transports.file.resolvePathFn = () => Path.join(path, 'main.log');
// this.logger = log.scope(scope);
this.logger = new Map<string, log.LogFunctions>();

Expand Down

0 comments on commit 02f5d5d

Please sign in to comment.