Skip to content

Commit

Permalink
Fix a typo in log date format
Browse files Browse the repository at this point in the history
  • Loading branch information
c99koder committed Dec 17, 2020
1 parent a1b821e commit afbd663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/irccloud/android/IRCCloudLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

public class IRCCloudLog {
private static final LinkedList<String> lines = new LinkedList<>();
private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss.SSS", Locale.US);
private static final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss.SSS", Locale.US);
public static boolean CrashlyticsEnabled = false;
public static String defaultTag = "IRCCloud";
public static int defaultLevel = Log.INFO;
Expand Down

0 comments on commit afbd663

Please sign in to comment.