diff --git a/src/main/tjava/com/r35157/jupiterperpsalarm/impl/ref/JupiterPerpsEntryPriceVariableRefreshWatcher.tjava b/src/main/tjava/com/r35157/jupiterperpsalarm/impl/ref/JupiterPerpsEntryPriceVariableRefreshWatcher.tjava index 5549852..8e5e0a5 100644 --- a/src/main/tjava/com/r35157/jupiterperpsalarm/impl/ref/JupiterPerpsEntryPriceVariableRefreshWatcher.tjava +++ b/src/main/tjava/com/r35157/jupiterperpsalarm/impl/ref/JupiterPerpsEntryPriceVariableRefreshWatcher.tjava @@ -14,8 +14,18 @@ public final class JupiterPerpsEntryPriceVariableRefreshWatcher { } public void start() { + Thread thread = new Thread( + this::run, + "jupiter-perps-entry-price-variable-refresh-watcher" + ); + + thread.setDaemon(true); + thread.start(); + } + + private void run() { System.out.println( - "Jupiter Perps entry price variable refresh watcher configured for directory: " + "Jupiter Perps entry price variable refresh watcher started for directory: " + confDirectory ); }