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
The wrap function takes a wrap_max argument that controls the maximum line width. When I'm using the typical functions for printing formatted messages like good, fail, warn, and info, they are calling wrap internally, and there's no easy way to adjust the line width. The Printer class does have a line_max argument, but it's only used for dividers.
Can there be a way to adjust the default wrap_max value, either by configuring a Printer instance or via an environment variable? I'm using wasabi in my spaCy related projects, and the short 80 character output has been really limiting some of my logging output.
The text was updated successfully, but these errors were encountered:
The wrap function takes a
wrap_max
argument that controls the maximum line width. When I'm using the typical functions for printing formatted messages like good, fail, warn, and info, they are callingwrap
internally, and there's no easy way to adjust the line width. The Printer class does have aline_max
argument, but it's only used for dividers.Can there be a way to adjust the default
wrap_max
value, either by configuring aPrinter
instance or via an environment variable? I'm using wasabi in my spaCy related projects, and the short 80 character output has been really limiting some of my logging output.The text was updated successfully, but these errors were encountered: