mirror of
https://github.com/zplug/zplug
synced 2025-08-22 13:44:35 +02:00
20 lines
455 B
Bash
20 lines
455 B
Bash
__zplug::log::print::error()
|
|
{
|
|
# No problem since this function ignores
|
|
# unrelated arguments passed
|
|
__zplug::log::format::with_json \
|
|
--level "ERROR" \
|
|
--message "$argv[1]" \
|
|
"$argv[2,-1]"
|
|
}
|
|
|
|
__zplug::log::print::info()
|
|
{
|
|
# No problem since this function ignores
|
|
# unrelated arguments passed
|
|
__zplug::log::format::with_json \
|
|
--level "INFO" \
|
|
--message "$argv[1]" \
|
|
"$argv[2,-1]"
|
|
}
|