Skip to content

Commit

Permalink
fix: log messages to the bottom of the output window instead of the t…
Browse files Browse the repository at this point in the history
…op (#946)

In the HNN Dev meeting on 2024-11-25, we agreed that we will try to switch to the "reverse order" display of the logging, using a separate issue. Merging this one.
  • Loading branch information
gtdang authored Nov 25, 2024
1 parent cbc86d2 commit 4149234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hnn_core/gui/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def emit(self, record):
'output_type': 'stream',
'text': formatted_record + '\n'
}
self.out.outputs = (new_output, ) + self.out.outputs
self.out.outputs = self.out.outputs + (new_output, )


class HNNGUI:
Expand Down

0 comments on commit 4149234

Please sign in to comment.