FIX. Исправление даты логов
This commit is contained in:
@ -27,7 +27,7 @@ const saveLog = (
|
||||
response: any,
|
||||
startTime: string,
|
||||
) => {
|
||||
const endTime = moment().utc().format();
|
||||
const endTime = moment().format();
|
||||
const error = new ErrorModel({
|
||||
type,
|
||||
request: request,
|
||||
@ -41,7 +41,7 @@ const saveLog = (
|
||||
@Injectable()
|
||||
export class LoggingInterceptor implements NestInterceptor {
|
||||
intercept(context: ExecutionContext, next: CallHandler): Observable<any> {
|
||||
const start = moment().utc().format();
|
||||
const start = moment().format();
|
||||
const args = context.getArgs()?.[0] ?? {};
|
||||
const {headers, url, method, body} = args;
|
||||
const request = {
|
||||
|
||||
@ -24,7 +24,7 @@ const errorSchema = new mongoose.Schema({
|
||||
const ErrorModel = mongoose.model(LOG_TYPE.SERVER, errorSchema);
|
||||
|
||||
const saveError = (type: string, message: string, trace = '') => {
|
||||
const date = moment().utc().format();
|
||||
const date = moment().format();
|
||||
const error = new ErrorModel({
|
||||
type, message, trace, date
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user