You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running a macOS/iOS app, Briefcase applies a filter to strip unnecessary detail from the log. However, the log filter is a little too hungry - it strips all content up to the first closing brace.
Steps to reproduce
Create a hello world app for macOS or iOS
add print("This is a test [1 / 5] of the filter")
Run the app (briefcase run)
The logged output will be
of the filter
Expected behavior
The logged content should be
This is a test [1 / 5] of the filter
Screenshots
No response
Environment
Operating System: macOS, iOS
Python version: all
Software versions:
Briefcase: 0.3.14
Logs
Additional context
The regex capturing the process ID is being too greedy.
The text was updated successfully, but these errors were encountered:
Describe the bug
When running a macOS/iOS app, Briefcase applies a filter to strip unnecessary detail from the log. However, the log filter is a little too hungry - it strips all content up to the first closing brace.
Steps to reproduce
print("This is a test [1 / 5] of the filter")
briefcase run
)The logged output will be
Expected behavior
The logged content should be
Screenshots
No response
Environment
Logs
Additional context
The regex capturing the process ID is being too greedy.
The text was updated successfully, but these errors were encountered: