Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions patterns/NationsGloryJava.yml
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,17 @@ powerboost_decrease:
meteor_spawn:
pattern: "{timestamp} [INFO] METEOR SPAWNED IN {planet} on player {player} at {x}, {y}, {z}"


# ===========================
# ASTEROIDS
# ===========================

asteroids_fail:
pattern: "{timestamp} [INFO] Failed to delete region file after retries:"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Capture failure detail after asteroid retries

This pattern stops at retries: and therefore only matches lines with no trailing content; if the actual log includes the region file or error detail after the colon (the common format for this message), asteroids_fail will never match and failed deletions will be silently missed by the analyzer. Add a trailing placeholder (for example {region_file} or {details}) so real failure entries are parsed.

Useful? React with 👍 / 👎.


asteroids_delete:
pattern: "{timestamp} [INFO] ASTEROIDS - Deleted {count} region files during world init (retries: {retry_count})"

# ===========================
# Access / Permissions
# ===========================
Expand Down