Log
(3 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | This command is a [[ | + | This command is a [[Log Commands|Log Command]]. This command writes a message to a log file. |
'''Log:''' The message that is being logged. | '''Log:''' The message that is being logged. | ||
Line 8: | Line 8: | ||
The log folder can be located at: C:\Users\YOUR WINDOWS USERNAME HERE\AppData\Roaming\UBot Studio\Log | The log folder can be located at: C:\Users\YOUR WINDOWS USERNAME HERE\AppData\Roaming\UBot Studio\Log | ||
− | Dated log .txt log files are created to log each | + | Dated log .txt log files are created to log each bot's various activities: |
Line 34: | Line 34: | ||
− | [[File: | + | [[File:bllog.jpg]] |
Line 42: | Line 42: | ||
− | [[File: | + | [[File:bllog0.jpg]] |
Latest revision as of 14:35, 16 August 2015
This command is a Log Command. This command writes a message to a log file.
Log: The message that is being logged.
The log file for the log command is located in your roaming folder found here: C:\Users\YOUR WINDOWS USERNAME HERE\AppData\Roaming\UBot Studio
The log folder can be located at: C:\Users\YOUR WINDOWS USERNAME HERE\AppData\Roaming\UBot Studio\Log
Dated log .txt log files are created to log each bot's various activities:
Each message logged is also available for viewing through the debugger.
[edit] Example
set(#page were on,$scrape attribute(<id="hplogo">,"alt"),"Global") if($comparison(#page were on,"=","Google")) { then { log("Webpage is Google.com") } else { log("Webpage is NOT Google.com") } }
Running the script will scrape the required element, which indicates the webpage the browser is on. Once the element is scraped, it is inserted into the log command through a variable and logged in the log file.
Opening the log file shows the following logs to show that the browser is on the correct webpage:
2015-02-15 13:19:34 [LOG] Webpage is Google.com
Since the browser is not on the expected webpage and the correct element was not detected, the following message is logged on the second run:
2015-02-15 13:19:34 [LOG] Webpage is NOT Google.com