Skip to content

Commit

Permalink
feat(log): support verbosing logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Zhang committed Aug 22, 2018
1 parent 903fd74 commit 73b0b0d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
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

0 comments on commit 73b0b0d

Please sign in to comment.