/// <summary>
 /// Initializes a new instance of the PSLogSettings class.
 /// </summary>
 public PSLogSettings(LogSettings logSettings)
 {
     this.Enabled = logSettings.Enabled;
     this.Category = logSettings.Category;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the PSLogSettings class.
 /// </summary>
 public PSLogSettings(LogSettings logSettings)
 {
     this.Enabled = logSettings.Enabled;
     this.Category = logSettings.Category;
     this.RetentionPolicy = logSettings.RetentionPolicy;
 }