Removed Log.Fatal in ScanCSV
This commit is contained in:
parent
9cee287699
commit
0e90b68e22
|
|
@ -38,9 +38,8 @@ func NewElioDateiFoo(lookUpDir string, process ElioHandleFunc) *ElioDateiFoo {
|
||||||
// Gültige Dateinamen zur Extraktion in Closure übergeben.
|
// Gültige Dateinamen zur Extraktion in Closure übergeben.
|
||||||
func (f *ElioDateiFoo) ScanCsv() {
|
func (f *ElioDateiFoo) ScanCsv() {
|
||||||
files, err := os.ReadDir(f.lookUpDir)
|
files, err := os.ReadDir(f.lookUpDir)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
fmt.Println(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
filemap := make(map[string]filedata)
|
filemap := make(map[string]filedata)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue