Some logging fixes

This commit is contained in:
Deon George 2021-09-12 00:07:02 +10:00
parent fcdde10512
commit 9462e66a1c
3 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@ class EchoareaImport implements ShouldQueue
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
use ImportTrait; use ImportTrait;
protected const LOGKEY = 'JIE'; protected const LOGKEY = 'JEI';
private const importkey = 'echoarea'; private const importkey = 'echoarea';
private string $file; private string $file;

View File

@ -14,7 +14,7 @@ use App\Models\{Echoarea,Echomail,Netmail,Setup};
class MessageProcess implements ShouldQueue class MessageProcess implements ShouldQueue
{ {
private const LOGKEY = 'PP-'; private const LOGKEY = 'JMP';
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
@ -215,8 +215,8 @@ class MessageProcess implements ShouldQueue
self::LOGKEY, self::LOGKEY,
$this->msg->msgid, $this->msg->msgid,
$this->msg->echoarea, $this->msg->echoarea,
$this->msg->user_to,$this->msg->tftn, $this->msg->user_from,$this->msg->fftn,
$this->msg->user_from, $this->msg->user_to,
$o->id, $o->id,
)); ));

View File

@ -21,7 +21,7 @@ class NodelistImport implements ShouldQueue
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
use ImportTrait; use ImportTrait;
protected const LOGKEY = 'JIN'; protected const LOGKEY = 'JNI';
private const importkey = 'nodelist'; private const importkey = 'nodelist';
private string $file; private string $file;