all
This commit is contained in:
@@ -1,8 +1,23 @@
|
||||
package com.auction;
|
||||
|
||||
public class Main {
|
||||
public static void main(String[] args) throws Exception {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("Starting Troostwijk Auction Scraper...");
|
||||
//TroostwijkScraper.main(args);
|
||||
|
||||
try {
|
||||
//TroostwijkScraper.main(args);
|
||||
System.out.println("This is fine..");
|
||||
} catch (Exception e) {
|
||||
System.err.println("Error starting scraper: " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
|
||||
// Keep container alive for debugging
|
||||
System.out.println("\nContainer will remain running. Check logs for errors.");
|
||||
try {
|
||||
Thread.sleep(Long.MAX_VALUE);
|
||||
} catch (InterruptedException ie) {
|
||||
Thread.currentThread().interrupt();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user