We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f55ed54 commit 23e3284Copy full SHA for 23e3284
base-notebook/start.sh
@@ -4,11 +4,11 @@
4
5
set -e
6
7
-# The _log function is passed everything this script wants to log. It will
+# The _log function is used for everything this script wants to log. It will
8
# always log errors and warnings, but can be silenced for other messages
9
# by setting JUPYTER_DOCKER_STACKS_QUIET environment variable.
10
_log () {
11
- if [[ "$*" == "ERROR:"* ]] || [[ "$*" == "WARNING:"* ]] || [[ "$JUPYTER_DOCKER_STACKS_QUIET" == "" ]]; then
+ if [[ "$*" == "ERROR:"* ]] || [[ "$*" == "WARNING:"* ]] || [[ "${JUPYTER_DOCKER_STACKS_QUIET}" == "" ]]; then
12
echo "$@"
13
fi
14
}
0 commit comments