log tag const changes

This commit is contained in:
Gered 2013-08-17 18:08:44 -04:00
parent 6b6c4b6436
commit 71fb739670
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ namespace Blarg.GameFramework
{
public class SDLApplication : BaseApplication
{
const string LOG_TAG = "SDLApplication";
const string LOG_TAG = "SDL_APP";
#region Fields

View file

@ -8,7 +8,7 @@ namespace Blarg.GameFramework
{
public abstract class BaseApplication : IApplication
{
public const string LOG_TAG = "BASEAPP";
public const string LOG_TAG = "BASE_APP";
protected IGameApp GameApp { get; set; }