Merge pull request #1889 from mhworth/master

Fix typo in log statement
This commit is contained in:
Ross Smith II 2015-02-16 10:00:52 -08:00
commit 3a0cdb0389
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
}