Skip to content

Commit c01c7ac

Browse files
authored
Merge pull request #462 from tfutils/fix/451-bashlog-syslog-tag
Fix #451: Stray closing paren in syslog tag default in bashlog.sh
2 parents 4a703e8 + 7ed8aaa commit c01c7ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/bashlog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function log() {
2727
local file_path="${BASHLOG_FILE_PATH:-/tmp/${0##*/}.log}";
2828
local json_path="${BASHLOG_JSON_PATH:-/tmp/${0##*/}.log.json}";
2929

30-
local tag="${BASHLOG_SYSLOG_TAG:-${0##*/})}";
30+
local tag="${BASHLOG_SYSLOG_TAG:-${0##*/}}";
3131
local facility="${BASHLOG_SYSLOG_FACILITY:-local0}";
3232
local pid="${$}";
3333

0 commit comments

Comments
 (0)