Creating application logs for your processes
When developing processes, especially background processes, you want to keep track of the progress of your process. For small processes, this can be achieved with error handling. For larger processes, you might want to add application logs to save some information about the current status of your process.
Skip to “How to create an application log”
What is an application log
Application logs are records of the applicationlogs
table, used in almost all components to write a message about the current status of a process. These logs are grouped in a data source, have a message and have a type. Usually, they also have a record reference.
You can consume the concept N_ApplicationLog
, and the features N_Log data source
(which comes with the concept N_LogDataSource
), N_Log message
(string
) and N_Log type
(which comes with the enumeration N_Applicatielogniveau
) to start creating application logs.
Application logs in the Concept manager
What is a data source
The data source of an application log allows for:
- Categorizing your logs per business domain or process
- Subscribing to data sources and receiving mails when logs are added
It is a record in the datasources
table, and is required to exist before you can add an application log. Usually, one data source exists per component and is distinguished by a component-specific check box.
In Novulo Kassa, the concept N_LogDataSource is expanded with the check box “Is for point of sale”, allowing Novulo Kassa to ensure the existence of a data source where
is_for_point_of_sale.equals(yesno:load(1))
. All application logs from Novulo Kassa are created with this data source
What is a log type
The log types of application logs define the urgency of an application log. This enumeration consists of “Critical error” (most urgent), “Error”, “Warning”, “Information” and “Verbose” (least urgent). When subscribing to a data source, you can specify which urgency you want to receive e-mails about.
- Critical error: this error causes full non-availability of the application. (very rare)
- Error: an error occurred during the process. It could stop the full process, or only affect a specific part of the process. It does require attention.
- Example: a mail cannot be sent as the e-mail address is invalid.
- Warning: something happens that requires attention, but the process has not been interrupted.
- Example: an automated process finishes, but take longer than expected.
- Example: a user explicitly chooses to ignore a warning message
- Information: to log an event that is supposed to happen
- Example: register the start and completion of a night run of an automated purchase generation process
- Verbose: to log extensive information from activities
- Example: all suppliers and products that are purchased in an automated night run
The application log type enumeration in the Concept manager, added automatically when
N_Log type
is added to N_ApplicationLog
What is a record reference
Usually an application log contains a message about a specific record. For instance, if an invoice could not be finalized, you’d want to know which invoice contains the issue.
To easily find the record that your log applies to, you can set the record reference field, so the user can see, and navigate to, the relevant record.
How to create an application log
To create an application log for your process, you want to:
- Ensure that a data source exists
- Decide on the message for your log and an appropriate log type
- Use the consumed process component “N_Application log - Write log with dynamic record reference”
In this example, I created a reusable process component that creates log based on a parameter
sales
. As you can see, I start by ensuring that a data source exists, and then write the log with the consumed process component.
Ensuring a data source
Usually, you want to have one data source for all the logging of all processes in one component; so one data source per component. “Ensuring” its existence means:
- Use a CacheValue action to find whether the data source exists already
- If it exists, return the found data source
- If it doesn’t exist, add the data source
Typical lay-out of a process that ensures a data source. This process component does not have a parameter, and has the return value
data_source
along with the defaults success
and error
.
Typically, we add a component-specific check box to the data source page, so we can use that check box to ensure that our component-specific data source exists. The find action will look up the first data source where the check box equals yesno:load(1)
, and if it doesn’t exist, the add record action will add a data source with the check box set to yesno:load(1)
. Don’t forget to also fill in the name!
If you want to share a data source between multiple components, the check box, or other deciding property of the data source, has to be produced in the Reference Architecture.
On this virtual page of the concept
N_LogDataSource
, the check box “Unique check box for my component” is added, so the processes in this component will add logs to the Data source where this check box is checked.
Creating a log
After setting up your data source, you can decide on the details of your application log. Depending on the situation in your process, you might want to write a warning or maybe a critical error. Usually, for background processes, we write verbose logs to keep track of what the background processes have been doing.
The process “N_Application log - Write log with dynamic record reference” has 5 parameters:
log_message
with typeString
; enter your message here. You can create any string expression. A good example is counting how many records have been processed and displaying that in your messagelog_type
with typeNApplicatielogniveauSr29849
; select the type for your messagedata_source
with typeN_LogDataSource
; enter your ensured data sourcerecord_reference
with typeMixed
; enter whichever record is relevant to your application log!This can be of any record type. If your log is about a failed generation of a document, enter the N_Activity record. If your log is about a failed conversion of a sales, enter the N_Sales record, etc.commit
with typeBoolean
; entertrue
if you want the log is complete and can be committed to the database. Enterfalse
if you want to finish the log record yourself. In this case, the log record remains locked, so you can update more fields on it, make other changes, and then commit and unlock the record
Example of the parameters of the consumed process. Because in my example, I created the extra process layer “Sales - Write application log”, I just reuse the parameters I defined there.