MyLog logs to the Torch logging system

Fixed issue with labels not being transferred correctly when transpiling.
This commit is contained in:
Westin Miller
2017-09-10 17:40:43 -07:00
parent aa784c121b
commit 9d8988a2ec
8 changed files with 217 additions and 41 deletions

View File

@@ -24,6 +24,7 @@ using Torch.API.Session;
using Torch.Commands;
using Torch.Managers;
using Torch.Managers.ChatManager;
using Torch.Managers.PatchManager;
using Torch.Utils;
using Torch.Session;
using VRage.Collections;
@@ -119,6 +120,8 @@ namespace Torch
sessionManager.AddFactory((x) => new EntityManager(this));
Managers.AddManager(sessionManager);
Managers.AddManager(new PatchManager(this));
Managers.AddManager(new KeenLogManager(this));
Managers.AddManager(new FilesystemManager(this));
Managers.AddManager(new UpdateManager(this));
Managers.AddManager(Plugins);