36 lines
994 B
C#
36 lines
994 B
C#
//--------------------------------------------------------------------
|
|
// <copyright file="Logger.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <author>stubbfel</author>
|
|
// <sience>03.05.2013</sience>
|
|
//----------------------------------------------------------------------
|
|
namespace CampusAppWPortalLib8.Utility
|
|
{
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// This Class creates logs for the app
|
|
/// </summary>
|
|
public class Logger
|
|
{
|
|
/// <summary>
|
|
/// Method log a Exception
|
|
/// </summary>
|
|
/// <param name="exception">exception which has to log</param>
|
|
public static void LogException(Exception exception)
|
|
{
|
|
// Console.WriteLine(exception);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Log a message.
|
|
/// </summary>
|
|
/// <param name="msg">to be logged message</param>
|
|
public static void LogMsg(string msg)
|
|
{
|
|
// Console.WriteLine(msg);
|
|
}
|
|
}
|
|
}
|