Browse Source

Removed 3 more debugging statements that are pointeless as the results are recorded elsewhere and they just introduce noise in the logs

master
Drew Short 10 years ago
parent
commit
04d7d6afe8
  1. 2
      src/main/scala/com/sothr/imagetools/hash/AHash.scala
  2. 2
      src/main/scala/com/sothr/imagetools/hash/DHash.scala
  3. 2
      src/main/scala/com/sothr/imagetools/hash/PHash.scala

2
src/main/scala/com/sothr/imagetools/hash/AHash.scala

@ -42,7 +42,7 @@ object AHash extends PerceptualHasher with Logging {
}
}
}
debug(s"Computed AHash: $hash from ${width * height} pixels")
//debug(s"Computed AHash: $hash from ${width * height} pixels")
hash
}
}

2
src/main/scala/com/sothr/imagetools/hash/DHash.scala

@ -49,7 +49,7 @@ object DHash extends PerceptualHasher with Logging {
}
}
}
debug(s"Computed DHash: $hash from ${width * height} pixels")
//debug(s"Computed DHash: $hash from ${width * height} pixels")
hash
}
}

2
src/main/scala/com/sothr/imagetools/hash/PHash.scala

@ -63,7 +63,7 @@ object PHash extends PerceptualHasher with Logging {
}
}
}
debug(s"Computed PHash: $hash from ${dctDataWidth * dctDataHeight} pixels")
//debug(s"Computed PHash: $hash from ${dctDataWidth * dctDataHeight} pixels")
hash
}
}
Loading…
Cancel
Save