init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
23
Framework/Logging/ILogWriter.cs
Normal file
23
Framework/Logging/ILogWriter.cs
Normal file
|
@ -0,0 +1,23 @@
|
|||
using System;
|
||||
|
||||
namespace Kreta.Framework.Logging
|
||||
{
|
||||
/// <summary>
|
||||
/// Naplóvezetők felülete.
|
||||
/// </summary>
|
||||
public interface ILogWriter
|
||||
{
|
||||
/// <summary>
|
||||
/// Naplóba ír egy naplóbejegyzést.
|
||||
/// </summary>
|
||||
/// <param name="message">A naplóbejegyzés</param>
|
||||
Guid? Log(ILogMessage message);
|
||||
|
||||
/// <summary>
|
||||
/// Logs the specified message.
|
||||
/// </summary>
|
||||
/// <param name="message">The message.</param>
|
||||
/// <param name="logId">The log identifier.</param>
|
||||
void Log(ILogMessage message, Guid logId);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue