+15
-8
lines changedFilter options
+15
-8
lines changed Original file line number Diff line number Diff line change
@@ -74,7 +74,9 @@ static ExceptionEntity GetEntity(Exception ex)
74
74
entity.ThreadId = Thread.CurrentThread.ManagedThreadId;
75
75
entity.ApplicationName = Schema.Current.ApplicationName;
76
76
entity.HResult = ex.HResult;
77
-
77
+
entity.Form = new BigStringEmbedded();
78
+
entity.QueryString = new BigStringEmbedded();
79
+
entity.Session = new BigStringEmbedded();
78
80
79
81
entity.Environment = CurrentEnvironment;
80
82
try
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ public string ExceptionMessage
46
46
47
47
public int ExceptionMessageHash { get; private set; }
48
48
49
-
BigStringEmbedded stackTrace;
49
+
BigStringEmbedded stackTrace = new BigStringEmbedded();
50
50
[NotifyChildProperty]
51
51
public BigStringEmbedded StackTrace
52
52
{
@@ -98,16 +98,16 @@ public BigStringEmbedded StackTrace
98
98
public string? UserHostName { get; set; }
99
99
100
100
[NotifyChildProperty]
101
-
public BigStringEmbedded Form { get; set; }
102
-
101
+
public BigStringEmbedded Form { get; set; } = new BigStringEmbedded();
102
+
103
103
[NotifyChildProperty]
104
-
public BigStringEmbedded QueryString { get; set; }
105
-
104
+
public BigStringEmbedded QueryString { get; set; } = new BigStringEmbedded();
105
+
106
106
[NotifyChildProperty]
107
-
public BigStringEmbedded Session { get; set; }
107
+
public BigStringEmbedded Session { get; set; } = new BigStringEmbedded();
108
108
109
109
[NotifyChildProperty]
110
-
public BigStringEmbedded Data { get; set; }
110
+
public BigStringEmbedded Data { get; set; } = new BigStringEmbedded();
111
111
112
112
public int HResult { get; internal set; }
113
113
Original file line number Diff line number Diff line change
@@ -8,6 +8,11 @@ namespace Signum.Entities.Basics
8
8
[Serializable, EntityKind(EntityKind.System, EntityData.Transactional), TicksColumn(false), InTypeScript(Undefined = false)]
9
9
public class OperationLogEntity : Entity
10
10
{
11
+
public OperationLogEntity()
12
+
{
13
+
RebindEvents();
14
+
}
15
+
11
16
[ImplementedByAll]
12
17
public Lite<IEntity>? Target { get; set; }
13
18
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4