Home > Forum > General > Check event logs

Check event logs
0

Well, the easiest way to do it is to connect to valid SQL Server and query this table (or view).
If you have access to SQL server you can try to run such query:

SELECT TOP (100) [WEL_ID]
,[WEL_RowVersion]
,[WEL_CreatedBy]
,[WEL_UpdatedBy]
,[WEL_WFDID]
,[WEL_Level]
,[WEL_Source]
,[WEL_Category]
,[WEL_Name]
,[WEL_DateAndTime]
,[WEL_ManagedThreadID]
,[WEL_DEFID]
,[WEL_CDID]
,[WEL_ErrorGuid]
,[WEL_LogMetadata]
,[WEL_Details]
FROM [BPS_Config].[dbo].[AdminWFEventLogs]
ORDER BY WEL_ID DESC


Using ORDER BY WEL_ID DESC query will return latest 100 (SELECT TOP (100)) rows.
Check the content of WEL_Details column for detailed information about the problem.

Did you know that with WEBCON you can automate virtually any process? Even baking cookies 🍪
 
Speaking of cookies: we use the ones that are essential for our website to function properly, as well as additional ones that help us customize our content to your preferences. If you don’t mind cookies, click Accept. If you want to learn more, explore settings.
Settings