Skip to content

Commit

Permalink
Removed Log messages, that filled the log with insane amount of lines
Browse files Browse the repository at this point in the history
  • Loading branch information
8vogt committed Mar 13, 2021
1 parent b30528d commit afbd426
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions SEWorldGenPlugin/Generator/MyStarSystemGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,6 @@ private void LoadPlanetDefinitions()
/// </summary>
private void CheckIntegrityOfSystem()
{
MyPluginLog.Debug("Checking system integrity");
foreach(var obj in StarSystem.GetAllObjects())
{
if(obj is MySystemPlanet)
Expand Down Expand Up @@ -701,7 +700,6 @@ private void CheckIntegrityOfSystem()
}
}
}
MyPluginLog.Debug("Integrity check complete");
}

/// <summary>
Expand Down
3 changes: 0 additions & 3 deletions SEWorldGenPlugin/Session/MyGPSManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public void AddPersistentGps(string name, Color color, Vector3D pos, Guid id)

if (!m_globalGpss.ContainsKey(id))
{
MyPluginLog.Log("Adding new persistent gps " + name);
m_globalGpss[id] = data;
}
}
Expand All @@ -114,8 +113,6 @@ public void RemovePersistentGps(Guid id)
{
if (PersistenGpsExists(id))
{
MyPluginLog.Log("Removing persistent gps " + id);

MyGps gps = new MyGps
{
Name = m_globalGpss[id].Name,
Expand Down

0 comments on commit afbd426

Please sign in to comment.