forked from rebar/rebar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Log out success message with newlines
The raw log file is split into lines to check for errors. However the logged message should contain newlines for easier reading.
- Loading branch information
Showing
2 changed files
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -150,3 +150,4 @@ John Daily | |
Yury Gargay | ||
Frank Hunleth | ||
Matwey Kornilov | ||
Julius Andrikonis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -193,7 +193,7 @@ check_log(Config,RawLogFilename,Fun) -> | |
?FAIL; | ||
|
||
true -> | ||
Fun(Msg) | ||
Fun(string:join(Msg, "\n")) | ||
end. | ||
|
||
|
||
|