diff options
author | Alex Auvolat <alex@adnab.me> | 2020-04-05 13:01:06 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-04-05 13:01:06 +0200 |
commit | 19ab6edda27d18500f67da58d1c08f21bd500b69 (patch) | |
tree | f15b683dead98bde402a8ea462f7cf185ae9f129 /util.go | |
parent | 054a6d4268533ab3866ab9be48c6f499c29a6d02 (diff) | |
download | easybridge-19ab6edda27d18500f67da58d1c08f21bd500b69.tar.gz easybridge-19ab6edda27d18500f67da58d1c08f21bd500b69.zip |
fix log.Fatal into log.Fatalf
Diffstat (limited to 'util.go')
-rw-r--r-- | util.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ func isBridgedIdentifier(mxid string) bool { return strings.HasPrefix(mxid, nameformat_fixed_part) } else { // This is not supported - log.Fatal("Invalid name format %s, please put {} at the beginning or at the end", config.NameFormat) + log.Fatalf("Invalid name format %s, please put {} at the beginning or at the end", config.NameFormat) return false } } |