Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵月辉
/
fastgpt-migrated
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
62455c00
authored
Feb 12, 2026
by
Archer
Committed by
GitHub
Feb 12, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove invalid log (#6425)
parent
b11d141d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
13 deletions
+0
-13
packages/service/common/middle/entry.ts
+0
-13
No files found.
packages/service/common/middle/entry.ts
View file @
62455c00
...
...
@@ -86,12 +86,6 @@ export const NextEntry = ({
}
catch
(
error
)
{
// Handle Zod validation errors
if
(
error
instanceof
ZodError
)
{
errorLogger
.
warn
(
'Request validation failed'
,
{
requestId
,
method
,
url
,
error
});
return
jsonRes
(
res
,
{
code
:
400
,
message
:
'Data validation error'
,
...
...
@@ -100,13 +94,6 @@ export const NextEntry = ({
});
}
errorLogger
.
error
(
'Request handler error'
,
{
requestId
,
method
,
url
,
error
});
return
jsonRes
(
res
,
{
code
:
500
,
error
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment