diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-04-10 08:31:17 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-04-10 08:31:17 +0300 |
commit | 0f065f8431fdcdc2dcf5b24894904e2185eda022 (patch) | |
tree | 2862ff681cd90e5a76f393c54720ca980d70dda3 /lib | |
parent | f06974646f49940f3cff19d89078411189a6c62b (diff) | |
download | arching-kaos-tools-0f065f8431fdcdc2dcf5b24894904e2185eda022.tar.gz arching-kaos-tools-0f065f8431fdcdc2dcf5b24894904e2185eda022.tar.bz2 arching-kaos-tools-0f065f8431fdcdc2dcf5b24894904e2185eda022.zip |
Learnt about FUNCNAME variable
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/_ak_irc | 2 | ||||
-rwxr-xr-x | lib/_ak_network_ipfs | 4 | ||||
-rwxr-xr-x | lib/_ak_settings | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/lib/_ak_irc b/lib/_ak_irc index 13fe6b3..85e8bc7 100755 --- a/lib/_ak_irc +++ b/lib/_ak_irc @@ -4,7 +4,7 @@ _ak_lib_load _ak_log _ak_lib_load _ak_script function _ak_irc_connect(){ - _ak_not_implemented "LOL" + _ak_not_implemented "${FUNCNAME}" } _ak_log_debug "_ak_irc loaded $(caller)" diff --git a/lib/_ak_network_ipfs b/lib/_ak_network_ipfs index 013ac1a..172794f 100755 --- a/lib/_ak_network_ipfs +++ b/lib/_ak_network_ipfs @@ -22,11 +22,11 @@ _ak_lib_load _ak_log _ak_lib_load _ak_ipfs function _ak_network_ipfs_scan(){ - _ak_not_implemented _ak_network_ipfs_scan + _ak_not_implemented ${FUNCNAME} } function _ak_network_ipfs_show_peers(){ - _ak_not_implemented _ak_network_ipfs_show_peers + _ak_not_implemented ${FUNCNAME} } function _ak_network_ipfs_connect_bootstrap(){ diff --git a/lib/_ak_settings b/lib/_ak_settings index 181b37f..3345e49 100755 --- a/lib/_ak_settings +++ b/lib/_ak_settings @@ -136,11 +136,11 @@ function _ak_settings_set(){ } function _ak_settings_get_sub(){ - _ak_not_implemented + _ak_not_implemented ${FUNCNAME} } function _ak_settings_get_all(){ - _ak_not_implemented + _ak_not_implemented ${FUNCNAME} } _ak_log_debug "_ak_settings loaded $(caller)" |