log-parser: move the kata-log-parser from the tests repo

to the kata-containers repo under the src/tools/log-parser folder
and vendor the modules

Fixes: #4100
Signed-off-by: Snir Sheriber <ssheribe@redhat.com>
This commit is contained in:
Snir Sheriber
2022-04-27 16:53:25 +03:00
parent 61a167139c
commit c7dacb1211
514 changed files with 296989 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
//
// Copyright (c) 2018 Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0
//
package main
import (
"fmt"
"os"
)
type displayText struct {
}
func (d *displayText) Display(entries *LogEntries, fieldNames []string, file *os.File) error {
if err := addCommentHeader(fieldNames, file); err != nil {
return err
}
for i, entry := range entries.Entries {
fmt.Fprintf(file, "Record %d: %+v\n", 1+i, entry)
}
return nil
}