1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-11 18:30:43 +00:00

Fix: raising no route matched log level to Warning (#1424)

This commit is contained in:
Bo He 2021-11-27 13:11:38 +08:00 committed by GitHub
parent 2bbf2523e0
commit f2b1b79283
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -306,7 +306,7 @@ func (d *DefaultDispatcher) routedDispatch(ctx context.Context, link *transport.
newError("non existing tag: ", tag).AtWarning().WriteToLog(session.ExportIDToError(ctx))
}
} else {
newError("default route for ", destination).WriteToLog(session.ExportIDToError(ctx))
newError("default route for ", destination).AtWarning().WriteToLog(session.ExportIDToError(ctx))
}
}