Skip to content

Commit

Permalink
update logs
Browse files Browse the repository at this point in the history
  • Loading branch information
benStre committed Jan 25, 2024
1 parent 21b3ff7 commit bc208b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1058,7 +1058,7 @@ export class Runtime {
.then(finish)
.catch(e => {
if (wait_for_result) reject(e);
else console.error("Error sending datex block", e);
else logger.debug("Error sending datex block (flood)");
});
}
// send to receivers
Expand All @@ -1073,7 +1073,7 @@ export class Runtime {
.then(finish)
.catch(e => {
if (wait_for_result) reject(e);
else console.error("Error sending datex block", e);
else logger.debug("Error sending datex block to " + to_endpoint);
});
}
}
Expand Down

0 comments on commit bc208b9

Please sign in to comment.