Skip to content

Commit

Permalink
Fix logging issue (#28)
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Becker <[email protected]>
  • Loading branch information
sbckr authored Aug 5, 2022
1 parent e7c3a09 commit efc7f8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ephemeral/io/tuple_streamer.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func NewCastorTupleStreamerWithWriterFactory(l *zap.SugaredLogger, tt castor.Tup
if err != nil {
return nil, fmt.Errorf("error creating header: %v", err)
}
loggerWithContext.Debugw("Generated tuple file header %x", headerData)
loggerWithContext.Debugf("Generated tuple file header: %x", headerData)
return &CastorTupleStreamer{
logger: loggerWithContext,
pipeWriter: pipeWriter,
Expand Down

0 comments on commit efc7f8d

Please sign in to comment.