Skip to content

Commit

Permalink
Fixed debug error
Browse files Browse the repository at this point in the history
  • Loading branch information
perivar committed Aug 6, 2014
1 parent 7152b7d commit 8be355e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Mirage/Dbg.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ namespace Mirage
{
public class Dbg
{
//[Conditional("DEBUG")]
[Conditional("DEBUG")]
public static void WriteLine(String l, params object[] args)
{
Console.WriteLine (l, args);
}

//[Conditional("DEBUG")]
[Conditional("DEBUG")]
public static void Write(String l)
{
Console.Write (l);
Expand Down

0 comments on commit 8be355e

Please sign in to comment.