some more display tweeking

pull/2/head
Jean-Marc MEESSEN 4 years ago
parent 36dd84d369
commit 0638cfe9ff

@ -58,8 +58,14 @@ func SprintHeaderValues(logLine LogLine) (output string){
}
output = output + "\n"
output = output + "MyWWFF " + logLine.MyWWFF + "\n"
output = output + "MySOTA " + logLine.MySOTA + "\n"
if logLine.MyWWFF != "" {
output = output + "MyWWFF " + logLine.MyWWFF + "\n"
}
if logLine.MySOTA != "" {
output = output + "MySOTA " + logLine.MySOTA + "\n"
}
return output
}

@ -280,7 +280,7 @@ func loadFile() {
}
if(len(errorLog) != 0){
fmt.Println("\nParsing errors:")
fmt.Println("\nProcessing errors:")
for _, errorLogLine := range errorLog {
fmt.Println(errorLogLine)
}

@ -2,17 +2,15 @@
## Input protocol
* [ ] document input protocol
* [ ] document protocol as regexp
## Test framework
* [x] enable TDD
* [x] automate build and test
* [ ] Improve build processing (cross compile, directory)
* [ ] Perform the test of the complete app
* [ ] Improve build processing (cross compile, directory)
## Input processing
* [ ] infer RST
* [x] infer RST
* [ ] DATE keyword is now optional
* [ ] New MYGRID keyword
* [ ] Create the logic to take over from the previous line

Loading…
Cancel
Save