diff --git a/src/main/kotlin/de/bixilon/pixlyzer/PixLyzer.kt b/src/main/kotlin/de/bixilon/pixlyzer/PixLyzer.kt index 2277096..2876f33 100644 --- a/src/main/kotlin/de/bixilon/pixlyzer/PixLyzer.kt +++ b/src/main/kotlin/de/bixilon/pixlyzer/PixLyzer.kt @@ -113,12 +113,14 @@ object PixLyzer { continue } catch (exception: Throwable) { if (generator.allowedFail) { + println("Generator ${generator.name} crashed: $exception") continue } throw exception } if (generator.entries == 0) { if (generator.allowEmpty) { + println("Generator ${generator.name} has 0 entries!") continue } else { error("${generator.name} has 0 entries!")