From 399393474ea67179fe57a875ef9d11e1445345a3 Mon Sep 17 00:00:00 2001 From: Laurent Bouriez Date: Mon, 5 Apr 2021 21:12:07 -0400 Subject: [PATCH] 0.10.0 --- ttrss/config.json | 2 +- ttrss/rootfs/etc/cont-init.d/02-display-config.sh | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ttrss/config.json b/ttrss/config.json index 2f88037..fb5beac 100644 --- a/ttrss/config.json +++ b/ttrss/config.json @@ -1,6 +1,6 @@ { "name": "tt-rss", - "version": "0.9.21", + "version": "0.10.0", "slug": "ttrss", "description": "Tiny-rss add-on based on the prebuilt docker image from linuxserver", "url": "https://github.com/lbouriez/hassio-addons", diff --git a/ttrss/rootfs/etc/cont-init.d/02-display-config.sh b/ttrss/rootfs/etc/cont-init.d/02-display-config.sh index b7801b5..5972909 100644 --- a/ttrss/rootfs/etc/cont-init.d/02-display-config.sh +++ b/ttrss/rootfs/etc/cont-init.d/02-display-config.sh @@ -1,5 +1,6 @@ #!/usr/bin/with-contenv bashio -bashio::log.blue \ +if [ ${log_level} = "debug" ]; then + bashio::log.blue \ '-----------------------------------------------------------' bashio::log.blue " Here is the configuration on boot" bashio::log.blue " TTRSS_DB_TYPE => ${TTRSS_DB_TYPE}" @@ -10,4 +11,5 @@ bashio::log.blue \ bashio::log.blue " TTRSS_DB_PORT => ${TTRSS_DB_PORT}" bashio::log.blue " TTRSS_SELF_URL_PATH => ${TTRSS_SELF_URL_PATH}" bashio::log.blue \ - '-----------------------------------------------------------' \ No newline at end of file + '-----------------------------------------------------------' +fi \ No newline at end of file