diff options
| author | 2018-05-02 12:23:17 -0700 | |
|---|---|---|
| committer | 2018-05-03 21:19:39 +0000 | |
| commit | 754e29edd76e2d927619e83c660c0d93e98211c8 (patch) | |
| tree | 2e3bb5468be2113e5eab1c6538b53dce56828608 | |
| parent | ee18fb21120b32036222770ba541c43613fbae3d (diff) | |
Turns DEBUG to false in statsd.
Test: statsd test
BUG: b/79161505
Change-Id: Ic6eee527d625b10aa86b2beb4b4c4fc05b051c7d
| -rw-r--r-- | cmds/statsd/src/StatsLogProcessor.cpp | 2 | ||||
| -rw-r--r-- | cmds/statsd/src/anomaly/AlarmTracker.cpp | 2 | ||||
| -rw-r--r-- | cmds/statsd/src/anomaly/subscriber_util.cpp | 2 | ||||
| -rw-r--r-- | cmds/statsd/src/metrics/MetricProducer.cpp | 2 | ||||
| -rw-r--r-- | cmds/statsd/src/metrics/MetricsManager.cpp | 2 | ||||
| -rw-r--r-- | cmds/statsd/src/subscriber/IncidentdReporter.cpp | 2 | 
6 files changed, 6 insertions, 6 deletions
diff --git a/cmds/statsd/src/StatsLogProcessor.cpp b/cmds/statsd/src/StatsLogProcessor.cpp index 986f2ef9a0a3..77fa710c7868 100644 --- a/cmds/statsd/src/StatsLogProcessor.cpp +++ b/cmds/statsd/src/StatsLogProcessor.cpp @@ -14,7 +14,7 @@   * limitations under the License.   */ -#define DEBUG true  // STOPSHIP if true +#define DEBUG false // STOPSHIP if true  #include "Log.h"  #include "statslog.h" diff --git a/cmds/statsd/src/anomaly/AlarmTracker.cpp b/cmds/statsd/src/anomaly/AlarmTracker.cpp index c8e406ff0090..8d7369935ea4 100644 --- a/cmds/statsd/src/anomaly/AlarmTracker.cpp +++ b/cmds/statsd/src/anomaly/AlarmTracker.cpp @@ -14,7 +14,7 @@   * limitations under the License.   */ -#define DEBUG true  // STOPSHIP if true +#define DEBUG false  // STOPSHIP if true  #include "Log.h"  #include "anomaly/AlarmTracker.h" diff --git a/cmds/statsd/src/anomaly/subscriber_util.cpp b/cmds/statsd/src/anomaly/subscriber_util.cpp index 3f69a2c392bf..ee9e9c01a60a 100644 --- a/cmds/statsd/src/anomaly/subscriber_util.cpp +++ b/cmds/statsd/src/anomaly/subscriber_util.cpp @@ -14,7 +14,7 @@   * limitations under the License.   */ -#define DEBUG true  // STOPSHIP if true +#define DEBUG false  // STOPSHIP if true  #include "Log.h"  #include <android/os/IIncidentManager.h> diff --git a/cmds/statsd/src/metrics/MetricProducer.cpp b/cmds/statsd/src/metrics/MetricProducer.cpp index 5ff8082c9a9d..df081817232e 100644 --- a/cmds/statsd/src/metrics/MetricProducer.cpp +++ b/cmds/statsd/src/metrics/MetricProducer.cpp @@ -14,7 +14,7 @@   * limitations under the License.   */ -#define DEBUG true  // STOPSHIP if true +#define DEBUG false  // STOPSHIP if true  #include "Log.h"  #include "MetricProducer.h" diff --git a/cmds/statsd/src/metrics/MetricsManager.cpp b/cmds/statsd/src/metrics/MetricsManager.cpp index 9ca4daa755f6..bf0f7206174b 100644 --- a/cmds/statsd/src/metrics/MetricsManager.cpp +++ b/cmds/statsd/src/metrics/MetricsManager.cpp @@ -13,7 +13,7 @@   * See the License for the specific language governing permissions and   * limitations under the License.   */ -#define DEBUG true  // STOPSHIP if true +#define DEBUG false  // STOPSHIP if true  #include "Log.h"  #include "MetricsManager.h"  #include "statslog.h" diff --git a/cmds/statsd/src/subscriber/IncidentdReporter.cpp b/cmds/statsd/src/subscriber/IncidentdReporter.cpp index 1c18f673aeb9..6e4b2c86c837 100644 --- a/cmds/statsd/src/subscriber/IncidentdReporter.cpp +++ b/cmds/statsd/src/subscriber/IncidentdReporter.cpp @@ -13,7 +13,7 @@   * See the License for the specific language governing permissions and   * limitations under the License.   */ -#define DEBUG true +#define DEBUG false  #include "Log.h"  #include "IncidentdReporter.h"  |