error_log
- Last UpdatedNov 20, 2024
- 1 minute read
The error_log table is populated with system errors and events as they occur. The system can be configured to log or ignore errors of different severities which are defined as follows :
0 = Critical errors - significant, may crash system
1 = Serious errors - will affect operation and data
2 = Partial errors - some data will be wrong
3 = Trivial errors - small adverse effect on some data
4 = Events - will not affect data or operation, information only
|
Field |
Datatype |
PK |
Nulls? |
Description |
|---|---|---|---|---|
|
logged_at |
tdatetime |
N |
N |
Date and time of entry in UTC |
|
severity |
int32 |
N |
N |
Severity: 0 = Most |
|
instance_info |
string254 |
N |
Y |
What.exe/.dll instance generated error |
|
object_name |
string80 |
N |
N |
Which object generated error |
|
object_section |
string80 |
N |
N |
Which section of object |
|
description |
string254 |
N |
N |
Program’s description of problem |
|
system_msg |
nvarchar(max) |
N |
Y |
System error msg if applicable |
|
log_ID |
ID 1 |
Y |
N |
Arbitrary ID, just so there’s a primary key |