move debug script

This commit is contained in:
rootzoll
2021-06-24 21:33:54 +02:00
parent e85e118e5b
commit 9679bcd1f6
7 changed files with 7 additions and 7 deletions

2
FAQ.md
View File

@ -188,7 +188,7 @@ If your RaspiBlitz is not working correctly and you like to get help from the co
- SSH into your raspiblitz as admin user with your password A - SSH into your raspiblitz as admin user with your password A
- If you see the menu - use CTRL+C to get to the terminal - If you see the menu - use CTRL+C to get to the terminal
- To generate debug report run: `./XXdebugLogs.sh` - To generate debug report run: `debug`
- Then copy all output beginning with `*** RASPIBLITZ LOGS ***` and share this - Then copy all output beginning with `*** RASPIBLITZ LOGS ***` and share this
*PLEASE NOTICE: It's possible that these logs can contain private information (like IPs, node IDs, ...) - just share publicly what you feel OK with.* *PLEASE NOTICE: It's possible that these logs can contain private information (like IPs, node IDs, ...) - just share publicly what you feel OK with.*

View File

@ -87,7 +87,7 @@ During the RaspiBlitz setup process:
`sudo tail -n100 /mnt/hdd/bitcoin/debug.log` - shows the last 100 lines `sudo tail -n100 /mnt/hdd/bitcoin/debug.log` - shows the last 100 lines
`sudo systemctl status lnd` - status of the lnd service `sudo systemctl status lnd` - status of the lnd service
`sudo journalctl -f -u lnd` `sudo journalctl -f -u lnd`
`./home/admin/XXdebugLogs.sh` - debug log collection on the RaspiBlitz `debug` - debug log collection on the RaspiBlitz
--- ---

View File

@ -67,7 +67,7 @@ case $CHOICE in
# HARDWARE) # HARDWARE)
# ;; # ;;
SOFTWARE) SOFTWARE)
sudo /home/admin/XXdebugLogs.sh sudo /home/admin/config.scripts/blitz.debug.sh
echo "Press ENTER to return to main menu." echo "Press ENTER to return to main menu."
read key read key
;; ;;

View File

@ -20,7 +20,7 @@ if [ ${#openChannels} -eq 0 ]; then
echo "*** IMPORTANT **********************************" echo "*** IMPORTANT **********************************"
echo "It looks like LND is not responding." echo "It looks like LND is not responding."
echo "Still starting up, is locked or is not running?" echo "Still starting up, is locked or is not running?"
echo "Try later, try reboot or check ./XXdebugLogs.sh" echo "Try later, try reboot or run command: debug"
echo "************************************************" echo "************************************************"
echo "Press ENTER to return to main menu." echo "Press ENTER to return to main menu."
read key read key

View File

@ -53,7 +53,7 @@ function release() {
# command: debug # command: debug
function debug() { function debug() {
cd /home/admin cd /home/admin
./XXdebugLogs.sh /home/admin/config.scripts/blitz.debug.sh
} }
# command: patch # command: patch

View File

@ -220,5 +220,5 @@ echo ""
echo "*** OPTION: SHARE THIS DEBUG OUTPUT ***" echo "*** OPTION: SHARE THIS DEBUG OUTPUT ***"
echo "An easy way to share this debug output on GitHub or on a support chat" echo "An easy way to share this debug output on GitHub or on a support chat"
echo "use the following command and share the resulting link:" echo "use the following command and share the resulting link:"
echo "/home/admin/XXdebugLogs.sh | nc termbin.com 9999" echo "debug | nc termbin.com 9999"
echo "" echo ""

View File

@ -137,7 +137,7 @@ if [ "$1" = "menu" ]; then
The electrum system service is not running. The electrum system service is not running.
Please check the following debug info. Please check the following debug info.
" 8 48 " 8 48
/home/admin/XXdebugLogs.sh /home/admin/config.scripts/blitz.debug.sh
echo "Press ENTER to get back to main menu." echo "Press ENTER to get back to main menu."
read key read key
exit 0 exit 0