Disable AmiAdapter info logging
AmiAdapter logging is too noisy, change it to verbose. Change-Id: Ib01df9e2fd8d0df34ec2883f5b773a7ff532896c
This commit is contained in:
@@ -29,7 +29,7 @@ metrics::Report* AmiAdapter::NewReport() const {
|
||||
void AmiAdapter::UpdateString(const std::string& metric_id,
|
||||
const std::string& value) {
|
||||
analytics_item_.setCString(metric_id.c_str(), value.c_str());
|
||||
LOGI(
|
||||
LOGV(
|
||||
"AmiAdapter (%lld) %s : %s",
|
||||
analytics_item_.getSessionID(),
|
||||
metric_id.c_str(),
|
||||
@@ -39,7 +39,7 @@ void AmiAdapter::UpdateString(const std::string& metric_id,
|
||||
void AmiAdapter::UpdateInt32(const std::string& metric_id,
|
||||
int32_t value) {
|
||||
analytics_item_.setInt32(metric_id.c_str(), value);
|
||||
LOGI(
|
||||
LOGV(
|
||||
"AmiAdapter (%lld) %s : %ld",
|
||||
analytics_item_.getSessionID(),
|
||||
metric_id.c_str(),
|
||||
@@ -49,7 +49,7 @@ void AmiAdapter::UpdateInt32(const std::string& metric_id,
|
||||
void AmiAdapter::UpdateInt64(const std::string& metric_id,
|
||||
int64_t value) {
|
||||
analytics_item_.setInt64(metric_id.c_str(), value);
|
||||
LOGI(
|
||||
LOGV(
|
||||
"AmiAdapter (%lld) %s : %lld",
|
||||
analytics_item_.getSessionID(),
|
||||
metric_id.c_str(),
|
||||
@@ -59,7 +59,7 @@ void AmiAdapter::UpdateInt64(const std::string& metric_id,
|
||||
void AmiAdapter::UpdateDouble(const std::string& metric_id,
|
||||
double value) {
|
||||
analytics_item_.setDouble(metric_id.c_str(), value);
|
||||
LOGI(
|
||||
LOGV(
|
||||
"AmiAdapter (%lld) %s : %f",
|
||||
analytics_item_.getSessionID(),
|
||||
metric_id.c_str(),
|
||||
|
||||
Reference in New Issue
Block a user