Ignore:
Timestamp:
Sep 4, 2018, 1:00:48 PM (6 years ago)
Author:
alloc
Message:

Code style cleanup (mostly whitespace changes, enforcing braces, using cleanup)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/LogBuffer.cs

    r270 r325  
    22using System.Collections.Generic;
    33using System.Text.RegularExpressions;
    4 
    54using UnityEngine;
    65
    7 namespace AllocsFixes.NetConnections.Servers.Web
    8 {
     6namespace AllocsFixes.NetConnections.Servers.Web {
    97        public class LogBuffer {
    108                private const int MAX_ENTRIES = 3000;
    119                private static LogBuffer instance;
     10
     11                private static readonly Regex logMessageMatcher =
     12                        new Regex (@"^([0-9]{4}-[0-9]{2}-[0-9]{2})T([0-9]{2}:[0-9]{2}:[0-9]{2}) ([0-9]+[,.][0-9]+) [A-Z]+ (.*)$");
     13
     14                private readonly List<LogEntry> logEntries = new List<LogEntry> ();
     15
     16                private int listOffset;
     17
     18                private LogBuffer () {
     19                        Logger.Main.LogCallbacks += LogCallback;
     20                }
    1221
    1322                public static LogBuffer Instance {
     
    1625                                        instance = new LogBuffer ();
    1726                                }
     27
    1828                                return instance;
    1929                        }
    2030                }
    21 
    22                 private static Regex logMessageMatcher = new Regex (@"^([0-9]{4}-[0-9]{2}-[0-9]{2})T([0-9]{2}:[0-9]{2}:[0-9]{2}) ([0-9]+[,.][0-9]+) [A-Z]+ (.*)$");
    23                 private List<LogEntry> logEntries = new List<LogEntry> ();
    24                 private int listOffset = 0;
    2531
    2632                public int OldestLine {
     
    5561                                        }
    5662                                }
     63
    5764                                return null;
    5865                        }
    59                 }
    60 
    61                 private LogBuffer () {
    62                         Logger.Main.LogCallbacks += LogCallback;
    6366                }
    6467
     
    123126                public class LogEntry {
    124127                        public string date;
     128                        public string message;
    125129                        public string time;
    126                         public string uptime;
    127                         public string message;
    128130                        public string trace;
    129131                        public LogType type;
     132                        public string uptime;
    130133                }
    131134        }
    132135}
    133 
Note: See TracChangeset for help on using the changeset viewer.