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 cat() that adds the outputs to stdout is not adding new lines at the end. When the stdout is piped into a log file, for example, this output is written entirely on one line, making it hard to read.
Solution:
Change printing function to one that automatically adds newlines at the end, or add a new line character to the string in the current cat()
The text was updated successfully, but these errors were encountered:
The
cat()
that adds the outputs to stdout is not adding new lines at the end. When the stdout is piped into a log file, for example, this output is written entirely on one line, making it hard to read.Solution:
Change printing function to one that automatically adds newlines at the end, or add a new line character to the string in the current
cat()
The text was updated successfully, but these errors were encountered: