Fix log order
This commit is contained in:
parent
61ce0a0653
commit
b5ea242499
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ class _StatusScreenState extends State<StatusScreen> {
|
|||
final logs = await bg.Logger.getLog();
|
||||
setState(() {
|
||||
_logs.clear();
|
||||
_logs.addAll(logs.split('\n'));
|
||||
_logs.addAll(logs.split('\n').reversed);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue