Fix typo in log statement

This commit is contained in:
Matt Hollingsworth 2015-01-31 09:41:01 -05:00
parent e3c2f01cb8
commit 816f722e3b
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ func (c *config) discoverSingle(glob string, m *map[string]string) error {
// Look for foo-bar-baz. The plugin name is "baz"
plugin := file[len(prefix):]
log.Printf("[DEBUG] Discoverd plugin: %s = %s", plugin, match)
log.Printf("[DEBUG] Discovered plugin: %s = %s", plugin, match)
(*m)[plugin] = match
}