Skip to content

Commit d6e4cc9

Browse files
Merge pull request #22 from MurdoMaclachlan/dev
Fix crash on creating new log entry
2 parents 14e194c + 26c0b99 commit d6e4cc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smooth_logger/Logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def new(self,
280280
)
281281

282282
entry: LogEntry = self.__create_log_entry(message, output, scope)
283-
self.__display_log_entry(entry, scope, notify, is_bar, print_to_console)
283+
self.__display_log_entry(entry, scope, notify, print_to_console)
284284

285285
self.__write_logs = self.__write_logs or output
286286
self.is_empty = False

0 commit comments

Comments
 (0)