Skip to content

Commit

Permalink
Improved logging
Browse files Browse the repository at this point in the history
  • Loading branch information
8vogt committed Mar 7, 2021
1 parent 870170e commit 044304e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ protected override void UnloadData()
/// <param name="module"></param>
public void RegisterModule(MyAbstractProceduralCellModule module)
{
MyPluginLog.Log("Registering new Procedural generation module " + module.GetType());
MyPluginLog.Log("Registering new Procedural generation cell module " + module.GetType());

if (!m_cellModules.Contains(module))
{
Expand All @@ -173,6 +173,8 @@ public void RegisterModule(MyAbstractProceduralCellModule module)
/// <param name="module"></param>
public void RegisterModule(MyAbstractProceduralObjectModul module)
{
MyPluginLog.Log("Registering new Procedural generation module " + module.GetType());

if (!m_objectModules.Contains(module))
{
m_objectModules.Add(module);
Expand Down

0 comments on commit 044304e

Please sign in to comment.