1
- // --------------------------------------------------------------------------------------------------------------------
2
- // <copyright file="ILogHelper.cs" company="James Jackson-South">
3
- // Copyright (c) James Jackson-South and contributors.
4
- // Licensed under the Apache License, Version 2.0.
1
+ // <copyright file="ILogHelper.cs" company="James Jackson-South, Jeavon Leopold, and contributors">
2
+ // Copyright (c) James Jackson-South, Jeavon Leopold, and contributors. All rights reserved.
3
+ // Licensed under the Apache License, Version 2.0.
5
4
// </copyright>
6
- // <summary>
7
- // Provides methods for logging messages within the application.
8
- // </summary>
9
- // --------------------------------------------------------------------------------------------------------------------
10
5
11
6
namespace Our . Umbraco . FileSystemProviders . Azure
12
7
{
@@ -18,8 +13,8 @@ namespace Our.Umbraco.FileSystemProviders.Azure
18
13
public interface ILogHelper
19
14
{
20
15
/// <summary>
21
- /// Traces a message, only generating the message if tracing is actually enabled.
22
- /// Use this method to avoid calling any long-running methods such as "ToDebugString" if
16
+ /// Traces a message, only generating the message if tracing is actually enabled.
17
+ /// Use this method to avoid calling any long-running methods such as "ToDebugString" if
23
18
/// logging is disabled.
24
19
/// </summary>
25
20
/// <typeparam name="T">The type of class the message is associated with.</typeparam>
@@ -34,15 +29,15 @@ public interface ILogHelper
34
29
void Info ( Type callingType , Func < string > generateMessage ) ;
35
30
36
31
/// <summary>
37
- /// Traces a message, only generating the message if tracing is actually enabled.
32
+ /// Traces a message, only generating the message if tracing is actually enabled.
38
33
/// </summary>
39
34
/// <typeparam name="T">The type of class the message is associated with.</typeparam>
40
35
/// <param name="generateMessageFormat">The generate message format.</param>
41
36
/// <param name="formatItems">The format items.</param>
42
37
void Info < T > ( string generateMessageFormat , params Func < object > [ ] formatItems ) ;
43
-
38
+
44
39
/// <summary>
45
- /// Traces a message, only generating the message if tracing is actually enabled.
40
+ /// Traces a message, only generating the message if tracing is actually enabled.
46
41
/// </summary>
47
42
/// <param name="type">The calling <see cref="Type"/>.</param>
48
43
/// <param name="generateMessageFormat">The generate message format.</param>
0 commit comments