add warning message

This commit is contained in:
Chris Lu 2012-11-13 12:13:59 -08:00
parent 9782ace1bd
commit f5a8382933

View file

@ -135,6 +135,7 @@ func (s *Store) Write(i VolumeId, n *Needle) uint32 {
if v := s.volumes[i]; v != nil {
return v.write(n)
}
log.Println("volume",i, "not found!")
return 0
}
func (s *Store) Delete(i VolumeId, n *Needle) uint32 {