[mirotalksfu] - improve webhook, add readme
هذا الالتزام موجود في:
@@ -63,10 +63,12 @@ module.exports = class Logger {
|
||||
);
|
||||
}
|
||||
|
||||
getDateTime() {
|
||||
const currentTime = new Date().toLocaleString('en-US', this.tzOptions);
|
||||
const milliseconds = String(new Date().getMilliseconds()).padStart(3, '0');
|
||||
return colors.cyan(`${currentTime}:${milliseconds}`);
|
||||
getDateTime(color = true) {
|
||||
const now = new Date();
|
||||
const currentTime = now.toLocaleString('en-US', this.tzOptions);
|
||||
const milliseconds = String(now.getMilliseconds()).padStart(3, '0');
|
||||
const timestamp = `${currentTime}:${milliseconds}`;
|
||||
return color ? colors.cyan(timestamp) : timestamp;
|
||||
}
|
||||
|
||||
getFormatTime(ms) {
|
||||
|
||||
المرجع في مشكلة جديدة
حظر مستخدم