diff options
author | Teddy Wing | 2021-08-14 14:05:53 +0200 |
---|---|---|
committer | Teddy Wing | 2021-08-14 14:05:53 +0200 |
commit | 2e40c8a2b18930cf83f28e816a9042254c5edf30 (patch) | |
tree | e484940df41a4cc033c876b968876f0b726b5744 /src | |
parent | 2393b7b44826b2677660fa6dc162371151e00b2c (diff) | |
download | netflix-immersive-2e40c8a2b18930cf83f28e816a9042254c5edf30.tar.bz2 |
index.ts: Add initialising log
Write a log message upon initialisation so we can confirm the script is
running.
Diffstat (limited to 'src')
-rw-r--r-- | src/index.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts index 58d4367..4d3a951 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,11 +16,14 @@ // along with Immersive. If not, see <https://www.gnu.org/licenses/>. import fullscreen_credits from './fullscreen_credits'; +import logger from './logger'; import styles from './styles'; import watch_credits from './watch_credits'; function main () { + logger.debug('Initialising'); + styles(); fullscreen_credits(); watch_credits(); |