updated NLog to v5
fixed most of issues with world creating/loading fixed log window lags fixed some compiler warnings fixed empty log files creating fixed logging performance added better logging of load process commands autocomplete in torch GUI chat in torch GUI now has entered history (like console, use up/down arrows) abstraction of instance manager session name now correctly displaying in torchSessionManager messages TorchSession now has loaded world property (as torch now has more control about world load process) now only dedicated config locks after session start
This commit is contained in:
13
Torch.Server/ViewModels/LogViewerViewModel.cs
Normal file
13
Torch.Server/ViewModels/LogViewerViewModel.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Windows.Media;
|
||||
|
||||
namespace Torch.Server.ViewModels;
|
||||
|
||||
public class LogViewerViewModel : ViewModel
|
||||
{
|
||||
public ObservableCollection<LogEntry> LogEntries { get; set; } = new();
|
||||
}
|
||||
|
||||
|
||||
public record LogEntry(DateTime Timestamp, string Message, SolidColorBrush Color);
|
Reference in New Issue
Block a user