mirror of
https://github.com/Aitum/obs-aitum-multistream.git
synced 2024-11-22 02:12:40 +01:00
17 lines
284 B
Plaintext
Executable File
17 lines
284 B
Plaintext
Executable File
autoload -Uz log_info
|
|
|
|
if (( ! ${+_log_group} )) typeset -g _log_group=0
|
|
|
|
if (( ${+CI} )) {
|
|
if (( _log_group )) {
|
|
print "::endgroup::"
|
|
typeset -g _log_group=0
|
|
}
|
|
if (( # )) {
|
|
print "::group::${@}"
|
|
typeset -g _log_group=1
|
|
}
|
|
} else {
|
|
if (( # )) log_info ${@}
|
|
}
|