Tag Link | [Log_Detail] | Category | Utility |
---|---|---|---|
Type | Process | Source Available | No |
Support | Preferred | Version | 6.0 |
Change | Unchanged | Data Source | Any |
Output Type | None | Security | Tag |
Implementation | LCAPI | Sets | Lasso 8.5, Lasso 8.0, Lasso 7.0, Lasso 6.0 |
[Log_Detail] logs a string parameter to Lasso's internal error logs flagged as a Detail message.
By default, the message will only be logged to the console. However, the global administrator can change the routing of errors in the Monitor > Errors > Setup page in Lasso Administration.
[Log_Detail] should be used to log detailed information about the operation of your tag or Web site. Detail messages are informative and do not necessarily indicate that an error has occured.
[Log_Detail: 'Message']
Required Parameters | |
---|---|
'Detail Message' | The detail message which is to be logged. |
To log format file HTTP requests as Details:
This example logs the IP address and username of each user requesting a page in a custom solution to Lasso's internal error logs with an error level of Detail.
[Log_Detail: (Client_Username) + ' at ' + (Client_IP)]
MyUser at 192.169.0.100