gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
659 B
23 lines
659 B
#!/bin/bash
|
|
# LinuxGSM command_dev_debug.sh module
|
|
# Author: Daniel Gibbs
|
|
# Contributors: http://linuxgsm.com/contrib
|
|
# Website: https://linuxgsm.com
|
|
# Description: Dev only: Enables debugging log to be saved to dev-debug.log.
|
|
|
|
commandname="DEV-DEBUG"
|
|
commandaction="Developer debug"
|
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
fn_firstcommand_reset
|
|
|
|
if [ -f "${rootdir}/.dev-debug" ]; then
|
|
rm "${rootdir:?}/.dev-debug"
|
|
fn_print_ok_nl "Disabled dev-debug"
|
|
fn_script_log_info "Disabled dev-debug"
|
|
else
|
|
date '+%s' > "${rootdir}/.dev-debug"
|
|
fn_print_ok_nl "Enabled dev-debug"
|
|
fn_script_log_info "Enabled dev-debug"
|
|
fi
|
|
|
|
core_exit.sh
|
|
|