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 + "\n"
output = output + "MyWWFF " + logLine.MyWWFF + "\n" if logLine.MyWWFF != "" {
output = output + "MySOTA " + logLine.MySOTA + "\n" output = output + "MyWWFF " + logLine.MyWWFF + "\n"
}
if logLine.MySOTA != "" {
output = output + "MySOTA " + logLine.MySOTA + "\n"
}
return output return output
} }

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

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

Loading…
Cancel
Save