summaryrefslogtreecommitdiff
path: root/src/binder/inc/bindinglog.inl
blob: f342f618ea3b8b24184f2a330a1cd01e85140cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
// ============================================================
//
// BindingLog.inl
//


//
// Implements inlined methods of BindingLog
//
// ============================================================

#ifndef __BINDER__BINDING_LOG_INL__
#define __BINDER__BINDING_LOG_INL__

BOOL BindingLog::CanLog()
{
    return (m_pCDebugLog != NULL);
}

CDebugLog *BindingLog::GetDebugLog()
{
    _ASSERTE(m_pCDebugLog != NULL);
    return m_pCDebugLog;
}

HRESULT BindingLog::Log(LPCWSTR pwzInfo)
{
    PathString info(pwzInfo);
    return BindingLog::Log(info);
}

HRESULT BindingLog::Log(LPCWSTR  pwzPrefix,
                        SString &info)
{
    PathString message;

    message.Append(pwzPrefix);
    message.Append(info);

    return Log(message);
}

#endif