mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
feat: configurable log path
This commit is contained in:
parent
4264db8d67
commit
cc4a0652c2
6 changed files with 40 additions and 23 deletions
|
|
@ -28,6 +28,7 @@ public record DalamudStartInfo : IServiceType
|
|||
{
|
||||
this.WorkingDirectory = other.WorkingDirectory;
|
||||
this.ConfigurationPath = other.ConfigurationPath;
|
||||
this.LogName = other.LogName;
|
||||
this.PluginDirectory = other.PluginDirectory;
|
||||
this.DefaultPluginDirectory = other.DefaultPluginDirectory;
|
||||
this.AssetDirectory = other.AssetDirectory;
|
||||
|
|
@ -61,6 +62,11 @@ public record DalamudStartInfo : IServiceType
|
|||
/// </summary>
|
||||
public string? ConfigurationPath { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the name of the log file.
|
||||
/// </summary>
|
||||
public string? LogName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the path to the directory for installed plugins.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue