Migrate files to Dalamud.Logging namespace Remove Log.LogX methods.

This commit is contained in:
Raymond 2021-08-09 10:03:13 -04:00
parent 6c56260f45
commit 8fd119dde8
16 changed files with 128 additions and 252 deletions

View file

@ -6,10 +6,9 @@ using System.Numerics;
using System.Runtime.InteropServices;
using System.Text;
using Dalamud.Configuration.Internal;
using Dalamud.Game.Command;
using Dalamud.Interface.Colors;
using Dalamud.Interface.Windowing;
using Dalamud.Logging.Internal;
using ImGuiNET;
using Serilog;
using Serilog.Events;
@ -307,7 +306,7 @@ namespace Dalamud.Interface.Internal.Windows
try
{
this.historyPos = -1;
for (int i = this.history.Count - 1; i >= 0; i--)
for (var i = this.history.Count - 1; i >= 0; i--)
{
if (this.history[i] == this.commandText)
{