logging: log which function is reading .kiauh.ini

Signed-off-by: Dominik Willner th33xitus@gmail.com
This commit is contained in:
th33xitus
2022-04-23 14:57:14 +02:00
parent bf2b24891c
commit d87132fc88
8 changed files with 14 additions and 13 deletions

View File

@@ -134,7 +134,7 @@ function create_klipper_virtualenv(){
}
function klipper_setup(){
read_kiauh_ini
read_kiauh_ini "${FUNCNAME[0]}"
local custom_repo="${custom_klipper_repo}"
local custom_branch="${custom_klipper_repo_branch}"
local instances=${1} python_version=${2}
@@ -427,7 +427,7 @@ function compare_klipper_versions(){
function get_klipper_cfg_dir() {
local cfg_dir
read_kiauh_ini
read_kiauh_ini "${FUNCNAME[0]}"
if [ -z "${custom_klipper_cfg_loc}" ]; then
cfg_dir="${HOME}/klipper_config"
else