mirror of
https://github.com/mempool/mempool.git
synced 2025-03-26 17:51:45 +01:00
parent
04ac820ed7
commit
4a14085908
@ -52,6 +52,7 @@ class Logger {
|
||||
private fac: any;
|
||||
private loghost: string;
|
||||
private logport: number;
|
||||
private client: dgram.Socket;
|
||||
|
||||
constructor(fac) {
|
||||
let prio;
|
||||
@ -63,6 +64,7 @@ class Logger {
|
||||
this.addprio(prio);
|
||||
}
|
||||
}
|
||||
this.client = dgram.createSocket('udp4');
|
||||
}
|
||||
|
||||
private addprio(prio): void {
|
||||
@ -118,14 +120,12 @@ class Logger {
|
||||
}
|
||||
|
||||
private syslog(msg) {
|
||||
let client, msgbuf;
|
||||
let msgbuf;
|
||||
msgbuf = Buffer.from(msg);
|
||||
client = dgram.createSocket('udp4');
|
||||
client.send(msgbuf, 0, msgbuf.length, this.logport, this.loghost, function(err, bytes) {
|
||||
this.client.send(msgbuf, 0, msgbuf.length, this.logport, this.loghost, function(err, bytes) {
|
||||
if (err) {
|
||||
console.log(err);
|
||||
}
|
||||
client.close();
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user