Skip to content

Commit

Permalink
feat: Enabled ipc transport again, fixes #395
Browse files Browse the repository at this point in the history
  • Loading branch information
megahertz committed Jan 23, 2024
1 parent 4c719e2 commit c35ba87
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/node/createDefaultLogger.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const ErrorHandler = require('./ErrorHandler');
const EventLogger = require('./EventLogger');
const transportConsole = require('./transports/console');
const transportFile = require('./transports/file');
const transportIpc = require('./transports/ipc');
const transportRemote = require('./transports/remote');

module.exports = createDefaultLogger;
Expand All @@ -20,6 +21,7 @@ function createDefaultLogger({ dependencies, initializeFn }) {
transportFactories: {
console: transportConsole,
file: transportFile,
ipc: transportIpc,
remote: transportRemote,
},
variables: {
Expand Down

0 comments on commit c35ba87

Please sign in to comment.