Skip to content

Commit 0875b97

Browse files
committed
chore: UUID 可能非法的日志从 error 改为 info
1 parent 48e2001 commit 0875b97

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sub-store",
3-
"version": "2.20.54",
3+
"version": "2.20.55",
44
"description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and Shadowrocket.",
55
"main": "src/main.js",
66
"scripts": {

backend/src/core/proxy-utils/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function parse(raw) {
8484
if (['vless', 'vmess'].includes(proxy.type)) {
8585
const isProxyUUIDValid = isValidUUID(proxy.uuid);
8686
if (!isProxyUUIDValid) {
87-
$.error(`UUID may be invalid: ${proxy.name} ${proxy.uuid}`);
87+
$.info(`UUID may be invalid: ${proxy.name} ${proxy.uuid}`);
8888
}
8989
// return isProxyUUIDValid;
9090
}
@@ -252,7 +252,7 @@ function produce(proxies, targetPlatform, type, opts = {}) {
252252
if (['vless', 'vmess'].includes(proxy.type)) {
253253
const isProxyUUIDValid = isValidUUID(proxy.uuid);
254254
if (!isProxyUUIDValid)
255-
$.error(`UUID may be invalid: ${proxy.name} ${proxy.uuid}`);
255+
$.info(`UUID may be invalid: ${proxy.name} ${proxy.uuid}`);
256256
// return isProxyUUIDValid;
257257
}
258258

0 commit comments

Comments
 (0)