summaryrefslogtreecommitdiff
path: root/option.go
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2017-05-06 00:25:27 +0300
committerEyal Posener <[email protected]>2017-05-06 00:25:27 +0300
commit1af7c0b3b7bc0e4bf5605be7e02154a8876cba84 (patch)
treebb3220c9de676f16970ffb7c204aa3377194661f /option.go
parentc8263230e11aa755d3b0b964d4bf7ff296661f5e (diff)
Roughly add all go commands
Diffstat (limited to 'option.go')
-rw-r--r--option.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/option.go b/option.go
index 6a067ea..3915091 100644
--- a/option.go
+++ b/option.go
@@ -29,11 +29,11 @@ func (a ArgFileName) String() string {
func (a ArgFileName) Matches(prefix string) bool {
full, err := filepath.Abs(string(a))
if err != nil {
- logger("failed getting abs path of %s: %s", a, err)
+ Log("failed getting abs path of %s: %s", a, err)
}
prefixFull, err := filepath.Abs(prefix)
if err != nil {
- logger("failed getting abs path of %s: %s", prefix, err)
+ Log("failed getting abs path of %s: %s", prefix, err)
}
// if the file has the prefix as prefix,