Update LogDto.cs

fix: issue resolved, where content saving breaks due to saving to umbracoLog with error message like that: String or binary data would be truncated in table 'dto.umbracoLog', column 'parameters'. Truncated value: 'English (United States), German (Switzerland), French (France), Italian (Italy), Arabic (Iraq), Pers'...
This commit is contained in:
marwaldv
2023-11-20 17:36:07 +01:00
committed by Matthew-Wise
parent 98e9a300bc
commit 7acce83c83

View File

@@ -55,6 +55,6 @@ internal class LogDto
/// </summary>
[Column("parameters")]
[NullSetting(NullSetting = NullSettings.Null)]
[Length(500)]
[Length(4000)]
public string? Parameters { get; set; }
}