Skip to content

Commit

Permalink
fix(logging): premature stream close should be info (#2673)
Browse files Browse the repository at this point in the history
- we want to be able to correlate this behaviour with free connections for the meantime
  • Loading branch information
iainsproat authored Aug 16, 2024
1 parent 301da42 commit 9b09114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/modules/core/rest/diffDownload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default (app: Application) => {
if (err) {
switch (err.code) {
case 'ERR_STREAM_PREMATURE_CLOSE':
req.log.debug({ err }, 'Stream to client has prematurely closed')
req.log.info({ err }, 'Stream to client has prematurely closed')
break
default:
req.log.error(err, 'App error streaming objects')
Expand Down

0 comments on commit 9b09114

Please sign in to comment.