Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion utils/backint/inquire.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
package backint

import (
"fmt"
"sort"
"strings"

Expand Down Expand Up @@ -96,7 +97,13 @@ func Inquire(
}
}
default:
// TODO Error -> Issue #21
// Wrong keyword specified in input file
global.Logger.Error(
fmt.Sprintf(
"Failure during inquiry. Wrong keyword %s specified in input file.",
i.Keyword),
)
return false
}
}
return true
Expand Down
Loading