Skip to content

Commit

Permalink
fix: Add input string that failed to the warp requirements parsing er…
Browse files Browse the repository at this point in the history
…ror message #910
  • Loading branch information
BlayTheNinth committed Sep 23, 2024
1 parent 4ed502a commit 8db7ca1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class RequirementModifierParser {
final var requirement = parseRequirement(functionPart);
return Optional.of(new ConfiguredRequirementModifier<>(requirement, conditions));
} catch (Exception e) {
Waystones.logger.error("Could not parse warp requirement", e);
Waystones.logger.error("Could not parse warp requirement: {}", input, e);
return Optional.empty();
}
}
Expand Down

0 comments on commit 8db7ca1

Please sign in to comment.