1
0
mirror of https://github.com/zplug/zplug synced 2025-04-05 15:19:13 +02:00
zplug/base/log/print.zsh
2017-01-08 21:15:28 +09:00

30 lines
684 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::debug()
{
# No problem since this function ignores
# unrelated arguments passed
__zplug::log::format::with_json \
--level "DEBUG" \
--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]"
}