Skip to content

Commit

Permalink
Fixed the Debug.TAG being used as the message in some Debug methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Gramlich committed Jul 26, 2011
1 parent c64de63 commit fbcd865
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AndroidManifest.xml
Expand Up @@ -4,7 +4,7 @@
android:versionCode="1"
android:versionName="1.0">

<uses-sdk android:minSdkVersion="4" />
<uses-sdk android:minSdkVersion="4"/>

<application android:debuggable="true"/>
</manifest>
2 changes: 1 addition & 1 deletion src/org/anddev/andengine/util/Debug.java
Expand Up @@ -93,7 +93,7 @@ public static void w(final String pMessage) {
}

public static void w(final Throwable pThrowable) {
Debug.w(sDebugTag, pThrowable);
Debug.w("", pThrowable);
}

public static void w(final String pMessage, final Throwable pThrowable) {
Expand Down

0 comments on commit fbcd865

Please sign in to comment.