Skip to content

Commit

Permalink
Remove config debug logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
lpegoraro committed Aug 26, 2019
1 parent 4b33101 commit 2984a99
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions password-manager/password_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,13 @@ func parseArgs(arguments []string) {
}
}
func handleConfig(arguments []string) {
fmt.Println("handleConfig with arguments" + arguments[1])
method := arguments[1]
seed := arguments[2]
factor, err := strconv.ParseInt(arguments[3], 10, 8)
if err != nil {
fmt.Println(err)
}
storageType := arguments[4]
fmt.Println("handleConfig with arguments" + method + seed + storageType)
CreateConfigFile(method, seed, int8(factor), storageType)
}

Expand Down

0 comments on commit 2984a99

Please sign in to comment.