- Getting Started
- Demo apps
- How To
- Notifications
- Using VB Expressions
- Designing your App
- Designing your app with Autopilot
- Events and Rules
- Rule: If-Then-Else
- Rule: Open a Page
- Rule: Open URL
- Rule: Close Pop-Over/Bottom Sheet
- Rule: Log Message
- Rule: Show Message
- Rule: Show/Hide Spinner
- Rule: Set Value
- Rule: Start Process
- Rule: Reset Values
- Rule: Upload File to Storage Bucket
- Rule: Download File From Storage Bucket
- Rule: Create Entity Record
- Rule: Update Entity Record
- Rule: Delete Entity Record
- Rule: Add to Queue
- Rule: Trigger workflow
- Rule: Submit Action
- Leveraging RPA in your App
- Leveraging Entities in Your App
- Leveraging Queues in Your App
- Leveraging Media in your app
- Leveraging Actions in your app
- Leveraging Connections in your apps
- Apps in Studio Web
- Application Lifecycle Management (ALM)
- UiPath® First-Party Apps
- Basic Troubleshooting Guide

Apps User Guide
Rule: Log Message
Excessively printing logs in the browser console can degrade performance.
You can select three log level options:
-
Info - displays the message in blue, with an info icon. This is the default option.
-
Trace - displays the message in black, with a trace icon.
-
Error - displays the message in red, with an error icon.
When previewing an app, logging is enabled and set to the Info level by default.
When running a deployed app, logging is disabled by default.
You can modify the log level when running an app as follows:
-
After launching the app, open the developer tools in your browser.
-
Select Console.
-
Type the following in the console:
-
sessionStorage.setItem("apps.runtime.loglevel", "trace")
to set the runtime log level to Trace.This setting prints all logs to the console.
-
sessionStorage.setItem("apps.runtime.loglevel", "info")
to set the runtime log level to Info.This setting prints only Info and Error messages.
-