Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(log): support verbosing logging #61

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions example/verbose.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
source "$(cd "${BASH_SOURCE[0]%/*}" && pwd)/../lib/oo-bootstrap.sh"

import util/log

namespace test/verbose
VERBOSE=2

Log::AddOutput test/verbose DEBUG

Log "this log will be printed"
V=2 Log "this log will be displayed"

VERBOSE=1
V=2 Log "this log will not be displayed"
6 changes: 6 additions & 0 deletions lib/util/log.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ Log::DisableFilter() {
}

Log() {
# support verbosing logging
local V="${V:-0}"
if [[ $VERBOSE < $V ]]; then
return
fi

local callingFunction="${FUNCNAME[1]}"
local callingScript="${BASH_SOURCE[1]}"
local scope
Expand Down