1 : // Copyright 2012 Google Inc.
2 : //
3 : // Licensed under the Apache License, Version 2.0 (the "License");
4 : // you may not use this file except in compliance with the License.
5 : // You may obtain a copy of the License at
6 : //
7 : // http://www.apache.org/licenses/LICENSE-2.0
8 : //
9 : // Unless required by applicable law or agreed to in writing, software
10 : // distributed under the License is distributed on an "AS IS" BASIS,
11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 : // See the License for the specific language governing permissions and
13 : // limitations under the License.
14 :
15 : #include "syzygy/common/logging.h"
16 :
17 : #include "base/logging.h"
18 : #include "base/logging_win.h"
19 :
20 : namespace common {
21 :
22 : // {8FD3F6B0-0591-40a3-85CD-305C7751E5EF}
23 : const GUID kSyzygyEtwLogProvider = { 0x8fd3f6b0, 0x591, 0x40a3,
24 : { 0x85, 0xcd, 0x30, 0x5c, 0x77, 0x51, 0xe5, 0xef } };
25 :
26 E : void InitLoggingForDll(const wchar_t* client_name) {
27 : logging::InitLogging(
28 : client_name, logging::LOG_NONE, logging::LOCK_LOG_FILE,
29 : logging::APPEND_TO_OLD_LOG_FILE,
30 E : logging::ENABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS);
31 E : logging::LogEventProvider::Initialize(common::kSyzygyEtwLogProvider);
32 E : }
33 :
34 : } // namespace common
|