Skip to content

Commit a8a8a13

Browse files
committed
Removed a console.log
1 parent f779a5f commit a8a8a13

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nasriya/atomix",
3-
"version": "1.0.13",
3+
"version": "1.0.14",
44
"description": "Composable helper functions for building reliable systems",
55
"keywords": [
66
"networking",

src/tools/events/EventEmitter.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ export class EventEmitter {
116116

117117
// Handle normal events
118118
for (let i = 0; i < events.handlers.normal.index; i++) {
119-
console.log(`Running handler [${i}] for event [${events.name}]`);
120119
const handler = (events.handlers.normal.handlers.get(i) || events.handlers.normal.onceHandlers.get(i))!;
121120
if (!handler) { continue }
122121
await this.#_runner.runHandler(handler, events.name, ...args);

0 commit comments

Comments
 (0)