Exemplo n.º 1
0
 writeln: function(s, len) {
     return logfile.write(this.handle, s + '\n');
 },
Exemplo n.º 2
0
 write: function(s, len) {
     return len ? logfile.write(this.handle, s, len) : logfile.write(this.handle, s);
 },