mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
13 lines
294 B
C#
13 lines
294 B
C#
using NLog;
|
|
|
|
namespace FFXIVClassic.Common
|
|
{
|
|
// todo:
|
|
// havent decided whether it's worth wrapping every sql class
|
|
// so i'll just leave it with logger for now
|
|
public class Sql
|
|
{
|
|
public static Logger Log = LogManager.GetCurrentClassLogger();
|
|
}
|
|
}
|