diff options
author | hanemile <hanemile@protonmail.com> | 2018-11-02 23:06:27 +0100 |
---|---|---|
committer | hanemile <hanemile@protonmail.com> | 2018-11-02 23:06:27 +0100 |
commit | 2ede25868e252799baebdd4083465e9f988cd3a6 (patch) | |
tree | 47593728f1dc024a3c89d215867f0f08051b1cb4 | |
parent | a108be356f9c17c54bd6e6918be7093913f5b8e4 (diff) |
corrected the logplus namechanging
-rw-r--r-- | csv/csv.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csv/csv.go b/csv/csv.go index 007c0f9..1b3c0bc 100644 --- a/csv/csv.go +++ b/csv/csv.go @@ -21,10 +21,10 @@ func Import(path string, start int, end int, slice []structs.Star2D) []structs.S // Handle errors if errx != nil { - logplus.LogFError("error reading value from csv in line nr. %d (%s)", linenr, errx) + logplus.LogErrorf("error reading value from csv in line nr. %d (%s)", linenr, errx) } if erry != nil { - logplus.LogFError("error reading value from csv in line nr. %d (%s)", linenr, erry) + logplus.LogErrorf("error reading value from csv in line nr. %d (%s)", linenr, erry) } // Create a temporary star for assembling the star |