mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 21:33:39 +01:00
Fix missing plugin names in log, filter quirk
- Re-add the [PluginName] tag to plugin log messages - Remove source prepending from the SerilogEventSink - Force a filter refresh on enabling/disabling log filtering - Convert ModuleLog to properly tag its messages with SourceContext
This commit is contained in:
parent
49793a1f17
commit
5dd883db25
4 changed files with 44 additions and 22 deletions
|
|
@ -152,7 +152,10 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
// Filter menu
|
||||
if (ImGui.BeginPopup("Filters"))
|
||||
{
|
||||
ImGui.Checkbox("Enabled", ref this.isFiltered);
|
||||
if (ImGui.Checkbox("Enabled", ref this.isFiltered))
|
||||
{
|
||||
this.Refilter();
|
||||
}
|
||||
|
||||
if (ImGui.InputTextWithHint("##filterText", "Text Filter", ref this.textFilter, 255, ImGuiInputTextFlags.EnterReturnsTrue))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue