Skip to content

Commit 23e3284

Browse files
authored
Better wording
1 parent f55ed54 commit 23e3284

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base-notebook/start.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
set -e
66

7-
# The _log function is passed everything this script wants to log. It will
7+
# The _log function is used for everything this script wants to log. It will
88
# always log errors and warnings, but can be silenced for other messages
99
# by setting JUPYTER_DOCKER_STACKS_QUIET environment variable.
1010
_log () {
11-
if [[ "$*" == "ERROR:"* ]] || [[ "$*" == "WARNING:"* ]] || [[ "$JUPYTER_DOCKER_STACKS_QUIET" == "" ]]; then
11+
if [[ "$*" == "ERROR:"* ]] || [[ "$*" == "WARNING:"* ]] || [[ "${JUPYTER_DOCKER_STACKS_QUIET}" == "" ]]; then
1212
echo "$@"
1313
fi
1414
}

0 commit comments

Comments
 (0)