feat: add log

This commit is contained in:
余泓铮
2024-05-28 15:05:57 +08:00
parent 6ec9b4a9a6
commit 33fb463760
2 changed files with 4 additions and 3 deletions

View File

@@ -390,6 +390,7 @@ type ExportPoint struct {
func ConvertPoints(lines []string) (eps []ExportPoint) {
log.Info().Msg("ConvertPoints")
log.Info().Msg(strings.Join(lines, "\n"))
for _, line := range lines {
if strings.Contains(line, "ext") {
idx := strings.Index(line, "{")