-keep track of messages passed to mq
[oweals/gnunet.git] / src / sensor / plugin_sensor_model_gaussian.c
index af879ef9347634983118396258a3208b9f5a9e62..a55b4d5941f2e1fd47197dc6e5c7d3d194ef5177 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of GNUnet
- * (C) 2013 Christian Grothoff (and other contributing authors)
+ * Copyright (C) 2013 Christian Grothoff (and other contributing authors)
  *
  * GNUnet is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published
@@ -14,8 +14,8 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with GNUnet; see the file COPYING.  If not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
  */
 
 /**
@@ -135,7 +135,6 @@ sensor_gaussian_model_feed (void *cls, double val)
   if (stddev < 0)               /* Value can be slightly less than 0 due to rounding errors */
     stddev = 0;
   stddev = sqrt (stddev);
-  LOG (GNUNET_ERROR_TYPE_DEBUG, "Mean: %Lf, Stddev: %Lf\n", mean, stddev);
   allowed_variance = (plugin->confidence_interval * stddev);
   if ((val < (mean - allowed_variance)) || (val > (mean + allowed_variance)))
     return GNUNET_YES;