Skip to content

Commit

Permalink
Update Runtime/Loggers/AbstractLogger.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Yuki Kokubun <[email protected]>
  • Loading branch information
nowsprinting and Kuniwak authored May 9, 2024
1 parent 08ee7a8 commit 649f55d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Runtime/Loggers/AbstractLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace DeNA.Anjin.Loggers
/// <summary>
/// Abstract logger settings used for autopilot.
/// </summary>
public abstract class AbstractLogger : ScriptableObject, IDisposable
public abstract class AbstractLoggerSettings : ScriptableObject, IDisposable
{
#if UNITY_EDITOR
/// <summary>
Expand All @@ -21,7 +21,7 @@ public abstract class AbstractLogger : ScriptableObject, IDisposable
/// <summary>
/// Logger implementation used for autopilot.
/// </summary>
public abstract ILogger LoggerImpl { get; }
public abstract ILogger Logger { get; }

/// <inheritdoc />
public abstract void Dispose();
Expand Down

0 comments on commit 649f55d

Please sign in to comment.