Skip to content

Commit

Permalink
Disable log interceptor
Browse files Browse the repository at this point in the history
  • Loading branch information
RoboPhred committed Jul 26, 2020
1 parent 6b4eb21 commit 3765349
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions src/CarbonLogSuppressor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ sealed class CarbonLogSuppressor
{
static bool Prefix()
{
// TODO: Should only be turned on when debugging.
Logging.Log("Supressing carbon logs");
return false;
// Should only be turned off when debugging.
// Logging.Log("Supressing carbon logs");
// return false;
return true;
}
}
}
2 changes: 1 addition & 1 deletion src/SixAxisPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace RoboPhredDev.Shipbreaker.SixAxis
{

[BepInPlugin("net.robophreddev.shipbreaker.SixAxis", "Six Axis Joystick support for Shipbreaker", "1.0.0.0")]
[BepInPlugin("net.robophreddev.shipbreaker.SixAxis", "Six Axis Joystick support for Shipbreaker", "1.0.1.0")]
public class SixAxisPlugin : BaseUnityPlugin
{
public static SixAxisPlugin Instance;
Expand Down

0 comments on commit 3765349

Please sign in to comment.