Fix UserSessionManager::Shutdown ordering.
[chromium-blink-merge.git] / sync / engine / traffic_logger.cc
blob1e9a6bc75fe6e12aed4d8c3621c877be936a07ae
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "sync/engine/traffic_logger.h"
7 #include <string>
9 #include "base/json/json_writer.h"
10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/values.h"
13 #include "sync/protocol/proto_value_conversions.h"
14 #include "sync/protocol/sync.pb.h"
16 namespace syncer {
18 namespace {
19 template <class T>
20 void LogData(const T& data,
21 scoped_ptr<base::DictionaryValue>(*to_dictionary_value)(const T&,
22 bool),
23 const std::string& description) {
24 if (::logging::DEBUG_MODE && VLOG_IS_ON(1)) {
25 scoped_ptr<base::DictionaryValue> value =
26 (*to_dictionary_value)(data, true /* include_specifics */);
27 std::string message;
28 base::JSONWriter::WriteWithOptions(
29 *value, base::JSONWriter::OPTIONS_PRETTY_PRINT, &message);
30 DVLOG(1) << "\n" << description << "\n" << message << "\n";
33 } // namespace
35 void LogClientToServerMessage(const sync_pb::ClientToServerMessage& msg) {
36 LogData(msg, &ClientToServerMessageToValue,
37 "******Client To Server Message******");
40 void LogClientToServerResponse(
41 const sync_pb::ClientToServerResponse& response) {
42 LogData(response, &ClientToServerResponseToValue,
43 "******Server Response******");
46 } // namespace syncer