Commit 2472e250 authored by Josh Ji's avatar Josh Ji

Logger.log()

parent 299ca050
......@@ -15,4 +15,14 @@ public class Logger {
Util.arrayCopy(inputBuffer, inputOffset, logBuffer, cursor, inputLength);
cursor += inputLength;
}
public static void log(byte[] inputBuffer){
if((short)(inputBuffer.length + cursor) > (short)logBuffer.length){
logBuffer[(short)(logBuffer.length-4)] = 'O'; // over
logBuffer[(short)(logBuffer.length-3)] = 'F'; // flow
Util.setShort(logBuffer, (short)(logBuffer.length-2), (short)inputBuffer.length); // input length
return;
}
Util.arrayCopy(inputBuffer, (short)0, logBuffer, cursor, (short)inputBuffer.length);
cursor += (short)inputBuffer.length;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment