This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2024-07-22 16:21:28.091 V [1f3cbe0e][RemoteDebugger] Received page change notice for app 'PID:637' but the listing has not changed. Ignoring. | |
2024-07-22 16:21:28.091 V [1f3cbe0e][RemoteDebugger] Page changed: { | |
2024-07-22 16:21:28.091 V "1": { | |
2024-07-22 16:21:28.091 V "WIRTitleKey": "Shopping Cart | Lamps Plus", | |
2024-07-22 16:21:28.091 V "WIRTypeKey": "WIRTypeWebPage", | |
2024-07-22 16:21:28.091 V "WIRURLKey": "https://www.lampsplus.com/cart/", | |
2024-07-22 16:21:28.091 V "WIRPageIdentifierKey": 1, | |
2024-07-22 16:21:28.091 V "WIRHostApplicationIdentifierKey": "PID:637", | |
2024-07-22 16:21:28.091 V "WIRConnectionIdentifierKey": "5029914a-e8c6-4a17-bbf3-5daa93e58f4f" | |
2024-07-22 16:21:28.091 V } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function cinfo() { | |
COLOR='\033[01;33m' # bold yellow | |
RESET='\033[00;00m' # normal white | |
MESSAGE=${@:-"${RESET}Error: No message passed"} | |
echo -e "${COLOR}${MESSAGE}${RESET}" | |
} | |
## | |
cinfo "Local Provisioning detected" | |
#A couple of tools that are not on my base box |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function cinfo() { | |
COLOR='\033[01;33m' # bold yellow | |
RESET='\033[00;00m' # normal white | |
MESSAGE=${@:-"${RESET}Error: No message passed"} | |
echo -e "${COLOR}${MESSAGE}${RESET}" | |
} | |
## | |
cinfo "Local Provisioning detected" | |
#A couple of tools that are not on my base box |