Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Client/PersonalLogManagerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ public async Task SendPersonalLogToManager(
new(MyLogInfoKey.Date, date),
new(MyLogInfoKey.Time, time),
new(MyLogInfoKey.TimeZone, timeZone),
new(MyLogInfoKey.Template, template)
new(MyLogInfoKey.Template, template),
new(MyLogInfoKey.Data, data)
];

logger.Info(
Expand Down
1 change: 1 addition & 0 deletions Logging/MyLogInfoKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public sealed class MyLogInfoKey : LogInfoKey

}

public static LogInfoKey Data => new MyLogInfoKey(nameof(Data));
public static LogInfoKey Date => new MyLogInfoKey(nameof(Date));
public static LogInfoKey MaxAge => new MyLogInfoKey(nameof(MaxAge));
public static LogInfoKey Password => new MyLogInfoKey(nameof(Password));
Expand Down