added debugging

This commit is contained in:
Todd Gruben 2014-06-25 22:12:16 -05:00
parent 474eb8eb96
commit 210236532f

View file

@ -100,6 +100,7 @@ func getLightestProcess(m map[string]int) (Pair, error) {
processlist[i] = Pair{k, v}
}
sort.Sort(processlist)
log.Println(spew.Sdump(processlist))
return processlist[0], nil
}