commit f4a639ecb2791eba7c02648e7966c086e49379d3 Author: sairate Date: Wed May 21 12:58:23 2025 +0800 Signed-off-by: sairate diff --git a/FastGithub.UI.exe b/FastGithub.UI.exe new file mode 100644 index 0000000..f89b5e5 Binary files /dev/null and b/FastGithub.UI.exe differ diff --git a/FastGithub.UI.exe.config b/FastGithub.UI.exe.config new file mode 100644 index 0000000..5035d4f --- /dev/null +++ b/FastGithub.UI.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9f5aa59 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 老九 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.html b/README.html new file mode 100644 index 0000000..dd26273 --- /dev/null +++ b/README.html @@ -0,0 +1,431 @@ + + + +README.md + + + + + + + + + + + + +

FastGithub

+

github加速神器,解决github打不开、用户头像无法加载、releases无法上传下载、git-clone、git-pull、git-push失败等问题。

+

1 程序下载

+ +

2 部署方式

+

2.1 windows-x64桌面

+ +

2.2 windows-x64服务

+ +

2.3 linux-x64终端

+ +

2.4 linux-x64服务

+ +

2.5 macOS-x64

+ +

2.6 docker-compose一键部署

+ +

3 软件功能

+ +

4 证书验证

+

4.1 git

+

git操作提示SSL certificate problem
+需要关闭git的证书验证:git config --global http.sslverify false

+

4.2 firefox

+

firefox提示连接有潜在的安全问题
+设置->隐私与安全->证书->查看证书->证书颁发机构,导入cacert/fastgithub.cer,勾选“信任由此证书颁发机构来标识网站”

+

5 安全性说明

+

FastGithub为每台不同的主机生成自颁发CA证书,保存在cacert文件夹下。客户端设备需要安装和无条件信任自颁发的CA证书,请不要将证书私钥泄露给他人,以免造成损失。

+

6 合法性说明

+

《国际联网暂行规定》第六条规定:“计算机信息网络直接进行国际联网,必须使用邮电部国家公用电信网提供的国际出入口信道。任何单位和个人不得自行建立或者使用其他信道进行国际联网。” +FastGithub本地代理使用的都是“公用电信网提供的国际出入口信道”,从国外Github服务器到国内用户电脑上FastGithub程序的流量,使用的是正常流量通道,其间未对流量进行任何额外加密(仅有网页原有的TLS加密,区别于VPN的流量加密),而FastGithub获取到网页数据之后发生的整个代理过程完全在国内,不再适用国际互联网相关之规定。

+ + + diff --git a/README.md b/README.md new file mode 100644 index 0000000..75c0a79 --- /dev/null +++ b/README.md @@ -0,0 +1,59 @@ +# FastGithub +github加速神器,解决github打不开、用户头像无法加载、releases无法上传下载、git-clone、git-pull、git-push失败等问题。 + +### 1 程序下载 +* [github-release](https://github.com/dotnetcore/fastgithub/releases) +* Q群1 [307306673](https://qm.qq.com/cgi-bin/qm/qr?k=cx_MgEIvoo1EMkrKg5tXz8vMdtPap3Rw&jump_from=webapi) [已满] +* Q群2 [742376932](https://qm.qq.com/cgi-bin/qm/qr?k=6BBJ1nrJwe1o1E4-NJfwSOP-C4sMGc4q&jump_from=webapi) +* Q群3 [597131950](https://jq.qq.com/?_wv=1027&k=1YpGW564) + +### 2 部署方式 +#### 2.1 windows-x64桌面 +* 双击运行FastGithub.UI.exe + +#### 2.2 windows-x64服务 +* `fastgithub.exe start` // 以windows服务安装并启动 +* `fastgithub.exe stop` // 以windows服务卸载并删除 + +#### 2.3 linux-x64终端 +* `sudo ./fastgithub` +* 设置系统自动代理为`http://127.0.0.1:38457`,或手动代理http/https为`127.0.0.1:38457` + +#### 2.4 linux-x64服务 +* `sudo ./fastgithub start` // 以systemd服务安装并启动 +* `sudo ./fastgithub stop` // 以systemd服务卸载并删除 +* 设置系统自动代理为`http://127.0.0.1:38457`,或手动代理http/https为`127.0.0.1:38457` + +#### 2.5 macOS-x64 +* 双击运行fastgithub +* 安装cacert/fastgithub.cer并设置信任 +* 设置系统自动代理为`http://127.0.0.1:38457`,或手动代理http/https为`127.0.0.1:38457` +* [具体配置详情](https://github.com/dotnetcore/FastGithub/blob/master/MacOSXConfig.md) + +#### 2.6 docker-compose一键部署 +* 准备好docker 18.09, docker-compose. +* 在源码目录下,有一个docker-compose.yaml 文件,专用于在实际项目中,临时使用github.com源码,而做的demo配置。 +* 根据自己的需要更新docker-compose.yaml中的sample和build镜像即可完成拉github.com源码加速,并基于源码做后续的操作。 + +### 3 软件功能 +* 提供域名的纯净IP解析; +* 提供IP测速并选择最快的IP; +* 提供域名的tls连接自定义配置; +* google的CDN资源替换,解决大量国外网站无法加载js和css的问题; + +### 4 证书验证 +#### 4.1 git +git操作提示`SSL certificate problem`
+需要关闭git的证书验证:`git config --global http.sslverify false` + +#### 4.2 firefox +firefox提示`连接有潜在的安全问题`
+设置->隐私与安全->证书->查看证书->证书颁发机构,导入cacert/fastgithub.cer,勾选“信任由此证书颁发机构来标识网站” + + +### 5 安全性说明 +FastGithub为每台不同的主机生成自颁发CA证书,保存在cacert文件夹下。客户端设备需要安装和无条件信任自颁发的CA证书,请不要将证书私钥泄露给他人,以免造成损失。 + +### 6 合法性说明 +《国际联网暂行规定》第六条规定:“计算机信息网络直接进行国际联网,必须使用邮电部国家公用电信网提供的国际出入口信道。任何单位和个人不得自行建立或者使用其他信道进行国际联网。” +FastGithub本地代理使用的都是“公用电信网提供的国际出入口信道”,从国外Github服务器到国内用户电脑上FastGithub程序的流量,使用的是正常流量通道,其间未对流量进行任何额外加密(仅有网页原有的TLS加密,区别于VPN的流量加密),而FastGithub获取到网页数据之后发生的整个代理过程完全在国内,不再适用国际互联网相关之规定。 diff --git a/appsettings.json b/appsettings.json new file mode 100644 index 0000000..e1ee143 --- /dev/null +++ b/appsettings.json @@ -0,0 +1,37 @@ +{ + // 新增的子配置文件appsettings.*.json,重启应用程序才生效 + "FastGithub": { + "HttpProxyPort": 38457, // http代理端口,linux/osx平台使用 + "FallbackDns": [ // 以下dns必须要支持tcp + "8.8.8.8:53", + "119.29.29.29:53", + "114.114.114.114:53" + ], + "DomainConfigs": { + "*.fastgithub.com": { // 域名的*表示除.之外0到多个任意字符 + "TlsSni": false, // 指示tls握手时是否发送SNI + "TlsSniPattern": null, // SNI表达式,@domain变量表示取域名值 @ipaddress变量表示取ip @random变量表示取随机值,其它字符保留不替换 + "TlsIgnoreNameMismatch": false, // 是否忽略服务器证书域名不匹配,当不发送SNI时服务器可能发回域名不匹配的证书,默认为false + "Timeout": null, // 请求超时时长,格式为"00:02:00",默认为null + "IPAddress": null, // 请求的ip,默认为null + "Destination": null, // 请求目的地,格式为绝对或相对Uri,默认null + "Response": { // 阻断请求直接响应,设置了Response其它配置都不起作用了 + "StatusCode": 404, // 响应的状态码 + "ContentType": "text/plain;charset=utf-8", // 如果有ContentValue,就要指示ContentType + "ContentValue": "这是一个用于示范配置的域名" // 自定义返回的内容,这是可选的 + } + } + } + }, + "Serilog": { + "MinimumLevel": { + "Default": "Information", + "Override": { + "Yarp": "Warning", + "System": "Warning", + "Microsoft": "Warning", + "Microsoft.AspNetCore.Server.Kestrel": "Error" + } + } + } +} diff --git a/appsettings/appsettings.amazonaws.json b/appsettings/appsettings.amazonaws.json new file mode 100644 index 0000000..686af53 --- /dev/null +++ b/appsettings/appsettings.amazonaws.json @@ -0,0 +1,12 @@ +{ + "FastGithub": { + "DomainConfigs": { + "s3.amazonaws.com": { + "TlsIgnoreNameMismatch": true + }, + "*.s3.amazonaws.com": { + "TlsIgnoreNameMismatch": true + } + } + } +} \ No newline at end of file diff --git a/appsettings/appsettings.bootcss.json b/appsettings/appsettings.bootcss.json new file mode 100644 index 0000000..166c19f --- /dev/null +++ b/appsettings/appsettings.bootcss.json @@ -0,0 +1,13 @@ +{ + "FastGithub": { + "DomainConfigs": { + "*.cloudflare.com": { + "TlsSni": true + }, + "cdn.bootcss.com": { + "TlsSni": true, + "Destination": "https://cdnjs.cloudflare.com/ajax/libs/" + } + } + } +} \ No newline at end of file diff --git a/appsettings/appsettings.fastly.json b/appsettings/appsettings.fastly.json new file mode 100644 index 0000000..2c51353 --- /dev/null +++ b/appsettings/appsettings.fastly.json @@ -0,0 +1,15 @@ +{ + "FastGithub": { + "DomainConfigs": { + "*.fastly.net": { + "TlsIgnoreNameMismatch": true + }, + "*.*.fastly.net": { + "TlsIgnoreNameMismatch": true + }, + "*.*.*.fastly.net": { + "TlsIgnoreNameMismatch": true + } + } + } +} \ No newline at end of file diff --git a/appsettings/appsettings.github.json b/appsettings/appsettings.github.json new file mode 100644 index 0000000..1285c4e --- /dev/null +++ b/appsettings/appsettings.github.json @@ -0,0 +1,36 @@ +{ + "FastGithub": { + "DomainConfigs": { + "github.com": { + "TlsSni": false + }, + "api.github.com": { + "TlsSni": false + }, + "githubstatus.com": { + "TlsSni": false + }, + "gist.github.com": { + "TlsIgnoreNameMismatch": true + }, + "vscode-auth.github.com": { + "TlsSni": true + }, + "*.github.com": { + "TlsIgnoreNameMismatch": true + }, + "*.github.io": { + "TlsIgnoreNameMismatch": true + }, + "*.githubapp.com": { + "TlsIgnoreNameMismatch": true + }, + "*.githubassets.com": { + "TlsIgnoreNameMismatch": true + }, + "*.githubusercontent.com": { + "TlsIgnoreNameMismatch": true + } + } + } +} \ No newline at end of file diff --git a/appsettings/appsettings.google.json b/appsettings/appsettings.google.json new file mode 100644 index 0000000..a61b140 --- /dev/null +++ b/appsettings/appsettings.google.json @@ -0,0 +1,25 @@ +{ + "FastGithub": { + "DomainConfigs": { + "ajax.googleapis.com": { + "TlsSni": true, + "Destination": "https://gapis.geekzu.org/ajax/" + }, + "fonts.googleapis.com": { + "TlsSni": true, + "Destination": "https://fonts.geekzu.org/" + }, + "themes.googleusercontent.com": { + "TlsSni": true, + "Destination": "https://gapis.geekzu.org/g-themes/" + }, + "fonts.gstatic.com": { + "TlsSni": true, + "Destination": "https://gapis.geekzu.org/g-fonts/" + }, + "*.gravatar.com": { + "TlsIgnoreNameMismatch": true + } + } + } +} diff --git a/appsettings/appsettings.imgur.json b/appsettings/appsettings.imgur.json new file mode 100644 index 0000000..f5c364a --- /dev/null +++ b/appsettings/appsettings.imgur.json @@ -0,0 +1,15 @@ +{ + "FastGithub": { + "DomainConfigs": { + "imgur.com": { + "TlsIgnoreNameMismatch": true + }, + "*.imgur.com": { + "TlsIgnoreNameMismatch": true + }, + "*.*.imgur.com": { + "TlsIgnoreNameMismatch": true + } + } + } +} \ No newline at end of file diff --git a/appsettings/appsettings.microsoft.json b/appsettings/appsettings.microsoft.json new file mode 100644 index 0000000..7222bf1 --- /dev/null +++ b/appsettings/appsettings.microsoft.json @@ -0,0 +1,85 @@ +{ + "FastGithub": { + "DomainConfigs": { + "azure.com": { + "TlsSni": true + }, + "*.azure.com": { + "TlsSni": true + }, + "*.*.azure.com": { + "TlsSni": true + }, + "*.*.*.azure.com": { + "TlsSni": true + }, + "*.azureedge.net": { + "TlsSni": true + }, + "*.visualstudio.com": { + "TlsSni": true + }, + "*.*.visualstudio.com": { + "TlsSni": true + }, + "*.live.com": { + "TlsSni": true + }, + "*.*.live.com": { + "TlsSni": true + }, + "microsoftonline.com": { + "TlsSni": true + }, + "*.microsoftonline.com": { + "TlsSni": true + }, + "windows.net": { + "TlsSni": true + }, + "*.windows.net": { + "TlsSni": true + }, + "*.*.windows.net": { + "TlsSni": true + }, + "azurewebsites.net": { + "TlsSni": true + }, + "*.azurewebsites.net": { + "TlsSni": true + }, + "*.*.azurewebsites.net": { + "TlsSni": true + }, + "*.vsassets.io": { + "TlsSni": true + }, + "aadcdn.msauth.net": { + "TlsSni": true + }, + "aadcdn.msftauth.net": { + "TlsSni": true + }, + "static2.sharepointonline.com": { + "TlsSni": true + }, + "az764295.vo.msecnd.net": { + "TlsSni": true, + "Destination": "https://vscode.cdn.azure.cn/" + }, + "*.*.msecnd.net": { + "TlsSni": true + }, + "*.aspnetcdn.com": { + "TlsSni": true + }, + "onedrive.live.com": { + "TlsSni": false + }, + "*.onedrive.live.com": { + "TlsSni": false + } + } + } +} \ No newline at end of file diff --git a/appsettings/appsettings.packages.json b/appsettings/appsettings.packages.json new file mode 100644 index 0000000..2471588 --- /dev/null +++ b/appsettings/appsettings.packages.json @@ -0,0 +1,12 @@ +{ + "FastGithub": { + "DomainConfigs": { + "*.nuget.org": { + "TlsSni": true + }, + "*.maven.org": { + "TlsSni": true + } + } + } +} \ No newline at end of file diff --git a/appsettings/appsettings.v2ex.json b/appsettings/appsettings.v2ex.json new file mode 100644 index 0000000..fb5326b --- /dev/null +++ b/appsettings/appsettings.v2ex.json @@ -0,0 +1,12 @@ +{ + "FastGithub": { + "DomainConfigs": { + "v2ex.com": { + "TlsSni": false + }, + "*.v2ex.com": { + "TlsSni": false + } + } + } +} \ No newline at end of file diff --git a/cacert/fastgithub.cer b/cacert/fastgithub.cer new file mode 100644 index 0000000..e9dc746 --- /dev/null +++ b/cacert/fastgithub.cer @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDBjCCAe6gAwIBAgIQAP2jqJv1v7HnrRvYqjqaOTANBgkqhkiG9w0BAQsFADAV +MRMwEQYDVQQDDApGYXN0R2l0aHViMB4XDTI1MDEwNzAwMDAwMFoXDTM1MDEwODAw +MDAwMFowFTETMBEGA1UEAwwKRmFzdEdpdGh1YjCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBAIvq+N+wPHFuBfVorUvHbFGqQHURbWPm6UpVkeiJJt/b+3r8 +Xp+h6uVHz6P7qJ2e4iOyyFrpEUL9UBKmLehM+AI9pCFN6AfirtTMyoOhG8QR2nFT +Vs/DgkVOfz8ooedcpgOeIHxRDFnE3vKs7PI2hEo4t9/BgIc7ErmHSsIRegMPcSPC +/fSygLp65qazQbyQiOcZYQEEFT9qSgmUN0m8dXq63x8pE3VbLe2p/MhVLTx0FQMm +LXnUiJreQqAhmdlqH4puNlycNqAy8mGvd8MJ6AjEwfFsFg7tOGj96ku8cllAaxxW +53HwiXtNp5EOvJa0qfqHoO0X5Z6yS17TD3CVdokCAwEAAaNSMFAwEgYDVR0TAQH/ +BAgwBgEB/wIBATALBgNVHQ8EBAMCAYYwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwEw +FQYDVR0RBA4wDIIKRmFzdEdpdGh1YjANBgkqhkiG9w0BAQsFAAOCAQEAJ/crGYaz +sJweccLVuUH4td10jx6ggqeHR9m0lU2yQRoW2WQ0/buLCxifxgVBRTbSFZaFnK8b +RRIGHOsu7Lv6fAAu1nK2AkZVGS95t3SCHfGNIhkpgxGmVLX3j1TCTwuG+6KHHyHs +okxV2iOMup+D/TM98ET/wfZA8LXUMyg2gls++1Tw3dpGZ5RBsDRyuQxPsHENvz5E +1XA8AZr0noaOOVJM5lNmLDSdAPJNT6SohpULWhstWxaqHDUqzAM3XAEu86iuamXr +VXfu/4reNDUz1kPfOgjp/1gLMvuKJoRbCyuRGRrcpwsUBpz9EGfNdcBbBfILLNHo +lzh5lMrB/DBuow== +-----END CERTIFICATE----- diff --git a/cacert/fastgithub.key b/cacert/fastgithub.key new file mode 100644 index 0000000..37ba9c2 --- /dev/null +++ b/cacert/fastgithub.key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEpAIBAAKCAQEAi+r437A8cW4F9WitS8dsUapAdRFtY+bpSlWR6Ikm39v7evxe +n6Hq5UfPo/uonZ7iI7LIWukRQv1QEqYt6Ez4Aj2kIU3oB+Ku1MzKg6EbxBHacVNW +z8OCRU5/Pyih51ymA54gfFEMWcTe8qzs8jaESji338GAhzsSuYdKwhF6Aw9xI8L9 +9LKAunrmprNBvJCI5xlhAQQVP2pKCZQ3Sbx1errfHykTdVst7an8yFUtPHQVAyYt +edSImt5CoCGZ2Wofim42XJw2oDLyYa93wwnoCMTB8WwWDu04aP3qS7xyWUBrHFbn +cfCJe02nkQ68lrSp+oeg7RflnrJLXtMPcJV2iQIDAQABAoIBAAaJYviiVWSQOQ+K +xSPX7H/RNiMx/fwPluEN59vnAm2ta42Gmk4XZK+y/+ifknRQrqxvxwv2PQP17SZ9 +5IGojOKf6hnTN66coMHY0nI9Vdx+YAfw1oqszdp6jRfQiGXUbn4XRlnAeJT+DVNl +kElNkjcceLynn99Re3G2+B9ibSKU5YwSkipPJb4GS2IiqhChZQaTtDJu72fo2Gy6 +KgAJIBbJHImw8tRRakj9WgN9XaCl5+xl1sCb1B9F4UMoPDYQgIGdnuPJjy4gB077 +Ix7+/MsYu7L61kiCgDcqbWoNLbaNmH7Kn7ZrN2SazJ60cj8EaWIJrBUuY6i02wxF +//Ot6R0CgYEA1ONMb61GisleuImsJ+bBnkRwSPONRRwp2/MN02b1LMGaUnhfbz3y +Zo+CnS/hOemxd8vOCp3PMHKcfOeo7m28e0+Whhrkg52OhK9Sm7iHxA/uN5dcK0kA +97iFd33n26C5RlajJo6WhEIKSMQdn0vEMmgPuvCp4UTCse6H1zjfJO0CgYEAqEC0 +PeVRfjyGeuAXXh8uc5LmvDFoBvAJ/cpjdokdWj9UPJFCNW3B/AfVZCpohxCpcNr4 ++QlqZDW35IdUFE7gfifPY7ei1zhNz8tIo0HUaWevUosubzpUShTwjQSsHoI82Z0+ +p3IKwDIef9kUvMPvHeGaUNAjcruCoZnYW/fCoI0CgYEAxovew+D1A4dfIfi0aNpc +BYGKv172iFgF6i663EkPrFg712KQjy1VH7YEeRkok1ySuUmItnoLvAGIVS2xbf1G +ZjMKDbSTHvUY8EKbZsQpSwAYihxOR8hkcKTVRWZVkY5KfYFb1B/z3RHCia7ueZyu +NNy8nvrJVWFNu6jdZCqUYtkCgYB38QBMa3BHvF/lsmAWIcZcb2l62QGeiHmm6SM0 +ehRppGGpd6eqLN8vimoNqMmxFyijIgaAibzFSSIZkHtYqs4QQNLv9BXqtOGLcxAK +CcChj1+FSWDFu+Agm4LMFHuamB9GxnjGp16Qmmnxm8/TrR2FwLDgUTAj9xXtm52I +GjwtdQKBgQCzx17tL3d/xM0d/9n8vAg5ntdcc/S3uhm5NsnlRwJAGrqbwopI+NE0 +KF8lA2NBYEiyeMXe0YxAhuLgvBYZDUmgCW+iDNRPdIdCsf5iJdAA/Ql4QVqO8hM8 +xoG8yNCn8hJ67vbM5FFSx81Kce2kAQRpX3ldf7yq83KiocNrkMiQtw== +-----END RSA PRIVATE KEY----- diff --git a/dnscrypt-proxy/LICENSE b/dnscrypt-proxy/LICENSE new file mode 100644 index 0000000..cf873f5 --- /dev/null +++ b/dnscrypt-proxy/LICENSE @@ -0,0 +1,15 @@ +ISC License + +Copyright (c) 2018-2021, Frank Denis + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. diff --git a/dnscrypt-proxy/dnscrypt-proxy.exe b/dnscrypt-proxy/dnscrypt-proxy.exe new file mode 100644 index 0000000..8ccb040 Binary files /dev/null and b/dnscrypt-proxy/dnscrypt-proxy.exe differ diff --git a/dnscrypt-proxy/dnscrypt-proxy.toml b/dnscrypt-proxy/dnscrypt-proxy.toml new file mode 100644 index 0000000..a889939 --- /dev/null +++ b/dnscrypt-proxy/dnscrypt-proxy.toml @@ -0,0 +1,395 @@ +# ############################################# +# # +# dnscrypt-proxy configuration # +# # +# ############################################# + +listen_addresses = [ "127.0.0.1:5533" ] +# # Maximum number of simultaneous client connections to accept +max_clients = 250 +# # Switch to a different system user after listening sockets have been created. +# # Note (1): this feature is currently unsupported on Windows. +# # Note (2): this feature is not compatible with systemd socket activation. +# # Note (3): when using -pidfile, the PID file directory must be writable by the new user +# user_name = 'nobody' +# # Require servers (from remote sources) to satisfy specific properties +# Use servers reachable over IPv4 +ipv4_servers = true +# Use servers reachable over IPv6 -- Do not enable if you don't have IPv6 connectivity +ipv6_servers = false +# Use servers implementing the DNSCrypt protocol +dnscrypt_servers = true +# Use servers implementing the DNS-over-HTTPS protocol +doh_servers = true +# Use servers implementing the Oblivious DoH protocol +odoh_servers = false +# # Require servers defined by remote sources to satisfy specific properties +# Server must support DNS security extensions (DNSSEC) +require_dnssec = false +# Server must not log user queries (declarative) +require_nolog = true +# Server must not enforce its own blocklist (for parental control, ads blocking...) +require_nofilter = true +# Server names to avoid even if they match all criteria +disabled_server_names = [] +# # Always use TCP to connect to upstream servers. +# # This can be useful if you need to route everything through Tor. +# # Otherwise, leave this to `false`, as it doesn't improve security +# # (dnscrypt-proxy will always encrypt everything even using UDP), and can +# # only increase latency. +force_tcp = false +# # SOCKS proxy +# # Uncomment the following line to route all TCP connections to a local Tor node +# # Tor doesn't support UDP, so set `force_tcp` to `true` as well. +# proxy = 'socks5://127.0.0.1:9050' +# # HTTP/HTTPS proxy +# # Only for DoH servers +# http_proxy = 'http://127.0.0.1:8888' +# # How long a DNS query will wait for a response, in milliseconds. +# # If you have a network with *a lot* of latency, you may need to +# # increase this. Startup may be slower if you do so. +# # Don't increase it too much. 10000 is the highest reasonable value. +timeout = 5000 +# # Keepalive for HTTP (HTTPS, HTTP/2) queries, in seconds +keepalive = 30 +# # Add EDNS-client-subnet information to outgoing queries +# # +# # Multiple networks can be listed; they will be randomly chosen. +# # These networks don't have to match your actual networks. +# edns_client_subnet = ["0.0.0.0/0", "2001:db8::/32"] +# # Response for blocked queries. Options are `refused`, `hinfo` (default) or +# # an IP response. To give an IP response, use the format `a:,aaaa:`. +# # Using the `hinfo` option means that some responses will be lies. +# # Unfortunately, the `hinfo` option appears to be required for Android 8+ +# blocked_query_response = 'refused' +# # Load-balancing strategy: 'p2' (default), 'ph', 'p', 'first' or 'random' +# # Randomly choose 1 of the fastest 2, half, n, 1 or all live servers by latency. +# # The response quality still depends on the server itself. +# lb_strategy = 'p2' +# # Set to `true` to constantly try to estimate the latency of all the resolvers +# # and adjust the load-balancing parameters accordingly, or to `false` to disable. +# # Default is `true` that makes 'p2' `lb_strategy` work well. +# lb_estimator = true +# # Log level (0-6, default: 2 - 0 is very verbose, 6 only contains fatal errors) +# log_level = 2 +# # Log file for the application, as an alternative to sending logs to +# # the standard system logging service (syslog/Windows event log). +# # +# # This file is different from other log files, and will not be +# # automatically rotated by the application. +# log_file = 'dnscrypt-proxy.log' +# # When using a log file, only keep logs from the most recent launch. +# log_file_latest = true +# # Use the system logger (syslog on Unix, Event Log on Windows) +# use_syslog = true +# # Delay, in minutes, after which certificates are reloaded +cert_refresh_delay = 240 +# # DNSCrypt: Create a new, unique key for every single DNS query +# # This may improve privacy but can also have a significant impact on CPU usage +# # Only enable if you don't have a lot of network load +# dnscrypt_ephemeral_keys = false +# # DoH: Disable TLS session tickets - increases privacy but also latency +# tls_disable_session_tickets = false +# # DoH: Use a specific cipher suite instead of the server preference +# # 49199 = TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 +# # 49195 = TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 +# # 52392 = TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 +# # 52393 = TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 +# # 4865 = TLS_AES_128_GCM_SHA256 +# # 4867 = TLS_CHACHA20_POLY1305_SHA256 +# # +# # On non-Intel CPUs such as MIPS routers and ARM systems (Android, Raspberry Pi...), +# # the following suite improves performance. +# # This may also help on Intel CPUs running 32-bit operating systems. +# # +# # Keep tls_cipher_suite empty if you have issues fetching sources or +# # connecting to some DoH servers. Google and Cloudflare are fine with it. +# tls_cipher_suite = [52392, 49199] +# # Bootstrap resolvers +# # +# # These are normal, non-encrypted DNS resolvers, that will be only used +# # for one-shot queries when retrieving the initial resolvers list and if +# # the system DNS configuration doesn't work. +# # +# # No user queries will ever be leaked through these resolvers, and they will +# # not be used after IP addresses of DoH resolvers have been found (if you are +# # using DoH). +# # +# # They will never be used if lists have already been cached, and if the stamps +# # of the configured servers already include IP addresses (which is the case for +# # most of DoH servers, and for all DNSCrypt servers and relays). +# # +# # They will not be used if the configured system DNS works, or after the +# # proxy already has at least one usable secure resolver. +# # +# # Resolvers supporting DNSSEC are recommended, and, if you are using +# # DoH, bootstrap resolvers should ideally be operated by a different entity +# # than the DoH servers you will be using, especially if you have IPv6 enabled. +# # +# # People in China may want to use 114.114.114.114:53 here. +# # Other popular options include 8.8.8.8, 9.9.9.9 and 1.1.1.1. +# # +# # If more than one resolver is specified, they will be tried in sequence. +# # +# # TL;DR: put valid standard resolver addresses here. Your actual queries will +# # not be sent there. If you're using DNSCrypt or Anonymized DNS and your +# # lists are up to date, these resolvers will not even be used. +bootstrap_resolvers = [ '9.9.9.9:53', '8.8.8.8:53' ] +# # Always use the bootstrap resolver before the system DNS settings. +ignore_system_dns = true +# # Maximum time (in seconds) to wait for network connectivity before +# # initializing the proxy. +# # Useful if the proxy is automatically started at boot, and network +# # connectivity is not guaranteed to be immediately available. +# # Use 0 to not test for connectivity at all (not recommended), +# # and -1 to wait as much as possible. +netprobe_timeout = 60 +# # Address and port to try initializing a connection to, just to check +# # if the network is up. It can be any address and any port, even if +# # there is nothing answering these on the other side. Just don't use +# # a local address, as the goal is to check for Internet connectivity. +# # On Windows, a datagram with a single, nul byte will be sent, only +# # when the system starts. +# # On other operating systems, the connection will be initialized +# # but nothing will be sent at all. +netprobe_address = '9.9.9.9:53' +# # Offline mode - Do not use any remote encrypted servers. +# # The proxy will remain fully functional to respond to queries that +# # plugins can handle directly (forwarding, cloaking, ...) +# offline_mode = false +# # Additional data to attach to outgoing queries. +# # These strings will be added as TXT records to queries. +# # Do not use, except on servers explicitly asking for extra data +# # to be present. +# # encrypted-dns-server can be configured to use this for access control +# # in the [access_control] section +# query_meta = ['key1:value1', 'key2:value2', 'token:MySecretToken'] +# # Automatic log files rotation +# Maximum log files size in MB - Set to 0 for unlimited. +log_files_max_size = 10 +# How long to keep backup files, in days +log_files_max_age = 7 +# Maximum log files backups to keep (or 0 to keep all backups) +log_files_max_backups = 1 +# ######################## +# Filters # +# ######################## +# # Note: if you are using dnsmasq, disable the `dnssec` option in dnsmasq if you +# # configure dnscrypt-proxy to do any kind of filtering (including the filters +# # below and blocklists). +# # You can still choose resolvers that do DNSSEC validation. +# # Immediately respond to IPv6-related queries with an empty response +# # This makes things faster when there is no IPv6 connectivity, but can +# # also cause reliability issues with some stub resolvers. +block_ipv6 = false +# # Immediately respond to A and AAAA queries for host names without a domain name +block_unqualified = true +# # Immediately respond to queries for local zones instead of leaking them to +# # upstream resolvers (always causing errors or timeouts). +block_undelegated = true +# # TTL for synthetic responses sent when a request has been blocked (due to +# # IPv6 or blocklists). +reject_ttl = 10 +# ################################################################################# +# Route queries for specific domains to a dedicated set of servers # +# ################################################################################# +# # See the `example-forwarding-rules.txt` file for an example +# forwarding_rules = 'forwarding-rules.txt' +# ############################## +# Cloaking rules # +# ############################## +# # Cloaking returns a predefined address for a specific name. +# # In addition to acting as a HOSTS file, it can also return the IP address +# # of a different name. It will also do CNAME flattening. +# # +# # See the `example-cloaking-rules.txt` file for an example +# cloaking_rules = 'cloaking-rules.txt' +# # TTL used when serving entries in cloaking-rules.txt +# cloak_ttl = 600 +# ########################## +# DNS cache # +# ########################## +# # Enable a DNS cache to reduce latency and outgoing traffic +cache = true +# # Cache size +cache_size = 4096 +cache_min_ttl = 60 +cache_max_ttl = 120 +cache_neg_min_ttl = 60 +cache_neg_max_ttl = 120 +log_level = 6 +lb_strategy = "ph" + +# # dnscrypt-proxy can act as a local DoH server. By doing so, web browsers +# # requiring a direct connection to a DoH server in order to enable some +# # features will enable these, without bypassing your DNS proxy. +# # Addresses that the local DoH server should listen to +# listen_addresses = ['127.0.0.1:3000'] +# # Path of the DoH URL. This is not a file, but the part after the hostname +# # in the URL. By convention, `/dns-query` is frequently chosen. +# # For each `listen_address` the complete URL to access the server will be: +# # `https://` (ex: `https://127.0.0.1/dns-query`) +# path = '/dns-query' +# # Certificate file and key - Note that the certificate has to be trusted. +# # See the documentation (wiki) for more information. +# cert_file = 'localhost.pem' +# cert_key_file = 'localhost.pem' +# ############################## +# Query logging # +# ############################## +# # Log client queries to a file +[query_log] +# # Path to the query log file (absolute, or relative to the same directory as the config file) +# # Can be set to /dev/stdout in order to log to the standard output. +# file = 'query.log' +# # Query log format (currently supported: tsv and ltsv) +format = 'tsv' + +# # Do not log these query types, to reduce verbosity. Keep empty to log everything. +# ignored_qtypes = ['DNSKEY', 'NS'] +# ########################################### +# Suspicious queries logging # +# ########################################### +# # Log queries for nonexistent zones +# # These queries can reveal the presence of malware, broken/obsolete applications, +# # and devices signaling their presence to 3rd parties. +[nx_log] +# # Path to the query log file (absolute, or relative to the same directory as the config file) +# file = 'nx.log' +# # Query log format (currently supported: tsv and ltsv) +format = 'tsv' + +# [schedules.'time-to-sleep'] +# mon = [{after='21:00', before='7:00'}] +# tue = [{after='21:00', before='7:00'}] +# wed = [{after='21:00', before='7:00'}] +# thu = [{after='21:00', before='7:00'}] +# fri = [{after='23:00', before='7:00'}] +# sat = [{after='23:00', before='7:00'}] +# sun = [{after='21:00', before='7:00'}] +# [schedules.'work'] +# mon = [{after='9:00', before='18:00'}] +# tue = [{after='9:00', before='18:00'}] +# wed = [{after='9:00', before='18:00'}] +# thu = [{after='9:00', before='18:00'}] +# fri = [{after='9:00', before='17:00'}] +# ######################## +# Servers # +# ######################## +# # Remote lists of available servers +# # Multiple sources can be used simultaneously, but every source +# # requires a dedicated cache file. +# # +# # Refer to the documentation for URLs of public sources. +# # +# # A prefix can be prepended to server names in order to +# # avoid collisions if different sources share the same for +# # different servers. In that case, names listed in `server_names` +# # must include the prefixes. +# # +# # If the `urls` property is missing, cache files and valid signatures +# # must already be present. This doesn't prevent these cache files from +# # expiring after `refresh_delay` hours. +# # Cache freshness is checked every 24 hours, so values for 'refresh_delay' +# # of less than 24 hours will have no effect. +# # A maximum delay of 168 hours (1 week) is imposed to ensure cache freshness. +[sources] +# # An example of a remote source from https://github.com/DNSCrypt/dnscrypt-resolvers +[sources.public-resolvers] +urls = [ 'https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/public-resolvers.md', 'https://download.dnscrypt.info/resolvers-list/v3/public-resolvers.md', 'https://ipv6.download.dnscrypt.info/resolvers-list/v3/public-resolvers.md', 'https://download.dnscrypt.net/resolvers-list/v3/public-resolvers.md' ] +cache_file = 'public-resolvers.md' +minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3' +refresh_delay = 72 +prefix = '' + +# # Anonymized DNS relays +[sources.relays] +urls = [ 'https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/relays.md', 'https://download.dnscrypt.info/resolvers-list/v3/relays.md', 'https://ipv6.download.dnscrypt.info/resolvers-list/v3/relays.md', 'https://download.dnscrypt.net/resolvers-list/v3/relays.md' ] +cache_file = 'relays.md' +minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3' +refresh_delay = 72 +prefix = '' + +# # ODoH (Oblivious DoH) servers and relays +# [sources.'odoh-servers'] +# urls = ['https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/odoh-servers.md', 'https://download.dnscrypt.info/resolvers-list/v3/odoh-servers.md', 'https://ipv6.download.dnscrypt.info/resolvers-list/v3/odoh-servers.md', 'https://download.dnscrypt.net/resolvers-list/v3/odoh-servers.md'] +# cache_file = 'odoh-servers.md' +# minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3' +# refresh_delay = 24 +# prefix = '' +# [sources.'odoh-relays'] +# urls = ['https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/odoh-relays.md', 'https://download.dnscrypt.info/resolvers-list/v3/odoh-relays.md', 'https://ipv6.download.dnscrypt.info/resolvers-list/v3/odoh-relays.md', 'https://download.dnscrypt.net/resolvers-list/v3/odoh-relays.md'] +# cache_file = 'odoh-relays.md' +# minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3' +# refresh_delay = 24 +# prefix = '' +# # Quad9 +# [sources.quad9-resolvers] +# urls = ['https://www.quad9.net/quad9-resolvers.md'] +# minisign_key = 'RWQBphd2+f6eiAqBsvDZEBXBGHQBJfeG6G+wJPPKxCZMoEQYpmoysKUN' +# cache_file = 'quad9-resolvers.md' +# prefix = 'quad9-' +# # Another example source, with resolvers censoring some websites not appropriate for children +# # This is a subset of the `public-resolvers` list, so enabling both is useless +# [sources.'parental-control'] +# urls = ['https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/parental-control.md', 'https://download.dnscrypt.info/resolvers-list/v3/parental-control.md', 'https://ipv6.download.dnscrypt.info/resolvers-list/v3/parental-control.md', 'https://download.dnscrypt.net/resolvers-list/v3/parental-control.md'] +# cache_file = 'parental-control.md' +# minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3' +# ######################################## +# Servers with known bugs # +# ######################################## +[broken_implementations] +# Cisco servers currently cannot handle queries larger than 1472 bytes, and don't +# truncate reponses larger than questions as expected by the DNSCrypt protocol. +# This prevents large responses from being received over UDP and over relays. +# +# Older versions of the `dnsdist` server software had a bug with queries larger +# than 1500 bytes. This is fixed since `dnsdist` version 1.5.0, but +# some server may still run an outdated version. +# +# The list below enables workarounds to make non-relayed usage more reliable +# until the servers are fixed. +fragments_blocked = [ 'cisco', 'cisco-ipv6', 'cisco-familyshield', 'cisco-familyshield-ipv6', 'cleanbrowsing-adult', 'cleanbrowsing-adult-ipv6', 'cleanbrowsing-family', 'cleanbrowsing-family-ipv6', 'cleanbrowsing-security', 'cleanbrowsing-security-ipv6' ] + +# +# creds = [ +# { server_name='*', client_cert='client.crt', client_key='client.key' } +# ] +# ############################### +# Anonymized DNS # +# ############################### +[anonymized_dns] +# # Routes are indirect ways to reach DNSCrypt servers. +# # +# # A route maps a server name ("server_name") to one or more relays that will be +# # used to connect to that server. +# # +# # A relay can be specified as a DNS Stamp (either a relay stamp, or a +# # DNSCrypt stamp) or a server name. +# # +# # The following example routes "example-server-1" via `anon-example-1` or `anon-example-2`, +# # and "example-server-2" via the relay whose relay DNS stamp is +# # "sdns://gRIxMzcuNzQuMjIzLjIzNDo0NDM". +# # +# # !!! THESE ARE JUST EXAMPLES !!! +# # +# # Review the list of available relays from the "relays.md" file, and, for each +# # server you want to use, define the relays you want connections to go through. +# # +# # Carefully choose relays and servers so that they are run by different entities. +# # +# # "server_name" can also be set to "*" to define a default route, for all servers: +# # { server_name='*', via=['anon-example-1', 'anon-example-2'] } +# # +# # If a route is ["*"], the proxy automatically picks a relay on a distinct network. +# # { server_name='*', via=['*'] } is also an option, but is likely to be suboptimal. +# # +# # Manual selection is always recommended over automatic selection, so that you can +# # select (relay,server) pairs that work well and fit your own criteria (close by or +# # in different countries, operated by different entities, on distinct ISPs...) +# routes = [ +# { server_name='example-server-1', via=['anon-example-1', 'anon-example-2'] }, +# { server_name='example-server-2', via=['sdns://gRIxMzcuNzQuMjIzLjIzNDo0NDM'] } +# ] +# Skip resolvers incompatible with anonymization instead of using them directly +skip_incompatible = false diff --git a/dnscrypt-proxy/public-resolvers.md b/dnscrypt-proxy/public-resolvers.md new file mode 100644 index 0000000..cb13f24 --- /dev/null +++ b/dnscrypt-proxy/public-resolvers.md @@ -0,0 +1,4232 @@ +# public-resolvers + +This is an extensive list of public DNS resolvers supporting the +DNSCrypt and DNS-over-HTTP2 protocols. + +This list is maintained by Frank Denis + +Warning: it includes servers that may censor content, servers that don't +verify DNSSEC records, and servers that will collect and monetize your +queries. + +Adjust the `require_*` options in dnscrypt-proxy to filter that list +according to your needs. + +To use that list, add this to the `[sources]` section of your +`dnscrypt-proxy.toml` configuration file: + + [sources.'public-resolvers'] + urls = ['https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/public-resolvers.md', 'https://download.dnscrypt.info/resolvers-list/v3/public-resolvers.md'] + minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3' + cache_file = 'public-resolvers.md' + +-- + + +## a-and-a + +Non-filtering, No-logging, DNSSEC DoH operated by Andrews & Arnold LTD. +Homepage: https://www.aa.net.uk/dns/ + +sdns://AgcAAAAAAAAADTIxNy4xNjkuMjAuMjIADWRucy5hYS5uZXQudWsKL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAADTIxNy4xNjkuMjAuMjMADWRucy5hYS5uZXQudWsKL2Rucy1xdWVyeQ + + +## a-and-a-ipv6 + +Non-filtering, No-logging, DNSSEC DoH over IPv6 operated by Andrews & Arnold LTD. +Homepage: https://www.aa.net.uk/dns/ + +sdns://AgcAAAAAAAAAEFsyMDAxOjhiMDo6MjAyMl0ADWRucy5hYS5uZXQudWsKL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAAEFsyMDAxOjhiMDo6MjAyM10ADWRucy5hYS5uZXQudWsKL2Rucy1xdWVyeQ + + +## adfilter-adl + +Hosted in Adelaide, Australia. + +Blocks ads, malware, trackers and more. No persistent logs. DNSSEC. No EDNS Client-Subnet. + +sdns://AgMAAAAAAAAADjE2My40Ny4xMTcuMTc2oMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVEGFkbC5hZGZpbHRlci5uZXQKL2Rucy1xdWVyeQ + + +## adfilter-adl-ipv6 + +Hosted in Adelaide, Australia. + +Blocks ads, malware, trackers and more. No persistent logs. DNSSEC. No EDNS Client-Subnet. + +sdns://AgMAAAAAAAAAHlsyNDAwOmM0MDE6OjUwNTQ6ZmY6ZmUxYjpiMDM2XaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRBhZGwuYWRmaWx0ZXIubmV0Ci9kbnMtcXVlcnk + + +## adfilter-per + +Hosted in Perth, Australia. + +Blocks ads, malware, trackers and more. No persistent logs. DNSSEC. No EDNS Client-Subnet. + +sdns://AgMAAAAAAAAADTIwMy4yOS4yNDEuNzagzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1UQcGVyLmFkZmlsdGVyLm5ldAovZG5zLXF1ZXJ5 + + +## adfilter-per-ipv6 + +Hosted in Perth, Australia. + +Blocks ads, malware, trackers and more. No persistent logs. DNSSEC. No EDNS Client-Subnet. + +sdns://AgMAAAAAAAAAGFsyNDA0Ojk0MDA6NDFhOTo0ODAwOjoxXaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRBwZXIuYWRmaWx0ZXIubmV0Ci9kbnMtcXVlcnk + + +## adfilter-syd + +Hosted in Sydney, Australia. + +Blocks ads, malware, trackers and more. No persistent logs. DNSSEC. No EDNS Client-Subnet. + +sdns://AgMAAAAAAAAADjExMi4yMTMuMzIuMjE5oMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVEHN5ZC5hZGZpbHRlci5uZXQKL2Rucy1xdWVyeQ + + +## adguard-dns + +Remove ads and protect your computer from malware + +Warning: This server is incompatible with anonymization. + +sdns://AQMAAAAAAAAAETk0LjE0MC4xNC4xNDo1NDQzINErR_JS3PLCu_iZEIbq95zkSV2LFsigxDIuUso_OQhzIjIuZG5zY3J5cHQuZGVmYXVsdC5uczEuYWRndWFyZC5jb20 +sdns://AQMAAAAAAAAAETk0LjE0MC4xNS4xNTo1NDQzINErR_JS3PLCu_iZEIbq95zkSV2LFsigxDIuUso_OQhzIjIuZG5zY3J5cHQuZGVmYXVsdC5uczEuYWRndWFyZC5jb20 + + +## adguard-dns-doh + +Remove ads and protect your computer from malware (over DoH) + +sdns://AgMAAAAAAAAADDk0LjE0MC4xNC4xNCCaOjT3J965vKUQA9nOnDn48n3ZxSQpAcK6saROY1oCGQw5NC4xNDAuMTQuMTQKL2Rucy1xdWVyeQ +sdns://AgMAAAAAAAAADDk0LjE0MC4xNS4xNSCaOjT3J965vKUQA9nOnDn48n3ZxSQpAcK6saROY1oCGQw5NC4xNDAuMTUuMTUKL2Rucy1xdWVyeQ + + +## adguard-dns-doh-ipv6 + +Remove ads and protect your computer from malware (over DoH, over IPv6) + +sdns://AgMAAAAAAAAAE1syYTEwOjUwYzA6OmFkMTpmZl0gmjo09yfeubylEAPZzpw5-PJ92cUkKQHCurGkTmNaAhkTZG5zLmFkZ3VhcmQtZG5zLmNvbQovZG5zLXF1ZXJ5 +sdns://AgMAAAAAAAAAE1syYTEwOjUwYzA6OmFkMjpmZl0gmjo09yfeubylEAPZzpw5-PJ92cUkKQHCurGkTmNaAhkTZG5zLmFkZ3VhcmQtZG5zLmNvbQovZG5zLXF1ZXJ5 + + +## adguard-dns-family + +AdGuard DNS with safesearch and adult content blocking + +Warning: This server is incompatible with anonymization. + +sdns://AQMAAAAAAAAAETk0LjE0MC4xNC4xNTo1NDQzILgxXdexS27jIKRw3C7Wsao5jMnlhvhdRUXWuMm1AFq6ITIuZG5zY3J5cHQuZmFtaWx5Lm5zMS5hZGd1YXJkLmNvbQ +sdns://AQMAAAAAAAAAETk0LjE0MC4xNS4xNjo1NDQzILgxXdexS27jIKRw3C7Wsao5jMnlhvhdRUXWuMm1AFq6ITIuZG5zY3J5cHQuZmFtaWx5Lm5zMS5hZGd1YXJkLmNvbQ + + +## adguard-dns-family-doh + +AdGuard DNS with safesearch and adult content blocking (over DoH) + +sdns://AgMAAAAAAAAADDk0LjE0MC4xNC4xNSCaOjT3J965vKUQA9nOnDn48n3ZxSQpAcK6saROY1oCGQw5NC4xNDAuMTQuMTUKL2Rucy1xdWVyeQ +sdns://AgMAAAAAAAAADDk0LjE0MC4xNS4xNiCaOjT3J965vKUQA9nOnDn48n3ZxSQpAcK6saROY1oCGQw5NC4xNDAuMTUuMTYKL2Rucy1xdWVyeQ + + +## adguard-dns-family-doh-ipv6 + +AdGuard DNS with safesearch and adult content blocking (over DoH, over IPv6) + +sdns://AgMAAAAAAAAAFFsyYTEwOjUwYzA6OmJhZDE6ZmZdIJo6NPcn3rm8pRAD2c6cOfjyfdnFJCkBwrqxpE5jWgIZFmZhbWlseS5hZGd1YXJkLWRucy5jb20KL2Rucy1xdWVyeQ +sdns://AgMAAAAAAAAAFFsyYTEwOjUwYzA6OmJhZDI6ZmZdIJo6NPcn3rm8pRAD2c6cOfjyfdnFJCkBwrqxpE5jWgIZFmZhbWlseS5hZGd1YXJkLWRucy5jb20KL2Rucy1xdWVyeQ + + +## adguard-dns-family-ipv6 + +AdGuard DNS with safesearch and adult content blocking (over IPv6) + +Warning: This server is incompatible with anonymization. + +sdns://AQMAAAAAAAAAGVsyYTEwOjUwYzA6OmJhZDE6ZmZdOjU0NDMguDFd17FLbuMgpHDcLtaxqjmMyeWG-F1FRda4ybUAWrohMi5kbnNjcnlwdC5mYW1pbHkubnMxLmFkZ3VhcmQuY29t +sdns://AQMAAAAAAAAAGVsyYTEwOjUwYzA6OmJhZDI6ZmZdOjU0NDMguDFd17FLbuMgpHDcLtaxqjmMyeWG-F1FRda4ybUAWrohMi5kbnNjcnlwdC5mYW1pbHkubnMxLmFkZ3VhcmQuY29t + + +## adguard-dns-ipv6 + +Remove ads and protect your computer from malware (over IPv6) + +Warning: This server is incompatible with anonymization. + +sdns://AQMAAAAAAAAAGFsyYTEwOjUwYzA6OmFkMTpmZl06NTQ0MyDRK0fyUtzywrv4mRCG6vec5EldixbIoMQyLlLKPzkIcyIyLmRuc2NyeXB0LmRlZmF1bHQubnMxLmFkZ3VhcmQuY29t +sdns://AQMAAAAAAAAAGFsyYTEwOjUwYzA6OmFkMjpmZl06NTQ0MyDRK0fyUtzywrv4mRCG6vec5EldixbIoMQyLlLKPzkIcyIyLmRuc2NyeXB0LmRlZmF1bHQubnMxLmFkZ3VhcmQuY29t + + +## adguard-dns-unfiltered + +AdGuard public DNS servers without filters + +Warning: This server is incompatible with anonymization. + +sdns://AQcAAAAAAAAAEjk0LjE0MC4xNC4xNDA6NTQ0MyC16ETWuDo-PhJo62gfvqcN48X6aNvWiBQdvy7AZrLa-iUyLmRuc2NyeXB0LnVuZmlsdGVyZWQubnMxLmFkZ3VhcmQuY29t +sdns://AQcAAAAAAAAAEjk0LjE0MC4xNC4xNDE6NTQ0MyC16ETWuDo-PhJo62gfvqcN48X6aNvWiBQdvy7AZrLa-iUyLmRuc2NyeXB0LnVuZmlsdGVyZWQubnMxLmFkZ3VhcmQuY29t + + +## adguard-dns-unfiltered-doh + +AdGuard public DNS servers without filters (over DoH) + +sdns://AgcAAAAAAAAADTk0LjE0MC4xNC4xNDAgmjo09yfeubylEAPZzpw5-PJ92cUkKQHCurGkTmNaAhkNOTQuMTQwLjE0LjE0MAovZG5zLXF1ZXJ5 +sdns://AgcAAAAAAAAADTk0LjE0MC4xNC4xNDEgmjo09yfeubylEAPZzpw5-PJ92cUkKQHCurGkTmNaAhkNOTQuMTQwLjE0LjE0MQovZG5zLXF1ZXJ5 + + +## adguard-dns-unfiltered-doh-ipv6 + +AdGuard public DNS servers without filters (over DoH, over IPv6) + +sdns://AgcAAAAAAAAAEVsyYTEwOjUwYzA6OjE6ZmZdIJo6NPcn3rm8pRAD2c6cOfjyfdnFJCkBwrqxpE5jWgIZGnVuZmlsdGVyZWQuYWRndWFyZC1kbnMuY29tCi9kbnMtcXVlcnk +sdns://AgcAAAAAAAAAEVsyYTEwOjUwYzA6OjI6ZmZdIJo6NPcn3rm8pRAD2c6cOfjyfdnFJCkBwrqxpE5jWgIZGnVuZmlsdGVyZWQuYWRndWFyZC1kbnMuY29tCi9kbnMtcXVlcnk + + +## adguard-dns-unfiltered-ipv6 + +AdGuard public DNS servers without filters (over IPv6) + +Warning: This server is incompatible with anonymization. + +sdns://AQcAAAAAAAAAFlsyYTEwOjUwYzA6OjE6ZmZdOjU0NDMgtehE1rg6Pj4SaOtoH76nDePF-mjb1ogUHb8uwGay2volMi5kbnNjcnlwdC51bmZpbHRlcmVkLm5zMS5hZGd1YXJkLmNvbQ +sdns://AQcAAAAAAAAAFlsyYTEwOjUwYzA6OjI6ZmZdOjU0NDMgtehE1rg6Pj4SaOtoH76nDePF-mjb1ogUHb8uwGay2volMi5kbnNjcnlwdC51bmZpbHRlcmVkLm5zMS5hZGd1YXJkLmNvbQ + + +## ahadns-doh-la + +A zero logging DNS with support for DNS-over-HTTPS (DoH) & DNS-over-TLS (DoT). Blocks ads, malware, trackers, viruses, ransomware, telemetry and more. No persistent logs. DNSSEC. Hosted in Los Angeles, USA. By https://ahadns.com/ +Server statistics can be seen at: https://statistics.ahadns.com/?server=la + +sdns://AgMAAAAAAAAADTQ1LjY3LjIxOS4yMDigzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1URZG9oLmxhLmFoYWRucy5uZXQKL2Rucy1xdWVyeQ + + +## alidns-doh + +A public DNS resolver that supports DoH/DoT in mainland China, provided by Alibaba-Cloud. +Homepage: https://alidns.com + +Warning: GFW filtering rules are applied by this resolver. + +sdns://AgAAAAAAAAAACTIyMy41LjUuNSCY49XlNq8pWM0vfxT3BO9KJ20l4zzWXy5l9eTycnwTMAkyMjMuNS41LjUKL2Rucy1xdWVyeQ +sdns://AgAAAAAAAAAACTIyMy42LjYuNiCY49XlNq8pWM0vfxT3BO9KJ20l4zzWXy5l9eTycnwTMAkyMjMuNi42LjYKL2Rucy1xdWVyeQ +sdns://AgAAAAAAAAAADTEyMC41NS4yMDMuNDQgmOPV5TavKVjNL38U9wTvSidtJeM81l8uZfXk8nJ8EzANMTIwLjU1LjIwMy40NAovZG5zLXF1ZXJ5 +sdns://AgAAAAAAAAAACzQ3LjEwOC4wLjYzIJjj1eU2rylYzS9_FPcE70onbSXjPNZfLmX15PJyfBMwCzQ3LjEwOC4wLjYzCi9kbnMtcXVlcnk +sdns://AgAAAAAAAAAADTM5LjEwMy4yNi4yMDQgmOPV5TavKVjNL38U9wTvSidtJeM81l8uZfXk8nJ8EzANMzkuMTAzLjI2LjIwNAovZG5zLXF1ZXJ5 +sdns://AgAAAAAAAAAADzEzOS4xMjkuMTM3LjEzNyCY49XlNq8pWM0vfxT3BO9KJ20l4zzWXy5l9eTycnwTMA8xMzkuMTI5LjEzNy4xMzcKL2Rucy1xdWVyeQ +sdns://AgAAAAAAAAAACzQ3LjEyMi44LjExIJjj1eU2rylYzS9_FPcE70onbSXjPNZfLmX15PJyfBMwCzQ3LjEyMi44LjExCi9kbnMtcXVlcnk +sdns://AgAAAAAAAAAADjEyMy4xODQuMTk4LjIyIJjj1eU2rylYzS9_FPcE70onbSXjPNZfLmX15PJyfBMwDjEyMy4xODQuMTk4LjIyCi9kbnMtcXVlcnk +sdns://AgAAAAAAAAAADjExMy4xNDIuODMuMTMyIJjj1eU2rylYzS9_FPcE70onbSXjPNZfLmX15PJyfBMwDjExMy4xNDIuODMuMTMyCi9kbnMtcXVlcnk +sdns://AgAAAAAAAAAADDE4Mi40MC43MC4xMiCY49XlNq8pWM0vfxT3BO9KJ20l4zzWXy5l9eTycnwTMAwxODIuNDAuNzAuMTIKL2Rucy1xdWVyeQ +sdns://AgAAAAAAAAAADTguMTI5LjE1Mi4yMzAgmOPV5TavKVjNL38U9wTvSidtJeM81l8uZfXk8nJ8EzANOC4xMjkuMTUyLjIzMAovZG5zLXF1ZXJ5 +sdns://AgAAAAAAAAAACjEuNzEuMjAuMzcgmOPV5TavKVjNL38U9wTvSidtJeM81l8uZfXk8nJ8EzAKMS43MS4yMC4zNwovZG5zLXF1ZXJ5 + + +## alidns-doh-ipv6 + +A public DNS resolver over IPv6 that supports DoH/DoT in mainland China, provided by Alibaba-Cloud. +Homepage: https://alidns.com + +Warning: GFW filtering rules are applied by this resolver. + +sdns://AgAAAAAAAAAADlsyNDAwOjMyMDA6OjFdIJjj1eU2rylYzS9_FPcE70onbSXjPNZfLmX15PJyfBMwCTIyMy41LjUuNQovZG5zLXF1ZXJ5 +sdns://AgAAAAAAAAAAE1syNDAwOjMyMDA6YmFiYTo6MV0gmOPV5TavKVjNL38U9wTvSidtJeM81l8uZfXk8nJ8EzAJMjIzLjUuNS41Ci9kbnMtcXVlcnk + + +## ams-ads-doh-nl + +Resolver in Amsterdam. HTTP/3, DoH protocol. Non-logging. Blocks ads, malware and trackers. DNSSEC enabled. + +sdns://AgMAAAAAAAAADDg5LjM4LjEzMS4zOAAYZG5zbmwtbm9hZHMuYWxla2JlcmcubmV0Ci9kbnMtcXVlcnk + + +## ams-dnscrypt-nl + +Resolver in Amsterdam. Dnscrypt protocol. Non-logging, non-filtering, DNSSEC. + +sdns://AQcAAAAAAAAAETg5LjM4LjEzMS4zODo0MzQzIBI197wcfHaxuMFi9_YgoxSJ1yIDWPfO75iztVhWzk0aHzIuZG5zY3J5cHQtY2VydC5hbXMtZG5zY3J5cHQtbmw + + +## ams-dnscrypt-nl-ipv6 + +Resolver in Amsterdam. Dnscrypt protocol. Non-logging, non-filtering, DNSSEC. + +sdns://AQcAAAAAAAAAGlsyYTBjOmI5YzA6Zjo0NTFkOjoxXTo0MzQzIBI197wcfHaxuMFi9_YgoxSJ1yIDWPfO75iztVhWzk0aHzIuZG5zY3J5cHQtY2VydC5hbXMtZG5zY3J5cHQtbmw + + +## ams-doh-nl + +Resolver in Amsterdam. HTTP/3, DoH protocol. Non-logging, non-filtering, DNSSEC. + +sdns://AgcAAAAAAAAADDg5LjM4LjEzMS4zOKDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRJkbnNubC5hbGVrYmVyZy5uZXQKL2Rucy1xdWVyeQ + + +## ams-doh-nl-ipv6 + +Resolver in Amsterdam. HTTP/3, DoH protocol. Non-logging, non-filtering, DNSSEC. + +sdns://AgcAAAAAAAAAFVsyYTBjOmI5YzA6Zjo0NTFkOjoxXaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRJkbnNubC5hbGVrYmVyZy5uZXQKL2Rucy1xdWVyeQ + + +## artikel10-doh-ipv4 + +DNSSEC, No-filter and No-log DoH resolver operated by Artikel10 association. Homepage: https://artikel10.org + +sdns://AgcAAAAAAAAADjIxNy4xOTcuOTEuMTUzoMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVEWRucy5hcnRpa2VsMTAub3JnCi9kbnMtcXVlcnk + + +## artikel10-doh-ipv6 + +DNSSEC, No-filter and No-log DoH resolver (IPv6) operated by Artikel10 association. Homepage: https://artikel10.org + +sdns://AgcAAAAAAAAAF1syMDAxOjY3YzoxNDAxOjIxMjA6OjFdoMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVEWRucy5hcnRpa2VsMTAub3JnCi9kbnMtcXVlcnk + + +## blahdns-de-dnscrypt-v4 + +DNSCrypt server. No Logging, filters ads, trackers and malware. DNSSEC ready, QNAME Minimization, No EDNS Client-Subnet. + +sdns://AQMAAAAAAAAAEjc4LjQ2LjI0NC4xNDM6ODQ0MyDwRPCkhRTWv0NpkRQ3nwfF6IP-4Nd5_Xe-78yb9_M6gRsyLmRuc2NyeXB0LWNlcnQuYmxhaGRucy5jb20 + + +## blahdns-de-dnscrypt-v6 + +DNSCrypt server. No Logging, filters ads, trackers and malware. DNSSEC ready, QNAME Minimization, No EDNS Client-Subnet. + +sdns://AQMAAAAAAAAAG1syYTAxOjRmODpjMTc6ZWM2Nzo6MV06ODQ0MyDwRPCkhRTWv0NpkRQ3nwfF6IP-4Nd5_Xe-78yb9_M6gRsyLmRuc2NyeXB0LWNlcnQuYmxhaGRucy5jb20 + + +## blahdns-de-doh + +DNS-over-HTTPS server. No Logging, filters ads, trackers and malware. DNSSEC ready, QNAME Minimization, No EDNS Client-Subnet. + +sdns://AgMAAAAAAAAADTc4LjQ2LjI0NC4xNDMAEmRvaC1kZS5ibGFoZG5zLmNvbQovZG5zLXF1ZXJ5 + + +## blahdns-de-doh-v6 + +DNS-over-HTTPS server. No Logging, filters ads, trackers and malware. DNSSEC ready, QNAME Minimization, No EDNS Client-Subnet. + +sdns://AgMAAAAAAAAAFlsyYTAxOjRmODpjMTc6ZWM2Nzo6MV0AEmRvaC1kZS5ibGFoZG5zLmNvbQovZG5zLXF1ZXJ5 + + +## blahdns-sg-dnscrypt-v4 + +DNSCrypt server. No Logging, filters ads, trackers and malware. DNSSEC ready, QNAME Minimization, No EDNS Client-Subnet. + +sdns://AQMAAAAAAAAAEzQ2LjI1MC4yMjYuMjQyOjg0NDMge4v0PGGlIHzs-ANifiSX0ydVdYWDeoW4focA6NmJrYcbMi5kbnNjcnlwdC1jZXJ0LmJsYWhkbnMuY29t + + +## blahdns-sg-dnscrypt-v6 + +DNSCrypt server. No Logging, filters ads, trackers and malware. DNSSEC ready, QNAME Minimization, No EDNS Client-Subnet. + +sdns://AQMAAAAAAAAAHVsyNDA3OjM2NDA6MjIwNToxNjY4OjoxXTo4NDQzIHuL9DxhpSB87PgDYn4kl9MnVXWFg3qFuH6HAOjZia2HGzIuZG5zY3J5cHQtY2VydC5ibGFoZG5zLmNvbQ + + +## blahdns-sg-doh + +DNS-over-HTTPS server. No Logging, filters ads, trackers and malware. DNSSEC ready, QNAME Minimization, No EDNS Client-Subnet. + +sdns://AgMAAAAAAAAADjQ2LjI1MC4yMjYuMjQyABJkb2gtc2cuYmxhaGRucy5jb20KL2Rucy1xdWVyeQ + + +## blahdns-sg-doh-v6 + +DNS-over-HTTPS server. No Logging, filters ads, trackers and malware. DNSSEC ready, QNAME Minimization, No EDNS Client-Subnet. + +sdns://AgMAAAAAAAAAGFsyNDA3OjM2NDA6MjIwNToxNjY4OjoxXQASZG9oLXNnLmJsYWhkbnMuY29tCi9kbnMtcXVlcnk + + +## bortzmeyer + +Non-logging DoH server in France operated by Stéphane Bortzmeyer. + +https://www.bortzmeyer.org/doh-bortzmeyer-fr-policy.html + +sdns://AgcAAAAAAAAADDE5My43MC44NS4xMaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRFkb2guYm9ydHptZXllci5mcgEv + + +## bortzmeyer-ipv6 + +Non-logging DoH server in France operated by Stéphane Bortzmeyer (IPv6 only). + +https://www.bortzmeyer.org/doh-bortzmeyer-fr-policy.html + +sdns://AgcAAAAAAAAAGVsyMDAxOjQxZDA6MzAyOjIyMDA6OjE4MF2gzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1URZG9oLmJvcnR6bWV5ZXIuZnIBLw + + +## brahma-world + +DNS-over-HTTPS server. Non Logging, filters ads, trackers and malware. DNSSEC ready, QNAME Minimization, No EDNS Client-Subnet. + +Hosted in Nuremberg, Germany. (https://dns.brahma.world) + +sdns://AgMAAAAAAAAADTE1Ny45MC4xMjQuNjKgzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1UQZG5zLmJyYWhtYS53b3JsZAovZG5zLXF1ZXJ5 + + +## brahma-world-ipv6 + +DNS-over-HTTPS server. Non Logging, filters ads, trackers and malware. DNSSEC ready, QNAME Minimization, No EDNS Client-Subnet. + +Hosted in Nuremberg, Germany. (https://dns.brahma.world) + +sdns://AgMAAAAAAAAAF1syYTAxOjRmODoxYzFjOmY1ZTE6OjFdoMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVEGRucy5icmFobWEud29ybGQKL2Rucy1xdWVyeQ + + +## circl-doh + +DoH server operated by CIRCL, Computer Incident Response Center Luxembourg. + +Hosted in Bettembourg, Luxembourg. + +sdns://AgYAAAAAAAAADTE4NS4xOTQuOTQuNzEADGRucy5jaXJjbC5sdQovZG5zLXF1ZXJ5 + + +## circl-doh-ipv6 + +DoH server operated by CIRCL, Computer Incident Response Center Luxembourg. + +Hosted in Bettembourg, Luxembourg. + +sdns://AgYAAAAAAAAAElsyYTAwOjU5ODA6OTQ6OjcxXQAMZG5zLmNpcmNsLmx1Ci9kbnMtcXVlcnk + + +## cisco + +Remove your DNS blind spot (DNSCrypt protocol) + +Warning: Doesn't work any more in some countries such as France and Portugal. + +Warning: This server is incompatible with anonymization. + +Warning: modifies your queries to include a copy of your network +address when forwarding them to a selection of companies and organizations. + +sdns://AQEAAAAAAAAADjIwOC42Ny4yMjAuMjIwILc1EUAgbyJdPivYItf9aR6hwzzI1maNDL4Ev6vKQ_t5GzIuZG5zY3J5cHQtY2VydC5vcGVuZG5zLmNvbQ + + +## cisco-doh + +Remove your DNS blind spot (DoH protocol) + +Warning: Doesn't work any more in some countries such as France and Portugal. + +Warning: modifies your queries to include a copy of your network +address when forwarding them to a selection of companies and organizations. + +sdns://AgAAAAAAAAAADDE0Ni4xMTIuNDEuMiCYZO337qhZZ1J0sPrfvSaTZamrnrp3PahnSUxalKQ33w9kb2gub3BlbmRucy5jb20KL2Rucy1xdWVyeQ + + +## cisco-familyshield + +Block websites not suitable for children (DNSCrypt protocol) + +Warning: Doesn't work any more in some countries such as France and Portugal. + +Warning: modifies your queries to include a copy of your network +address when forwarding them to a selection of companies and organizations. + +Currently incompatible with DNS anonymization. + +sdns://AQEAAAAAAAAADjIwOC42Ny4yMjAuMTIzILc1EUAgbyJdPivYItf9aR6hwzzI1maNDL4Ev6vKQ_t5GzIuZG5zY3J5cHQtY2VydC5vcGVuZG5zLmNvbQ + + +## cisco-familyshield-ipv6 + +Block websites not suitable for children (IPv6) + +Warning: Doesn't work any more in some countries such as France and Portugal. + +Warning: This server is incompatible with anonymization. + +Warning: modifies your queries to include a copy of your network +address when forwarding them to a selection of companies and organizations. + +sdns://AQEAAAAAAAAAEVsyNjIwOjExOTozNTo6MzVdILc1EUAgbyJdPivYItf9aR6hwzzI1maNDL4Ev6vKQ_t5GzIuZG5zY3J5cHQtY2VydC5vcGVuZG5zLmNvbQ + + +## cisco-ipv6 + +Cisco OpenDNS over IPv6 (DNSCrypt protocol) + +Warning: Doesn't work any more in some countries such as France and Portugal. + +Warning: This server is incompatible with anonymization. + +Warning: modifies your queries to include a copy of your network +address when forwarding them to a selection of companies and organizations. + +sdns://AQEAAAAAAAAAD1syNjIwOjA6Y2NjOjoyXSC3NRFAIG8iXT4r2CLX_WkeocM8yNZmjQy-BL-rykP7eRsyLmRuc2NyeXB0LWNlcnQub3BlbmRucy5jb20 + + +## cisco-ipv6-doh + +Cisco OpenDNS over IPv6 (DoH protocol) + +Warning: Doesn't work any more in some countries such as France and Portugal. + +Warning: modifies your queries to include a copy of your network +address when forwarding them to a selection of companies and organizations. + +sdns://AgAAAAAAAAAAEFsyNjIwOjExOTpmYzo6Ml0gmGTt9-6oWWdSdLD6370mk2Wpq566dz2oZ0lMWpSkN98PZG9oLm9wZW5kbnMuY29tCi9kbnMtcXVlcnk + + +## cisco-sandbox + +Cisco OpenDNS Sandbox (anycast) + +Warning: Doesn't work any more in some countries such as France and Portugal. + +Warning: This server is incompatible with anonymization. + +sdns://AQEAAAAAAAAADDE0Ni4xMTIuNDEuNCC3NRFAIG8iXT4r2CLX_WkeocM8yNZmjQy-BL-rykP7eRsyLmRuc2NyeXB0LWNlcnQub3BlbmRucy5jb20 + + +## cleanbrowsing-adult + +Blocks access to adult, pornographic and explicit sites. It does +not block proxy or VPNs, nor mixed-content sites. Sites like Reddit +are allowed. Google and Bing are set to the Safe Mode. + +Warning: This server is incompatible with anonymization. + +By https://cleanbrowsing.org/ + +sdns://AQMAAAAAAAAAEzE4NS4yMjguMTY4LjEwOjg0NDMgvKwy-tVDaRcfCDLWB1AnwyCM7vDo6Z-UGNx3YGXUjykRY2xlYW5icm93c2luZy5vcmc +sdns://AQMAAAAAAAAAEzE4NS4yMjguMTY5LjExOjg0NDMgvKwy-tVDaRcfCDLWB1AnwyCM7vDo6Z-UGNx3YGXUjykRY2xlYW5icm93c2luZy5vcmc + + +## cleanbrowsing-adult-doh + +Blocks access to adult, pornographic and explicit sites over DoH. It does +not block proxy or VPNs, nor mixed-content sites. Sites like Reddit +are allowed. Google and Bing are set to the Safe Mode. + +sdns://AgMAAAAAAAAADjE4NS4yMjguMTY4LjEwoPn_N_AuYyy3OHAlwH5XkIo9Nxt8ldjN0DkN4jHtlDoSoCso0AXN1mJZ2xEYZeoXy7YLPI9UcGhjjZAqZL54Sv34IOaSTdvwPj_u_RiUGT7gQuBqadbySK2eIW2kKyiPLBAZEWNsZWFuYnJvd3Npbmcub3JnES9kb2gvYWR1bHQtZmlsdGVy +sdns://AgMAAAAAAAAADzE4NS4yMjguMTY4LjE2OKD5_zfwLmMstzhwJcB-V5CKPTcbfJXYzdA5DeIx7ZQ6EqArKNAFzdZiWdsRGGXqF8u2CzyPVHBoY42QKmS-eEr9-CDmkk3b8D4_7v0YlBk-4ELgamnW8kitniFtpCsojywQGRFjbGVhbmJyb3dzaW5nLm9yZxEvZG9oL2FkdWx0LWZpbHRlcg + + +## cleanbrowsing-adult-ipv6 + +Blocks access to adult, pornographic and explicit sites over IPv6. It does +not block proxy or VPNs, nor mixed-content sites. Sites like Reddit +are allowed. Google and Bing are set to the Safe Mode. + +Warning: This server is incompatible with anonymization. + +sdns://AQMAAAAAAAAAFVsyYTBkOjJhMDA6MTo6MV06ODQ0MyC8rDL61UNpFx8IMtYHUCfDIIzu8Ojpn5QY3HdgZdSPKRFjbGVhbmJyb3dzaW5nLm9yZw +sdns://AQMAAAAAAAAAFVsyYTBkOjJhMDA6Mjo6MV06ODQ0MyC8rDL61UNpFx8IMtYHUCfDIIzu8Ojpn5QY3HdgZdSPKRFjbGVhbmJyb3dzaW5nLm9yZw + + +## cleanbrowsing-family + +Blocks access to adult, pornographic and explicit sites. It also +blocks proxy and VPN domains that are used to bypass the filters. +Mixed content sites (like Reddit) are also blocked. Google, Bing and +Youtube are set to the Safe Mode. + +Warning: This server is incompatible with anonymization. + +By https://cleanbrowsing.org/ + +sdns://AQMAAAAAAAAAFDE4NS4yMjguMTY4LjE2ODo4NDQzILysMvrVQ2kXHwgy1gdQJ8MgjO7w6OmflBjcd2Bl1I8pEWNsZWFuYnJvd3Npbmcub3Jn +sdns://AQMAAAAAAAAAFDE4NS4yMjguMTY5LjE2ODo4NDQzILysMvrVQ2kXHwgy1gdQJ8MgjO7w6OmflBjcd2Bl1I8pEWNsZWFuYnJvd3Npbmcub3Jn + + +## cleanbrowsing-family-doh + +Blocks access to adult, pornographic and explicit sites over DoH. It also +blocks proxy and VPN domains that are used to bypass the filters. +Mixed content sites (like Reddit) are also blocked. Google, Bing and +Youtube are set to the Safe Mode. + +sdns://AgMAAAAAAAAADjE4NS4yMjguMTY4LjEwoPn_N_AuYyy3OHAlwH5XkIo9Nxt8ldjN0DkN4jHtlDoSoCso0AXN1mJZ2xEYZeoXy7YLPI9UcGhjjZAqZL54Sv34IOaSTdvwPj_u_RiUGT7gQuBqadbySK2eIW2kKyiPLBAZEWNsZWFuYnJvd3Npbmcub3JnEi9kb2gvZmFtaWx5LWZpbHRlcg +sdns://AgMAAAAAAAAADzE4NS4yMjguMTY4LjE2OKD5_zfwLmMstzhwJcB-V5CKPTcbfJXYzdA5DeIx7ZQ6EqArKNAFzdZiWdsRGGXqF8u2CzyPVHBoY42QKmS-eEr9-CDmkk3b8D4_7v0YlBk-4ELgamnW8kitniFtpCsojywQGRFjbGVhbmJyb3dzaW5nLm9yZxIvZG9oL2ZhbWlseS1maWx0ZXI + + +## cleanbrowsing-family-ipv6 + +Blocks access to adult, pornographic and explicit sites over IPv6. It also +blocks proxy and VPN domains that are used to bypass the filters. +Mixed content sites (like Reddit) are also blocked. Google, Bing and +Youtube are set to the Safe Mode. + +Warning: This server is incompatible with anonymization. + +sdns://AQMAAAAAAAAAFFsyYTBkOjJhMDA6MTo6XTo4NDQzILysMvrVQ2kXHwgy1gdQJ8MgjO7w6OmflBjcd2Bl1I8pEWNsZWFuYnJvd3Npbmcub3Jn +sdns://AQMAAAAAAAAAFFsyYTBkOjJhMDA6Mjo6XTo4NDQzILysMvrVQ2kXHwgy1gdQJ8MgjO7w6OmflBjcd2Bl1I8pEWNsZWFuYnJvd3Npbmcub3Jn + + +## cleanbrowsing-security + +Blocks only phishing, spam and malicious domains. + +Warning: This server is incompatible with anonymization. + +sdns://AQMAAAAAAAAAEjE4NS4yMjguMTY4Ljk6ODQ0MyC8rDL61UNpFx8IMtYHUCfDIIzu8Ojpn5QY3HdgZdSPKRFjbGVhbmJyb3dzaW5nLm9yZw +sdns://AQMAAAAAAAAAEjE4NS4yMjguMTY5Ljk6ODQ0MyC8rDL61UNpFx8IMtYHUCfDIIzu8Ojpn5QY3HdgZdSPKRFjbGVhbmJyb3dzaW5nLm9yZw + + +## cleanbrowsing-security-doh + +Blocks only phishing, spam and malicious domains over DoH. + +sdns://AgMAAAAAAAAADjE4NS4yMjguMTY4LjEwoPn_N_AuYyy3OHAlwH5XkIo9Nxt8ldjN0DkN4jHtlDoSoCso0AXN1mJZ2xEYZeoXy7YLPI9UcGhjjZAqZL54Sv34IOaSTdvwPj_u_RiUGT7gQuBqadbySK2eIW2kKyiPLBAZEWNsZWFuYnJvd3Npbmcub3JnFC9kb2gvc2VjdXJpdHktZmlsdGVy +sdns://AgMAAAAAAAAADzE4NS4yMjguMTY4LjE2OKD5_zfwLmMstzhwJcB-V5CKPTcbfJXYzdA5DeIx7ZQ6EqArKNAFzdZiWdsRGGXqF8u2CzyPVHBoY42QKmS-eEr9-CDmkk3b8D4_7v0YlBk-4ELgamnW8kitniFtpCsojywQGRFjbGVhbmJyb3dzaW5nLm9yZxQvZG9oL3NlY3VyaXR5LWZpbHRlcg + + +## cleanbrowsing-security-ipv6 + +Blocks only phishing, spam and malicious domains over IPv6. + +Warning: This server is incompatible with anonymization. + +sdns://AQMAAAAAAAAAFVsyYTBkOjJhMDA6MTo6Ml06ODQ0MyC8rDL61UNpFx8IMtYHUCfDIIzu8Ojpn5QY3HdgZdSPKRFjbGVhbmJyb3dzaW5nLm9yZw +sdns://AQMAAAAAAAAAFVsyYTBkOjJhMDA6Mjo6Ml06ODQ0MyC8rDL61UNpFx8IMtYHUCfDIIzu8Ojpn5QY3HdgZdSPKRFjbGVhbmJyb3dzaW5nLm9yZw + + +## cloudflare + +Cloudflare DNS (anycast) - aka 1.1.1.1 / 1.0.0.1 + +sdns://AgcAAAAAAAAABzEuMC4wLjEAEmRucy5jbG91ZGZsYXJlLmNvbQovZG5zLXF1ZXJ5 +sdns://AgcAAAAAAAAABzEuMS4xLjEABzEuMS4xLjEKL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAABzEuMC4wLjEABzEuMC4wLjEKL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAADDE2Mi4xNTkuMzYuMQAMMTYyLjE1OS4zNi4xCi9kbnMtcXVlcnk +sdns://AgcAAAAAAAAADDE2Mi4xNTkuNDYuMQAMMTYyLjE1OS40Ni4xCi9kbnMtcXVlcnk +sdns://AgcAAAAAAAAADjEwNC4xNi4xMzIuMjI5ABJkbnMuY2xvdWRmbGFyZS5jb20KL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAADjEwNC4xNi4xMzMuMjI5ABJkbnMuY2xvdWRmbGFyZS5jb20KL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAADjEwNC4xNi4yNDkuMjQ5ABJjbG91ZGZsYXJlLWRucy5jb20KL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAADjEwNC4xNi4yNDguMjQ5ABJjbG91ZGZsYXJlLWRucy5jb20KL2Rucy1xdWVyeQ + + +## cloudflare-family + +Cloudflare DNS (anycast) with malware protection and parental control - aka 1.1.1.3 / 1.0.0.3 + +sdns://AgMAAAAAAAAABzEuMS4xLjMABzEuMS4xLjMKL2Rucy1xdWVyeQ +sdns://AgMAAAAAAAAABzEuMC4wLjMABzEuMC4wLjMKL2Rucy1xdWVyeQ + + +## cloudflare-family-ipv6 + +Cloudflare DNS over IPv6 (anycast) with malware protection and parental control + +sdns://AgMAAAAAAAAAAAAWWzI2MDY6NDcwMDo0NzAwOjoxMTEzXQovZG5zLXF1ZXJ5 +sdns://AgMAAAAAAAAAAAAWWzI2MDY6NDcwMDo0NzAwOjoxMDAzXQovZG5zLXF1ZXJ5 + + +## cloudflare-ipv6 + +Cloudflare DNS over IPv6 (anycast) + +sdns://AgcAAAAAAAAAAAAWWzI2MDY6NDcwMDo0NzAwOjoxMTExXQovZG5zLXF1ZXJ5 +sdns://AgcAAAAAAAAAAAAWWzI2MDY6NDcwMDo0NzAwOjoxMDAxXQovZG5zLXF1ZXJ5 +sdns://AgcAAAAAAAAAFlsyNjA2OjQ3MDA6OjY4MTA6ODRlNV0AEmRucy5jbG91ZGZsYXJlLmNvbQovZG5zLXF1ZXJ5 +sdns://AgcAAAAAAAAAFlsyNjA2OjQ3MDA6OjY4MTA6ODVlNV0AEmRucy5jbG91ZGZsYXJlLmNvbQovZG5zLXF1ZXJ5 +sdns://AgcAAAAAAAAAFlsyNjA2OjQ3MDA6OjY4MTA6ZjhmOV0AEmNsb3VkZmxhcmUtZG5zLmNvbQovZG5zLXF1ZXJ5 +sdns://AgcAAAAAAAAAFlsyNjA2OjQ3MDA6OjY4MTA6ZjlmOV0AEmNsb3VkZmxhcmUtZG5zLmNvbQovZG5zLXF1ZXJ5 + + +## cloudflare-security + +Cloudflare DNS (anycast) with malware blocking - aka 1.1.1.2 / 1.0.0.2 + +sdns://AgMAAAAAAAAABzEuMS4xLjIABzEuMS4xLjIKL2Rucy1xdWVyeQ +sdns://AgMAAAAAAAAABzEuMC4wLjIABzEuMC4wLjIKL2Rucy1xdWVyeQ + + +## cloudflare-security-ipv6 + +Cloudflare DNS over IPv6 (anycast) with malware blocking + +sdns://AgMAAAAAAAAAAAAWWzI2MDY6NDcwMDo0NzAwOjoxMTEyXQovZG5zLXF1ZXJ5 +sdns://AgMAAAAAAAAAAAAWWzI2MDY6NDcwMDo0NzAwOjoxMDAyXQovZG5zLXF1ZXJ5 + + +## comodo-02 + +Comodo Dome Shield (anycast) - https://cdome.comodo.com/shield/ + +sdns://AQUAAAAAAAAACjguMjAuMjQ3LjIg0sJUqpYcHsoXmZb1X7yAHwg2xyN5q1J-zaiGG-Dgs7AoMi5kbnNjcnlwdC1jZXJ0LnNoaWVsZC0yLmRuc2J5Y29tb2RvLmNvbQ +sdns://AQUAAAAAAAAACzguMjAuMjQ3LjIwINLCVKqWHB7KF5mW9V-8gB8INscjeatSfs2ohhvg4LOwKDIuZG5zY3J5cHQtY2VydC5zaGllbGQtMi5kbnNieWNvbW9kby5jb20 +sdns://AQUAAAAAAAAACjguMjYuNTYuMjYg0sJUqpYcHsoXmZb1X7yAHwg2xyN5q1J-zaiGG-Dgs7AoMi5kbnNjcnlwdC1jZXJ0LnNoaWVsZC0yLmRuc2J5Y29tb2RvLmNvbQ + + +## controld-block-malware + +ControlD Free DNS. Take CONTROL of your Internet. Block unwanted content, bypass geo-restrictions and be more productive. DoH protocol and No logging. - https://controld.com/free-dns + +This DNS blocks Malware domains. + +sdns://AgMAAAAAAAAACjc2Ljc2LjIuMTEAFGZyZWVkbnMuY29udHJvbGQuY29tAy9wMQ + + +## controld-block-malware-ad + +ControlD Free DNS. Take CONTROL of your Internet. Block unwanted content, bypass geo-restrictions and be more productive. DoH protocol and No logging. - https://controld.com/free-dns + +This DNS blocks Malware, Ads & Tracking domains. + +sdns://AgMAAAAAAAAACjc2Ljc2LjIuMTEAFGZyZWVkbnMuY29udHJvbGQuY29tAy9wMg + + +## controld-block-malware-ad-social + +ControlD Free DNS. Take CONTROL of your Internet. Block unwanted content, bypass geo-restrictions and be more productive. DoH protocol and No logging. - https://controld.com/free-dns + +This DNS blocks Malware, Ads & Tracking and Social Networks domains. + +sdns://AgMAAAAAAAAACjc2Ljc2LjIuMTEAFGZyZWVkbnMuY29udHJvbGQuY29tAy9wMw + + +## controld-family-friendly + +ControlD Free DNS. Take CONTROL of your Internet. Block unwanted content, bypass geo-restrictions and be more productive. DoH protocol and No logging. - https://controld.com/free-dns + +This DNS blocks Malware, Ads & Tracking, Adult Content and Drugs domains. + +sdns://AgMAAAAAAAAACjc2Ljc2LjIuMTEAFGZyZWVkbnMuY29udHJvbGQuY29tBy9mYW1pbHk + + +## controld-uncensored + +ControlD Free DNS. Take CONTROL of your Internet. Block unwanted content, bypass geo-restrictions and be more productive. DoH protocol and No logging. - https://controld.com/free-dns + +This DNS unblocks censored domains from various countries. + +sdns://AgcAAAAAAAAACjc2Ljc2LjIuMTEAFGZyZWVkbnMuY29udHJvbGQuY29tCy91bmNlbnNvcmVk + + +## controld-unfiltered + +ControlD Free DNS. Take CONTROL of your Internet. Block unwanted content, bypass geo-restrictions and be more productive. DoH protocol and No logging. - https://controld.com/free-dns + +This is a Unfiltered DNS, no DNS record blocking or manipulation here, if you want to block Malware, Ads & Tracking or Social Network domains, use the other ControlD DNS configs. + +sdns://AgcAAAAAAAAACjc2Ljc2LjIuMTEAFGZyZWVkbnMuY29udHJvbGQuY29tAy9wMA + + +## cs-austria + +Wien, Austria DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTk0LjE5OC40MS4yMzUgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-barcelona + +Barcelona, Spain DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjM3LjEyMC4xNDIuMTE1IDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-belgium + +Brussels, Belgium DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTM3LjEyMC4yMzYuMTEgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-berlin + +Berlin, Germany DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTM3LjEyMC4yMTcuNzUgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-brazil + +Sao Paulo, Brazil DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjE3Ny41NC4xNDUuMTMxIDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-bulgaria + +Sofia, Bulgaria DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjM3LjEyMC4xNTIuMjM1IDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-ch + +Switzerland DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADzE5MC4yMTEuMjU1LjIyNyAxM3KtWVYywkFrhy8Jj4Ub3bllKExsvppPGQlkMNupWh4yLmRuc2NyeXB0LWNlcnQuY3J5cHRvc3Rvcm0uaXM + + +## cs-czech + +Prague, Czech Republic DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADzIxNy4xMzguMjIwLjI0MyAxM3KtWVYywkFrhy8Jj4Ub3bllKExsvppPGQlkMNupWh4yLmRuc2NyeXB0LWNlcnQuY3J5cHRvc3Rvcm0uaXM + + +## cs-dc + +US - Washington, DC DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADDE5OC43LjU4LjIyNyAxM3KtWVYywkFrhy8Jj4Ub3bllKExsvppPGQlkMNupWh4yLmRuc2NyeXB0LWNlcnQuY3J5cHRvc3Rvcm0uaXM + + +## cs-de + +Frankfurt, Germany DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAACzE0Ni43MC44Mi4zIDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-dk + +Denmark DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTM3LjEyMC4yMzIuNDMgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-dus3 + +Dusseldorf, Germany 3 DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjg5LjE2My4yMjEuMTgxIDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-finland + +Finland DNSCrypt server provided by https://cryptostorm.is + +sdns://AQYAAAAAAAAADjE4NS4xMTcuMTE4LjIwIDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-fr + +France DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTE2My4xNzIuMzQuNTYgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-ga + +US - Atlanta, GA DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTY0LjQyLjE4MS4yMjcgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-il2 + +US - Chicago, IL 2 DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjEwOC4xODEuNjMuMTYzIDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-ireland + +Dublin, Ireland DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjM3LjEyMC4yMzUuMTg3IDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-la + +US - Los Angeles, CA DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADzE5NS4yMDYuMTA0LjIwMyAxM3KtWVYywkFrhy8Jj4Ub3bllKExsvppPGQlkMNupWh4yLmRuc2NyeXB0LWNlcnQuY3J5cHRvc3Rvcm0uaXM + + +## cs-london + +London, England DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTc4LjEyOS4yNDguNjcgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-lv + +Latvia DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADzEwOS4yNDguMTQ5LjEzMyAxM3KtWVYywkFrhy8Jj4Ub3bllKExsvppPGQlkMNupWh4yLmRuc2NyeXB0LWNlcnQuY3J5cHRvc3Rvcm0uaXM + + +## cs-madrid + +Madrid, Spain DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjE4NS4xODMuMTA2LjgzIDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-manchester + +Manchester, England DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTE5NS4xMi40OC4xNzEgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-mexico + +Mexico City, Mexico DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTEwMy4xNC4yNi4xOTAgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-milan + +Milan, Italy DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADzIxNy4xMzguMjE5LjIxOSAxM3KtWVYywkFrhy8Jj4Ub3bllKExsvppPGQlkMNupWh4yLmRuc2NyeXB0LWNlcnQuY3J5cHRvc3Rvcm0uaXM + + +## cs-montreal + +Montreal, Canada DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTE3Ni4xMTMuNzQuMTkgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-nc + +US - North Carolina DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjE1NS4yNTQuMjEuMjUwIDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-nl + +Netherlands DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTE4NS4xMDcuODAuODQgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-norway + +Oslo, Norway DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjkxLjIxOS4yMTUuMjI3IDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-nv + +US - Las Vegas, NV DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADDM3LjEyMC4xNDcuMiAxM3KtWVYywkFrhy8Jj4Ub3bllKExsvppPGQlkMNupWh4yLmRuc2NyeXB0LWNlcnQuY3J5cHRvc3Rvcm0uaXM + + +## cs-ore + +US - Oregon DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTE3OS42MS4yMjMuNDcgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-poland + +Warsaw, Poland DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTM3LjEyMC4yMTEuOTEgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-pt + +Portugal DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjkxLjIwNS4yMzAuMjI0IDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-ro + +Romania DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTE0Ni43MC42Ni4yMjcgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-rome + +Rome, Italy DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjM3LjEyMC4yMDcuMTMxIDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-serbia + +Belgrade, Serbia DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjM3LjEyMC4xOTMuMjE5IDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-singapore + +Singapore DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTM3LjEyMC4xNTEuMTEgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-sk + +South Korea DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQIAAAAAAAAADjEwOC4xODEuNTAuMjE4IDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-slovakia + +Bratislava, Slovakia DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjE5My4zNy4yNTUuMjI3IDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-swe + +Sweden DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADzEyOC4xMjcuMTA0LjEwOCAxM3KtWVYywkFrhy8Jj4Ub3bllKExsvppPGQlkMNupWh4yLmRuc2NyeXB0LWNlcnQuY3J5cHRvc3Rvcm0uaXM + + +## cs-sydney + +Sydney, Australia DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjM3LjEyMC4yMzQuMjUxIDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## cs-tokyo + +Tokyo, Japan DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADDE0Ni43MC4zMS40MyAxM3KtWVYywkFrhy8Jj4Ub3bllKExsvppPGQlkMNupWh4yLmRuc2NyeXB0LWNlcnQuY3J5cHRvc3Rvcm0uaXM + + +## cs-tx + +US - Dallas, TX DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADTIwOS41OC4xNDcuMzYgMTNyrVlWMsJBa4cvCY-FG925ZShMbL6aTxkJZDDbqVoeMi5kbnNjcnlwdC1jZXJ0LmNyeXB0b3N0b3JtLmlz + + +## cs-vancouver + +Vancouver, Canada DNSCrypt server provided by https://cryptostorm.is/ + +sdns://AQYAAAAAAAAADjE5Ni4yNDAuNzkuMTYzIDEzcq1ZVjLCQWuHLwmPhRvduWUoTGy-mk8ZCWQw26laHjIuZG5zY3J5cHQtY2VydC5jcnlwdG9zdG9ybS5pcw + + +## dct-de + +DNSCrypt | IPv4 only | Non-logging | Non-filtering | DNSSEC | Frankfurt, Germany. + +sdns://AQcAAAAAAAAADTE4NS4xNDAuMTIuOTMgx50la90EKLdawfQ6ouxuYvCpUqJsIU-DHL1Yz9W6auUWMi5kbnNjcnlwdC1jZXJ0LmRjdC1kZQ + + +## dct-fr + +DNSCrypt | IPv4 only | Non-logging | Non-filtering | DNSSEC | Paris, France. + +sdns://AQcAAAAAAAAADjEwMy44Mi4xMDEuMTUzINCNcA60VX87arjzoo9aWX28No2O70kH6IGdtTgEfyJRFjIuZG5zY3J5cHQtY2VydC5kY3QtZnI + + +## deffer-dns.au + +DNSSEC/Non-logged/Uncensored in Sydney (AWS). +Encrypted DNS Server image by jedisct1, maintaned by DeffeR. + +sdns://AQcAAAAAAAAADTUyLjY1LjIzNS4xMjkg5Q00RDDBkwx3fUaa0_etjz4iH3lLBOqsg95bYDmV07MdMi5kbnNjcnlwdC1jZXJ0LmRlZmZlci1kbnMuYXU + + +## digitalprivacy.diy-dnscrypt-ipv4 + +IPv4 server | No filter | No logs | DNSSEC | Nuremberg, Germany (netcup) | Maintained by https://digitalprivacy.diy/ + +sdns://AQcAAAAAAAAAEjM3LjIyMS4xOTQuODQ6NDQzNCCiyGRvm0TcyJmI7lTXstgh-8AoAAiFcTQQp7Od_brTYCIyLmRuc2NyeXB0LWNlcnQuZGlnaXRhbHByaXZhY3kuZGl5 + + +## dns.digitale-gesellschaft.ch + +Public DoH resolver operated by the Digital Society (https://www.digitale-gesellschaft.ch). +Hosted in Zurich, Switzerland. + +Non-logging, non-filtering, supports DNSSEC. + +sdns://AgcAAAAAAAAADTE4NS45NS4yMTguNDKgzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1UcZG5zLmRpZ2l0YWxlLWdlc2VsbHNjaGFmdC5jaAovZG5zLXF1ZXJ5 +sdns://AgcAAAAAAAAADTE4NS45NS4yMTguNDOgzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1UcZG5zLmRpZ2l0YWxlLWdlc2VsbHNjaGFmdC5jaAovZG5zLXF1ZXJ5 + + +## dns.digitale-gesellschaft.ch-ipv6 + +Public IPv6 DoH resolver operated by the Digital Society (https://www.digitale-gesellschaft.ch). +Hosted in Zurich, Switzerland. + +Non-logging, non-filtering, supports DNSSEC. + +sdns://AgcAAAAAAAAAD1syYTA1OmZjODQ6OjQyXaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRxkbnMuZGlnaXRhbGUtZ2VzZWxsc2NoYWZ0LmNoCi9kbnMtcXVlcnk +sdns://AgcAAAAAAAAAD1syYTA1OmZjODQ6OjQzXaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRxkbnMuZGlnaXRhbGUtZ2VzZWxsc2NoYWZ0LmNoCi9kbnMtcXVlcnk + + +## dns.digitalsize.net + +A public, non-tracking, non-filtering DNS resolver with DNSSEC enabled, QNAME minimization and no EDNS client subnet (https://dns.digitalsize.net). +Hosted in Germany. + +sdns://AgcAAAAAAAAADjk0LjEzMC4xMzUuMjAzoMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVE2Rucy5kaWdpdGFsc2l6ZS5uZXQKL2Rucy1xdWVyeQ + + +## dns.digitalsize.net-ipv6 + +A public, non-tracking, non-filtering DNS resolver with DNSSEC enabled, QNAME minimization and no EDNS client subnet (https://dns.digitalsize.net). +Hosted in Germany. + +sdns://AgcAAAAAAAAAGVsyYTAxOjRmODoxM2I6MzQwNzo6ZmFjZV2gzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1UTZG5zLmRpZ2l0YWxzaXplLm5ldAovZG5zLXF1ZXJ5 + + +## dns.sb + +DoH server runned by xTom.com. No logs, no filtering, supports DNSSEC. + +Homepage: https://dns.sb + +sdns://AgcAAAAAAAAADzE4NS4yMjIuMjIyLjIyMiAOp5Svj-oV-Fz-65-8H2VKHLKJ0egmfEgrdPeAQlUFFA8xODUuMjIyLjIyMi4yMjIKL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAACzQ1LjExLjQ1LjExIA6nlK-P6hX4XP7rn7wfZUocsonR6CZ8SCt094BCVQUUCzQ1LjExLjQ1LjExCi9kbnMtcXVlcnk + + +## dns0 + +A free, sovereign and GDPR-compliant recursive DNS resolver with a +strong focus on security to protect the citizens and organizations of +the European Union. + +Blocks new domains, dynamic DNS, parked domains, uncommon TLDs, etc. + +https://www.dns0.eu/ + +sdns://AgMAAAAAAAAAACCaOjT3J965vKUQA9nOnDn48n3ZxSQpAcK6saROY1oCGQdkbnMwLmV1Ci9kbnMtcXVlcnk + + +## dns0-kids + +A free, sovereign and GDPR-compliant recursive DNS resolver with a +strong focus on security to protect the citizens and organizations of +the European Union. + +This version blocks content not suitable for children. + +Also blocks new domains, dynamic DNS, parked domains, uncommon TLDs, etc. + +https://www.dns0.eu/ + +sdns://AgMAAAAAAAAAACCaOjT3J965vKUQA9nOnDn48n3ZxSQpAcK6saROY1oCGQxraWRzLmRuczAuZXUKL2Rucy1xdWVyeQ + + +## dns0-unfiltered + +The unfiltered version of dns0.eu. +https://open.dns0.eu/ + +sdns://AgcAAAAAAAAAACCaOjT3J965vKUQA9nOnDn48n3ZxSQpAcK6saROY1oCGQxvcGVuLmRuczAuZXUKL2Rucy1xdWVyeQ + + +## dns4all-ipv4 + +A DoH, DoT and DoQ resolver operated by sidnlabs.nl. No-logs, DNSSEC and No-filter. +Homepage: https://dns4all.eu + +sdns://AgcAAAAAAAAACTE5NC4wLjUuMwAOZG9xLmRuczRhbGwuZXUKL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAACjE5NC4wLjUuNjQAEGRvcTY0LmRuczRhbGwuZXUKL2Rucy1xdWVyeQ + + +## dns4all-ipv6 + +A DoH, DoT and DoQ resolver operated by sidnlabs.nl over IPv6. No-logs, DNSSEC and No-filter. +Homepage: https://dns4all.eu + +sdns://AgcAAAAAAAAAD1syMDAxOjY3ODo4OjozXQAOZG9xLmRuczRhbGwuZXUKL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAAEFsyMDAxOjY3ODo4Ojo2NF0AEGRvcTY0LmRuczRhbGwuZXUKL2Rucy1xdWVyeQ + + +## dnscry.pt-allentown-ipv4 + +DNSCry.pt Allentown - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIzLjEzNy4yNTMuMjQg3Z0YI7udXIjKWcPC5GdTm4Uk6D1x2DuyYuj2OZz2cKQZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-allentown-ipv6 + +DNSCry.pt Allentown - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHFsyNjAyOmZjMjQ6MTk6NzRiMDo1Mjg1OjoxMl0g3Z0YI7udXIjKWcPC5GdTm4Uk6D1x2DuyYuj2OZz2cKQZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-amsterdam-ipv4 + +DNSCry.pt Amsterdam - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE5OC4xNDAuMTQxLjQ2IFqbafOxgXuKwOgYxQ6XUqHWkMUt_5LI2nDkdVFU5hm7GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-amsterdam-ipv6 + +DNSCry.pt Amsterdam - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFlsyYTAzOjk0ZTM6MjIyYjo6MTAzMl0gWptp87GBe4rA6BjFDpdSodaQxS3_ksjacOR1UVTmGbsZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-amsterdam02-ipv4 + +DNSCry.pt Amsterdam 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTQ1Ljg2LjE2Mi4xMTAgblxXPJozaH3d0T9h_69Op1nnYQYbW4yIWd8ypOORnK8ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-amsterdam02-ipv6 + +DNSCry.pt Amsterdam 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAG1syYTA3OmVmYzA6MTAwMTphNWNlOjpiNGI0XSBuXFc8mjNofd3RP2H_r06nWedhBhtbjIhZ3zKk45GcrxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-ashburn-ipv4 + +DNSCry.pt Ashburn - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAACzQ1LjExLjIzMC44IMGyYyUUH-ohVO5gxPJoOoTQYe6WeqqivutZK9FR5v2eGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-ashburn-ipv6 + +DNSCry.pt Ashburn - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyMDAxOjQ3MDo4OjE2OTo6MTAwXSDBsmMlFB_qIVTuYMTyaDqE0GHulnqqor7rWSvRUeb9nhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-athens-ipv4 + +DNSCry.pt Athens - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE4NS4yMzQuNTIuODcg7sJacnOa_EK646WTMceomii6ew1ZjD2YPZq6T3cbAZYZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-athens-ipv6 + +DNSCry.pt Athens - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyYTA5OmNkNDM6Zjo0MmExOjo1XSDuwlpyc5r8QrrjpZMxx6iaKLp7DVmMPZg9mrpPdxsBlhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-atlanta-ipv4 + +DNSCry.pt Atlanta - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzE3MC4yNDkuMjM3LjE1NCDi7_UCIU8-uBI-dM7qpE0Y0Qo8GpJTDcSX578fvK7jOhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-atlanta-ipv6 + +DNSCry.pt Atlanta - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAE1syNjAwOjRjMDA6ODA6ODo6YV0g4u_1AiFPPrgSPnTO6qRNGNEKPBqSUw3El-e_H7yu4zoZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-auckland-ipv4 + +DNSCry.pt Auckland - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE4NS45OS4xMzMuMTEyIBWQZQSuMzmL_YANsdr26wFOHmJCYEtA2P2JI6w1-0ezGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-auckland-ipv6 + +DNSCry.pt Auckland - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHFsyYTA2OjEyODA6YmVlMToyOjplZTEyOjIwOF0gFZBlBK4zOYv9gA2x2vbrAU4eYkJgS0DY_YkjrDX7R7MZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-bengaluru-ipv4 + +DNSCry.pt Bengaluru - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzE2MC4xOTEuMTgyLjIxNiDM3lhIXzCtFbHampFM4K_NDUnKalgxd72L-5ye1X4qExkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-bengaluru-ipv6 + +DNSCry.pt Bengaluru - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFlsyNDAxOmQ0ZTA6MTpmN2ZkOjo1M10gzN5YSF8wrRWx2pqRTOCvzQ1JympYMXe9i_ucntV-KhMZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-bogota-ipv4 + +DNSCry.pt Bogotá - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTEwMy41Ny4yNTAuMzkgUO6G-qXU05kKUTf9uH0cLzUvrGudaxfIJBpJfbeY5bEZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-bogota-ipv6 + +DNSCry.pt Bogotá - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyYTAzOmY4MDo1NzozNGQxOjoxXSBQ7ob6pdTTmQpRN_24fRwvNS-sa51rF8gkGkl9t5jlsRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-bratislava-ipv4 + +DNSCry.pt Bratislava - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjk1LjEzMS4yMDIuMTA1ICNqYnU4LMuHNFVgCP5Zn1414WbRxXWqmbQoFp-KjKepGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-bratislava-ipv6 + +DNSCry.pt Bratislava - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHVsyYTA1OjU1MDI6OjU5MDY6OTdmODoyZDBlOjFdICNqYnU4LMuHNFVgCP5Zn1414WbRxXWqmbQoFp-KjKepGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-brisbane-ipv4 + +DNSCry.pt Brisbane - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjQzLjIyNC4xODAuMTM3IB3DhQdApTRyuMIvRSQEdBBZ3zMUZPTPK9hsuS3Nq7c5GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-brisbane-ipv6 + +DNSCry.pt Brisbane - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAIlsyNDA0Ojk0MDA6MTowOjIxNjozZWZmOmZlZjY6NzE5NF0gHcOFB0ClNHK4wi9FJAR0EFnfMxRk9M8r2Gy5Lc2rtzkZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-brussels-ipv4 + +DNSCry.pt Brussels - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzE5Mi4xMjEuMTcwLjE1MSAT1-NSdE3OfjoVPgHNxNnBX5TUCfS8OtUxrRV9UpJZBxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-brussels-ipv6 + +DNSCry.pt Brussels - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyYTAzOmY4MDozMjo1MmQ5OjoxXSAT1-NSdE3OfjoVPgHNxNnBX5TUCfS8OtUxrRV9UpJZBxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-bucharest-ipv4 + +DNSCry.pt Bucharest - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE4NS45My4yMjEuMTY3IM1gfKbFYfG7eLZj6F7rEF7PGZC7Tl2D_LD9v8cmoW1kGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-bucharest-ipv6 + +DNSCry.pt Bucharest - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyYTBkOjllYzI6MDpmMDNkOjpjNDllXSDNYHymxWHxu3i2Y-he6xBezxmQu05dg_yw_b_HJqFtZBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-budapest-ipv4 + +DNSCry.pt Budapest - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE5NC4xMDIuMjI3LjUg_cf2xKCt4ZqfeHjW_2pukHH4EMfQZR_CVNkIVci8enMZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-budapest-ipv6 + +DNSCry.pt Budapest - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFlsyYTBlOjFkODA6Mjc6NjI4OTo6MV0g_cf2xKCt4ZqfeHjW_2pukHH4EMfQZR_CVNkIVci8enMZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-calgary-ipv4 + +DNSCry.pt Calgary - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIzLjEzMy42NC4xMjEgbJWMdhm3m3L0MIztiezBT4P4H5YobsrhNoVKl3JcBa0ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-calgary-ipv6 + +DNSCry.pt Calgary - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFlsyNjAyOmZlZDI6ZmUwOjI4Mzo6MV0gbJWMdhm3m3L0MIztiezBT4P4H5YobsrhNoVKl3JcBa0ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-chicago-ipv4 + +DNSCry.pt Chicago - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTQ1LjQxLjIwNC4yMDQgbQ_3dUnLx_3R3UeHibflzQIDKCqMGcViiAPftt2eDbIZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-chicago-ipv6 + +DNSCry.pt Chicago - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAH1syNjAyOmZlYTc6ZTBjOmU6YmZmOjY6NzA6MTk0Y10gbQ_3dUnLx_3R3UeHibflzQIDKCqMGcViiAPftt2eDbIZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-chisinau-ipv4 + +DNSCry.pt Chișinău - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE3Ni4xMjMuMTAuMTA1IEJtkG567ZvN_tTXhVcSyywcrDRhziwxmbnyohp5u8gPGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-chisinau-ipv6 + +DNSCry.pt Chișinău - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHVsyMDAxOjY3ODo2ZDQ6NTA4MDo6M2RlYToxMDldIEJtkG567ZvN_tTXhVcSyywcrDRhziwxmbnyohp5u8gPGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-copenhagen-ipv4 + +DNSCry.pt Copenhagen - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAACzg1LjEyMC44NC41IAQtkx4Ql90wruZmjw-U_klFVM9Mn7MHWgMR_Db140SrGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-copenhagen-ipv6 + +DNSCry.pt Copenhagen - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHlsyYTBlOjFkODA6MzE6OGE1NjowOmIwZTo1ZTowXSAELZMeEJfdMK7mZo8PlP5JRVTPTJ-zB1oDEfw29eNEqxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-coventry-ipv4 + +DNSCry.pt Coventry - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTQ1LjE1NS4zNy4xNjUgYEA416mXWNYoWStCKdnM315FgosLrba3F2QBhYR_SZAZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-coventry-ipv6 + +DNSCry.pt Coventry - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyYTBkOmQ4YzA6MDpmMDQzOjo2OTI3XSBgQDjXqZdY1ihZK0Ip2czfXkWCiwuttrcXZAGFhH9JkBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-dallas-ipv4 + +DNSCry.pt Dallas - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIzLjIzMC4yNTMuOTgg1OKRDMWAtnBoieTPNbjK-OrVjcuML2vQMc6gh-ZmYpAZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-dallas-ipv6 + +DNSCry.pt Dallas - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAE1syNjAyOmZiOTQ6MTozOTo6YV0g1OKRDMWAtnBoieTPNbjK-OrVjcuML2vQMc6gh-ZmYpAZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-denver-ipv4 + +DNSCry.pt Denver - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzIxNi4xMjAuMjAxLjEwNSD_srgVun60gzUrte8QS0YJAqSBHZ_X6PpY_bOU1eMegxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-denver-ipv6 + +DNSCry.pt Denver - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyNjA3OmE2ODA6NjpmMDE2OjozYTI1XSD_srgVun60gzUrte8QS0YJAqSBHZ_X6PpY_bOU1eMegxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-detroit-ipv4 + +DNSCry.pt Detroit - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDY2LjE4Ny43LjE0MCBpn2OKcwbE01MLSkSXcaPKLf8IOmKbuE9GGZvAOBwaNRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-detroit-ipv6 + +DNSCry.pt Detroit - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAI1syNjA2OjY1YzA6NDA6NDo1ZjM6NTRjNDo4ZDEwOjliOThdIGmfY4pzBsTTUwtKRJdxo8ot_wg6Ypu4T0YZm8A4HBo1GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-dublin-ipv4 + +DNSCry.pt Dublin - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE5NC4yNi4yMTMuMTUgEzWgsAQfbmA1ppXryEJ6vQ3Vvc2Kk2oRkdjodTEYvPQZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-dublin-ipv6 + +DNSCry.pt Dublin - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyYTA5OmNkNDY6Zjo0MjllOjo1XSATNaCwBB9uYDWmlevIQnq9DdW9zYqTahGR2Oh1MRi89BkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-durham-ipv4 + +DNSCry.pt Durham - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDM4LjQ1LjY0LjExNyAS3jjOGrb2p9i5bpMiO0WB-XlTLq7Ek3soP2xndELQ8xkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-durham-ipv6 + +DNSCry.pt Durham - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHVsyMDAxOjU1MDo1YTAwOjVlYjo6ZGI1OmYwMDFdIBLeOM4atvan2LlukyI7RYH5eVMursSTeyg_bGd0QtDzGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-dusseldorf-ipv4 + +DNSCry.pt Düsseldorf - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE4NS4yNDQuMjcuMTM2IG5RCKZnWcBIWwMJ9wfdIkLhWRuNCczv-aVchrqwIzAmGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-dusseldorf-ipv6 + +DNSCry.pt Düsseldorf - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyYTBmOjU3MDc6YWE4MTo1ZTNjOjoxXSBuUQimZ1nASFsDCfcH3SJC4VkbjQnM7_mlXIa6sCMwJhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-dusseldorf02-ipv6 + +DNSCry.pt Düsseldorf 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFlsyYTA2OmRlMDA6NDAxOjIyNzo6Ml0gWAo_MyYybZGGBQKsA41WpC5TjjpfvgviHteGEKBXNIwZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-flint-ipv4 + +DNSCry.pt Flint - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzE0Ny4xODkuMTQwLjEzNiCL7wgLXnE-35sDhXk5N1RNpUfWmM2aUBcMFlst7FPdnRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-flint-ipv6 + +DNSCry.pt Flint - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAG1syNjA2OjY2ODA6Mjk6MTo6NTg1OTphMzdiXSCL7wgLXnE-35sDhXk5N1RNpUfWmM2aUBcMFlst7FPdnRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-frankfurt-ipv4 + +DNSCry.pt Frankfurt - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE5NC41MC4xOS4xNTAg-_TD5LiJYj-861zIGFSucHEg_7IT-3T3x8fYWhWrsekZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-frankfurt-ipv6 + +DNSCry.pt Frankfurt - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAI1syYTBmOjU3MDc6YWI4MDozMzRlOjI6MjoyY2QyOmE4YmNdIPv0w-S4iWI_vOtcyBhUrnBxIP-yE_t098fH2FoVq7HpGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-frankfurt02-ipv4 + +DNSCry.pt Frankfurt 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTQ1LjE0Ny41MS4xMjMgIXwiAp3nzMSapyRop7AbWNG8rFfD1aGhvvGSXFdfv24ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-frankfurt02-ipv6 + +DNSCry.pt Frankfurt 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFFsyYTA3OmQ4ODQ6MTAwOjozNDRdICF8IgKd58zEmqckaKewG1jRvKxXw9Whob7xklxXX79uGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-fremont-ipv4 + +DNSCry.pt Fremont - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDIzLjEzNC44OC43MSBywAheyGUw9-6xRRd9vJpQ9_so9hVXnOc-T50u1HjNlxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-fremont-ipv6 + +DNSCry.pt Fremont - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyNjAyOmZiYTE6MTAwOjo3MToxXSBywAheyGUw9-6xRRd9vJpQ9_so9hVXnOc-T50u1HjNlxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-fujairah-ipv4 + +DNSCry.pt Fujairah - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTg5LjM2LjE2Mi4xODcgoviGbbki583h_iXBE6u-lLdJjyIsScLTYL107SA5Y0MZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-fujairah-ipv6 + +DNSCry.pt Fujairah - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAKFsyYTA2OmY5MDI6NDAwMToxMDA6OTAwMDo5MDAwOjM5YTQ6NWZlYl0goviGbbki583h_iXBE6u-lLdJjyIsScLTYL107SA5Y0MZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-geneva-ipv4 + +DNSCry.pt Geneva - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDQ1LjkwLjU5LjE5MyApCKLNC-QxtyiyCC4AQIb36KxxFcalmSGG9V_CLDDyVxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-geneva-ipv6 + +DNSCry.pt Geneva - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAEFsyYTA1Ojk0MDY6OmFlMV0gKQiizQvkMbcosgguAECG9-iscRXGpZkhhvVfwiww8lcZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-grandrapids-ipv4 + +DNSCry.pt Grand Rapids - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE4NS4xNjUuNDQuMTY0IIAGv2tc1niHTIQfcnX5-ElHTfAJySTEfHKDgxBlM4O9GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-grandrapids-ipv6 + +DNSCry.pt Grand Rapids - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAE1syNjAyOmY5NjQ6MToyNDo6YV0ggAa_a1zWeIdMhB9ydfn4SUdN8AnJJMR8coODEGUzg70ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-hafnarfjordur-ipv4 + +DNSCry.pt Hafnarfjordur - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE1MS4yMzYuMjQuMTkwINhtfHvc3U5cE6_kslAZJswpzjhgvYKQY7Wt6YCi6hIWGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-hafnarfjordur-ipv6 + +DNSCry.pt Hafnarfjordur - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFlsyYTAzOmY4MDozNTQ6MzhiNzo6MV0g2G18e9zdTlwTr-SyUBkmzCnOOGC9gpBjta3pgKLqEhYZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-halifax-ipv4 + +DNSCry.pt Halifax - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDIzLjE5MS44MC43MiDWU4t3XLrMS6HgwPKxB17yx4QrCA3dwd2kWcDZNhlkzRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-halifax-ipv6 + +DNSCry.pt Halifax - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyNjAyOmZjMWM6ZmEwOjExOjoxXSDWU4t3XLrMS6HgwPKxB17yx4QrCA3dwd2kWcDZNhlkzRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-hanoi-ipv4 + +DNSCry.pt Hanoi - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTEwMy4xOTkuMTYuOTMg6iF-oJet7zyL2odP--IayA5Wrz6t94RPc7PXF53V82cZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-hanoi-ipv6 + +DNSCry.pt Hanoi - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyNDA0OmZiYzA6MDoxMWM4OjphMzI0XSDqIX6gl63vPIvah0_74hrIDlavPq33hE9zs9cXndXzZxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-helsinki-ipv4 + +DNSCry.pt Helsinki - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjM3LjIyOC4xMjkuMTYwIPlYPWSML8DlYbkp1ycL3CBER_3aJHp7GLvX_TRvbojGGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-helsinki-ipv6 + +DNSCry.pt Helsinki - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyYTA2OjE3MDA6MTozYTo6Y2JhXSD5WD1kjC_A5WG5KdcnC9wgREf92iR6exi71_00b26IxhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-hochiminhcity-ipv4 + +DNSCry.pt Ho-Chi-Minh City - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE1Ny4yMC44My4xMzUgjO-Llfy6TK7yRAZaDd6xpzGDj51mcPeGAttNfFcI0ZYZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-hochiminhcity-ipv6 + +DNSCry.pt Ho-Chi-Minh City - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyNDAwOjZlYTA6MDoxMWFlOjphZGM0XSCM74uV_LpMrvJEBloN3rGnMYOPnWZw94YC2018VwjRlhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-hongkong-ipv4 + +DNSCry.pt Hong Kong - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAACzk2LjkuMjI4LjI3ICMJK8RA3cOKDpDZjSR9PqVXj2mGf43CHMa6fO7ZzCWmGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-hongkong-ipv6 + +DNSCry.pt Hong Kong - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGVsyMDAxOmRmMTo4MDE6YTAyMjo6YzQ6YV0gIwkrxEDdw4oOkNmNJH0-pVePaYZ_jcIcxrp87tnMJaYZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-hongkong02-ipv4 + +DNSCry.pt Hong Kong 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDkxLjEyNC4zMC4zMSDyo1sS6VmTaElhosn2gJ09M8GXw5noLXSJV4f-VKvDGBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-hongkong02-ipv6 + +DNSCry.pt Hong Kong 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyNjAyOmZhNjc6MTAxOjIwOjphXSDyo1sS6VmTaElhosn2gJ09M8GXw5noLXSJV4f-VKvDGBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-hudiksvall-ipv4 + +DNSCry.pt Hudiksvall - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjk1LjE0My4xOTYuMTkwIIe6V4-SeKbsyNllxXsYRoqK7NDU9EtUn7yp48YWeEu9GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-hudiksvall-ipv6 + +DNSCry.pt Hudiksvall - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHFsyYTAzOmQ3ODA6MDoxOTY6OjNlODQ6NTZhZl0gh7pXj5J4puzI2WXFexhGiors0NT0S1SfvKnjxhZ4S70ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-islamabad-ipv4 + +DNSCry.pt Islamabad - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzEwMy4xNTEuMTExLjE3NCC9ck9MCNpysOp-XjsEWzVP5nxv-R4d52xZp_LSeH4R7hkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-islamabad-ipv6 + +DNSCry.pt Islamabad - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAF1syMDAxOmRmMjpkNDA6MTc6OmJhYmFdIL1yT0wI2nKw6n5eOwRbNU_mfG_5Hh3nbFmn8tJ4fhHuGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-jacksonville-ipv4 + +DNSCry.pt Jacksonville - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzEwNC4yMjUuMTI5LjEwNiAKQZEj8OAMOEB3ZaY36Jovz59wKeyFhBAMV6eOK384rhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-jacksonville-ipv6 + +DNSCry.pt Jacksonville - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyNjA3OmE2ODA6NDpmMDAzOjplYzMyXSAKQZEj8OAMOEB3ZaY36Jovz59wKeyFhBAMV6eOK384rhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-jakarta-ipv6 + +DNSCry.pt Jakarta - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAIFsyNDA3OjZhYzA6Mzo1OjEyMzQ6ZTM0ZTo3MmU0OjFdIMp-kt2QTVeHxfHuzsBm8Y-j_LnTTldhKbHfA61KITsfGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-johannesburg-ipv4 + +DNSCry.pt Johannesburg - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzE2OS4yMzkuMTI4LjEyNCDPBt-20rnrKqM3G3-ZKudPSvU9-zClzYY5-F2KRJSgsBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-johannesburg-ipv6 + +DNSCry.pt Johannesburg - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFFsyYzBmOmY1MzA6OmQwMDoxODhdIM8G37bSuesqozcbf5kq509K9T37MKXNhjn4XYpElKCwGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-johor-ipv4 + +DNSCry.pt Johor - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTQ1LjI0OS45MS4xNTAgHONiOhMA1VOPBBcvrkvy9IW-Q0dhA1aY-g5rKbpy9noZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-johor-ipv6 + +DNSCry.pt Johor - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyMDAxOmRmNDoxODQwOjlmOjphXSAc42I6EwDVU48EFy-uS_L0hb5DR2EDVpj6DmspunL2ehkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-kansascity-ipv4 + +DNSCry.pt Kansas City - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIzLjE1MC40MC4xMjEgQprQrFLF3Y2975ylDjnD8kdKAJLUvauubVrBGueEkcgZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-kansascity-ipv6 + +DNSCry.pt Kansas City - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGVsyNjAyOjJiNzpkMDE6YzI5NTo6YjoxOF0gQprQrFLF3Y2975ylDjnD8kdKAJLUvauubVrBGueEkcgZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-kharkiv-ipv4 + +DNSCry.pt Kharkiv - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE5My4yMzguMTUzLjE3IG2aHSWgTHM0_Uy0coL03hWlRhQ23saGZAQFPzr3GQklGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-kharkiv-ipv6 + +DNSCry.pt Kharkiv - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFFsyYTAyOjI3YTg6ZmVlZDo6ODFdIG2aHSWgTHM0_Uy0coL03hWlRhQ23saGZAQFPzr3GQklGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-kyiv-ipv4 + +DNSCry.pt Kyiv - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIxNy4xMi4yMjEuNjEgskgLubDTWs4bK9zH1IXKRYSylrG8XVPGWMJpUM37vwUZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-kyiv-ipv6 + +DNSCry.pt Kyiv - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAEFsyYTAyOjI3YWQ6OjIwMV0gskgLubDTWs4bK9zH1IXKRYSylrG8XVPGWMJpUM37vwUZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-lagos-ipv4 + +DNSCry.pt Lagos - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE3Ni45Ny4xOTIuMTIgcCgpSUHINZEdZRhbgwLZOUR6fOPJU5L4bY9g88TbNusZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-lagos-ipv6 + +DNSCry.pt Lagos - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAH1syYTA2OmY5MDE6NDAwMToxMDA6OjJkNmM6NzM2YV0gcCgpSUHINZEdZRhbgwLZOUR6fOPJU5L4bY9g88TbNusZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-lasvegas-ipv4 + +DNSCry.pt Las Vegas - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIwOS4xNDEuNDUuMjcgxObWYoxN9G0beY5ta20qYDsWjcrgoJsnpi7ILY0M9C4ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-lasvegas-ipv6 + +DNSCry.pt Las Vegas - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAJVsyNjA1OjY0MDA6MjA6MjI1ODo3YWNiOjkxZmY6MjA5ODphOV0gxObWYoxN9G0beY5ta20qYDsWjcrgoJsnpi7ILY0M9C4ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-libertylake-ipv4 + +DNSCry.pt Liberty Lake - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDIzLjE4NC40OC4xOSCwg3q2XK6z70eHJhi0H7whWQ_ZWQylhMItvqKpd9GtzRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-libertylake-ipv6 + +DNSCry.pt Liberty Lake - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyNjAyOmZjMjQ6MTg6MzNmMjo6YWIxXSCwg3q2XK6z70eHJhi0H7whWQ_ZWQylhMItvqKpd9GtzRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-lima02-ipv4 + +DNSCry.pt Lima 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDg3LjEyMS45OS4yMyBLyNV6BQU_iwNJcoib09jF8sIn-ucAJBLfUIuXHZQD1hkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-lima02-ipv6 + +DNSCry.pt Lima 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAE1syYTAzOjkwYzA6NTU1Ojo3Ml0gS8jVegUFP4sDSXKIm9PYxfLCJ_rnACQS31CLlx2UA9YZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-lisbon-ipv4 + +DNSCry.pt Lisbon - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE4NS4yMTkuMTMwLjIgHK9ZDGB_hDz_YHLGqdsTmT_RzQElksp6DBaYUSXst2oZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-lisbon-ipv6 + +DNSCry.pt Lisbon - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGlsyYTBlOmJjMDA6OjE4NToyMTk6MTMwOjJdIByvWQxgf4Q8_2ByxqnbE5k_0c0BJZLKegwWmFEl7LdqGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-london-ipv4 + +DNSCry.pt London - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDQ1LjY3Ljg0LjEzMiCPZtxEvrtixgzqLZkrkl_-HL7-Cau2YUCEF2vb8sox7hkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-london-ipv6 + +DNSCry.pt London - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFFsyYTA1OjQxNDA6NzAwOmU6OmFdII9m3ES-u2LGDOotmSuSX_4cvv4Jq7ZhQIQXa9vyyjHuGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-losangeles-ipv4 + +DNSCry.pt Los Angeles - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIxNi43My4xNTYuNTIgQPqVSpp9LaGAokzvLnoFqfiznQU98yJqahlccYqp-EEZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-losangeles-ipv6 + +DNSCry.pt Los Angeles - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyNjAyOmZhZmQ6OTAyOjIwOjphXSBA-pVKmn0toYCiTO8uegWp-LOdBT3zImpqGVxxiqn4QRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-losangeles02-ipv4 + +DNSCry.pt Los Angeles 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjEwNC4yMDAuNjcuMTk0IIhxeSuGQHwchZdstQqcoKD_RAuV4w8Qr_1XmXFZucGEGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-losangeles02-ipv6 + +DNSCry.pt Los Angeles 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAF1syNjAyOmZmNzU6NzpiNzk6OmI0YjRdIIhxeSuGQHwchZdstQqcoKD_RAuV4w8Qr_1XmXFZucGEGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-luxembourg-ipv4 + +DNSCry.pt Luxembourg - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDQ1LjgwLjIwOS41NSBRqTRnzxNNFAm2RL2O30OikS0iH19NmFv0HfSfn7-8NBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-luxembourg-ipv6 + +DNSCry.pt Luxembourg - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAE1syYTAzOjkwYzA6ODU6OjEwMl0gUak0Z88TTRQJtkS9jt9DopEtIh9fTZhb9B30n5-_vDQZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-madrid-ipv4 + +DNSCry.pt Madrid - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTUuMTM0LjExOC4xOTggF4pp6ab33hO4Nb9tp8zuU8Drkh2GcvzYZikut4DIHN8ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-madrid-ipv6 + +DNSCry.pt Madrid - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAG1syYTAzOmM3YzA6NTI6MjY0MToxODA6OjEzXSAXimnppvfeE7g1v22nzO5TwOuSHYZy_NhmKS63gMgc3xkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-manchester-ipv4 + +DNSCry.pt Manchester - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTgxLjE4MS4xMDguNDAg8vn0M0oHAF39xBc4UdC7YUwU27O6do5bSz-AlR5pz-MZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-manchester-ipv6 + +DNSCry.pt Manchester - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHVsyYTBlOjFkODA6NTo4MmU5OjU2Nzg6OTEwOjpdIPL59DNKBwBd_cQXOFHQu2FMFNuzunaOW0s_gJUeac_jGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-miami-ipv4 + +DNSCry.pt Miami - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjEyOC4yNTQuMjA3LjUwIIOGZgtvk9SmJ8GODlVlvGnZKIbEK66_WlJnYWU6rED7GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-miami-ipv6 + +DNSCry.pt Miami - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFFsyNjAyOmZhZmQ6ZmIyOjE6OmFdIIOGZgtvk9SmJ8GODlVlvGnZKIbEK66_WlJnYWU6rED7GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-montreal-ipv4 + +DNSCry.pt Montreal - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzE0Ny4xODkuMTM2LjE4MyCsCFB6EkMJdZLQ-IlsBbtjtSlasCfsTx7Q6u0bOI8OwBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-montreal-ipv6 + +DNSCry.pt Montreal - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGlsyNjA2OjY2ODA6NDU6MTo6Zjc4Yzo5YjBdIKwIUHoSQwl1ktD4iWwFu2O1KVqwJ-xPHtDq7Rs4jw7AGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-moscow-ipv4 + +DNSCry.pt Moscow - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjkzLjE4My4xMDUuMTA5ILd1Dg3kVS2KnYl7fYwUcgH4FR9_IEVgO5QViShZy4WCGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-moscow-ipv6 + +DNSCry.pt Moscow - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFFsyYTBjOmM1ODA6MDoxOjoyOjFdILd1Dg3kVS2KnYl7fYwUcgH4FR9_IEVgO5QViShZy4WCGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-mumbai-ipv4 + +DNSCry.pt Mumbai - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjEwMy4xMTEuMTE0LjI1IENdCfc5GHRGIG-JtMeIw2cVTN1nHG4kan0vc_aonHWDGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-mumbai-ipv6 + +DNSCry.pt Mumbai - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAH1syYTA2OmY5MDI6ODAwMToxMDA6OjE3NTc6ZTYxN10gQ10J9zkYdEYgb4m0x4jDZxVM3WccbiRqfS9z9qicdYMZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-munich-ipv4 + +DNSCry.pt Munich - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE5NC4zOS4yMDUuMTAgQtC7u79NGEO2MGscsRWQJwJZy8mvvDwc1gpY_VjEf2IZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-munich-ipv6 + +DNSCry.pt Munich - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGlsyYTBjOjhmYzA6MTc0OTo2NjoxODo6MTZdIELQu7u_TRhDtjBrHLEVkCcCWcvJr7w8HNYKWP1YxH9iGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-naaldwijk-ipv4 + +DNSCry.pt Naaldwijk - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIzLjEzNy4yNDkuMjYgCA4-g3tus39pqm78_CoOc8byRBbLfuc5ceEiFNFWnN4ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-naaldwijk-ipv6 + +DNSCry.pt Naaldwijk - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyNjAyOmZjMjQ6MTI6OTg3Mzo6YWIxXSAIDj6De26zf2mqbvz8Kg5zxvJEFst-5zlx4SIU0Vac3hkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-nuremberg-ipv4 + +DNSCry.pt Nuremberg - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIwMi42MS4yMzYuNjcgr2UzWGeubsFSZXP-_a8P2GA-gsZJ81sKZuhdsgsGqscZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-nuremberg-ipv6 + +DNSCry.pt Nuremberg - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAJVsyYTAzOjQwMDA6NWM6NTE6MjRiOTo1MWZmOmZlODA6ZjNhN10gr2UzWGeubsFSZXP-_a8P2GA-gsZJ81sKZuhdsgsGqscZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-oradea-ipv4 + +DNSCry.pt Oradea - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE5My4zMi44Ny4xMjcgqGZV4dUptaXgY6MX4VJhhQfNcTb8Kd0AVhegLHQzJogZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-oradea-ipv6 + +DNSCry.pt Oradea - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHlsyYTBkOjgxNDM6MDoxMjQ6MjkxNTphZjowOjE4XSCoZlXh1Sm1peBjoxfhUmGFB81xNvwp3QBWF6AsdDMmiBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-ottoville-ipv4 + +DNSCry.pt Ottoville - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzEwNC4yMzQuMjMxLjIzOSBVJyZb_D0SazeybnfWj5DWZ8NUgxii-zg9r-N8VNSWtBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-ottoville-ipv6 + +DNSCry.pt Ottoville - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAE1syNjAyOmY5NTM6NjoyNTo6YV0gVScmW_w9Ems3sm531o-Q1mfDVIMYovs4Pa_jfFTUlrQZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-paris-ipv4 + +DNSCry.pt Paris - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAACzg5LjExNy4yLjE3IAXdC7hGEegKD86br-tVRwZTcJfJZAEFjW4jCV5lzdutGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-paris-ipv6 + +DNSCry.pt Paris - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHlsyNDAyOmQwYzA6MjI6NmNkMDo0OjQ6NDo1YjgxXSAF3Qu4RhHoCg_Om6_rVUcGU3CXyWQBBY1uIwleZc3brRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-philadelphia-ipv4 + +DNSCry.pt Philadelphia - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE1NC4xNi4xNTkuMjIg2_tLIEpyMKwEhbD7PirfNwPUvZUnTM4z8F8DVkeQI3oZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-philadelphia-ipv6 + +DNSCry.pt Philadelphia - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyNjA0OmJmMDA6MjEwOjEyOjoyXSDb-0sgSnIwrASFsPs-Kt83A9S9lSdMzjPwXwNWR5AjehkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-phoenix-ipv4 + +DNSCry.pt Phoenix - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE3My4yNDkuMjAzLjUyIC7cQyu7dTkvrH-MdwA3fzAkI_2dEUnZd3x1ON0tfYubGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-phoenix-ipv6 + +DNSCry.pt Phoenix - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAG1syNjA3OjFlNDA6MToxMGE0OjoxOTpjYTg0XSAu3EMru3U5L6x_jHcAN38wJCP9nRFJ2Xd8dTjdLX2LmxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-portedwards-ipv4 + +DNSCry.pt Port Edwards - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzE3Ni4xMTEuMjE5LjEyNiDzuja5nmAyDvA5jakqkuLQEtb245xsAhNwJYDLkKraKhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-portedwards-ipv6 + +DNSCry.pt Port Edwards - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyMDAxOjQ3MDoxZjExOjJiYjo6YjIzXSDzuja5nmAyDvA5jakqkuLQEtb245xsAhNwJYDLkKraKhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-portland-ipv4 + +DNSCry.pt Portland - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzEwMy4xMjQuMTA2LjIzMyCN5S36eWstGFliH6xl8Mg2gyF99cqzMzgoJfAtWVYJnhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-portland-ipv6 + +DNSCry.pt Portland - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAIVsyNDAyOmQwYzA6MTY6YTFlNjowOmI4OTM6YmY3OmRkXSCN5S36eWstGFliH6xl8Mg2gyF99cqzMzgoJfAtWVYJnhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-prague-ipv4 + +DNSCry.pt Prague - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE5NS4xMjMuMjQ1LjE5ID_cR_36ozMvCvR_yzODoHfX8nlpO7p7IBsbqZU5pQIEGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-prague-ipv6 + +DNSCry.pt Prague - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAEFsyYTA1Ojk0MDM6Ojk5OV0gP9xH_fqjMy8K9H_LM4Ogd9fyeWk7unsgGxuplTmlAgQZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-redditch-ipv4 + +DNSCry.pt Redditch - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDQ1LjY3Ljg1LjIxOSDF35bt83M1j2hvqqgOyB1Rv_pQ0LYZCpGkTuXWt6JGlBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-redditch-ipv6 + +DNSCry.pt Redditch - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFFsyYTA1OjQxNDA6MTk6NTM6OmFdIMXflu3zczWPaG-qqA7IHVG_-lDQthkKkaRO5da3okaUGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-riga-ipv4 + +DNSCry.pt Riga - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzE5NS4xMjMuMjEyLjIwMCCKpSwU2DoHr1tktJRs4UIiLfoXBly8F7WmgX74sIHRyhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-riga-ipv6 + +DNSCry.pt Riga - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAEVsyYTAyOjI3YWM6OjEyNDldIIqlLBTYOgevW2S0lGzhQiIt-hcGXLwXtaaBfviwgdHKGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-saltlakecity-ipv4 + +DNSCry.pt Salt Lake City - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjEwMy4xMTQuMTYyLjY1IKbTxlVrc12BNolzMCksgqjW75nTqlnHp95UlrGWqm-UGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-saltlakecity-ipv6 + +DNSCry.pt Salt Lake City - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAIVsyNDAyOmQwYzA6MTg6YzhmZjowOmI4OTM6YmY3OmRkXSCm08ZVa3NdgTaJczApLIKo1u-Z06pZx6feVJaxlqpvlBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-sandefjord-ipv4 + +DNSCry.pt Sandefjord - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE5NC4zMi4xMDcuNDggXTsyJ8l_6LJ4TCwKbGyVeIVM1yLzf8sxL2PmKjZIMvcZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-sandefjord-ipv6 + +DNSCry.pt Sandefjord - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyYTAzOjk0ZTA6MjcxZjo6NWIxXSBdOzInyX_osnhMLApsbJV4hUzXIvN_yzEvY-YqNkgy9xkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-santaclara-ipv4 + +DNSCry.pt Santa Clara - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzE3Ni4xMTEuMjIzLjE2NyCmqAI-1fpR1qtHZyAx3vJJ7SpKXkdmPAnZZ5ga25JckxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-santaclara-ipv6 + +DNSCry.pt Santa Clara - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAG1syNjA2OjY2ODA6MzU6MTo6NTA2ZDo4Y2UyXSCmqAI-1fpR1qtHZyAx3vJJ7SpKXkdmPAnZZ5ga25JckxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-saopaulo-ipv4 + +DNSCry.pt Sao Paulo - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjEwOC4xODEuNjkuMTUzIKai-Qjyp6DgYnQVy1gEzvb3-NTklTiCmy4Afgv7TRJVGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-saopaulo-ipv6 + +DNSCry.pt Sao Paulo - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHlsyNjA0OjY2MDA6ZmQwMDo5MDo6MWI4YjozYTNjXSCmovkI8qeg4GJ0FctYBM729_jU5JU4gpsuAH4L-00SVRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-seattle-ipv4 + +DNSCry.pt Seattle - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzIwOS4xODIuMjI1LjEwMyAbREpgYMxYxNqglLJnR6df63qELMlAVMwxGlsjPMMThhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-seattle-ipv6 + +DNSCry.pt Seattle - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyNjA3OmE2ODA6OTpmMDA1Ojo4NmU3XSAbREpgYMxYxNqglLJnR6df63qELMlAVMwxGlsjPMMThhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-seoul-ipv4 + +DNSCry.pt Seoul - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTkyLjM4LjEzNS4xMjggyHfVGamJyxLfoAWjERmO4pY3KzKkqY-vSa2UnVx_gYAZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-seoul-ipv6 + +DNSCry.pt Seoul - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAE1syYTAzOjkwYzA6MTI1Ojo4OF0gyHfVGamJyxLfoAWjERmO4pY3KzKkqY-vSa2UnVx_gYAZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-singapore-ipv4 + +DNSCry.pt Singapore - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIzLjI3LjEwMS4xOTEgX4DtgHar8KftBn3jpccW4O8BQ2VFctwhwu_rMfmCWsYZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-singapore-ipv6 + +DNSCry.pt Singapore - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyNjA2OmZjNDA6NDAwMzpmOjphXSBfgO2Adqvwp-0GfeOlxxbg7wFDZUVy3CHC7-sx-YJaxhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-singapore02-ipv4 + +DNSCry.pt Singapore 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTEwMy4xNzkuNDQuNzMgICxK5c5XamgK_BNMTtSKyEnZM4D44NPAIHddngTPbGUZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-singapore02-ipv6 + +DNSCry.pt Singapore 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAE1syNDAxOjQ1MjA6MTEyMjo6YV0gICxK5c5XamgK_BNMTtSKyEnZM4D44NPAIHddngTPbGUZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-sofia-ipv4 + +DNSCry.pt Sofia - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAACzc5LjEyNC43Ny4zIGjOJralcFGh38dFov6MP6OkkaSPIlSCbku5I7J2NZUfGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-sofia-ipv6 + +DNSCry.pt Sofia - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFlsyYTAxOjg3NDA6MTo0MDo6OGEyNV0gaM4mtqVwUaHfx0Wi_ow_o6SRpI8iVIJuS7kjsnY1lR8ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-spokane-ipv4 + +DNSCry.pt Spokane - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTEwNC4zNi44Ni4xODEg_ifyAp41KOphKBVIwROBjWV91n9fuUzlzUqXCIklST0ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-spokane-ipv6 + +DNSCry.pt Spokane - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFFsyNjA2OmE4YzA6MzoyMDI6OmFdIP4n8gKeNSjqYSgVSMETgY1lfdZ_X7lM5c1KlwiJJUk9GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-stockholm-ipv4 + +DNSCry.pt Stockholm - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE4NS4xOTUuMjM2LjYyIBs-wdms4LUcYsk1gE7X2G0U7jqOAxC0ihiHfIwVJAYTGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-stockholm-ipv6 + +DNSCry.pt Stockholm - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFlsyYTA5OmIyODA6ZmUwMTozNTo6YV0gGz7B2azgtRxiyTWATtfYbRTuOo4DELSKGId8jBUkBhMZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-sydney-ipv4 + +DNSCry.pt Sydney - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDg0LjMzLjE1LjEwMCBq8e6bhSwgentAeVRR__dhXfcSy86CtQPtq0vb_Cl18hkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-sydney-ipv6 + +DNSCry.pt Sydney - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAH1syYTBjOjhmYzE6ODAwNDo1NTM6OjE0NWE6YmJmOV0gavHum4UsIHp7QHlUUf_3YV33EsvOgrUD7atL2_wpdfIZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-sydney02-ipv4 + +DNSCry.pt Sydney 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE5NS4xMTQuMTQuNzQgfD7v3z2SLbLGuO4Wo8-HYVxwRz44PitWMFgp81gvSjUZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-sydney02-ipv6 + +DNSCry.pt Sydney 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGFsyNDAyOjczNDA6NTAwMDo2MjAwOjphXSB8Pu_fPZItssa47hajz4dhXHBHPjg-K1YwWCnzWC9KNRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-taipeh-ipv4 + +DNSCry.pt Taipeh - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjEwMy4xMzEuMTg5LjExIIMLIy-_BnvJTc23i9iX0LlOgTzBwtumxbxntod8ri75GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-taipeh-ipv6 + +DNSCry.pt Taipeh - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGlsyNDAzOmNmYzA6MTAwNDozNjk6OjViMjFdIIMLIy-_BnvJTc23i9iX0LlOgTzBwtumxbxntod8ri75GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-tallinn-ipv4 + +DNSCry.pt Tallinn - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE4NS4xOTQuNTMuMjIgr0WageGep9cjA5yYpY30Z6EsTYHZnSlV-PCfvZssTNcZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-tallinn-ipv6 + +DNSCry.pt Tallinn - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAElsyYTA0OjZmMDA6NDo6MTdhXSCvRZqB4Z6n1yMDnJiljfRnoSxNgdmdKVX48J-9myxM1xkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-tampa-ipv4 + +DNSCry.pt Tampa - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADzE2NS4xNDAuMTE3LjI0OCBfK4fFWjW65PRF3_42MZM1Ly9t0ZLHdDA_0uy63rk0zBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-tampa-ipv6 + +DNSCry.pt Tampa - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGVsyNjAyOmZjYzA6MjIyMjo5ZDJlOjo1M10gXyuHxVo1uuT0Rd_-NjGTNS8vbdGSx3QwP9Lsut65NMwZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-taos-ipv4 + +DNSCry.pt Taos - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjYzLjEzMy4yMjMuMTM4IIggy47qNTs0s0PnLuDK5UcpSJt_t7XVmTr0tWn1QlqNGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-taos-ipv6 + +DNSCry.pt Taos - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAG1syNjA2OjY2ODA6NTM6MTo6ODQ2YTpiZDc5XSCIIMuO6jU7NLND5y7gyuVHKUibf7e11Zk69LVp9UJajRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-tbilisi-ipv4 + +DNSCry.pt Tbilisi - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE5NC4xMzUuMTE5LjkzIC1Ic5tvXD4s8NzqITuCwVLnBFJHu7yZ5ImAEEXxtjytGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-tbilisi-ipv6 + +DNSCry.pt Tbilisi - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGlsyYTEyOmUzNDA6MzAwOjpiYzM0OjkzZTRdIC1Ic5tvXD4s8NzqITuCwVLnBFJHu7yZ5ImAEEXxtjytGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-telaviv-ipv4 + +DNSCry.pt Tel Aviv - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjE0Ni4xODUuMjE5LjI0IDYsa6yLmjrVde4WRv7r92b1PxOvB3GC0ejgjsv4bt7AGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-telaviv-ipv6 + +DNSCry.pt Tel Aviv - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAElsyYTAzOjkwYzA6MWU1OjpkXSA2LGusi5o61XXuFkb-6_dm9T8TrwdxgtHo4I7L-G7ewBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-tokyo-ipv4 + +DNSCry.pt Tokyo - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDQ1LjY3Ljg2LjEyMyBDK5aRHZnKfdd6Q9ufEJY83WAQ9X5z7OAQa5CeptBCYBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-tokyo-ipv6 + +DNSCry.pt Tokyo - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyNjA2OmZjNDA6NDAwMjpkOjphXSBDK5aRHZnKfdd6Q9ufEJY83WAQ9X5z7OAQa5CeptBCYBkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-tokyo02-ipv4 + +DNSCry.pt Tokyo 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDEwMy4xNzkuNDUuNiDfai5sp1im-BPHwbM1GCnTqn20FIbQfuvvybKsGf0pjhkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-tokyo02-ipv6 + +DNSCry.pt Tokyo 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAE1syYTBhOjYwNDA6OTczZDo6YV0g32oubKdYpvgTx8GzNRgp06p9tBSG0H7r78myrBn9KY4ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-toronto-ipv4 + +DNSCry.pt Toronto - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDIzLjEzNC44OS4yMyB4hEFNFQU627_7pPlQl-k6TkU1hGlpOEZe7eg7V1tODRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-toronto-ipv6 + +DNSCry.pt Toronto - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyNjAyOmZiYTE6ZDAwOjoyMzoxXSB4hEFNFQU627_7pPlQl-k6TkU1hGlpOEZe7eg7V1tODRkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-tuusula-ipv4 + +DNSCry.pt Tuusula - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTY1LjIxLjI1Mi4yMDEgIhe-u4w5oFAMptmgzUFqc-mgyjjRlnH70fwVqSiHJfkZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-tuusula-ipv6 + +DNSCry.pt Tuusula - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAF1syYTAxOjRmOTpjMDExOmI4NGU6OjFdICIXvruMOaBQDKbZoM1BanPpoMo40ZZx-9H8FakohyX5GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-valdivia-ipv4 + +DNSCry.pt Valdivia - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTIxNi43My4xNTkuMjYgnpr1thxYT4SkWK38OEbiPOQa3NSVayBN7f8BkMVREC8ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-valdivia-ipv6 + +DNSCry.pt Valdivia - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFVsyYTA2OmEwMDY6ZDFkMTo6MTE2XSCemvW2HFhPhKRYrfw4RuI85Brc1JVrIE3t_wGQxVEQLxkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-vancouver-ipv4 + +DNSCry.pt Vancouver - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADDIzLjE1NC44MS45MiAGyG9Uh1Ra0QN3Ge2n_OYHW8h263tF9bF2GwyXRAaC7xkyLmRuc2NyeXB0LWNlcnQuZG5zY3J5LnB0 + + +## dnscry.pt-vienna-ipv4 + +DNSCry.pt Vienna - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTgzLjEzOC41NS4xODYg3kyI1rUYwQymzbrF1c5fYhw1rWmOTm8L6i1aISwm6y4ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-vienna-ipv6 + +DNSCry.pt Vienna - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAHVsyYTBkOmYzMDI6MTEwOjY1MTc6OmJiNDoyMTRdIN5MiNa1GMEMps26xdXOX2IcNa1pjk5vC-otWiEsJusuGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-vilnius-ipv4 + +DNSCry.pt Vilnius - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTE2Mi4yNTQuODYuMTMg4nDDbNqRwkkkZWTJ5c82d1sbs0NeQCbn-aFldCI2mn4ZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-vilnius-ipv6 + +DNSCry.pt Vilnius - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAF1syYTEzOjk0MDE6MDoxOjozZDU4OjFdIOJww2zakcJJJGVkyeXPNndbG7NDXkAm5_mhZXQiNpp-GTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-warsaw02-ipv4 + +DNSCry.pt Warsaw 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADjg4LjIxOC4yMDYuMTM3IE42BnReymaCMKWg_FWRMirGsBpqOOzlekDh8UwsfVEQGTIuZG5zY3J5cHQtY2VydC5kbnNjcnkucHQ + + +## dnscry.pt-warsaw02-ipv6 + +DNSCry.pt Warsaw 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAFlsyYTA5OmIyODA6ZmUwMDoyNDo6YV0gTjYGdF7KZoIwpaD8VZEyKsawGmo47OV6QOHxTCx9URAZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-yerevan-ipv4 + +DNSCry.pt Yerevan - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAADTg1LjkwLjIwNy4xOTkgk1VXqXvUtR3JLu9xcONFSHTVnBWEj2rWkjgjmv9iQSoZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscry.pt-yerevan-ipv6 + +DNSCry.pt Yerevan - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://AQcAAAAAAAAAGVsyYTAzOjkwYzA6NWYxOjI5MDM6OjUzOV0gk1VXqXvUtR3JLu9xcONFSHTVnBWEj2rWkjgjmv9iQSoZMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeS5wdA + + +## dnscrypt.ca-ipv4 + +Canadian based, unfiltered, DNSSEC validating, and no logs... for your pleasure. https://dnscrypt.ca/ + +sdns://AQcAAAAAAAAAEzE4NS4xMTEuMTg4LjQ2Ojg0NDMgC-tbTwd-08e_JtBJmgsvjAG9i10itE-LBNCwjTflezQiMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeXB0LmNhLTEtaXB2NA + + +## dnscrypt.ca-ipv4-doh + +Canadian based, unfiltered, DNSSEC validating, and no logs... for your pleasure. https://dnscrypt.ca/ + +sdns://AgcAAAAAAAAADjE4NS4xMTEuMTg4LjQ2oMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVEGRuczEuZG5zY3J5cHQuY2EKL2Rucy1xdWVyeQ + + +## dnscrypt.pl + +Free | No filtering | Zero logs | DNSSEC | Poland | https://dnscrypt.pl/ | @dnscryptpl + +sdns://AQcAAAAAAAAAFDE3OC4yMTYuMjAxLjEyODoyMDUzIH9hfLgepVPSNMSbwnnHT3tUmAUNHb8RGv7mmWPGR6FpGzIuZG5zY3J5cHQtY2VydC5kbnNjcnlwdC5wbA + + +## dnscrypt.pl-guardian + +Free | Malware and phishing filtering | Zero logs | DNSSEC | Poland | https://dnscrypt.pl/ | @dnscryptpl + +sdns://AQMAAAAAAAAAFDE3OC4yMTYuMjAxLjEyODoyMDU0IH9hfLgepVPSNMSbwnnHT3tUmAUNHb8RGv7mmWPGR6FpGzIuZG5zY3J5cHQtY2VydC5kbnNjcnlwdC5wbA + + +## dnscrypt.uk-ipv4 + +DNSCrypt, no logs, uncensored, DNSSEC. Hosted in London UK on Digital Ocean +https://www.dnscrypt.uk + +sdns://AQcAAAAAAAAADTE2NS4yMzIuMzIuOTUgAdMO6A4gTdoYcdOhDyhRVGdlvxS02kQEpP8EbX2paDwbMi5kbnNjcnlwdC1jZXJ0LmRuc2NyeXB0LnVr + + +## dnscrypt.uk-ipv6 + +DNSCrypt, no logs, uncensored, DNSSEC. Hosted in London UK on Digital Ocean +https://www.dnscrypt.uk + +sdns://AQcAAAAAAAAAGlsyYTAzOmIwYzA6MTplMDo6NDg3OjEwMDFdIAHTDugOIE3aGHHToQ8oUVRnZb8UtNpEBKT_BG19qWg8GzIuZG5zY3J5cHQtY2VydC5kbnNjcnlwdC51aw + + +## dnsforfamily + +(DNSCrypt Protocol) (Now supports DNSSEC). Block adult websites, gambling websites, malwares, trackers and advertisements. +It also enforces safe search in: Google, YouTube, Bing, DuckDuckGo and Yandex. + +Social websites like Facebook and Instagram are not blocked. No DNS queries are logged. + +As of 26-May-2022 5.9 million websites are blocked and new websites are added to blacklist daily. +Completely free, no ads or any commercial motive. Operating for 4 years now. + +Warning: This server is incompatible with anonymization. + +Provided by: https://dnsforfamily.com + +sdns://AQMAAAAAAAAADDc4LjQ3LjY0LjE2MSATJeLOABXNSYcSJIoqR5_iUYz87Y4OecMLB84aEAKPrRBkbnNmb3JmYW1pbHkuY29t + + +## dnsforfamily-doh + +(DoH Protocol) (Now supports DNSSEC). Block adult websites, gambling websites, malwares, trackers and advertisements. +It also enforces safe search in: Google, YouTube, Bing, DuckDuckGo and Yandex. + +Social websites like Facebook and Instagram are not blocked. No DNS queries are logged. + +As of 26-May-2022 5.9 million websites are blocked and new websites are added to blacklist daily. +Completely free, no ads or any commercial motive. Operating for 4 years now. + +Provided by: https://dnsforfamily.com + +sdns://AgMAAAAAAAAADzE2Ny4yMzUuMjM2LjEwN6DMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRhkbnMtZG9oLmRuc2ZvcmZhbWlseS5jb20KL2Rucy1xdWVyeQ + + +## dnsforfamily-doh-no-safe-search + +(DoH Protocol) (Now supports DNSSEC) Block adult websites, gambling websites, malwares, trackers and advertisements. +Unlike other dnsforfamily servers, this one does not enforces safe search. So Google, YouTube, Bing, DuckDuckGo and Yandex are completely accessible without any restriction. + +Social websites like Facebook and Instagram are not blocked. No DNS queries are logged. + +As of 26-May-2022 5.9 million websites are blocked and new websites are added to blacklist daily. +Completely free, no ads or any commercial motive. Operating for 4 years now. + +Warning: This server is incompatible with anonymization. + +Provided by: https://dnsforfamily.com + +sdns://AgMAAAAAAAAADzE2Ny4yMzUuMjM2LjEwN6DMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVSdkbnMtZG9oLW5vLXNhZmUtc2VhcmNoLmRuc2ZvcmZhbWlseS5jb20KL2Rucy1xdWVyeQ + + +## dnsforfamily-no-safe-search + +(DNSCrypt Protocol) (Now supports DNSSEC) Block adult websites, gambling websites, malwares, trackers and advertisements. +Unlike other dnsforfamily servers, this one does not enforces safe search. So Google, YouTube, Bing, DuckDuckGo and Yandex are completely accessible without any restriction. + +Social websites like Facebook and Instagram are not blocked. No DNS queries are logged. + +As of 26-May-2022 5.9 million websites are blocked and new websites are added to blacklist daily. +Completely free, no ads or any commercial motive. Operating for 4 years now. + +Warning: This server is incompatible with anonymization. + +Provided by: https://dnsforfamily.com + +sdns://AQMAAAAAAAAADzEzNS4xODEuMTkzLjIyMiDrxcZ_hFtGE6tfATvQZYjxgl5pTY_e2cRH_ms8bEWofBBkbnNmb3JmYW1pbHkuY29t + + +## dnsforfamily-v6 + +(DNSCrypt Protocol) (Now supports DNSSEC) Block adult websites, gambling websites, malwares, trackers and advertisements. +It also enforces safe search in: Google, YouTube, Bing, DuckDuckGo and Yandex. + +Social websites like Facebook and Instagram are not blocked. No DNS queries are logged. + +As of 26-May-2022 5.9 million websites are blocked and new websites are added to blacklist daily. +Completely free, no ads or any commercial motive. Operating for 4 years now. + +Provided by: https://dnsforfamily.com + +sdns://AQMAAAAAAAAAF1syYTAxOjRmODoxYzE3OjRkZjg6OjFdIBMl4s4AFc1JhxIkiipHn-JRjPztjg55wwsHzhoQAo-tEGRuc2ZvcmZhbWlseS5jb20 + + +## dnsforge.de + +Public DoH resolver running with Pihole for Adblocking (https://dnsforge.de). + +Non-logging, AD-filtering, supports DNSSEC. Hosted in Germany. + +sdns://AgMAAAAAAAAADDE3Ni45LjkzLjE5OKDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVQtkbnNmb3JnZS5kZQovZG5zLXF1ZXJ5 + + +## dnslow.me + +dnslow.me is an open source project, also your advertisement and threat blocking, privacy-first, encrypted DNS. + +All DNS requests will be protected with threat-intelligence feeds and randomly distributed to some other DNS resolvers. + +More info on the [homepage](https://dnslow.me) and [GitHub](https://github.com/PeterDaveHello/dnslow.me) + +sdns://AgAAAAAAAAAAAKDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVQlkbnNsb3cubWUKL2Rucy1xdWVyeQ + + +## dnspod + +A public DNS resolver that supports DoH/DoT in mainland China, provided by dnspod/Tencent-cloud. +Homepage: https://dnspod.cn + +Warning: GFW filtering rules are applied by this resolver. + +sdns://AgAAAAAAAAAADDE2Mi4xNC4yMS41NgAHZG9oLnB1YgovZG5zLXF1ZXJ5 +sdns://AgAAAAAAAAAADTE2Mi4xNC4yMS4xNzgAB2RvaC5wdWIKL2Rucy1xdWVyeQ +sdns://AgAAAAAAAAAADDEyMC41My41My41MwAMMTIwLjUzLjUzLjUzCi9kbnMtcXVlcnk +sdns://AgAAAAAAAAAACjEuMTIuMTIuMTIACjEuMTIuMTIuMTIKL2Rucy1xdWVyeQ +sdns://AgAAAAAAAAAACjEuMTIuMzQuNTYACjEuMTIuMTIuMTIKL2Rucy1xdWVyeQ + + +## doh-cleanbrowsing-adult + +Blocks access to adult, pornographic and explicit sites. It does +not block proxy or VPNs, nor mixed-content sites. Sites like Reddit +are allowed. Google and Bing are set to the Safe Mode. + +By https://cleanbrowsing.org/ + +sdns://AgMAAAAAAAAAAAAVZG9oLmNsZWFuYnJvd3Npbmcub3JnEi9kb2gvYWR1bHQtZmlsdGVyLw + + +## doh-cleanbrowsing-family + +Blocks access to adult, pornographic and explicit sites. It also +blocks proxy and VPN domains that are used to bypass the filters. +Mixed content sites (like Reddit) are also blocked. Google, Bing and +Youtube are set to the Safe Mode. + +By https://cleanbrowsing.org/ + +sdns://AgMAAAAAAAAAAAAVZG9oLmNsZWFuYnJvd3Npbmcub3JnEy9kb2gvZmFtaWx5LWZpbHRlci8 + + +## doh-cleanbrowsing-security + +Block access to phishing, malware and malicious domains. It does not block adult content. +By https://cleanbrowsing.org/ + +sdns://AgMAAAAAAAAAAAAVZG9oLmNsZWFuYnJvd3Npbmcub3JnFS9kb2gvc2VjdXJpdHktZmlsdGVyLw + + +## doh-crypto-sx + +DNS-over-HTTPS server. Anycast, no logs, no censorship, DNSSEC. +Globally cached via Cloudflare. +Maintained by Frank Denis. + +sdns://AgcAAAAAAAAACzEwNC4yMS42Ljc4AA1kb2guY3J5cHRvLnN4Ci9kbnMtcXVlcnk +sdns://AgcAAAAAAAAADjE3Mi42Ny4xMzQuMTU3AA1kb2guY3J5cHRvLnN4Ci9kbnMtcXVlcnk + + +## doh-crypto-sx-ipv6 + +DNS-over-HTTPS server accessible over IPv6. Anycast, no logs, no censorship, DNSSEC. +Globally cached via Cloudflare. +Maintained by Frank Denis. + +sdns://AgcAAAAAAAAAGlsyNjA2OjQ3MDA6MzAzNzo6NjgxNTo2NGVdABJkb2gtaXB2Ni5jcnlwdG8uc3gKL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAAG1syNjA2OjQ3MDA6MzAzNjo6YWM0Mzo4NjlkXQASZG9oLWlwdjYuY3J5cHRvLnN4Ci9kbnMtcXVlcnk + + +## doh-ibksturm + +DoH & DoT Server, No Logging, No Filters, DNSSEC + +Running privately by ibksturm in Thurgau, Switzerland + +sdns://AgcAAAAAAAAADjIxMy4xOTYuMTkxLjk2IJRq0Q0bVAt-COHOCim4PL_Nyl_hsJ6bi7sOV67HMIVpGGlia3N0dXJtLnN5bm9sb2d5Lm1lOjQ0MwovZG5zLXF1ZXJ5 + + +## doh.appliedprivacy.net + +Public DoH resolver operated by the Foundation for Applied Privacy (https://appliedprivacy.net). +Hosted in Vienna, Austria. + +Non-logging, non-filtering, supports DNSSEC. + +sdns://AgcAAAAAAAAAAKDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRZkb2guYXBwbGllZHByaXZhY3kubmV0Bi9xdWVyeQ + + +## doh.ffmuc.net + +An open (non-logging, non-filtering, non-censoring) DoH resolver operated by Freifunk Munich with nodes in DE. +https://ffmuc.net/ + +sdns://AgcAAAAAAAAACjUuMS42Ni4yNTWgzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1UNZG9oLmZmbXVjLm5ldAovZG5zLXF1ZXJ5 + + +## doh.ffmuc.net-2 + +An open (non-logging, non-filtering, non-censoring) DoH resolver operated by Freifunk Munich with nodes in DE. +https://ffmuc.net/ + +sdns://AgcAAAAAAAAADjE4NS4xNTAuOTkuMjU1oMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVDWRvaC5mZm11Yy5uZXQKL2Rucy1xdWVyeQ + + +## doh.ffmuc.net-v6 + +An open (non-logging, non-filtering, non-censoring) DoH resolver operated by Freifunk Munich with nodes in DE. +https://ffmuc.net/ + +sdns://AgcAAAAAAAAAFVsyMDAxOjY3ODplNjg6ZjAwMDo6XaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVQ1kb2guZmZtdWMubmV0Ci9kbnMtcXVlcnk + + +## doh.ffmuc.net-v6-2 + +An open (non-logging, non-filtering, non-censoring) DoH resolver operated by Freifunk Munich with nodes in DE. +https://ffmuc.net/ + +sdns://AgcAAAAAAAAAFVsyMDAxOjY3ODplZDA6ZjAwMDo6XaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVQ1kb2guZmZtdWMubmV0Ci9kbnMtcXVlcnk + + +## doh.tiar.app + +Non-Logging DNSCrypt server located in Singapore. +Filters out ads, trackers and malware, supports DNSSEC, provided by id-gmail. + +sdns://AQMAAAAAAAAADjE3NC4xMzguMjEuMTI4IO-WgGbo2ZTwZdg-3dMa7u31bYZXRj5KykfN1_6Xw9T2HDIuZG5zY3J5cHQtY2VydC5kbnMudGlhci5hcHA + + +## doh.tiar.app-doh + +Non-Logging DNS-over-HTTPS (HTTP/2 & HTTP/3) server located in Singapore. +Filters out ads, trackers and malware, supports DNSSEC, provided by id-gmail. + +sdns://AgMAAAAAAAAADjE3NC4xMzguMjkuMTc1oMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVDGRvaC50aWFyLmFwcAovZG5zLXF1ZXJ5 + + +## doh.tiarap.org + +Non-Logging DNS-over-HTTPS server, cached via Cloudflare. +Filters out ads, trackers and malware, NO ECS, supports DNSSEC. + +sdns://AgMAAAAAAAAADDEwNC4yMS42NS42MAAOZG9oLnRpYXJhcC5vcmcKL2Rucy1xdWVyeQ + + +## doh.tiarap.org-ipv6 + +Non-Logging DNS-over-HTTPS server (IPv6), cached via Cloudflare. +Filters out ads, trackers and malware, NO ECS, supports DNSSEC. + +sdns://AgMAAAAAAAAAG1syNjA2OjQ3MDA6MzAzNDo6NjgxNTo0MTNjXQAOZG9oLnRpYXJhcC5vcmcKL2Rucy1xdWVyeQ + + +## easymosdns-doh + +DoH forwarded runned personally, as a example server of the project [EasyMosdns](https://github.com/pmkol/easymosdns). +No filtering or logs (by the forwarder itself). +No DNSSEC support due to one of the upstream servers (AliDNS) that doesn't support it. +Upstreams are AliDNS and DNSPod for resolving domains in mainland China, and GoogleDNS is for domains. +Cloudflare CDN is used as a front-end for non-China areas, and Mobile CDN is used in China. + +Homepage: https://apad.pro/dns-doh/ + +sdns://AgQAAAAAAAAAAAAMZG9oLmFwYWQucHJvCi9kbnMtcXVlcnk + + +## faelix-uk-ipv4 + +An open (non-logging, non-filtering, no ECS) DNSCrypt resolver operated by https://faelix.net/ with IPv4 nodes anycast within AS41495 in the UK. + +sdns://AQYAAAAAAAAAEjQ2LjIyNy4yMDAuNTQ6ODQ0MyB-y-8-LwGAMo1g4OHR7CPk6HfY6gmhk3AaBNazwL6L4R8yLmRuc2NyeXB0LWNlcnQucmRucy5mYWVsaXgubmV0 + + +## faelix-uk-ipv6 + +An open (non-logging, non-filtering, no ECS) DNSCrypt resolver operated by https://faelix.net/ with IPv6 nodes anycast within AS41495 in the UK. + +sdns://AQYAAAAAAAAAFFsyYTAxOjllMDA6OjU0XTo4NDQzIH7L7z4vAYAyjWDg4dHsI-Tod9jqCaGTcBoE1rPAvovhHzIuZG5zY3J5cHQtY2VydC5yZG5zLmZhZWxpeC5uZXQ +sdns://AQYAAAAAAAAAFFsyYTAxOjllMDA6OjU1XTo4NDQzIH7L7z4vAYAyjWDg4dHsI-Tod9jqCaGTcBoE1rPAvovhHzIuZG5zY3J5cHQtY2VydC5yZG5zLmZhZWxpeC5uZXQ + + +## fdn + +DoH server in France operated by FDN - French Data Network (non-profit ISP) +https://www.fdn.fr/ + +sdns://AgcAAAAAAAAADDgwLjY3LjE2OS40MKDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVQpuczEuZmRuLmZyCi9kbnMtcXVlcnk + + +## fdn-ipv6 + +DoH server in France operated by FDN - French Data Network (non-profit ISP) +https://www.fdn.fr/ + +sdns://AgcAAAAAAAAAElsyMDAxOjkxMDo4MDA6OjEyXaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVQpuczAuZmRuLmZyCi9kbnMtcXVlcnk +sdns://AgcAAAAAAAAAElsyMDAxOjkxMDo4MDA6OjQwXaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVQpuczEuZmRuLmZyCi9kbnMtcXVlcnk + + +## ffmuc.net + +An open (non-logging, non-filtering, non-censoring) DNSCrypt resolver operated by Freifunk Munich with nodes in DE. +https://ffmuc.net/ + +sdns://AQcAAAAAAAAADzUuMS42Ni4yNTU6ODQ0MyAH0Hrxz9xdmXadPwJmkKcESWXCdCdseRyu9a7zuQxG-hkyLmRuc2NyeXB0LWNlcnQuZmZtdWMubmV0 + + +## ffmuc.net-v6 + +An open (non-logging, non-filtering, non-censoring) DNSCrypt resolver operated by Freifunk Munich with nodes in DE. +https://ffmuc.net/ + +sdns://AQcAAAAAAAAAGlsyMDAxOjY3ODplNjg6ZjAwMDo6XTo4NDQzIAfQevHP3F2Zdp0_AmaQpwRJZcJ0J2x5HK71rvO5DEb6GTIuZG5zY3J5cHQtY2VydC5mZm11Yy5uZXQ + + +## fluffycat-fr-01 + +DNSCrypt resolver hosted in Marseille, FR on Oracle Cloud. No logs, no filters, DNSSEC. + +sdns://AQcAAAAAAAAAFDEyOS4xNTEuMjI0LjE4Mjo1MzUzICo3YofAHoNsHkixOFHSQXY6G7z1MCrxXxGyfovtQvsGHzIuZG5zY3J5cHQtY2VydC5mbHVmZnljYXQtZnItMDE + + +## fluffycat-fr-02 + +DNSCrypt resolver hosted in Marseille, FR on Oracle Cloud. No logs, no filters, DNSSEC. + +sdns://AQcAAAAAAAAAFDEyOS4xNTEuMjQzLjE0Mzo1MzUzICaU0eKbEtcmoE0ljHjvADPHNyZBX23wJ4owxhVprIpFHzIuZG5zY3J5cHQtY2VydC5mbHVmZnljYXQtZnItMDI + + +## google + +Google DNS (anycast) + +sdns://AgUAAAAAAAAABzguOC44LjggsKKKE4EwvtIbNjGjagI2607EdKSVHowYZtyvD9iPrkkHOC44LjguOAovZG5zLXF1ZXJ5 +sdns://AgUAAAAAAAAABzguOC40LjQgsKKKE4EwvtIbNjGjagI2607EdKSVHowYZtyvD9iPrkkHOC44LjQuNAovZG5zLXF1ZXJ5 + + +## google-ipv6 + +Google DNS (anycast) + +sdns://AgUAAAAAAAAAACCwoooTgTC-0hs2MaNqAjbrTsR0pJUejBhm3K8P2I-uSRZbMjAwMTo0ODYwOjQ4NjA6Ojg4ODhdCi9kbnMtcXVlcnk +sdns://AgUAAAAAAAAAACCwoooTgTC-0hs2MaNqAjbrTsR0pJUejBhm3K8P2I-uSRZbMjAwMTo0ODYwOjQ4NjA6Ojg4NDRdCi9kbnMtcXVlcnk + + +## he + +Hurricane Electric DoH server (anycast) + +Unknown logging policy. + +sdns://AgUAAAAAAAAACzc0LjgyLjQyLjQyoMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVDG9yZG5zLmhlLm5ldAovZG5zLXF1ZXJ5 + + +## ibksturm + +Dnscrypt Server, No Logging, No Filters, DNSSEC, OpenNIC + +Running privately by ibksturm in Thurgau, Switzerland + +sdns://AQcAAAAAAAAAEzIxMy4xOTYuMTkxLjk2Ojg0NDMgiwvumeI8et789m3naGH-4xzM40t6c2xO_fCxHldawJgYMi5kbnNjcnlwdC1jZXJ0Lmlia3N0dXJt + + +## iij + +DoH server operated by Internet Initiative Japan in Tokyo. Blocks child pornography. +https://www.iij.ad.jp/ + +sdns://AgEAAAAAAAAACjEwMy4yLjU3LjUgmOPV5TavKVjNL38U9wTvSidtJeM81l8uZfXk8nJ8EzARcHVibGljLmRucy5paWouanAKL2Rucy1xdWVyeQ + + +## jp.tiar.app + +Non-Logging, Non-Filtering DNSCrypt server in Japan. +No ECS, Support DNSSEC + +sdns://AQcAAAAAAAAAEjE3Mi4xMDQuOTMuODA6MTQ0MyAyuHY-8b9lNqHeahPAzW9IoXnjiLaZpTeNbVs8TN9UUxsyLmRuc2NyeXB0LWNlcnQuanAudGlhci5hcHA + + +## jp.tiar.app-doh + +Non-Logging, Non-Filtering DNS-over-HTTPS server in Japan. +No ECS, Support DNSSEC + +sdns://AgcAAAAAAAAADTE3Mi4xMDQuOTMuODCgzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1ULanAudGlhci5hcHAKL2Rucy1xdWVyeQ + + +## jp.tiar.app-doh-ipv6 + +Non-Logging, Non-Filtering DNS-over-HTTPS (IPv6) server in Japan. +No ECS, Support DNSSEC + +sdns://AgcAAAAAAAAAIFsyNDAwOjg5MDI6OmYwM2M6OTFmZjpmZWRhOmM1MTRdoMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVC2pwLnRpYXIuYXBwCi9kbnMtcXVlcnk + + +## jp.tiar.app-ipv6 + +Non-Logging, Non-Filtering DNSCrypt (IPv6) server in Japan. +No ECS, Support DNSSEC + +sdns://AQcAAAAAAAAAJVsyNDAwOjg5MDI6OmYwM2M6OTFmZjpmZWRhOmM1MTRdOjE0NDMgMrh2PvG_ZTah3moTwM1vSKF544i2maU3jW1bPEzfVFMbMi5kbnNjcnlwdC1jZXJ0LmpwLnRpYXIuYXBw + + +## jp.tiarap.org + +DNS-over-HTTPS Server. Non-Logging, Non-Filtering, No ECS, Support DNSSEC. +Cached via Cloudflare. + +sdns://AgcAAAAAAAAAAAANanAudGlhcmFwLm9yZwovZG5zLXF1ZXJ5 + + +## jp.tiarap.org-ipv6 + +DNS-over-HTTPS Server (IPv6). Non-Logging, Non-Filtering, No ECS, Support DNSSEC. +Cached via Cloudflare. + +sdns://AgcAAAAAAAAAG1syNjA2OjQ3MDA6MzAzMDo6YWM0MzphZDNiXQANanAudGlhcmFwLm9yZwovZG5zLXF1ZXJ5 + + +## ksol.io-ns2-dnscrypt-ipv4 + +DNSCrypt on IPv4 (UDP/TCP). No DoH, doesn't log, doesn't filter, DNSSEC enforced. No EDNS Client-Subnet, padding enabled, as per `dnscrypt-server-docker` default unbound configuration. Location: Hungary + +sdns://AQcAAAAAAAAADjE5My4yMDEuMTg4LjQ4IBERKdQJgLSjqCSK99e2f_WRTQzEq9__DeXlQFvxxhZ6GzIuZG5zY3J5cHQtY2VydC5uczIua3NvbC5pbw + + +## ksol.io-ns2-dnscrypt-ipv6 + +DNSCrypt on IPv6 (UDP/TCP). No DoH, doesn't log, doesn't filter, DNSSEC enforced. No EDNS Client-Subnet, padding enabled, as per `dnscrypt-server-docker` default unbound configuration. Location: Hungary + +sdns://AQcAAAAAAAAAFFsyYTAxOjZlZTA6MTo6MjQxOjFdIBERKdQJgLSjqCSK99e2f_WRTQzEq9__DeXlQFvxxhZ6GzIuZG5zY3J5cHQtY2VydC5uczIua3NvbC5pbw + + +## libredns + +DoH server in Germany. No logging, but no DNS padding and no DNSSEC support. +https://libredns.gr/ + +sdns://AgIAAAAAAAAADjExNi4yMDIuMTc2LjI2oMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVD2RvaC5saWJyZWRucy5ncgovZG5zLXF1ZXJ5 + + +## libredns-noads + +DoH server in Germany. No logging, but no DNS padding and no DNSSEC support. +no ads version, uses StevenBlack's host list: https://github.com/StevenBlack/hosts + +sdns://AgIAAAAAAAAADjExNi4yMDIuMTc2LjI2oMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVD2RvaC5saWJyZWRucy5ncgYvbm9hZHM + + +## mullvad-adblock-doh + +Same as mullvad-doh but blocks ads and trackers. + +sdns://AgMAAAAAAAAACzE5NC4yNDIuMi4zABdhZGJsb2NrLmRucy5tdWxsdmFkLm5ldAovZG5zLXF1ZXJ5 + + +## mullvad-all-doh + +Same as mullvad-doh but blocks ads, trackers, malware, adult content, gambling, and social media. + +sdns://AgMAAAAAAAAACzE5NC4yNDIuMi45ABNhbGwuZG5zLm11bGx2YWQubmV0Ci9kbnMtcXVlcnk + + +## mullvad-base-doh + +Same as mullvad-doh but blocks ads, trackers, and malware. + +sdns://AgMAAAAAAAAACzE5NC4yNDIuMi40ABRiYXNlLmRucy5tdWxsdmFkLm5ldAovZG5zLXF1ZXJ5 + + +## mullvad-doh + +Public non-filtering, non-logging (audited), DNSSEC-capable, DNS-over-HTTPS resolver hosted by VPN provider Mullvad. +Anycast IPv4/IPv6 with servers in SE, DE, UK, US, AU, and SG. +https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/ + +sdns://AgcAAAAAAAAACzE5NC4yNDIuMi4yAA9kbnMubXVsbHZhZC5uZXQKL2Rucy1xdWVyeQ + + +## mullvad-extend-doh + +Same as mullvad-doh but blocks ads, trackers, malware, and social media. + +sdns://AgMAAAAAAAAACzE5NC4yNDIuMi41ABhleHRlbmRlZC5kbnMubXVsbHZhZC5uZXQKL2Rucy1xdWVyeQ + + +## mullvad-family-doh + +Same as mullvad-doh but blocks ads, trackers, malware, adult content, and gambling. + +sdns://AgMAAAAAAAAACzE5NC4yNDIuMi42ABZmYW1pbHkuZG5zLm11bGx2YWQubmV0Ci9kbnMtcXVlcnk + + +## nextdns + +NextDNS is a cloud-based private DNS service that gives you full control +over what is allowed and what is blocked on the Internet. + +DNSSEC, Anycast, Non-logging, NoFilters + +https://www.nextdns.io/ + +sdns://AgcAAAAAAAAACjQ1LjkwLjMwLjAgmjo09yfeubylEAPZzpw5-PJ92cUkKQHCurGkTmNaAhkWYW55Y2FzdC5kbnMubmV4dGRucy5pbwovZG5zLXF1ZXJ5 + + +## nextdns-ipv6 + +Connects to NextDNS over IPv6. + +NextDNS is a cloud-based private DNS service that gives you full control +over what is allowed and what is blocked on the Internet. + +DNSSEC, Anycast, Non-logging, NoFilters + +https://www.nextdns.io/ + +sdns://AgcAAAAAAAAADVsyYTA3OmE4YzA6Ol0gmjo09yfeubylEAPZzpw5-PJ92cUkKQHCurGkTmNaAhkWYW55Y2FzdC5kbnMubmV4dGRucy5pbwovZG5zLXF1ZXJ5 + + +## nextdns-ultralow + +NextDNS is a cloud-based private DNS service that gives you full control +over what is allowed and what is blocked on the Internet. + +https://www.nextdns.io/ + +To select the server location, the "-ultralow" variant relies on bootstrap servers +instead of anycast. + +sdns://AgcAAAAAAAAAACCaOjT3J965vKUQA9nOnDn48n3ZxSQpAcK6saROY1oCGQ5kbnMubmV4dGRucy5pbw8vZG5zY3J5cHQtcHJveHk + + +## nic.cz + +Open, DNSSEC, No-log and No-filter DoH operated by https://nic.cz + +sdns://AgcAAAAAAAAADDE4NS40My4xMzUuMaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVQtvZHZyLm5pYy5jegovZG5zLXF1ZXJ5 +sdns://AgcAAAAAAAAACzE5My4xNy40Ny4xoMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVC29kdnIubmljLmN6Ci9kbnMtcXVlcnk + + +## nic.cz-ipv6 + +Open, DNSSEC, No-log and No-filter DoH over IPv6 operated by https://nic.cz + +sdns://AgcAAAAAAAAAE1syMDAxOjE0OGY6ZmZmZTo6MV2gzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1ULb2R2ci5uaWMuY3oKL2Rucy1xdWVyeQ +sdns://AgcAAAAAAAAAE1syMDAxOjE0OGY6ZmZmZjo6MV2gzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1ULb2R2ci5uaWMuY3oKL2Rucy1xdWVyeQ + + +## njalla-doh + +Non-logging DoH server in Sweden operated by Njalla. + +https://dns.njal.la/ + +sdns://AgcAAAAAAAAADDk1LjIxNS4xOS41M6DMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVQtkbnMubmphbC5sYQovZG5zLXF1ZXJ5 + + +## nwps.fi + +Helsinki, Finland. DNSCrypt, no filters, no logs, DNSSEC + +sdns://AQcAAAAAAAAAETk1LjIxNy4xMS42Mzo4NDQzILqK827XPyVhFNCgYRi2VrryJyHhnfkeQnBB2EvkiM-3FzIuZG5zY3J5cHQtY2VydC5ud3BzLmZp + + +## plan9dns-fl + +Miami Florida, USA. DNSCrypt, no filters, no logs, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns + +sdns://AQcAAAAAAAAAEzE0OS4yOC4xMDEuMTE5Ojg0NDMgVaFV4a8StIfx8fnCxDxVlxppqm-hJYyCKqtMtQENnCwkMi5kbnNjcnlwdC1jZXJ0LnBsdXRvbi5wbGFuOS1kbnMuY29t + + +## plan9dns-fl-doh + +Miami Florida, USA. DoH, DoH3 via the Alt-Svc header, no-logs, no-filters, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns, DoT & DoQ supported. + +sdns://AgcAAAAAAAAADjE0OS4yOC4xMDEuMTE5IJo6NPcn3rm8pRAD2c6cOfjyfdnFJCkBwrqxpE5jWgIZFHBsdXRvbi5wbGFuOS1kbnMuY29tCi9kbnMtcXVlcnk + + +## plan9dns-fl-doh-ipv6 + +Miami Florida, USA. DoH, DoH3 via the Alt-Svc header, no-logs, no-filters, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns, DoT & DoQ supported. + +sdns://AgcAAAAAAAAAJ1syMDAxOjE5ZjA6OTAwMjpkZTQ6NTQwMDo0ZmY6ZmUwODo3ZGUzXSCaOjT3J965vKUQA9nOnDn48n3ZxSQpAcK6saROY1oCGRRwbHV0b24ucGxhbjktZG5zLmNvbQovZG5zLXF1ZXJ5 + + +## plan9dns-fl-ipv6 + +Miami Florida, USA. DNSCrypt, no filters, no logs, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns + +sdns://AQcAAAAAAAAALFsyMDAxOjE5ZjA6OTAwMjpkZTQ6NTQwMDo0ZmY6ZmUwODo3ZGUzXTo4NDQzIFWhVeGvErSH8fH5wsQ8VZcaaapvoSWMgiqrTLUBDZwsJDIuZG5zY3J5cHQtY2VydC5wbHV0b24ucGxhbjktZG5zLmNvbQ + + +## plan9dns-mx + +Mexico City, MX. DNSCrypt, no filters, no logs, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns + +sdns://AQcAAAAAAAAAEzIxNi4yMzguODAuMjE5Ojg0NDMgKmPCui35rtOj9yk7c07sEtC_Khyo_9_HcpO23GCroNskMi5kbnNjcnlwdC1jZXJ0LmhlbGlvcy5wbGFuOS1kbnMuY29t + + +## plan9dns-mx-doh + +Mexico City, MX. DoH, DoH3 via the Alt-Svc header, no-logs, no-filters, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns, DoT & DoQ supported. + +sdns://AgcAAAAAAAAADjIxNi4yMzguODAuMjE5IJo6NPcn3rm8pRAD2c6cOfjyfdnFJCkBwrqxpE5jWgIZFGhlbGlvcy5wbGFuOS1kbnMuY29tCi9kbnMtcXVlcnk + + +## plan9dns-mx-doh-ipv6 + +Mexico City, MX. DoH, DoH3 via the Alt-Svc header, no-logs, no-filters, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns, DoT & DoQ supported. + +sdns://AgcAAAAAAAAAKFsyMDAxOjE5ZjA6YjQwMDoxZDhjOjU0MDA6NGZmOmZlMTE6YjE1YV0gmjo09yfeubylEAPZzpw5-PJ92cUkKQHCurGkTmNaAhkUaGVsaW9zLnBsYW45LWRucy5jb20KL2Rucy1xdWVyeQ + + +## plan9dns-mx-ipv6 + +Mexico City, MX. DNSCrypt, no filters, no logs, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns + +sdns://AQcAAAAAAAAALVsyMDAxOjE5ZjA6YjQwMDoxZDhjOjU0MDA6NGZmOmZlMTE6YjE1YV06ODQ0MyAqY8K6Lfmu06P3KTtzTuwS0L8qHKj_38dyk7bcYKug2yQyLmRuc2NyeXB0LWNlcnQuaGVsaW9zLnBsYW45LWRucy5jb20 + + +## plan9dns-nj + +Piscataway New Jersey, USA. DNSCrypt, no filters, no logs, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns + +sdns://AQcAAAAAAAAAEjIwNy4yNDYuODcuOTY6ODQ0MyCwmQlIDpKk8SiiyrJbPgKhHxCrBJLb8ZWlu6tvr1KvkyQyLmRuc2NyeXB0LWNlcnQua3Jvbm9zLnBsYW45LWRucy5jb20 + + +## plan9dns-nj-doh + +Piscataway New Jersey, USA. DoH, DoH3 via the Alt-Svc header, no-logs, no-filters, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns, DoT & DoQ supported. + +sdns://AgcAAAAAAAAADTIwNy4yNDYuODcuOTYgmjo09yfeubylEAPZzpw5-PJ92cUkKQHCurGkTmNaAhkUa3Jvbm9zLnBsYW45LWRucy5jb20KL2Rucy1xdWVyeQ + + +## plan9dns-nj-doh-ipv6 + +Piscataway New Jersey, USA. DoH, DoH3 via the Alt-Svc header, no-logs, no-filters, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns, DoT & DoQ supported. + +sdns://AgcAAAAAAAAAJVsyMDAxOjE5ZjA6NTozYmQ3OjU0MDA6NGZmOmZlMDU6ZGE4M10gmjo09yfeubylEAPZzpw5-PJ92cUkKQHCurGkTmNaAhkUa3Jvbm9zLnBsYW45LWRucy5jb20KL2Rucy1xdWVyeQ + + +## plan9dns-nj.ipv6 + +Piscataway New Jersey, USA. DNSCrypt, no filters, no logs, DNSSEC + +Hosted on Vultr, jlongua.github.io/plan9-dns + +sdns://AQcAAAAAAAAAKlsyMDAxOjE5ZjA6NTozYmQ3OjU0MDA6NGZmOmZlMDU6ZGE4M106ODQ0MyCwmQlIDpKk8SiiyrJbPgKhHxCrBJLb8ZWlu6tvr1KvkyQyLmRuc2NyeXB0LWNlcnQua3Jvbm9zLnBsYW45LWRucy5jb20 + + +## pryv8boi + +By pryv8, non Logging, uncensored, DNSSEC - hosted on contabo servers + +sdns://AQcAAAAAAAAAEzE2NC42OC4xMjEuMTYyOjQ0NDMgHtKNfXpUMzPyLnXK8DauHpWm1Rqhz7LqwBBmSzdY9BIcMi5kbnNjcnlwdC1jZXJ0LnByeXY4Ym9pLm9yZw + + +## qihoo360-doh + +DoH server runned by Qihoo 360, has logs, GFW filtering rules are applied. +Homepage: https://sdns.360.net + +sdns://AgAAAAAAAAAAACBGRinMfizEpf6XTTrC4BNXB3syOlkxKYNaWpRbX7u40Qpkb2guMzYwLmNuCi9kbnMtcXVlcnk + + +## quad101 + +DNSSEC-aware public resolver by the Taiwan Network Information Center (TWNIC) +https://101.101.101.101/index_en.html + +sdns://AgcAAAAAAAAAACC2vD25TAYM7EnyCH8Xw1-0g5OccnTsGH9vQUUH0njRtAxkbnMudHduaWMudHcKL2Rucy1xdWVyeQ + + +## quad9-dnscrypt-ip4-filter-ecs-pri + +Quad9 (anycast) dnssec/no-log/filter/ecs 9.9.9.11 - 149.112.112.11 + +sdns://AQMAAAAAAAAADTkuOS45LjExOjg0NDMgZ8hHuMh1jNEgJFVDvnVnRt803x2EwAuMRwNo34Idhj4ZMi5kbnNjcnlwdC1jZXJ0LnF1YWQ5Lm5ldA +sdns://AQMAAAAAAAAAEzE0OS4xMTIuMTEyLjExOjg0NDMgZ8hHuMh1jNEgJFVDvnVnRt803x2EwAuMRwNo34Idhj4ZMi5kbnNjcnlwdC1jZXJ0LnF1YWQ5Lm5ldA + + +## quad9-dnscrypt-ip4-filter-pri + +Quad9 (anycast) dnssec/no-log/filter 9.9.9.9 - 149.112.112.9 - 149.112.112.112 + +sdns://AQMAAAAAAAAADDkuOS45Ljk6ODQ0MyBnyEe4yHWM0SAkVUO-dWdG3zTfHYTAC4xHA2jfgh2GPhkyLmRuc2NyeXB0LWNlcnQucXVhZDkubmV0 +sdns://AQMAAAAAAAAAEjE0OS4xMTIuMTEyLjk6ODQ0MyBnyEe4yHWM0SAkVUO-dWdG3zTfHYTAC4xHA2jfgh2GPhkyLmRuc2NyeXB0LWNlcnQucXVhZDkubmV0 +sdns://AQMAAAAAAAAAFDE0OS4xMTIuMTEyLjExMjo4NDQzIGfIR7jIdYzRICRVQ751Z0bfNN8dhMALjEcDaN-CHYY-GTIuZG5zY3J5cHQtY2VydC5xdWFkOS5uZXQ + + +## quad9-dnscrypt-ip4-nofilter-ecs-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter/ecs 9.9.9.12 - 149.112.112.12 + +sdns://AQYAAAAAAAAADTkuOS45LjEyOjg0NDMgZ8hHuMh1jNEgJFVDvnVnRt803x2EwAuMRwNo34Idhj4ZMi5kbnNjcnlwdC1jZXJ0LnF1YWQ5Lm5ldA +sdns://AQYAAAAAAAAAEzE0OS4xMTIuMTEyLjEyOjg0NDMgZ8hHuMh1jNEgJFVDvnVnRt803x2EwAuMRwNo34Idhj4ZMi5kbnNjcnlwdC1jZXJ0LnF1YWQ5Lm5ldA + + +## quad9-dnscrypt-ip4-nofilter-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter 9.9.9.10 - 149.112.112.10 + +sdns://AQYAAAAAAAAADTkuOS45LjEwOjg0NDMgZ8hHuMh1jNEgJFVDvnVnRt803x2EwAuMRwNo34Idhj4ZMi5kbnNjcnlwdC1jZXJ0LnF1YWQ5Lm5ldA +sdns://AQYAAAAAAAAAEzE0OS4xMTIuMTEyLjEwOjg0NDMgZ8hHuMh1jNEgJFVDvnVnRt803x2EwAuMRwNo34Idhj4ZMi5kbnNjcnlwdC1jZXJ0LnF1YWQ5Lm5ldA + + +## quad9-dnscrypt-ip6-filter-ecs-pri + +Quad9 (anycast) dnssec/no-log/filter/ecs 2620:fe::11 - 2620:fe::fe:11 + +sdns://AQMAAAAAAAAAElsyNjIwOmZlOjoxMV06ODQ0MyBnyEe4yHWM0SAkVUO-dWdG3zTfHYTAC4xHA2jfgh2GPhkyLmRuc2NyeXB0LWNlcnQucXVhZDkubmV0 +sdns://AQMAAAAAAAAAFVsyNjIwOmZlOjpmZToxMV06ODQ0MyBnyEe4yHWM0SAkVUO-dWdG3zTfHYTAC4xHA2jfgh2GPhkyLmRuc2NyeXB0LWNlcnQucXVhZDkubmV0 + + +## quad9-dnscrypt-ip6-filter-pri + +Quad9 (anycast) dnssec/no-log/filter 2620:fe::fe - 2620:fe::9 - 2620:fe::fe:9 + +sdns://AQMAAAAAAAAAElsyNjIwOmZlOjpmZV06ODQ0MyBnyEe4yHWM0SAkVUO-dWdG3zTfHYTAC4xHA2jfgh2GPhkyLmRuc2NyeXB0LWNlcnQucXVhZDkubmV0 +sdns://AQMAAAAAAAAAEVsyNjIwOmZlOjo5XTo4NDQzIGfIR7jIdYzRICRVQ751Z0bfNN8dhMALjEcDaN-CHYY-GTIuZG5zY3J5cHQtY2VydC5xdWFkOS5uZXQ +sdns://AQMAAAAAAAAAFFsyNjIwOmZlOjpmZTo5XTo4NDQzIGfIR7jIdYzRICRVQ751Z0bfNN8dhMALjEcDaN-CHYY-GTIuZG5zY3J5cHQtY2VydC5xdWFkOS5uZXQ + + +## quad9-dnscrypt-ip6-nofilter-ecs-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter/ecs 2620:fe::12 - 2620:fe::fe:12 + +sdns://AQYAAAAAAAAAElsyNjIwOmZlOjoxMl06ODQ0MyBnyEe4yHWM0SAkVUO-dWdG3zTfHYTAC4xHA2jfgh2GPhkyLmRuc2NyeXB0LWNlcnQucXVhZDkubmV0 +sdns://AQYAAAAAAAAAFVsyNjIwOmZlOjpmZToxMl06ODQ0MyBnyEe4yHWM0SAkVUO-dWdG3zTfHYTAC4xHA2jfgh2GPhkyLmRuc2NyeXB0LWNlcnQucXVhZDkubmV0 + + +## quad9-dnscrypt-ip6-nofilter-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter 2620:fe::10 - 2620:fe::fe:10 + +sdns://AQYAAAAAAAAAElsyNjIwOmZlOjoxMF06ODQ0MyBnyEe4yHWM0SAkVUO-dWdG3zTfHYTAC4xHA2jfgh2GPhkyLmRuc2NyeXB0LWNlcnQucXVhZDkubmV0 +sdns://AQYAAAAAAAAAFVsyNjIwOmZlOjpmZToxMF06ODQ0MyBnyEe4yHWM0SAkVUO-dWdG3zTfHYTAC4xHA2jfgh2GPhkyLmRuc2NyeXB0LWNlcnQucXVhZDkubmV0 + + +## quad9-doh-ip4-port443-filter-ecs-pri + +Quad9 (anycast) dnssec/no-log/filter/ecs 9.9.9.11 - 149.112.112.11 + +sdns://AgMAAAAAAAAACDkuOS45LjExILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvE2RuczExLnF1YWQ5Lm5ldDo0NDMKL2Rucy1xdWVyeQ +sdns://AgMAAAAAAAAADjE0OS4xMTIuMTEyLjExILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvE2RuczExLnF1YWQ5Lm5ldDo0NDMKL2Rucy1xdWVyeQ + + +## quad9-doh-ip4-port443-filter-pri + +Quad9 (anycast) dnssec/no-log/filter 9.9.9.9 - 149.112.112.9 - 149.112.112.112 + +sdns://AgMAAAAAAAAABzkuOS45LjkgsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8SZG5zOS5xdWFkOS5uZXQ6NDQzCi9kbnMtcXVlcnk +sdns://AgMAAAAAAAAADTE0OS4xMTIuMTEyLjkgsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8SZG5zOS5xdWFkOS5uZXQ6NDQzCi9kbnMtcXVlcnk +sdns://AgMAAAAAAAAADzE0OS4xMTIuMTEyLjExMiCwGSB0S7t2yasFPgHge34FDkc9IPefe-pDX6_kPJ0kLxFkbnMucXVhZDkubmV0OjQ0MwovZG5zLXF1ZXJ5 + + +## quad9-doh-ip4-port443-nofilter-ecs-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter/ecs 9.9.9.12 - 149.112.112.12 + +sdns://AgYAAAAAAAAACDkuOS45LjEyILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvE2RuczEyLnF1YWQ5Lm5ldDo0NDMKL2Rucy1xdWVyeQ +sdns://AgYAAAAAAAAADjE0OS4xMTIuMTEyLjEyILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvE2RuczEyLnF1YWQ5Lm5ldDo0NDMKL2Rucy1xdWVyeQ + + +## quad9-doh-ip4-port443-nofilter-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter 9.9.9.10 - 149.112.112.10 + +sdns://AgYAAAAAAAAACDkuOS45LjEwILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvE2RuczEwLnF1YWQ5Lm5ldDo0NDMKL2Rucy1xdWVyeQ +sdns://AgYAAAAAAAAADjE0OS4xMTIuMTEyLjEwILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvE2RuczEwLnF1YWQ5Lm5ldDo0NDMKL2Rucy1xdWVyeQ + + +## quad9-doh-ip4-port5053-filter-ecs-pri + +Quad9 (anycast) dnssec/no-log/filter/ecs 9.9.9.11 - 149.112.112.11 + +sdns://AgMAAAAAAAAACDkuOS45LjExILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvFGRuczExLnF1YWQ5Lm5ldDo1MDUzCi9kbnMtcXVlcnk +sdns://AgMAAAAAAAAADjE0OS4xMTIuMTEyLjExILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvFGRuczExLnF1YWQ5Lm5ldDo1MDUzCi9kbnMtcXVlcnk + + +## quad9-doh-ip4-port5053-filter-pri + +Quad9 (anycast) dnssec/no-log/filter 9.9.9.9 - 149.112.112.9 - 149.112.112.112 + +sdns://AgMAAAAAAAAABzkuOS45LjkgsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8TZG5zOS5xdWFkOS5uZXQ6NTA1MwovZG5zLXF1ZXJ5 +sdns://AgMAAAAAAAAADTE0OS4xMTIuMTEyLjkgsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8TZG5zOS5xdWFkOS5uZXQ6NTA1MwovZG5zLXF1ZXJ5 +sdns://AgMAAAAAAAAADzE0OS4xMTIuMTEyLjExMiCwGSB0S7t2yasFPgHge34FDkc9IPefe-pDX6_kPJ0kLxJkbnMucXVhZDkubmV0OjUwNTMKL2Rucy1xdWVyeQ + + +## quad9-doh-ip4-port5053-nofilter-ecs-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter/ecs 9.9.9.12 - 149.112.112.12 + +sdns://AgYAAAAAAAAACDkuOS45LjEyILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvFGRuczEyLnF1YWQ5Lm5ldDo1MDUzCi9kbnMtcXVlcnk +sdns://AgYAAAAAAAAADjE0OS4xMTIuMTEyLjEyILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvFGRuczEyLnF1YWQ5Lm5ldDo1MDUzCi9kbnMtcXVlcnk + + +## quad9-doh-ip4-port5053-nofilter-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter 9.9.9.10 - 149.112.112.10 + +sdns://AgYAAAAAAAAACDkuOS45LjEwILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvFGRuczEwLnF1YWQ5Lm5ldDo1MDUzCi9kbnMtcXVlcnk +sdns://AgYAAAAAAAAADjE0OS4xMTIuMTEyLjEwILAZIHRLu3bJqwU-AeB7fgUORz0g95976kNfr-Q8nSQvFGRuczEwLnF1YWQ5Lm5ldDo1MDUzCi9kbnMtcXVlcnk + + +## quad9-doh-ip6-port443-filter-ecs-pri + +Quad9 (anycast) dnssec/no-log/filter/ecs 2620:fe::11 - 2620:fe::fe:11 + +sdns://AgMAAAAAAAAADVsyNjIwOmZlOjoxMV0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8TZG5zMTEucXVhZDkubmV0OjQ0MwovZG5zLXF1ZXJ5 +sdns://AgMAAAAAAAAAEFsyNjIwOmZlOjpmZToxMV0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8TZG5zMTEucXVhZDkubmV0OjQ0MwovZG5zLXF1ZXJ5 + + +## quad9-doh-ip6-port443-filter-pri + +Quad9 (anycast) dnssec/no-log/filter 2620:fe::fe - 2620:fe::9 - 2620:fe::fe:9 + +sdns://AgMAAAAAAAAADVsyNjIwOmZlOjpmZV0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8RZG5zLnF1YWQ5Lm5ldDo0NDMKL2Rucy1xdWVyeQ +sdns://AgMAAAAAAAAADFsyNjIwOmZlOjo5XSCwGSB0S7t2yasFPgHge34FDkc9IPefe-pDX6_kPJ0kLxFkbnMucXVhZDkubmV0OjQ0MwovZG5zLXF1ZXJ5 +sdns://AgMAAAAAAAAAD1syNjIwOmZlOjpmZTo5XSCwGSB0S7t2yasFPgHge34FDkc9IPefe-pDX6_kPJ0kLxJkbnM5LnF1YWQ5Lm5ldDo0NDMKL2Rucy1xdWVyeQ + + +## quad9-doh-ip6-port443-nofilter-ecs-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter/ecs 2620:fe::12 - 2620:fe::fe:12 + +sdns://AgYAAAAAAAAADVsyNjIwOmZlOjoxMl0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8TZG5zMTIucXVhZDkubmV0OjQ0MwovZG5zLXF1ZXJ5 +sdns://AgYAAAAAAAAAEFsyNjIwOmZlOjpmZToxMl0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8TZG5zMTIucXVhZDkubmV0OjQ0MwovZG5zLXF1ZXJ5 + + +## quad9-doh-ip6-port443-nofilter-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter 2620:fe::10 - 2620:fe::fe:10 + +sdns://AgYAAAAAAAAADVsyNjIwOmZlOjoxMF0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8TZG5zMTAucXVhZDkubmV0OjQ0MwovZG5zLXF1ZXJ5 +sdns://AgYAAAAAAAAAEFsyNjIwOmZlOjpmZToxMF0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8TZG5zMTAucXVhZDkubmV0OjQ0MwovZG5zLXF1ZXJ5 + + +## quad9-doh-ip6-port5053-filter-ecs-pri + +Quad9 (anycast) dnssec/no-log/filter/ecs 2620:fe::11 - 2620:fe::fe:11 + +sdns://AgMAAAAAAAAADVsyNjIwOmZlOjoxMV0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8UZG5zMTEucXVhZDkubmV0OjUwNTMKL2Rucy1xdWVyeQ +sdns://AgMAAAAAAAAAEFsyNjIwOmZlOjpmZToxMV0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8UZG5zMTEucXVhZDkubmV0OjUwNTMKL2Rucy1xdWVyeQ + + +## quad9-doh-ip6-port5053-filter-pri + +Quad9 (anycast) dnssec/no-log/filter 2620:fe::fe - 2620:fe::9 - 2620:fe::fe:9 + +sdns://AgMAAAAAAAAADVsyNjIwOmZlOjpmZV0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8SZG5zLnF1YWQ5Lm5ldDo1MDUzCi9kbnMtcXVlcnk +sdns://AgMAAAAAAAAADFsyNjIwOmZlOjo5XSCwGSB0S7t2yasFPgHge34FDkc9IPefe-pDX6_kPJ0kLxJkbnMucXVhZDkubmV0OjUwNTMKL2Rucy1xdWVyeQ +sdns://AgMAAAAAAAAAD1syNjIwOmZlOjpmZTo5XSCwGSB0S7t2yasFPgHge34FDkc9IPefe-pDX6_kPJ0kLxNkbnM5LnF1YWQ5Lm5ldDo1MDUzCi9kbnMtcXVlcnk + + +## quad9-doh-ip6-port5053-nofilter-ecs-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter/ecs 2620:fe::12 - 2620:fe::fe:12 + +sdns://AgYAAAAAAAAADVsyNjIwOmZlOjoxMl0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8UZG5zMTIucXVhZDkubmV0OjUwNTMKL2Rucy1xdWVyeQ +sdns://AgYAAAAAAAAAEFsyNjIwOmZlOjpmZToxMl0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8UZG5zMTIucXVhZDkubmV0OjUwNTMKL2Rucy1xdWVyeQ + + +## quad9-doh-ip6-port5053-nofilter-pri + +Quad9 (anycast) no-dnssec/no-log/no-filter 2620:fe::10 - 2620:fe::fe:10 + +sdns://AgYAAAAAAAAADVsyNjIwOmZlOjoxMF0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8UZG5zMTAucXVhZDkubmV0OjUwNTMKL2Rucy1xdWVyeQ +sdns://AgYAAAAAAAAAEFsyNjIwOmZlOjpmZToxMF0gsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8UZG5zMTAucXVhZDkubmV0OjUwNTMKL2Rucy1xdWVyeQ + + +## restena-doh-ipv4 + +DNSSEC, No-log and No-filter DoH operated by RESTENA. Homepage: https://www.restena.lu + +sdns://AgcAAAAAAAAACzE1OC42NC4xLjI5IGDJBNhGNSOSEa34Gom8fB_myqDD7-nW-TeU7KcLNV6oEWRuc3B1Yi5yZXN0ZW5hLmx1Ci9kbnMtcXVlcnk + + +## restena-doh-ipv6 + +DNSSEC, No-log and No-filter DoH (IPv6) operated by RESTENA. Homepage: https://www.restena.lu + +sdns://AgcAAAAAAAAAEFsyMDAxOmExODoxOjoyOV0gYMkE2EY1I5IRrfgaibx8H-bKoMPv6db5N5Tspws1XqgRZG5zcHViLnJlc3RlbmEubHUKL2Rucy1xdWVyeQ + + +## rethinkdns-doh + +No-log, No-filter +RethinkDNS, a stub (sky.rethinkdns.com hosted on Cloudflare) and recursive (max.rethinkdns.com hosted on fly.io) resolver +The stub server strips identification parameters from the request and acts as a proxy to another recursive resolver. + +sdns://AgYAAAAAAAAAACBdzvEcz84tL6QcR78t69kc0nufblyYal5di10An6SyUBJza3kucmV0aGlua2Rucy5jb20KL2Rucy1xdWVyeQ +sdns://AgYAAAAAAAAAACCaOjT3J965vKUQA9nOnDn48n3ZxSQpAcK6saROY1oCGRJtYXgucmV0aGlua2Rucy5jb20KL2Rucy1xdWVyeQ + + +## safesurfer + +Family safety focused blocklist for over 2 million adult sites, as well as phishing and malware and more. +Free to use, paid for customizing blocking for more categories+sites and viewing usage at my.safesurfer.io. Logs taken for viewing +usage, data never sold - https://safesurfer.io + +Warning: this server is incompatible with DNS anonymization. + +sdns://AQIAAAAAAAAADzEwNC4xNTUuMjM3LjIyNSAnIH_VEgToNntINABd-f_R0wu-KpwzY55u2_iu2R1A2CAyLmRuc2NyeXB0LWNlcnQuc2FmZXN1cmZlci5jby5ueg + + +## safesurfer-doh + +Family safety focused blocklist for over 2 million adult sites, as well as phishing and malware and more. +Free to use, paid for customizing blocking for more categories+sites and viewing usage at my.safesurfer.io. Logs taken for viewing +usage, data never sold - https://safesurfer.io + +sdns://AgAAAAAAAAAAACBW1D4A3rPRi8QazGGnZq98S8bEb0ZyDjFdjqVEtSPc3BFkb2guc2FmZXN1cmZlci5pbwovZG5zLXF1ZXJ5 + + +## saldns02-conoha-ipv4 + +Hosted on ConoHa VPS Tokyo region. No log. No filter. From experimental [μODNS project](https://junkurihara.github.io/dns/). + +sdns://AQcAAAAAAAAAFTEzMy4xMzAuMTE4LjEwMzo1MDQ0MyB7SI0q4_Ff8lFRUCbjPtcAQ3HfdWlLxyGDUUNc3NUZdiIyLmRuc2NyeXB0LWNlcnQuc2FsZG5zMDIudHlwZXEub3Jn + + +## saldns03-conoha-ipv4 + +Hosted on ConoHa VPS Tokyo region. No log. No filter. From experimental [μODNS project](https://junkurihara.github.io/dns/). + +sdns://AQcAAAAAAAAAFDEzMy4xMzAuOTguMjUwOjUwNDQzIFl1NfOwMd24kRlr0mXR4rKo-c_jMV7DBUVooDEY1xFeIjIuZG5zY3J5cHQtY2VydC5zYWxkbnMwMy50eXBlcS5vcmc + + +## scaleway-ams + +DNSSEC/Non-logged/Uncensored in Amsterdam - DEV1-S instance donated by Scaleway.com +Maintained by Frank Denis - https://fr.dnscrypt.info + +sdns://AQcAAAAAAAAADTUxLjE1LjEyMi4yNTAg6Q3ZfapcbHgiHKLF7QFoli0Ty1Vsz3RXs1RUbxUrwZAcMi5kbnNjcnlwdC1jZXJ0LnNjYWxld2F5LWFtcw + + +## scaleway-ams-ipv6 + +DNSSEC/Non-logged/Uncensored in Amsterdam - IPv6 only - DEV1-S instance donated by Scaleway.com +Maintained by Frank Denis - https://fr.dnscrypt.info + +sdns://AQcAAAAAAAAAJlsyMDAxOmJjODoxNjQwOjFjZTI6ZGMwMDpmZjpmZTI4OjViMTddIOkN2X2qXGx4Ihyixe0BaJYtE8tVbM90V7NUVG8VK8GQHDIuZG5zY3J5cHQtY2VydC5zY2FsZXdheS1hbXM + + +## scaleway-fr + +DNSSEC/Non-logged/Uncensored in Paris - DEV1-S instance donated by Scaleway.com +Maintained by Frank Denis - https://fr.dnscrypt.info + +sdns://AQcAAAAAAAAADjIxMi40Ny4yMjguMTM2IOgBuE6mBr-wusDOQ0RbsV66ZLAvo8SqMa4QY2oHkDJNHzIuZG5zY3J5cHQtY2VydC5mci5kbnNjcnlwdC5vcmc + + +## scaleway-fr-ipv6 + +-DNSSEC/Non-logged/Uncensored in Paris - IPv6 only - DEV1-S instance donated by Scaleway.com +Maintained by Frank Denis - https://fr.dnscrypt.info + +sdns://AQcAAAAAAAAAJVsyMDAxOmJjODo3MTA6NTgxODpkYzAwOmZmOmZlNWI6M2Y2M10g6AG4TqYGv7C6wM5DRFuxXrpksC-jxKoxrhBjageQMk0fMi5kbnNjcnlwdC1jZXJ0LmZyLmRuc2NyeXB0Lm9yZw + + +## serbica + +Public DNSCrypt server in the Netherlands by https://litepay.ch + +sdns://AQcAAAAAAAAAEzE4NS42Ni4xNDMuMTc4OjUzNTMg-Y2MQmGOXiggAEKulN-ITGEn_Kj3TIP1UK1X2wh3o7wXMi5kbnNjcnlwdC1jZXJ0LnNlcmJpY2E + + +## sfw.scaleway-fr + +Uses deep learning to block adult websites. Free, DNSSEC, no logs. +Hosted in Paris, running on a 1-XS server donated by Scaleway.com + +Maintained by Frank Denis - https://fr.dnscrypt.info/sfw.html + +sdns://AQMAAAAAAAAADzE2My4xNzIuMTgwLjEyNSDfYnO_x1IZKotaObwMhaw_-WRF1zZE9mJygl01WPGh_x8yLmRuc2NyeXB0LWNlcnQuc2Z3LnNjYWxld2F5LWZy + + +## sth-ads-doh-se + +Resolver in Stockholm, Sweden. HTTP/3 DoH server. Non-logging, remove ads and malware, DNSSEC. + +sdns://AgMAAAAAAAAADTQ1LjE1My4xODcuOTYAGGRuc3NlLW5vYWRzLmFsZWtiZXJnLm5ldAovZG5zLXF1ZXJ5 + + +## sth-doh-se + +Resolver in Stockholm, Sweden. HTTP/3 DoH server. Non-logging, non-filtering, DNSSEC. + +sdns://AgcAAAAAAAAADTQ1LjE1My4xODcuOTagzBBg05yDKbYrb7x9DW35MJhpuYHn5jktXNj6QI9NgOag9_WvKIAeh31986K-KP4UnzJ0p-0p8Tb9UDzjmMuoCw2gs14FlQz72CWfk3W6EBhwuMPEwOxaUpdX5jFn6d4mqeigRE69Z7uD-IB7OSHpOKyReLiCvVCq2xEjHwRM9fCN986g5kS6aWPjNf52XLmXaxKxDrVClLQkd3ZMyzo6zKOssvwgKq4_t78F5MgcQZTcpEUR1PmvMEeG7BrnIYQJz2Kgg1USZG5zc2UuYWxla2JlcmcubmV0Ci9kbnMtcXVlcnk + + +## sth-doh-se-ipv6 + +Resolver in Stockholm, Sweden. HTTP/3 DoH server. Non-logging, non-filtering, DNSSEC. + +sdns://AgcAAAAAAAAAFVsyYTA5OmNkNDI6Zjo0MjViOjoxXaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRJkbnNzZS5hbGVrYmVyZy5uZXQKL2Rucy1xdWVyeQ + + +## switch + +Public DoH service provided by SWITCH in Switzerland. Provides protection against malware, but does not block ads. +Homepage: https://www.switch.ch + +sdns://AgMAAAAAAAAADTEzMC41OS4zMS4yNDggsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8NMTMwLjU5LjMxLjI0OAovZG5zLXF1ZXJ5 +sdns://AgMAAAAAAAAADTEzMC41OS4zMS4yNTEgsBkgdEu7dsmrBT4B4Ht-BQ5HPSD3n3vqQ1-v5DydJC8NMTMwLjU5LjMxLjI1MQovZG5zLXF1ZXJ5 + + +## switch-ipv6 + +Public DoH (IPv6) service provided by SWITCH in Switzerland. Provides protection against malware, but does not block ads. +Homepage: https://www.switch.ch + +sdns://AgMAAAAAAAAAACCwGSB0S7t2yasFPgHge34FDkc9IPefe-pDX6_kPJ0kLxJbMjAwMTo2MjA6MDpmZjo6Ml0KL2Rucy1xdWVyeQ +sdns://AgMAAAAAAAAAACCwGSB0S7t2yasFPgHge34FDkc9IPefe-pDX6_kPJ0kLxJbMjAwMTo2MjA6MDpmZjo6M10KL2Rucy1xdWVyeQ + + +## tuna-doh-ipv6 + +DoH server provided by Tsinghua University TUNA Association, located in mainland China, no GFW poisoning yet it has a manual blacklist. + +sdns://AgAAAAAAAAAAG1syNDAyOmYwMDA6MTo0MTY6MTAxOjY6Njo2XSACKC69_nqGQOLLyjCQJNWgwRXTVfrgMllhwr12J14JbB1kbnMudHVuYS50c2luZ2h1YS5lZHUuY246ODQ0MwovZG5zLXF1ZXJ5 + + +## uncensoreddns-dk-ipv4 + +Also known as censurfridns. +DoH, no logs, no filter, unicast hosted in Denmark - https://blog.uncensoreddns.org + +sdns://AgYAAAAAAAAADDg5LjIzMy40My43MaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRl1bmljYXN0LnVuY2Vuc29yZWRkbnMub3JnCi9kbnMtcXVlcnk + + +## uncensoreddns-dk-ipv6 + +Also known as censurfridns. +DoH, no logs, no filter, unicast hosted in Denmark - https://blog.uncensoreddns.org + +sdns://AgYAAAAAAAAAElsyYTAxOjNhMDo1Mzo1Mzo6XaDMEGDTnIMptitvvH0NbfkwmGm5gefmOS1c2PpAj02A5qD39a8ogB6HfX3zor4o_hSfMnSn7SnxNv1QPOOYy6gLDaCzXgWVDPvYJZ-TdboQGHC4w8TA7FpSl1fmMWfp3iap6KBETr1nu4P4gHs5Iek4rJF4uIK9UKrbESMfBEz18I33zqDmRLppY-M1_nZcuZdrErEOtUKUtCR3dkzLOjrMo6yy_CAqrj-3vwXkyBxBlNykRRHU-a8wR4bsGuchhAnPYqCDVRl1bmljYXN0LnVuY2Vuc29yZWRkbnMub3JnCi9kbnMtcXVlcnk + + +## uncensoreddns-ipv4 + +Also known as censurfridns. +DoH, no logs, no filter, anycast - https://blog.uncensoreddns.org + +sdns://AgYAAAAAAAAADjkxLjIzOS4xMDAuMTAwoMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVGWFueWNhc3QudW5jZW5zb3JlZGRucy5vcmcKL2Rucy1xdWVyeQ + + +## uncensoreddns-ipv6 + +Also known as censurfridns. +DoH, no logs, no filter, anycast - https://blog.uncensoreddns.org + +sdns://AgYAAAAAAAAAEVsyMDAxOjY3YzoyOGE0OjpdoMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVGWFueWNhc3QudW5jZW5zb3JlZGRucy5vcmcKL2Rucy1xdWVyeQ + + +## userspace-australia + +DNSCrypt in Australia (Brisbane & Melbourne) by UserSpace. +No logs | IPv4 | Filtered + +sdns://AQIAAAAAAAAAEDEwMy4xNi4xMzEuNzc6NTQgnRNtOLv4IzxEfkbLFOaHa-ncLImdQiP-pS1jaFY5jlUdMi5kbnNjcnlwdC1jZXJ0LnVzZXJzcGFjZS1ibmU +sdns://AQIAAAAAAAAAEjEwMy4yMzYuMTYyLjExOTo1NCBPr5jCD_2geOTMmS5LgQg_v79pgppTm3vLZhe_oahbgR0yLmRuc2NyeXB0LWNlcnQudXNlcnNwYWNlLW1lbA + + +## userspace-australia-ipv6 + +DNSCrypt in Australia (Brisbane & Melbourne) by UserSpace. +No logs | IPv6 | Filtered + +sdns://AQIAAAAAAAAAJVsyNDA0Ojk0MDA6MTowOjIxNjozZWZmOmZlZjA6MTgwYV06NTQgnRNtOLv4IzxEfkbLFOaHa-ncLImdQiP-pS1jaFY5jlUdMi5kbnNjcnlwdC1jZXJ0LnVzZXJzcGFjZS1ibmU +sdns://AQIAAAAAAAAAJVsyNDA0Ojk0MDA6MzowOjIxNjozZWZmOmZlZTA6N2Y2OV06NTQgT6-Ywg_9oHjkzJkuS4EIP7-_aYKaU5t7y2YXv6GoW4EdMi5kbnNjcnlwdC1jZXJ0LnVzZXJzcGFjZS1tZWw + + +## v.dnscrypt.uk-ipv4 + +DNSCrypt, no logs, uncensored, DNSSEC. Hosted in London UK on Digital Ocean +https://www.dnscrypt.uk + +sdns://AQcAAAAAAAAADzEwNC4yMzguMTg2LjE5MiDtST2M6teQZk8GPEe3lZojaS18kDY8nkPMtZF75bQe5R0yLmRuc2NyeXB0LWNlcnQudi5kbnNjcnlwdC51aw + + +## v.dnscrypt.uk-ipv6 + +DNSCrypt, no logs, uncensored, DNSSEC. Hosted in London UK on Digital Ocean +https://www.dnscrypt.uk + +sdns://AQcAAAAAAAAAKFsyMDAxOjE5ZjA6NzQwMjoxNTc0OjU0MDA6MmZmOmZlNjY6MmNmZl0g7Uk9jOrXkGZPBjxHt5WaI2ktfJA2PJ5DzLWRe-W0HuUdMi5kbnNjcnlwdC1jZXJ0LnYuZG5zY3J5cHQudWs + + +## wikimedia + +Wikimedia DNS (formerly called Wikidough), is a caching, recursive, +public resolver service that is run and managed by the Site +Reliability Engineering (Traffic) team at the Foundation. + +Wikimedia DNS helps prevent some surveillance and censorship of our +wikis and other websites by securing DNS lookups. + +sdns://AgcAAAAAAAAADjE4NS43MS4xMzguMTM4oMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVEXdpa2ltZWRpYS1kbnMub3JnCi9kbnMtcXVlcnk + + +## wikimedia-ipv6 + +Wikimedia DNS over IPv6. + +Wikimedia DNS (formerly called Wikidough), is a caching, recursive, +public resolver service that is run and managed by the Site +Reliability Engineering (Traffic) team at the Foundation. + +Wikimedia DNS helps prevent some surveillance and censorship of our +wikis and other websites by securing DNS lookups. + +sdns://AgcAAAAAAAAAEVsyMDAxOjY3Yzo5MzA6OjFdoMwQYNOcgym2K2-8fQ1t-TCYabmB5-Y5LVzY-kCPTYDmoPf1ryiAHod9ffOivij-FJ8ydKftKfE2_VA845jLqAsNoLNeBZUM-9gln5N1uhAYcLjDxMDsWlKXV-YxZ-neJqnooEROvWe7g_iAezkh6TiskXi4gr1QqtsRIx8ETPXwjffOoOZEumlj4zX-dly5l2sSsQ61QpS0JHd2TMs6OsyjrLL8ICquP7e_BeTIHEGU3KRFEdT5rzBHhuwa5yGECc9ioINVEXdpa2ltZWRpYS1kbnMub3JnCi9kbnMtcXVlcnk + + +## yandex + +Yandex public DNS server (anycast) + +sdns://AgUAAAAAAAAACTc3Ljg4LjguMSCoF6cUD2dwqtorNi96I2e3nkHPSJH1ka3xbdOglmOVkQk3Ny44OC44LjEKL2Rucy1xdWVyeQ +sdns://AgUAAAAAAAAACTc3Ljg4LjguOCCoF6cUD2dwqtorNi96I2e3nkHPSJH1ka3xbdOglmOVkQk3Ny44OC44LjgKL2Rucy1xdWVyeQ + + +## yandex-ipv6 + +Yandex public DNS server (anycast IPv6) + +sdns://AgUAAAAAAAAAE1syYTAyOjZiODo6ZmVlZDpmZl0gqBenFA9ncKraKzYveiNnt55Bz0iR9ZGt8W3ToJZjlZEJNzcuODguOC4xCi9kbnMtcXVlcnk +sdns://AgUAAAAAAAAAF1syYTAyOjZiODowOjE6OmZlZWQ6ZmZdIKgXpxQPZ3Cq2is2L3ojZ7eeQc9IkfWRrfFt06CWY5WRCTc3Ljg4LjguMQovZG5zLXF1ZXJ5 + + +## yandex-safe + +Yandex public DNS server with malware filtering (anycast) + +sdns://AgEAAAAAAAAACTc3Ljg4LjguMiCoF6cUD2dwqtorNi96I2e3nkHPSJH1ka3xbdOglmOVkQk3Ny44OC44LjIKL2Rucy1xdWVyeQ +sdns://AgEAAAAAAAAACjc3Ljg4LjguODggqBenFA9ncKraKzYveiNnt55Bz0iR9ZGt8W3ToJZjlZEKNzcuODguOC44OAovZG5zLXF1ZXJ5 + + +## yandex-safe-ipv6 + +Yandex public DNS server with malware filtering (anycast IPv6) + +sdns://AgEAAAAAAAAAFFsyYTAyOjZiODo6ZmVlZDpiYWRdIKgXpxQPZ3Cq2is2L3ojZ7eeQc9IkfWRrfFt06CWY5WRCTc3Ljg4LjguMgovZG5zLXF1ZXJ5 +sdns://AgEAAAAAAAAAGFsyYTAyOjZiODowOjE6OmZlZWQ6YmFkXSCoF6cUD2dwqtorNi96I2e3nkHPSJH1ka3xbdOglmOVkQk3Ny44OC44LjIKL2Rucy1xdWVyeQ + diff --git a/dnscrypt-proxy/public-resolvers.md.minisig b/dnscrypt-proxy/public-resolvers.md.minisig new file mode 100644 index 0000000..5c40ce3 --- /dev/null +++ b/dnscrypt-proxy/public-resolvers.md.minisig @@ -0,0 +1,4 @@ +untrusted comment: signature from minisign secret key +RWQf6LRCGA9i5983IlJLZNz+p4xrbaCtbtPEro9Fvidyy/eI6cWdP1dYrATCD6PbMrSX7QyLzKSyRjcoRLtaWCyDFz7Az+aB1Qk= +trusted comment: timestamp:1741012330 file:public-resolvers.md +jxECeEEfp5hRhoYoUrvmB7OrbWIenOz5oLIoWt77LiSTFLrM/zojiIgEpbdRUJNPqDR7kVdIu89oJ+aHrIrGAg== diff --git a/dnscrypt-proxy/relays.md b/dnscrypt-proxy/relays.md new file mode 100644 index 0000000..48afde0 --- /dev/null +++ b/dnscrypt-proxy/relays.md @@ -0,0 +1,2283 @@ +# Anonymized DNS relays + +Anonymized DNS is a lightweight alternative to Tor and SOCKS proxies, +dedicated to DNS traffic. They hide the client IP address to DNS resolvers, +providing anonymity in addition to confidentiality and integrity. + +DNS Anonymization is only compatible with servers supporting the +DNSCrypt protocol. + +See the link below for more information: + +https://github.com/DNSCrypt/dnscrypt-proxy/wiki/Anonymized-DNS + + +## anon-cs-austria + +Wien, Austria Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ05NC4xOTguNDEuMjM1 + + +## anon-cs-barcelona + +Barcelona, Spain Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4zNy4xMjAuMTQyLjExNQ + + +## anon-cs-belgium + +Brussels, Belgium Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0zNy4xMjAuMjM2LjEx + + +## anon-cs-berlin + +Berlin, Germany Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0zNy4xMjAuMjE3Ljc1 + + +## anon-cs-brazil + +Brazil Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4xNzcuNTQuMTQ1LjEzMQ + + +## anon-cs-bulgaria + +Sofia, Bulgaria Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4zNy4xMjAuMTUyLjIzNQ + + +## anon-cs-ch + +Switzerland Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ8xOTAuMjExLjI1NS4yMjc + + +## anon-cs-czech + +Prague, Czech Republic Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ8yMTcuMTM4LjIyMC4yNDM + + +## anon-cs-dc + +US - Washington, DC Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQwxOTguNy41OC4yMjc + + +## anon-cs-de + +Frankfurt, Germany Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQsxNDYuNzAuODIuMw + + +## anon-cs-dk + +Denmark Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0zNy4xMjAuMjMyLjQz + + +## anon-cs-dus3 + +Dusseldorf, Germany 3 Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ44OS4xNjMuMjIxLjE4MQ + + +## anon-cs-finland + +Finland Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4xODUuMTE3LjExOC4yMA + + +## anon-cs-fr + +France Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0xNjMuMTcyLjM0LjU2 + + +## anon-cs-ga + +US - Atlanta, GA Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ02NC40Mi4xODEuMjI3 + + +## anon-cs-hungary + +Budapest, Hungary Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ04Ni4xMDYuNzQuMjE5 + + +## anon-cs-il2 + +US - Chicago, IL 2 Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4xMDguMTgxLjYzLjE2Mw + + +## anon-cs-ireland + +Dublin, Ireland Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4zNy4xMjAuMjM1LjE4Nw + + +## anon-cs-la + +US - Los Angeles, CA Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ8xOTUuMjA2LjEwNC4yMDM + + +## anon-cs-london + +London, England Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ03OC4xMjkuMjQ4LjY3 + + +## anon-cs-madrid + +Madrid, Spain Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4xODUuMTgzLjEwNi44Mw + + +## anon-cs-manchester + +Manchester, England Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0xOTUuMTIuNDguMTcx + + +## anon-cs-mexico + +Mexico Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0xMDMuMTQuMjYuMTkw + + +## anon-cs-milan + +Milan, Italy Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ8yMTcuMTM4LjIxOS4yMTk + + +## anon-cs-montreal + +Montreal, Canada Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0xNzYuMTEzLjc0LjE5 + + +## anon-cs-nc + +US - North Carolina Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4xNTUuMjU0LjIxLjI1MA + + +## anon-cs-nl + +Netherlands Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0xODUuMTA3LjgwLjg0 + + +## anon-cs-norway + +Oslo, Norway Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ45MS4yMTkuMjE1LjIyNw + + +## anon-cs-ore + +US - Oregon Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0xNzkuNjEuMjIzLjQ3 + + +## anon-cs-poland + +Warsaw, Poland Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0zNy4xMjAuMjExLjkx + + +## anon-cs-pt + +Portugal Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ45MS4yMDUuMjMwLjIyNA + + +## anon-cs-ro + +Romania Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0xNDYuNzAuNjYuMjI3 + + +## anon-cs-rome + +Rome, Italy Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4zNy4xMjAuMjA3LjEzMQ + + +## anon-cs-sea + +US - Seattle, WA Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQw2NC4xMjAuNS4yNTE + + +## anon-cs-serbia + +Belgrade, Serbia Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4zNy4xMjAuMTkzLjIxOQ + + +## anon-cs-singapore + +Singapore Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0zNy4xMjAuMTUxLjEx + + +## anon-cs-sk + +South Korea Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4xMDguMTgxLjUwLjIxOA + + +## anon-cs-slovakia + +Bratislava, Slovakia Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4xOTMuMzcuMjU1LjIyNw + + +## anon-cs-swe + +Sweden Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ8xMjguMTI3LjEwNC4xMDg + + +## anon-cs-sydney + +Sydney, Australia Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4zNy4xMjAuMjM0LjI1MQ + + +## anon-cs-tokyo + +Tokyo, Japan Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQwxNDYuNzAuMzEuNDM + + +## anon-cs-tx + +US - Dallas, TX Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ0yMDkuNTguMTQ3LjM2 + + +## anon-cs-vancouver + +Vancouver, Canada Anonymized DNS relay server provided by https://cryptostorm.is/ + +sdns://gQ4xOTYuMjQwLjc5LjE2Mw + + +## anon-digitalprivacy.diy-ipv4 + +IPv4 server. Anonymized DNS relay hosted in Nuremberg, Germany (netcup) and maintained by https://digitalprivacy.diy + +sdns://gRIzNy4yMjEuMTk0Ljg0OjQ0MzQ + + +## anon-dnscrypt.uk-ipv4 + +Anonymized DNS relay in London. https://www.dnscrypt.uk + +sdns://gQ0xNjUuMjMyLjMyLjk1 + + +## anon-dnscrypt.uk-ipv6 + +Anonymized DNS relay in London. https://www.dnscrypt.uk + +sdns://gRpbMmEwMzpiMGMwOjE6ZTA6OjQ4NzoxMDAxXQ + + +## anon-dnswarden-swiss + +Relay hosted in swizterland. +For more information look at https://github.com/bhanupratapys/dnswarden or https://dnswarden.com + +sdns://gRQxODguMjQ0LjExNy4xMTQ6MTQ0Mw + + +## anon-fluffycat-fr-01 + +Anonymized DNS relay hosted in Marseille, FR on Oracle Cloud. + +sdns://gRQxMjkuMTUxLjIyNC4xODI6NTM1Mw + + +## anon-inconnu + +Anonymized DNS relay hosted in Seattle, WA (USA), maintained by Eric +Lagergren (@ericlagergren). Running the official Docker image on Vultr. + +sdns://gQ4xMDQuMjM4LjE1My40Ng + + +## anon-kama + +Anonymized DNS relay hosted in France and maintained by Frank Denis (@jedisct1). + +sdns://gQ4xMzcuNzQuMjIzLjIzNA + + +## anon-saldns01-conoha-ipv4 + +Hosted on ConoHa VPS Tokyo region. No log. From experimental [μODNS project](https://junkurihara.github.io/dns/). + +sdns://gRQxMTguMjcuMTA4LjE0MDo1MDQ0Mw + + +## anon-saldns02-conoha-ipv4 + +Hosted on ConoHa VPS Tokyo region. No log. From experimental [μODNS project](https://junkurihara.github.io/dns/). + +sdns://gRUxMzMuMTMwLjExOC4xMDM6NTA0NDM + + +## anon-saldns03-conoha-ipv4 + +Hosted on ConoHa VPS Tokyo region. No log. From experimental [μODNS project](https://junkurihara.github.io/dns/). + +sdns://gRQxMzMuMTMwLjk4LjI1MDo1MDQ0Mw + + +## anon-saldns99-conoha-ipv4 + +Hosted on ConoHa VPS Tokyo region (not a resolver, but just a relay). No log. From experimental [μODNS project](https://junkurihara.github.io/dns/). + +sdns://gRUxMzMuMTMwLjExMy4xNjM6NTA0NDM + + +## anon-scaleway + +Anonymized DNS relay hosted in France and maintained by Frank Denis (@jedisct1). + +sdns://gRIyMTIuNDcuMjI4LjEzNjo0NDM + + +## anon-scaleway-ams + +Anonymized DNS relay hosted in Amsterdam and maintained by Frank Denis (@jedisct1). + +sdns://gRE1MS4xNS4xMjIuMjUwOjQ0Mw + + +## anon-scaleway-ams-ipv6 + +Anonymized DNS relay hosted in Amsterdam and maintained by Frank Denis (@jedisct1). +IPv6 only. + +sdns://gSpbMjAwMTpiYzg6MTY0MDoxY2UyOmRjMDA6ZmY6ZmUyODo1YjE3XTo0NDM + + +## anon-scaleway-ipv6 + +Anonymized DNS relay hosted in France and maintained by Frank Denis (@jedisct1). +IPv6 only. + +sdns://gSlbMjAwMTpiYzg6NzEwOjU4MTg6ZGMwMDpmZjpmZTViOjNmNjNdOjQ0Mw + + +## anon-scaleway2 + +Anonymized DNS relay hosted in France and maintained by Frank Denis (@jedisct1). + +sdns://gRMxNjMuMTcyLjE4MC4xMjU6NDQz + + +## anon-serbica + +Anonymized DNS relay hosted in Netherlands by https://litepay.ch + +sdns://gRMxODUuNjYuMTQzLjE3ODo1MzUz + + +## anon-sth-se + +Anonymized DNS relay hosted in Sweden - SE + +sdns://gRI0NS4xNTMuMTg3Ljk2OjQzNDM + + +## anon-tiarap + +Anonymized DNS relay hosted in Singapore + +sdns://gRMxNzQuMTM4LjI5LjE3NToxNDQz + + +## anon-v.dnscrypt.uk-ipv4 + +Anonymized DNS relay hosted in UK on Vultr + +sdns://gQ8xMDQuMjM4LjE4Ni4xOTI + + +## anon-v.dnscrypt.uk-ipv6 + +Anonymized DNS relay hosted in UK on Vultr + +sdns://gShbMjAwMToxOWYwOjc0MDI6MTU3NDo1NDAwOjJmZjpmZTY2OjJjZmZd + + +## dnscry.pt-anon-allentown-ipv4 + +DNSCry.pt Allentown - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0yMy4xMzcuMjUzLjI0 + + +## dnscry.pt-anon-allentown-ipv6 + +DNSCry.pt Allentown - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRxbMjYwMjpmYzI0OjE5Ojc0YjA6NTI4NTo6MTJd + + +## dnscry.pt-anon-amsterdam-ipv4 + +DNSCry.pt Amsterdam - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xOTguMTQwLjE0MS40Ng + + +## dnscry.pt-anon-amsterdam-ipv6 + +DNSCry.pt Amsterdam - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRZbMmEwMzo5NGUzOjIyMmI6OjEwMzJd + + +## dnscry.pt-anon-amsterdam02-ipv4 + +DNSCry.pt Amsterdam 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ00NS44Ni4xNjIuMTEw + + +## dnscry.pt-anon-amsterdam02-ipv6 + +DNSCry.pt Amsterdam 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRtbMmEwNzplZmMwOjEwMDE6YTVjZTo6YjRiNF0 + + +## dnscry.pt-anon-ashburn-ipv6 + +DNSCry.pt Ashburn - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMjAwMTo0NzA6ODoxNjk6OjEwMF0 + + +## dnscry.pt-anon-athens-ipv4 + +DNSCry.pt Athens - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xODUuMjM0LjUyLjg3 + + +## dnscry.pt-anon-athens-ipv6 + +DNSCry.pt Athens - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMmEwOTpjZDQzOmY6NDJhMTo6NV0 + + +## dnscry.pt-anon-atlanta-ipv4 + +DNSCry.pt Atlanta - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xNzAuMjQ5LjIzNy4xNTQ + + +## dnscry.pt-anon-atlanta-ipv6 + +DNSCry.pt Atlanta - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRNbMjYwMDo0YzAwOjgwOjg6OmFd + + +## dnscry.pt-anon-auckland-ipv4 + +DNSCry.pt Auckland - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xODUuOTkuMTMzLjExMg + + +## dnscry.pt-anon-auckland-ipv6 + +DNSCry.pt Auckland - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRxbMmEwNjoxMjgwOmJlZTE6Mjo6ZWUxMjoyMDhd + + +## dnscry.pt-anon-bengaluru-ipv4 + +DNSCry.pt Bengaluru - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xNjAuMTkxLjE4Mi4yMTY + + +## dnscry.pt-anon-bengaluru-ipv6 + +DNSCry.pt Bengaluru - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRZbMjQwMTpkNGUwOjE6ZjdmZDo6NTNd + + +## dnscry.pt-anon-bogota-ipv4 + +DNSCry.pt Bogotá - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xMDMuNTcuMjUwLjM5 + + +## dnscry.pt-anon-bogota-ipv6 + +DNSCry.pt Bogotá - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMmEwMzpmODA6NTc6MzRkMTo6MV0 + + +## dnscry.pt-anon-bratislava-ipv4 + +DNSCry.pt Bratislava - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ45NS4xMzEuMjAyLjEwNQ + + +## dnscry.pt-anon-bratislava-ipv6 + +DNSCry.pt Bratislava - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR1bMmEwNTo1NTAyOjo1OTA2Ojk3Zjg6MmQwZToxXQ + + +## dnscry.pt-anon-brisbane-ipv4 + +DNSCry.pt Brisbane - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ40My4yMjQuMTgwLjEzNw + + +## dnscry.pt-anon-brisbane-ipv6 + +DNSCry.pt Brisbane - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gSJbMjQwNDo5NDAwOjE6MDoyMTY6M2VmZjpmZWY2OjcxOTRd + + +## dnscry.pt-anon-brussels-ipv4 + +DNSCry.pt Brussels - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xOTIuMTIxLjE3MC4xNTE + + +## dnscry.pt-anon-brussels-ipv6 + +DNSCry.pt Brussels - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMmEwMzpmODA6MzI6NTJkOTo6MV0 + + +## dnscry.pt-anon-bucharest-ipv4 + +DNSCry.pt Bucharest - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xODUuOTMuMjIxLjE2Nw + + +## dnscry.pt-anon-bucharest-ipv6 + +DNSCry.pt Bucharest - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMmEwZDo5ZWMyOjA6ZjAzZDo6YzQ5ZV0 + + +## dnscry.pt-anon-budapest-ipv4 + +DNSCry.pt Budapest - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xOTQuMTAyLjIyNy41 + + +## dnscry.pt-anon-budapest-ipv6 + +DNSCry.pt Budapest - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRZbMmEwZToxZDgwOjI3OjYyODk6OjFd + + +## dnscry.pt-anon-calgary-ipv4 + +DNSCry.pt Calgary - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0yMy4xMzMuNjQuMTIx + + +## dnscry.pt-anon-calgary-ipv6 + +DNSCry.pt Calgary - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRZbMjYwMjpmZWQyOmZlMDoyODM6OjFd + + +## dnscry.pt-anon-chicago-ipv4 + +DNSCry.pt Chicago - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ00NS40MS4yMDQuMjA0 + + +## dnscry.pt-anon-chicago-ipv6 + +DNSCry.pt Chicago - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR9bMjYwMjpmZWE3OmUwYzplOmJmZjo2OjcwOjE5NGNd + + +## dnscry.pt-anon-chisinau-ipv4 + +DNSCry.pt Chișinău - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xNzYuMTIzLjEwLjEwNQ + + +## dnscry.pt-anon-chisinau-ipv6 + +DNSCry.pt Chișinău - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR1bMjAwMTo2Nzg6NmQ0OjUwODA6OjNkZWE6MTA5XQ + + +## dnscry.pt-anon-copenhagen-ipv4 + +DNSCry.pt Copenhagen - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQs4NS4xMjAuODQuNQ + + +## dnscry.pt-anon-copenhagen-ipv6 + +DNSCry.pt Copenhagen - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR5bMmEwZToxZDgwOjMxOjhhNTY6MDpiMGU6NWU6MF0 + + +## dnscry.pt-anon-coventry-ipv4 + +DNSCry.pt Coventry - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ00NS4xNTUuMzcuMTY1 + + +## dnscry.pt-anon-coventry-ipv6 + +DNSCry.pt Coventry - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMmEwZDpkOGMwOjA6ZjA0Mzo6NjkyN10 + + +## dnscry.pt-anon-dallas-ipv6 + +DNSCry.pt Dallas - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRNbMjYwMjpmYjk0OjE6Mzk6OmFd + + +## dnscry.pt-anon-denver-ipv4 + +DNSCry.pt Denver - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8yMTYuMTIwLjIwMS4xMDU + + +## dnscry.pt-anon-denver-ipv6 + +DNSCry.pt Denver - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMjYwNzphNjgwOjY6ZjAxNjo6M2EyNV0 + + +## dnscry.pt-anon-dublin-ipv4 + +DNSCry.pt Dublin - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xOTQuMjYuMjEzLjE1 + + +## dnscry.pt-anon-dublin-ipv6 + +DNSCry.pt Dublin - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMmEwOTpjZDQ2OmY6NDI5ZTo6NV0 + + +## dnscry.pt-anon-durham-ipv4 + +DNSCry.pt Durham - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQwzOC40NS42NC4xMTc + + +## dnscry.pt-anon-durham-ipv6 + +DNSCry.pt Durham - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR1bMjAwMTo1NTA6NWEwMDo1ZWI6OmRiNTpmMDAxXQ + + +## dnscry.pt-anon-dusseldorf-ipv4 + +DNSCry.pt Düsseldorf - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xODUuMjQ0LjI3LjEzNg + + +## dnscry.pt-anon-dusseldorf-ipv6 + +DNSCry.pt Düsseldorf - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMmEwZjo1NzA3OmFhODE6NWUzYzo6MV0 + + +## dnscry.pt-anon-dusseldorf02-ipv4 + +DNSCry.pt Düsseldorf 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ00NS4xMzMuNzUuMTIy + + +## dnscry.pt-anon-flint-ipv4 + +DNSCry.pt Flint - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xNDcuMTg5LjE0MC4xMzY + + +## dnscry.pt-anon-flint-ipv6 + +DNSCry.pt Flint - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRtbMjYwNjo2NjgwOjI5OjE6OjU4NTk6YTM3Yl0 + + +## dnscry.pt-anon-frankfurt-ipv4 + +DNSCry.pt Frankfurt - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xOTQuNTAuMTkuMTUw + + +## dnscry.pt-anon-frankfurt-ipv6 + +DNSCry.pt Frankfurt - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gSNbMmEwZjo1NzA3OmFiODA6MzM0ZToyOjI6MmNkMjphOGJjXQ + + +## dnscry.pt-anon-frankfurt02-ipv4 + +DNSCry.pt Frankfurt 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ00NS4xNDcuNTEuMTIz + + +## dnscry.pt-anon-frankfurt02-ipv6 + +DNSCry.pt Frankfurt 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRRbMmEwNzpkODg0OjEwMDo6MzQ0XQ + + +## dnscry.pt-anon-fremont-ipv4 + +DNSCry.pt Fremont - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQwyMy4xMzQuODguNzE + + +## dnscry.pt-anon-fremont-ipv6 + +DNSCry.pt Fremont - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMjYwMjpmYmExOjEwMDo6NzE6MV0 + + +## dnscry.pt-anon-fujairah-ipv4 + +DNSCry.pt Fujairah - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ04OS4zNi4xNjIuMTg3 + + +## dnscry.pt-anon-fujairah-ipv6 + +DNSCry.pt Fujairah - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gShbMmEwNjpmOTAyOjQwMDE6MTAwOjkwMDA6OTAwMDozOWE0OjVmZWJd + + +## dnscry.pt-anon-geneva-ipv4 + +DNSCry.pt Geneva - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQw0NS45MC41OS4xOTM + + +## dnscry.pt-anon-geneva-ipv6 + +DNSCry.pt Geneva - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRBbMmEwNTo5NDA2OjphZTFd + + +## dnscry.pt-anon-grandrapids-ipv4 + +DNSCry.pt Grand Rapids - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xODUuMTY1LjQ0LjE2NA + + +## dnscry.pt-anon-grandrapids-ipv6 + +DNSCry.pt Grand Rapids - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRNbMjYwMjpmOTY0OjE6MjQ6OmFd + + +## dnscry.pt-anon-hafnarfjordur-ipv4 + +DNSCry.pt Hafnarfjordur - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xNTEuMjM2LjI0LjE5MA + + +## dnscry.pt-anon-hafnarfjordur-ipv6 + +DNSCry.pt Hafnarfjordur - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRZbMmEwMzpmODA6MzU0OjM4Yjc6OjFd + + +## dnscry.pt-anon-halifax-ipv4 + +DNSCry.pt Halifax - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQwyMy4xOTEuODAuNzI + + +## dnscry.pt-anon-halifax-ipv6 + +DNSCry.pt Halifax - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMjYwMjpmYzFjOmZhMDoxMTo6MV0 + + +## dnscry.pt-anon-hanoi-ipv4 + +DNSCry.pt Hanoi - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xMDMuMTk5LjE2Ljkz + + +## dnscry.pt-anon-hanoi-ipv6 + +DNSCry.pt Hanoi - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMjQwNDpmYmMwOjA6MTFjODo6YTMyNF0 + + +## dnscry.pt-anon-helsinki-ipv4 + +DNSCry.pt Helsinki - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4zNy4yMjguMTI5LjE2MA + + +## dnscry.pt-anon-helsinki-ipv6 + +DNSCry.pt Helsinki - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMmEwNjoxNzAwOjE6M2E6OmNiYV0 + + +## dnscry.pt-anon-hochiminhcity-ipv4 + +DNSCry.pt Ho-Chi-Minh City - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xNTcuMjAuODMuMTM1 + + +## dnscry.pt-anon-hochiminhcity-ipv6 + +DNSCry.pt Ho-Chi-Minh City - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMjQwMDo2ZWEwOjA6MTFhZTo6YWRjNF0 + + +## dnscry.pt-anon-hongkong-ipv4 + +DNSCry.pt Hong Kong - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQs5Ni45LjIyOC4yNw + + +## dnscry.pt-anon-hongkong-ipv6 + +DNSCry.pt Hong Kong - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRlbMjAwMTpkZjE6ODAxOmEwMjI6OmM0OmFd + + +## dnscry.pt-anon-hongkong02-ipv4 + +DNSCry.pt Hong Kong 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQw5MS4xMjQuMzAuMzE + + +## dnscry.pt-anon-hongkong02-ipv6 + +DNSCry.pt Hong Kong 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMjYwMjpmYTY3OjEwMToyMDo6YV0 + + +## dnscry.pt-anon-houston-ipv4 + +DNSCry.pt Houston - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4yMDkuMTM1LjE3MC41MQ + + +## dnscry.pt-anon-houston-ipv6 + +DNSCry.pt Houston - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRRbMjYwMjpmOWYzOjA6Mjo6MTkzXQ + + +## dnscry.pt-anon-hudiksvall-ipv4 + +DNSCry.pt Hudiksvall - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ45NS4xNDMuMTk2LjE5MA + + +## dnscry.pt-anon-hudiksvall-ipv6 + +DNSCry.pt Hudiksvall - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRxbMmEwMzpkNzgwOjA6MTk2OjozZTg0OjU2YWZd + + +## dnscry.pt-anon-islamabad-ipv6 + +DNSCry.pt Islamabad - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRdbMjAwMTpkZjI6ZDQwOjE3OjpiYWJhXQ + + +## dnscry.pt-anon-jacksonville-ipv4 + +DNSCry.pt Jacksonville - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xMDQuMjI1LjEyOS4xMDY + + +## dnscry.pt-anon-jacksonville-ipv6 + +DNSCry.pt Jacksonville - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMjYwNzphNjgwOjQ6ZjAwMzo6ZWMzMl0 + + +## dnscry.pt-anon-johannesburg-ipv4 + +DNSCry.pt Johannesburg - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xNjkuMjM5LjEyOC4xMjQ + + +## dnscry.pt-anon-johannesburg-ipv6 + +DNSCry.pt Johannesburg - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRRbMmMwZjpmNTMwOjpkMDA6MTg4XQ + + +## dnscry.pt-anon-johor-ipv4 + +DNSCry.pt Johor - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ00NS4yNDkuOTEuMTUw + + +## dnscry.pt-anon-johor-ipv6 + +DNSCry.pt Johor - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMjAwMTpkZjQ6MTg0MDo5Zjo6YV0 + + +## dnscry.pt-anon-kansascity-ipv4 + +DNSCry.pt Kansas City - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0yMy4xNTAuNDAuMTIx + + +## dnscry.pt-anon-kansascity-ipv6 + +DNSCry.pt Kansas City - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRlbMjYwMjoyYjc6ZDAxOmMyOTU6OmI6MThd + + +## dnscry.pt-anon-kharkiv-ipv4 + +DNSCry.pt Kharkiv - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xOTMuMjM4LjE1My4xNw + + +## dnscry.pt-anon-kharkiv-ipv6 + +DNSCry.pt Kharkiv - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRRbMmEwMjoyN2E4OmZlZWQ6OjgxXQ + + +## dnscry.pt-anon-kyiv-ipv4 + +DNSCry.pt Kyiv - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0yMTcuMTIuMjIxLjYx + + +## dnscry.pt-anon-kyiv-ipv6 + +DNSCry.pt Kyiv - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRBbMmEwMjoyN2FkOjoyMDFd + + +## dnscry.pt-anon-lagos-ipv4 + +DNSCry.pt Lagos - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xNzYuOTcuMTkyLjEy + + +## dnscry.pt-anon-lagos-ipv6 + +DNSCry.pt Lagos - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR9bMmEwNjpmOTAxOjQwMDE6MTAwOjoyZDZjOjczNmFd + + +## dnscry.pt-anon-lasvegas-ipv4 + +DNSCry.pt Las Vegas - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0yMDkuMTQxLjQ1LjI3 + + +## dnscry.pt-anon-lasvegas-ipv6 + +DNSCry.pt Las Vegas - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gSVbMjYwNTo2NDAwOjIwOjIyNTg6N2FjYjo5MWZmOjIwOTg6YTld + + +## dnscry.pt-anon-libertylake-ipv4 + +DNSCry.pt Liberty Lake - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQwyMy4xODQuNDguMTk + + +## dnscry.pt-anon-libertylake-ipv6 + +DNSCry.pt Liberty Lake - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMjYwMjpmYzI0OjE4OjMzZjI6OmFiMV0 + + +## dnscry.pt-anon-lima02-ipv4 + +DNSCry.pt Lima 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQw4Ny4xMjEuOTkuMjM + + +## dnscry.pt-anon-lima02-ipv6 + +DNSCry.pt Lima 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRNbMmEwMzo5MGMwOjU1NTo6NzJd + + +## dnscry.pt-anon-lisbon-ipv4 + +DNSCry.pt Lisbon - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xODUuMjE5LjEzMC4y + + +## dnscry.pt-anon-lisbon-ipv6 + +DNSCry.pt Lisbon - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRpbMmEwZTpiYzAwOjoxODU6MjE5OjEzMDoyXQ + + +## dnscry.pt-anon-london-ipv4 + +DNSCry.pt London - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQw0NS42Ny44NC4xMzI + + +## dnscry.pt-anon-london-ipv6 + +DNSCry.pt London - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRRbMmEwNTo0MTQwOjcwMDplOjphXQ + + +## dnscry.pt-anon-losangeles-ipv4 + +DNSCry.pt Los Angeles - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0yMTYuNzMuMTU2LjUy + + +## dnscry.pt-anon-losangeles-ipv6 + +DNSCry.pt Los Angeles - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMjYwMjpmYWZkOjkwMjoyMDo6YV0 + + +## dnscry.pt-anon-losangeles02-ipv4 + +DNSCry.pt Los Angeles 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xMDQuMjAwLjY3LjE5NA + + +## dnscry.pt-anon-losangeles02-ipv6 + +DNSCry.pt Los Angeles 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRdbMjYwMjpmZjc1Ojc6Yjc5OjpiNGI0XQ + + +## dnscry.pt-anon-luxembourg-ipv4 + +DNSCry.pt Luxembourg - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQw0NS44MC4yMDkuNTU + + +## dnscry.pt-anon-luxembourg-ipv6 + +DNSCry.pt Luxembourg - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRNbMmEwMzo5MGMwOjg1OjoxMDJd + + +## dnscry.pt-anon-madrid-ipv4 + +DNSCry.pt Madrid - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ01LjEzNC4xMTguMTk4 + + +## dnscry.pt-anon-madrid-ipv6 + +DNSCry.pt Madrid - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRtbMmEwMzpjN2MwOjUyOjI2NDE6MTgwOjoxM10 + + +## dnscry.pt-anon-manchester-ipv4 + +DNSCry.pt Manchester - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ04MS4xODEuMTA4LjQw + + +## dnscry.pt-anon-manchester-ipv6 + +DNSCry.pt Manchester - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR1bMmEwZToxZDgwOjU6ODJlOTo1Njc4OjkxMDo6XQ + + +## dnscry.pt-anon-miami-ipv4 + +DNSCry.pt Miami - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xMjguMjU0LjIwNy41MA + + +## dnscry.pt-anon-miami-ipv6 + +DNSCry.pt Miami - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRRbMjYwMjpmYWZkOmZiMjoxOjphXQ + + +## dnscry.pt-anon-montreal-ipv4 + +DNSCry.pt Montreal - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xNDcuMTg5LjEzNi4xODM + + +## dnscry.pt-anon-montreal-ipv6 + +DNSCry.pt Montreal - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRpbMjYwNjo2NjgwOjQ1OjE6OmY3OGM6OWIwXQ + + +## dnscry.pt-anon-moscow-ipv4 + +DNSCry.pt Moscow - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ45My4xODMuMTA1LjEwOQ + + +## dnscry.pt-anon-moscow-ipv6 + +DNSCry.pt Moscow - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRRbMmEwYzpjNTgwOjA6MTo6MjoxXQ + + +## dnscry.pt-anon-mumbai-ipv4 + +DNSCry.pt Mumbai - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xMDMuMTExLjExNC4yNQ + + +## dnscry.pt-anon-mumbai-ipv6 + +DNSCry.pt Mumbai - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR9bMmEwNjpmOTAyOjgwMDE6MTAwOjoxNzU3OmU2MTdd + + +## dnscry.pt-anon-munich-ipv4 + +DNSCry.pt Munich - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xOTQuMzkuMjA1LjEw + + +## dnscry.pt-anon-munich-ipv6 + +DNSCry.pt Munich - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRpbMmEwYzo4ZmMwOjE3NDk6NjY6MTg6OjE2XQ + + +## dnscry.pt-anon-naaldwijk-ipv4 + +DNSCry.pt Naaldwijk - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0yMy4xMzcuMjQ5LjI2 + + +## dnscry.pt-anon-naaldwijk-ipv6 + +DNSCry.pt Naaldwijk - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMjYwMjpmYzI0OjEyOjk4NzM6OmFiMV0 + + +## dnscry.pt-anon-nuremberg-ipv4 + +DNSCry.pt Nuremberg - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0yMDIuNjEuMjM2LjY3 + + +## dnscry.pt-anon-nuremberg-ipv6 + +DNSCry.pt Nuremberg - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gSVbMmEwMzo0MDAwOjVjOjUxOjI0Yjk6NTFmZjpmZTgwOmYzYTdd + + +## dnscry.pt-anon-oradea-ipv4 + +DNSCry.pt Oradea - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xOTMuMzIuODcuMTI3 + + +## dnscry.pt-anon-oradea-ipv6 + +DNSCry.pt Oradea - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR5bMmEwZDo4MTQzOjA6MTI0OjI5MTU6YWY6MDoxOF0 + + +## dnscry.pt-anon-ottoville-ipv4 + +DNSCry.pt Ottoville - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xMDQuMjM0LjIzMS4yMzk + + +## dnscry.pt-anon-ottoville-ipv6 + +DNSCry.pt Ottoville - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRNbMjYwMjpmOTUzOjY6MjU6OmFd + + +## dnscry.pt-anon-paris-ipv4 + +DNSCry.pt Paris - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQs4OS4xMTcuMi4xNw + + +## dnscry.pt-anon-paris-ipv6 + +DNSCry.pt Paris - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR5bMjQwMjpkMGMwOjIyOjZjZDA6NDo0OjQ6NWI4MV0 + + +## dnscry.pt-anon-philadelphia-ipv4 + +DNSCry.pt Philadelphia - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xNTQuMTYuMTU5LjIy + + +## dnscry.pt-anon-philadelphia-ipv6 + +DNSCry.pt Philadelphia - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMjYwNDpiZjAwOjIxMDoxMjo6Ml0 + + +## dnscry.pt-anon-phoenix-ipv4 + +DNSCry.pt Phoenix - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xNzMuMjQ5LjIwMy41Mg + + +## dnscry.pt-anon-phoenix-ipv6 + +DNSCry.pt Phoenix - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRtbMjYwNzoxZTQwOjE6MTBhNDo6MTk6Y2E4NF0 + + +## dnscry.pt-anon-portedwards-ipv4 + +DNSCry.pt Port Edwards - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xNzYuMTExLjIxOS4xMjY + + +## dnscry.pt-anon-portedwards-ipv6 + +DNSCry.pt Port Edwards - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMjAwMTo0NzA6MWYxMToyYmI6OmIyM10 + + +## dnscry.pt-anon-portland-ipv4 + +DNSCry.pt Portland - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xMDMuMTI0LjEwNi4yMzM + + +## dnscry.pt-anon-portland-ipv6 + +DNSCry.pt Portland - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gSFbMjQwMjpkMGMwOjE2OmExZTY6MDpiODkzOmJmNzpkZF0 + + +## dnscry.pt-anon-prague-ipv4 + +DNSCry.pt Prague - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xOTUuMTIzLjI0NS4xOQ + + +## dnscry.pt-anon-prague-ipv6 + +DNSCry.pt Prague - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRBbMmEwNTo5NDAzOjo5OTld + + +## dnscry.pt-anon-redditch-ipv4 + +DNSCry.pt Redditch - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQw0NS42Ny44NS4yMTk + + +## dnscry.pt-anon-redditch-ipv6 + +DNSCry.pt Redditch - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRRbMmEwNTo0MTQwOjE5OjUzOjphXQ + + +## dnscry.pt-anon-riga-ipv4 + +DNSCry.pt Riga - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xOTUuMTIzLjIxMi4yMDA + + +## dnscry.pt-anon-riga-ipv6 + +DNSCry.pt Riga - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRFbMmEwMjoyN2FjOjoxMjQ5XQ + + +## dnscry.pt-anon-saltlakecity-ipv4 + +DNSCry.pt Salt Lake City - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xMDMuMTE0LjE2Mi42NQ + + +## dnscry.pt-anon-saltlakecity-ipv6 + +DNSCry.pt Salt Lake City - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gSFbMjQwMjpkMGMwOjE4OmM4ZmY6MDpiODkzOmJmNzpkZF0 + + +## dnscry.pt-anon-sandefjord-ipv4 + +DNSCry.pt Sandefjord - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xOTQuMzIuMTA3LjQ4 + + +## dnscry.pt-anon-sandefjord-ipv6 + +DNSCry.pt Sandefjord - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMmEwMzo5NGUwOjI3MWY6OjViMV0 + + +## dnscry.pt-anon-santaclara-ipv4 + +DNSCry.pt Santa Clara - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xNzYuMTExLjIyMy4xNjc + + +## dnscry.pt-anon-santaclara-ipv6 + +DNSCry.pt Santa Clara - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRtbMjYwNjo2NjgwOjM1OjE6OjUwNmQ6OGNlMl0 + + +## dnscry.pt-anon-saopaulo-ipv4 + +DNSCry.pt Sao Paulo - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xMDguMTgxLjY5LjE1Mw + + +## dnscry.pt-anon-saopaulo-ipv6 + +DNSCry.pt Sao Paulo - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR5bMjYwNDo2NjAwOmZkMDA6OTA6OjFiOGI6M2EzY10 + + +## dnscry.pt-anon-seattle-ipv4 + +DNSCry.pt Seattle - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8yMDkuMTgyLjIyNS4xMDM + + +## dnscry.pt-anon-seattle-ipv6 + +DNSCry.pt Seattle - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMjYwNzphNjgwOjk6ZjAwNTo6ODZlN10 + + +## dnscry.pt-anon-seoul-ipv4 + +DNSCry.pt Seoul - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ05Mi4zOC4xMzUuMTI4 + + +## dnscry.pt-anon-seoul-ipv6 + +DNSCry.pt Seoul - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRNbMmEwMzo5MGMwOjEyNTo6ODhd + + +## dnscry.pt-anon-singapore-ipv4 + +DNSCry.pt Singapore - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0yMy4yNy4xMDEuMTkx + + +## dnscry.pt-anon-singapore-ipv6 + +DNSCry.pt Singapore - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMjYwNjpmYzQwOjQwMDM6Zjo6YV0 + + +## dnscry.pt-anon-singapore02-ipv4 + +DNSCry.pt Singapore 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xMDMuMTc5LjQ0Ljcz + + +## dnscry.pt-anon-singapore02-ipv6 + +DNSCry.pt Singapore 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRNbMjQwMTo0NTIwOjExMjI6OmFd + + +## dnscry.pt-anon-sofia-ipv4 + +DNSCry.pt Sofia - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQs3OS4xMjQuNzcuMw + + +## dnscry.pt-anon-sofia-ipv6 + +DNSCry.pt Sofia - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRZbMmEwMTo4NzQwOjE6NDA6OjhhMjVd + + +## dnscry.pt-anon-spokane-ipv4 + +DNSCry.pt Spokane - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xMDQuMzYuODYuMTgx + + +## dnscry.pt-anon-spokane-ipv6 + +DNSCry.pt Spokane - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRRbMjYwNjphOGMwOjM6MjAyOjphXQ + + +## dnscry.pt-anon-stockholm-ipv4 + +DNSCry.pt Stockholm - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xODUuMTk1LjIzNi42Mg + + +## dnscry.pt-anon-stockholm-ipv6 + +DNSCry.pt Stockholm - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRZbMmEwOTpiMjgwOmZlMDE6MzU6OmFd + + +## dnscry.pt-anon-sydney-ipv4 + +DNSCry.pt Sydney - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQw4NC4zMy4xNS4xMDA + + +## dnscry.pt-anon-sydney-ipv6 + +DNSCry.pt Sydney - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gR9bMmEwYzo4ZmMxOjgwMDQ6NTUzOjoxNDVhOmJiZjld + + +## dnscry.pt-anon-sydney02-ipv4 + +DNSCry.pt Sydney 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xOTUuMTE0LjE0Ljc0 + + +## dnscry.pt-anon-sydney02-ipv6 + +DNSCry.pt Sydney 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRhbMjQwMjo3MzQwOjUwMDA6NjIwMDo6YV0 + + +## dnscry.pt-anon-taipeh-ipv4 + +DNSCry.pt Taipeh - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xMDMuMTMxLjE4OS4xMQ + + +## dnscry.pt-anon-taipeh-ipv6 + +DNSCry.pt Taipeh - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRpbMjQwMzpjZmMwOjEwMDQ6MzY5Ojo1YjIxXQ + + +## dnscry.pt-anon-tallinn-ipv4 + +DNSCry.pt Tallinn - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xODUuMTk0LjUzLjIy + + +## dnscry.pt-anon-tallinn-ipv6 + +DNSCry.pt Tallinn - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRJbMmEwNDo2ZjAwOjQ6OjE3YV0 + + +## dnscry.pt-anon-tampa-ipv4 + +DNSCry.pt Tampa - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ8xNjUuMTQwLjExNy4yNDg + + +## dnscry.pt-anon-tampa-ipv6 + +DNSCry.pt Tampa - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRlbMjYwMjpmY2MwOjIyMjI6OWQyZTo6NTNd + + +## dnscry.pt-anon-taos-ipv4 + +DNSCry.pt Taos - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ42My4xMzMuMjIzLjEzOA + + +## dnscry.pt-anon-taos-ipv6 + +DNSCry.pt Taos - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRtbMjYwNjo2NjgwOjUzOjE6Ojg0NmE6YmQ3OV0 + + +## dnscry.pt-anon-tbilisi-ipv6 + +DNSCry.pt Tbilisi - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRpbMmExMjplMzQwOjMwMDo6YmMzNDo5M2U0XQ + + +## dnscry.pt-anon-telaviv-ipv4 + +DNSCry.pt Tel Aviv - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ4xNDYuMTg1LjIxOS4yNA + + +## dnscry.pt-anon-telaviv-ipv6 + +DNSCry.pt Tel Aviv - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRJbMmEwMzo5MGMwOjFlNTo6ZF0 + + +## dnscry.pt-anon-tokyo-ipv4 + +DNSCry.pt Tokyo - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQw0NS42Ny44Ni4xMjM + + +## dnscry.pt-anon-tokyo-ipv6 + +DNSCry.pt Tokyo - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMjYwNjpmYzQwOjQwMDI6ZDo6YV0 + + +## dnscry.pt-anon-tokyo02-ipv4 + +DNSCry.pt Tokyo 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQwxMDMuMTc5LjQ1LjY + + +## dnscry.pt-anon-tokyo02-ipv6 + +DNSCry.pt Tokyo 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRNbMmEwYTo2MDQwOjk3M2Q6OmFd + + +## dnscry.pt-anon-toronto-ipv4 + +DNSCry.pt Toronto - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQwyMy4xMzQuODkuMjM + + +## dnscry.pt-anon-toronto-ipv6 + +DNSCry.pt Toronto - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMjYwMjpmYmExOmQwMDo6MjM6MV0 + + +## dnscry.pt-anon-tuusula-ipv4 + +DNSCry.pt Tuusula - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ02NS4yMS4yNTIuMjAx + + +## dnscry.pt-anon-tuusula-ipv6 + +DNSCry.pt Tuusula - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRdbMmEwMTo0Zjk6YzAxMTpiODRlOjoxXQ + + +## dnscry.pt-anon-valdivia-ipv4 + +DNSCry.pt Valdivia - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0yMTYuNzMuMTU5LjI2 + + +## dnscry.pt-anon-valdivia-ipv6 + +DNSCry.pt Valdivia - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRVbMmEwNjphMDA2OmQxZDE6OjExNl0 + + +## dnscry.pt-anon-vancouver-ipv4 + +DNSCry.pt Vancouver - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQwyMy4xNTQuODEuOTI + + +## dnscry.pt-anon-vilnius-ipv4 + +DNSCry.pt Vilnius - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ0xNjIuMjU0Ljg2LjEz + + +## dnscry.pt-anon-vilnius-ipv6 + +DNSCry.pt Vilnius - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRdbMmExMzo5NDAxOjA6MTo6M2Q1ODoxXQ + + +## dnscry.pt-anon-warsaw02-ipv4 + +DNSCry.pt Warsaw 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ44OC4yMTguMjA2LjEzNw + + +## dnscry.pt-anon-warsaw02-ipv6 + +DNSCry.pt Warsaw 02 - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRZbMmEwOTpiMjgwOmZlMDA6MjQ6OmFd + + +## dnscry.pt-anon-yerevan-ipv4 + +DNSCry.pt Yerevan - DNSCrypt, no filter, no logs, DNSSEC support (IPv4 server) + +https://www.dnscry.pt + +sdns://gQ04NS45MC4yMDcuMTk5 + + +## dnscry.pt-anon-yerevan-ipv6 + +DNSCry.pt Yerevan - DNSCrypt, no filter, no logs, DNSSEC support (IPv6 server) + +https://www.dnscry.pt + +sdns://gRlbMmEwMzo5MGMwOjVmMToyOTAzOjo1Mzld + diff --git a/dnscrypt-proxy/relays.md.minisig b/dnscrypt-proxy/relays.md.minisig new file mode 100644 index 0000000..4a8b6db --- /dev/null +++ b/dnscrypt-proxy/relays.md.minisig @@ -0,0 +1,4 @@ +untrusted comment: signature from minisign secret key +RWQf6LRCGA9i5wd6xJA/svAS1g//oZjkOCM8OZVX/YQhzA/SAY/Mfe0tZdoYiJYrJpBxL/8z/U1thhrLZLUxqnIvCpdHp8CPTQA= +trusted comment: timestamp:1741019027 file:relays.md +0B4fIVYpM5pc617/bOpgbfuHG7dOyHzRXdM2NLj9G0YCUDZ9U5iIB5s0r97LVecTrfmU4gbnZp6omM1a/xE/Cg== diff --git a/dnsendpoints.json b/dnsendpoints.json new file mode 100644 index 0000000..c4f772d --- /dev/null +++ b/dnsendpoints.json @@ -0,0 +1,142 @@ +[ + { + "host": "collector.github.com", + "port": 443 + }, + { + "host": "marketplace.visualstudio.com", + "port": 443 + }, + { + "host": "canary.officeapps.live.com", + "port": 443 + }, + { + "host": "clientnotification-userprodscus1-1.servicebus.windows.net", + "port": 443 + }, + { + "host": "g.live.com", + "port": 443 + }, + { + "host": "avatars.githubusercontent.com", + "port": 443 + }, + { + "host": "codeload.github.com", + "port": 443 + }, + { + "host": "storage.live.com", + "port": 443 + }, + { + "host": "xpaywalletcdn-prod.azureedge.net", + "port": 443 + }, + { + "host": "github.com", + "port": 443 + }, + { + "host": "github.githubassets.com", + "port": 443 + }, + { + "host": "login.microsoftonline.com", + "port": 443 + }, + { + "host": "api.github.com", + "port": 443 + }, + { + "host": "api.vstsusers.visualstudio.com", + "port": 443 + }, + { + "host": "app.vssps.visualstudio.com", + "port": 443 + }, + { + "host": "raw.githubusercontent.com", + "port": 443 + }, + { + "host": "devtools.azureedge.net", + "port": 443 + }, + { + "host": "objects.githubusercontent.com", + "port": 443 + }, + { + "host": "xpaywalletcdn.azureedge.net", + "port": 443 + }, + { + "host": "mrodevicemgr.officeapps.live.com", + "port": 443 + }, + { + "host": "az667904.vo.msecnd.net", + "port": 443 + }, + { + "host": "login.live.com", + "port": 443 + }, + { + "host": "camo.githubusercontent.com", + "port": 443 + }, + { + "host": "private-user-images.githubusercontent.com", + "port": 443 + }, + { + "host": "edge-consumer-static.azureedge.net", + "port": 443 + }, + { + "host": "az700632.vo.msecnd.net", + "port": 443 + }, + { + "host": "gapis.geekzu.org", + "port": 443 + }, + { + "host": "fonts.geekzu.org", + "port": 443 + }, + { + "host": "secure.gravatar.com", + "port": 443 + }, + { + "host": "roaming.officeapps.live.com", + "port": 443 + }, + { + "host": "ocws.officeapps.live.com", + "port": 443 + }, + { + "host": "cdnjs.cloudflare.com", + "port": 443 + }, + { + "host": "odc.officeapps.live.com", + "port": 443 + }, + { + "host": "alive.github.com", + "port": 443 + }, + { + "host": "edgeassetservice.azureedge.net", + "port": 443 + } +] \ No newline at end of file diff --git a/fastgithub.exe b/fastgithub.exe new file mode 100644 index 0000000..e2d6a62 Binary files /dev/null and b/fastgithub.exe differ diff --git a/logs/log20250108.txt b/logs/log20250108.txt new file mode 100644 index 0000000..328c365 --- /dev/null +++ b/logs/log20250108.txt @@ -0,0 +1,14828 @@ +2025-01-08T12:00:58.1172410+08:00 [INF] +FastGithub.HttpServer +已监听https://localhost:443,https反向代理服务启动完成 + +2025-01-08T12:00:58.1631705+08:00 [INF] +FastGithub.HttpServer +已监听http://localhost:81,http反向代理服务启动完成 + +2025-01-08T12:00:58.1657276+08:00 [INF] +FastGithub.HttpServer +已监听ssh://localhost:22,github的ssh反向代理服务启动完成 + +2025-01-08T12:00:58.1666016+08:00 [INF] +FastGithub.HttpServer +已监听git://localhost:9418,github的git反向代理服务启动完成 + +2025-01-08T12:00:58.2142524+08:00 [INF] +FastGithub.AppHostedService +FastGithub启动完成,当前版本为v2.1.4,访问 https://github.com/dotnetcore/fastgithub 关注新版本 + +2025-01-08T12:00:58.3083876+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +127.0.0.1:80 <=> 127.0.0.1:81 + +2025-01-08T12:00:58.3109483+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +::1:80 <=> ::1:81 + +2025-01-08T12:01:24.8285569+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-01-08T12:01:24.8310026+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->::1 + +2025-01-08T12:01:24.9808870+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-08T12:01:24.9822198+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-01-08T12:01:26.5734024+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 502 in 1317.0614 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T12:01:26.5734029+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 502 in 1317.0612 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T12:01:28.8618827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.89.19] + +2025-01-08T12:01:29.7465745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.44.108, 52.109.56.126] + +2025-01-08T12:01:31.3218660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-01-08T12:01:38.2183372+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T12:01:38.2196721+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T12:01:40.1654561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.148.167, 20.190.144.137] + +2025-01-08T12:01:40.6244113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T12:01:40.6292695+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 2029.2654 ms + +2025-01-08T12:01:42.3018322+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 405.5853 ms + +2025-01-08T12:01:44.1871018+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-08T12:01:44.1890392+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-08T12:01:44.2137122+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-08T12:01:44.2165679+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-08T12:01:45.9509657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4] + +2025-01-08T12:01:46.6668400+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->::1 + +2025-01-08T12:01:46.6697934+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-01-08T12:01:46.6722152+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->::1 + +2025-01-08T12:01:46.6749042+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->127.0.0.1 + +2025-01-08T12:01:46.6924950+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +user-images.githubusercontent.com->::1 + +2025-01-08T12:01:46.6951493+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +user-images.githubusercontent.com->127.0.0.1 + +2025-01-08T12:01:46.7224944+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->::1 + +2025-01-08T12:01:46.7241766+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->127.0.0.1 + +2025-01-08T12:01:46.8248356+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/ responded 200 in 2084.2427 ms + +2025-01-08T12:01:47.8711324+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dark-d782f59290e2.css responded 200 in 844.0084 ms + +2025-01-08T12:01:47.8711324+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-free-bg-16920f7114e3.webp responded 200 in 1014.3099 ms + +2025-01-08T12:01:47.9053967+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dashboard-3ad840010069.css responded 200 in 878.1266 ms + +2025-01-08T12:01:47.9054116+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/light-0cfd1fd8509e.css responded 200 in 878.3178 ms + +2025-01-08T12:01:47.9514584+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_failbot_failbot_ts-71291b73d826.js responded 200 in 924.015 ms + +2025-01-08T12:01:47.9682974+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_oddbird_popover-polyfill_dist_popover_js-9da652f58479.js responded 200 in 940.8959 ms + +2025-01-08T12:01:47.9728997+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_relative-time-element_dist_index_js-f6da4b3fa34c.js responded 200 in 945.3556 ms + +2025-01-08T12:01:47.9812888+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_markdown-toolbar-element_dist_index_js-ceef33f593fa.js responded 200 in 953.6337 ms + +2025-01-08T12:01:47.9812948+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_auto-complete-element_dist_index_js-node_modules_github_catalyst_-8e9f78-a74b4e0a8a6b.js responded 200 in 953.6862 ms + +2025-01-08T12:01:47.9843401+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_task-list_ts-app_assets_modules_github_sso_ts-ui_packages-900dde-917d4bda1f1a.js responded 200 in 956.4434 ms + +2025-01-08T12:01:48.0037142+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_braintree_browser-detection_dist_browser-detection_js-node_modules_githu-bb80ec-7f43298e364b.js responded 200 in 975.8815 ms + +2025-01-08T12:01:48.0040625+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_morphdom_dist_morphdom-e-7c534c-a4a1922eb55f.js responded 200 in 976.2645 ms + +2025-01-08T12:01:48.0041974+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_delegated-events_dist_inde-893f9f-6cf3320416b8.js responded 200 in 976.4135 ms + +2025-01-08T12:01:48.0860881+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_commenting_edit_ts-app_assets_modules_github_behaviors_ht-83c235-fb43816ab83c.js responded 200 in 1058.1948 ms + +2025-01-08T12:01:48.0893301+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_updatable-content_updatable-content_ts-863ef5872a03.js responded 200 in 1061.4816 ms + +2025-01-08T12:01:48.0900689+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_turbo_dist_turbo_es2017-esm_js-e3cbe28f1638.js responded 200 in 1062.2363 ms + +2025-01-08T12:01:48.0905105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8003::154, 185.199.111.133, 2606:50c0:8002::154] + +2025-01-08T12:01:48.1190627+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es__baseIsEqual_js-8929eb9718d5.js responded 200 in 1091.1564 ms + +2025-01-08T12:01:48.1190628+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/mona-loading-dark-static-8b35171e5d6c.svg responded 200 in 1262.38 ms + +2025-01-08T12:01:48.1191056+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_github_details-dialog-elem-308dee-23f281d9acce.js responded 200 in 1091.2384 ms + +2025-01-08T12:01:48.1372135+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_hotkey_dist_index_js-node_modules_github_template-parts_lib_index-9c9846-de77908d8259.js responded 200 in 1109.2999 ms + +2025-01-08T12:01:48.1429296+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/notifications-global-cfcd9f4f0f23.js responded 200 in 1115.0296 ms + +2025-01-08T12:01:48.1977731+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/github-e72829f5538b.css responded 200 in 1170.4332 ms + +2025-01-08T12:01:48.1978374+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-logo-gradient-white-bf2a125b15f1.svg responded 200 in 1341.0338 ms + +2025-01-08T12:01:48.1979558+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-free-visuals-b71c10d1ae3f.webp responded 200 in 1341.1581 ms + +2025-01-08T12:01:48.2577317+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/discussions-adf1d1b8b95c.css responded 200 in 1230.344 ms + +2025-01-08T12:01:48.2863190+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_tanstack_query-core_build_modern_queryClient_js-e6f07a7e80b7.js responded 200 in 1257.9826 ms + +2025-01-08T12:01:48.3257809+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_selector-observer_dist_index_esm_js-f690fd9ae3d5.js responded 200 in 1298.2346 ms + +2025-01-08T12:01:48.3258374+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_arianotify-polyfill_ariaNotify-polyfill_js-node_modules_github_mi-3abb8f-d7e6bc799724.js responded 200 in 1298.4483 ms + +2025-01-08T12:01:48.3362001+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_ui-commands_ui-commands_ts-df3b47d86af0.js responded 200 in 1307.9435 ms + +2025-01-08T12:01:48.3494817+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/element-registry-3b5362d3d402.js responded 200 in 1321.7053 ms + +2025-01-08T12:01:48.3676642+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_delegated-events_dist_in-bae876-4b7fc9352994.js responded 200 in 1339.7653 ms + +2025-01-08T12:01:48.5032591+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/wp-runtime-bb25fe0c6183.js responded 200 in 1475.704 ms + +2025-01-08T12:01:48.5462536+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_emotion_is-prop-valid_dist_emotion-is-prop-valid_esm_js-node_modules_emo-37e3d5-92730c05e718.js responded 200 in 1517.9656 ms + +2025-01-08T12:01:48.5702981+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/7474657 responded 200 in 1761.1775 ms + +2025-01-08T12:01:48.5953602+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lit-html_lit-html_js-be8cb88f481b.js responded 200 in 1567.5877 ms + +2025-01-08T12:01:48.6186080+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/behaviors-a6abce982f3f.js responded 200 in 1590.752 ms + +2025-01-08T12:01:48.6305340+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-primitives-953961b66e63.css responded 200 in 1603.3863 ms + +2025-01-08T12:01:48.6382745+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-lib-2131e17288a8.js responded 200 in 1610.0758 ms + +2025-01-08T12:01:48.7374246+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_sticky-scroll-into-view_ts-7cbef09a422c.js responded 200 in 1709.5906 ms + +2025-01-08T12:01:48.7842828+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dashboard-d2298e0ffdff.js responded 200 in 1756.3376 ms + +2025-01-08T12:01:48.8102691+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/github-elements-f991cfab5105.js responded 200 in 1782.5995 ms + +2025-01-08T12:01:48.8382532+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/keyboard-shortcuts-dialog-958cae8ecd6c.js responded 200 in 1809.9415 ms + +2025-01-08T12:01:48.8560022+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_delegated-events_dist_index_js-node_modules_github_catalyst_lib_index_js-f6223d90c7ba.js responded 200 in 1828.0223 ms + +2025-01-08T12:01:48.8707091+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_quote-selection_dist_index_js-node_modules_github_session-resume_-69cfcc-833249ee3034.js responded 200 in 1842.8541 ms + +2025-01-08T12:01:48.8710553+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/octicons-react-45c3a19dd792.js responded 200 in 1842.8621 ms + +2025-01-08T12:01:48.8733609+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-react-753dc87b1e29.js responded 200 in 1845.3817 ms + +2025-01-08T12:01:48.9261010+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-react.b319719121fa0a0c6054.module.css responded 200 in 1898.7563 ms + +2025-01-08T12:01:49.0106230+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/environment-7b93e0f0c8ff.js responded 200 in 1983.0336 ms + +2025-01-08T12:01:49.0466071+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_text-expander-element_dist_index_js-78748950cb0c.js responded 200 in 2019.0381 ms + +2025-01-08T12:01:49.0524342+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_stacktrace-parser_dist_s-e7dcdd-f7cc96ebae76.js responded 200 in 2024.1774 ms + +2025-01-08T12:01:49.1167023+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es__Stack_js-node_modules_lodash-es__Uint8Array_js-node_modules_l-4faaa6-10d8eea337ce.js responded 200 in 2088.8386 ms + +2025-01-08T12:01:49.1421987+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/mona-loading-dark-7701a7b97370.gif responded 200 in 2285.4898 ms + +2025-01-08T12:01:49.1913512+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-7e1d0e4dee6a.css responded 200 in 2164.0732 ms + +2025-01-08T12:01:49.2026029+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-core-407f3018ba3c.js responded 200 in 2174.4931 ms + +2025-01-08T12:01:49.2298261+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_file-attachment-element_dist_index_js-node_modules_primer_view-co-c44a69-c6d035fa8dc8.js responded 200 in 2202.1915 ms + +2025-01-08T12:01:49.2360833+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/75664361 responded 200 in 2400.0658 ms + +2025-01-08T12:01:49.3666433+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/836974 responded 200 in 2530.5507 ms + +2025-01-08T12:01:49.6663679+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_ajax-error_ts-app_assets_modules_github_behaviors_include-d0d0a6-b41aeef03499.js responded 200 in 2638.4983 ms + +2025-01-08T12:01:49.7175571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-01-08T12:01:49.9786321+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_color-convert_index_js-e3180fe3bcb3.js responded 200 in 2950.769 ms + +2025-01-08T12:01:50.0211406+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es_pickBy_js-3ceceb29b05b.js responded 200 in 2993.2133 ms + +2025-01-08T12:01:50.1374028+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_filter-input-element_dist_index_js-node_modules_github_remote-inp-b5f1d7-a1760ffda83d.js responded 200 in 3109.7727 ms + +2025-01-08T12:01:50.2702750+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 3461.0293 ms + +2025-01-08T12:01:50.2784748+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_oddbird_popover-polyfill_dist_popover-fn_js-55fea94174bf.js responded 200 in 3250.1354 ms + +2025-01-08T12:01:50.8076878+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-4430d3c2c150.css responded 200 in 3780.3921 ms + +2025-01-08T12:01:52.4786699+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_primer_behaviors_dist_esm_index_mjs-ea2a5d75d580.js responded 200 in 5451.2112 ms + +2025-01-08T12:01:52.7955483+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-08T12:01:52.7985968+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-08T12:01:52.8898436+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_primer_experimental_toggle-switch-element_ts-04349cb42240.js responded 200 in 128.5936 ms + +2025-01-08T12:01:52.8899679+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_react-partial-anchor-element_element-entry_ts-2943a8833a8b.js responded 200 in 119.6751 ms + +2025-01-08T12:01:52.9011162+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_site_header_deferred-side-panel-element_ts-1d02d7136bf9.js responded 200 in 137.5484 ms + +2025-01-08T12:01:52.9198398+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_ghcc-consent-element_element-entry_ts-28a44339e296.js responded 200 in 154.7718 ms + +2025-01-08T12:01:52.9505796+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_dashboard_loading-context-element_ts-6f607706a58a.js responded 200 in 192.4994 ms + +2025-01-08T12:01:53.0094465+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_hydro-analytics_hydro-analytics_ts-ui_packages_query-builder-element_element-entry_ts-3fd0c7f12fc8.js responded 200 in 239.1416 ms + +2025-01-08T12:01:53.0299312+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_cookie-consent-link-element_element-entry_ts-0ade2bf7a852.js responded 200 in 265.0164 ms + +2025-01-08T12:01:53.0450311+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_query-builder-element_query-builder-element_ts-83d676a23221.js responded 200 in 282.323 ms + +2025-01-08T12:01:53.0451906+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-create-menu-e66a8207c01b.js responded 200 in 112.4374 ms + +2025-01-08T12:01:53.0452334+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-markdown-rendering-e18097b08a37.css responded 200 in 122.1439 ms + +2025-01-08T12:01:53.0457729+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-user-nav-drawer.830d6c10c9fea7fc134e.module.css responded 200 in 113.0087 ms + +2025-01-08T12:01:53.0485896+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-user-nav-drawer-373b74afcef6.js responded 200 in 115.8768 ms + +2025-01-08T12:01:53.0485880+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_promise-with-resolvers-polyfill_promise-with-resolvers-polyfill_ts-ui_packages_re-8d43b0-8b4cf048e51d.js responded 200 in 116.0475 ms + +2025-01-08T12:01:53.0485880+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-copilot-menu-062e7a710a6c.js responded 200 in 116.9618 ms + +2025-01-08T12:01:53.0563450+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_hydro-analytics_hydro-analytics_ts-ui_packages_jump-to-element_model_ts-201ddaee8e7d.js responded 200 in 292.9773 ms + +2025-01-08T12:01:53.0659291+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_date-fns_getDaysInMonth_mjs-node_modules_date-fns_isAfter_mjs-node_modul-49f526-6d4bedc5c754.js responded 200 in 139.9258 ms + +2025-01-08T12:01:53.0734345+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_dompurify_dist_purify_js-b89b98661809.js responded 200 in 149.9086 ms + +2025-01-08T12:01:53.0851565+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_date-picker_date-picker_ts-ui_packages_github-avatar_GitHubAvatar_tsx-b55eae95552d.js responded 200 in 153.8249 ms + +2025-01-08T12:01:53.1159809+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_primer_experimental_select-panel-element_ts-4becf93aa968.js responded 200 in 355.1244 ms + +2025-01-08T12:01:53.1270753+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/settings/two_factor_authentication/holiday_warning_banner responded 200 in 355.9232 ms + +2025-01-08T12:01:53.1553215+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_tanstack_query-core_build_modern_queryObserver_js-node_modules_tanstack_-defd52-843b41414e0e.js responded 200 in 229.2597 ms + +2025-01-08T12:01:53.1877949+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_decorators_js-node_modules_github_hotkey_dist_-28977e-be00e2d75918.js responded 200 in 260.5841 ms + +2025-01-08T12:01:53.2634008+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_react-relay_hooks_js-node_modules_github_combobox-nav_dist_index_js-node-6d672f-6315950b19a4.js responded 200 in 336.5709 ms + +2025-01-08T12:01:53.2881705+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_search_custom-scopes-element_ts-e27cda452715.js responded 200 in 526.6219 ms + +2025-01-08T12:01:53.2958339+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_date-fns_addWeeks_mjs-node_modules_date-fns_addYears_mjs-node_modules_da-827f4f-cf37cd06c24f.js responded 200 in 370.12 ms + +2025-01-08T12:01:53.3122399+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_test-id-props_test-id-props_ts-ui_packages_use-analytics_use-analytics_ts-ui_pack-b3df46-d751cd8881ec.js responded 200 in 380.4684 ms + +2025-01-08T12:01:53.3288150+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-01-08T12:01:53.3312070+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-01-08T12:01:53.3325928+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_site_header_notification-indicator-element_ts-11ca5301260d.js responded 200 in 568.6493 ms + +2025-01-08T12:01:53.3329916+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_github_combobox-nav_dist-b7767a-9ad7d4eda3d9.js responded 200 in 571.0663 ms + +2025-01-08T12:01:53.3679559+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/ajax_context_list responded 200 in 596.3395 ms + +2025-01-08T12:01:53.3725022+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/conduit/filter responded 200 in 598.0608 ms + +2025-01-08T12:01:53.3759044+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_webauthn-get-element_element-entry_ts-0937e3810b98.js responded 200 in 605.1268 ms + +2025-01-08T12:01:53.3842830+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/my_top_repositories responded 200 in 612.2155 ms + +2025-01-08T12:01:53.4056427+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/my_top_repositories responded 200 in 633.7956 ms + +2025-01-08T12:01:53.4176169+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_blob-anchor_ts-ui_packages_code-nav_code-nav_ts-ui_packages_filter--8253c1-f38cdfca9137.js responded 200 in 654.6834 ms + +2025-01-08T12:01:53.4178542+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/recent-activity responded 200 in 643.7483 ms + +2025-01-08T12:01:53.4476370+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_utils_copilot-chat-hooks_ts-ui_packages_issue-viewer_utils_queries_ts-73bd6d557a7b.js responded 200 in 515.9732 ms + +2025-01-08T12:01:53.4608440+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/recent-activity responded 200 in 689.0985 ms + +2025-01-08T12:01:53.4608595+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/ajax_context_list responded 200 in 689.2813 ms + +2025-01-08T12:01:53.4698124+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-node_modules_scroll-anchoring_dist_scroll-anchoring_esm_js-app_components_notifications_notif-ab7b66-9f3e393fcf79.js responded 200 in 708.8217 ms + +2025-01-08T12:01:53.4953504+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_focus-visible_dist_focus-visible_js-node_modules_fzy_js_index_js-node_mo-c4d1d6-a009f6007b3c.js responded 200 in 569.317 ms + +2025-01-08T12:01:53.4973616+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 200 in 550.6519 ms + +2025-01-08T12:01:53.6011848+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_copilot-dashboard-entrypoint-element_element-entry_ts-55fc27b25b9b.js responded 200 in 836.1294 ms + +2025-01-08T12:01:53.6678262+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-chat.686b8c6d85cf27c2e691.module.css responded 200 in 746.3479 ms + +2025-01-08T12:01:53.7076338+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/193483667 responded 200 in 321.9854 ms + +2025-01-08T12:01:53.7076339+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/changelog responded 200 in 377.2496 ms + +2025-01-08T12:01:53.7318576+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 200 in 374.4673 ms + +2025-01-08T12:01:53.8295484+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_paths_index_ts-c223e79a3369.js responded 200 in 1067.1835 ms + +2025-01-08T12:01:53.9469690+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_issue-create_dialog_CreateIssueDialogEntry_tsx-58b1a9cd48a1.js responded 200 in 1015.4627 ms + +2025-01-08T12:01:54.3876026+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_date-fns_format_mjs-6e4d0f904632.js responded 200 in 1462.1817 ms + +2025-01-08T12:01:54.4054853+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 917.9663 ms + +2025-01-08T12:01:54.4163036+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/conduit/for_you_feed responded 200 in 1642.0892 ms + +2025-01-08T12:01:54.5020705+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_site-header-logged-in-user-menu-element_element-entry_ts-04dfe1b8f727.js responded 200 in 1731.7255 ms + +2025-01-08T12:01:54.6154970+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_search_qbsearch-input-element_ts-2c0c79b677fb.js responded 200 in 1852.1097 ms + +2025-01-08T12:01:54.6624635+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/151674099 responded 200 in 133.7822 ms + +2025-01-08T12:01:54.7954800+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/23049315 responded 200 in 263.8675 ms + +2025-01-08T12:01:54.8044707+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1157.7694 ms + +2025-01-08T12:01:54.8980548+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +private-user-images.githubusercontent.com->::1 + +2025-01-08T12:01:54.9002553+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +private-user-images.githubusercontent.com->127.0.0.1 + +2025-01-08T12:01:54.9575589+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-vendors-node_modules_consent-banner_dist_consent-banner_js-362ca569b596.js responded 200 in 1992.8229 ms + +2025-01-08T12:01:55.0037807+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-chat-805f89ee1c11.js responded 200 in 2072.067 ms + +2025-01-08T12:01:55.0234754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25] + +2025-01-08T12:01:55.1086706+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/13451009 responded 200 in 576.2169 ms + +2025-01-08T12:01:55.1088632+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/95534749 responded 200 in 574.2475 ms + +2025-01-08T12:01:55.1089028+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/115831817 responded 200 in 575.4573 ms + +2025-01-08T12:01:55.1089224+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/19475841 responded 200 in 576.4392 ms + +2025-01-08T12:01:55.1108091+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/153772003 responded 200 in 577.1471 ms + +2025-01-08T12:01:55.1123216+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/13366013 responded 200 in 577.5226 ms + +2025-01-08T12:01:55.1144938+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/25540727 responded 200 in 579.2482 ms + +2025-01-08T12:01:55.1196020+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/4426319 responded 200 in 583.4283 ms + +2025-01-08T12:01:55.1196075+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/16887793 responded 200 in 584.5751 ms + +2025-01-08T12:01:55.1198048+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/33759728 responded 200 in 584.2786 ms + +2025-01-08T12:01:55.1228796+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/127710567 responded 200 in 586.2709 ms + +2025-01-08T12:01:55.1229578+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/20696 responded 200 in 585.9479 ms + +2025-01-08T12:01:55.1229633+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/72946124 responded 200 in 586.5864 ms + +2025-01-08T12:01:55.1227977+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/165258753 responded 200 in 586.9914 ms + +2025-01-08T12:01:55.1231491+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/52594 responded 200 in 586.2322 ms + +2025-01-08T12:01:55.1232269+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/185660 responded 200 in 585.7595 ms + +2025-01-08T12:01:55.1300232+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/491848 responded 200 in 592.0225 ms + +2025-01-08T12:01:55.1386877+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/6079545 responded 200 in 606.828 ms + +2025-01-08T12:01:55.1573784+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/10251955 responded 200 in 627.4482 ms + +2025-01-08T12:01:55.2147888+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_reactions_reactions-menu-element_ts-2da3dbb08564.js responded 200 in 336.5577 ms + +2025-01-08T12:01:55.2377863+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/766298 responded 200 in 699.6936 ms + +2025-01-08T12:01:55.2401616+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/26842 responded 200 in 701.9702 ms + +2025-01-08T12:01:55.2508154+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/35902952 responded 200 in 710.3217 ms + +2025-01-08T12:01:55.2507501+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_item-picker_constants_labels_ts-ui_packages_item-picker_constants_values_ts-ui_pa-163a9a-5bae42c6a790.js responded 200 in 2319.3262 ms + +2025-01-08T12:01:55.2611170+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/67261499 responded 200 in 720.4599 ms + +2025-01-08T12:01:55.2617232+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/1254484 responded 200 in 720.3025 ms + +2025-01-08T12:01:55.2648563+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/8339670 responded 200 in 722.6367 ms + +2025-01-08T12:01:55.2986412+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/161462588 responded 200 in 761.9521 ms + +2025-01-08T12:01:55.3132369+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/6734573 responded 200 in 780.9493 ms + +2025-01-08T12:01:55.3285304+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_github_combobox-nav_dist-5f477b-eeb221e8a5a3.js responded 200 in 2558.5443 ms + +2025-01-08T12:01:55.3337841+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/862951 responded 200 in 800.7255 ms + +2025-01-08T12:01:55.3511753+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/65066173 responded 200 in 817.836 ms + +2025-01-08T12:01:55.3806386+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/955011 responded 200 in 842.4862 ms + +2025-01-08T12:01:55.4066790+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/280709 responded 200 in 868.8791 ms + +2025-01-08T12:01:55.4560522+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/773148 responded 200 in 919.966 ms + +2025-01-08T12:01:55.4764518+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/1017189 responded 200 in 935.6942 ms + +2025-01-08T12:01:55.4917146+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/61345690 responded 200 in 949.8999 ms + +2025-01-08T12:01:55.5327697+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/3714785 responded 200 in 997.9594 ms + +2025-01-08T12:01:55.5679755+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/93772967 responded 200 in 1027.4403 ms + +2025-01-08T12:01:55.7323241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.21] + +2025-01-08T12:01:55.7586456+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/113003545 responded 200 in 1225.8109 ms + +2025-01-08T12:01:55.9556888+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/141805286 responded 200 in 1412.6115 ms + +2025-01-08T12:01:56.0273636+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/8753634 responded 200 in 1488.8584 ms + +2025-01-08T12:01:56.1502480+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/2854579 responded 200 in 1608.1651 ms + +2025-01-08T12:01:56.1799614+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/119521493 responded 200 in 1637.2239 ms + +2025-01-08T12:01:56.2231247+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/889184 responded 200 in 1684.7389 ms + +2025-01-08T12:01:56.2494700+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_item-picker_components_RepositoryPicker_tsx-c5a3f0d0ca9b.js responded 200 in 3318.0708 ms + +2025-01-08T12:01:56.3183685+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/16616409 responded 200 in 1782.0385 ms + +2025-01-08T12:01:56.9466308+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/2357342 responded 200 in 2413.5424 ms + +2025-01-08T12:01:57.2050626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-08T12:01:59.4767654+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_use-safe-async-callback_use-safe-async-callback_ts-ui_packages_copy-to-clipboard_-4c1096-9bd5b6266162.js responded 200 in 6545.305 ms + +2025-01-08T12:02:00.5844035+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://private-user-images.githubusercontent.com/251292/387123886-c8a43d1f-f6a0-4471-80b7-708307035e38.png responded 200 in 5284.2202 ms + +2025-01-08T12:02:01.2308638+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://private-user-images.githubusercontent.com/251292/393095508-1a70f8b1-b794-435a-8b7f-c9d4b64ba6db.png responded 200 in 5930.6426 ms + +2025-01-08T12:02:01.9312848+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/29360864 responded 200 in 7397.6662 ms + +2025-01-08T12:02:04.8250624+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +edge-consumer-static.azureedge.net->::1 + +2025-01-08T12:02:04.8271883+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +edge-consumer-static.azureedge.net->127.0.0.1 + +2025-01-08T12:02:07.3371797+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://edge-consumer-static.azureedge.net/mouse-gesture/config.json responded 200 in 1404.8379 ms + +2025-01-08T12:02:07.4432903+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_highlight_js_lib_index_js-node_modules_tanstack_react-query_build_modern-3fdf40-591fb51c8a6e.js responded 200 in 14516.2941 ms + +2025-01-08T12:02:07.5526040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.54, 2620:1ec:bdf::74] + +2025-01-08T12:02:08.9011804+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_blackbird-parser_dist_blackbird_js-df077101f752.js responded 200 in 496.6574 ms + +2025-01-08T12:02:08.9844352+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 588.8989 ms + +2025-01-08T12:02:08.9926524+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_search_parsing_parsing_ts-0dbb4d051f34.js responded 200 in 588.1379 ms + +2025-01-08T12:02:09.0746717+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 669.3903 ms + +2025-01-08T12:02:09.0770357+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 670.5224 ms + +2025-01-08T12:02:09.1437364+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 732.8393 ms + +2025-01-08T12:02:09.4712774+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_react-relay_index_js-c5b7ce0827d5.js responded 200 in 16545.9374 ms + +2025-01-08T12:02:09.5651914+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 200 in 356.7418 ms + +2025-01-08T12:02:09.9245196+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 356.9863 ms + +2025-01-08T12:02:10.2538011+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_graphql/GetSuggestedNavigationDestinations responded 200 in 1043.8231 ms + +2025-01-08T12:02:10.3064592+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat/entitlement responded 200 in 645.6084 ms + +2025-01-08T12:02:13.9877366+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 27179.1785 ms + +2025-01-08T12:02:14.0707099+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-01-08T12:02:14.0742399+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-01-08T12:02:14.2934369+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 221.7508 ms + +2025-01-08T12:02:14.5143940+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 486.3523 ms + +2025-01-08T12:02:14.7278714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.112.21] + +2025-01-08T12:02:15.5391281+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 1202.7886 ms + +2025-01-08T12:02:16.5286076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-01-08T12:02:28.0588532+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 581.778 ms + +2025-01-08T12:02:29.0082135+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 450.0112 ms + +2025-01-08T12:02:29.0472413+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 488.251 ms + +2025-01-08T12:02:40.4901857+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T12:02:40.4915627+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T12:02:40.5293137+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T12:02:40.5312320+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T12:02:40.5425589+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-08T12:02:40.5445790+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-08T12:02:41.3413148+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 202.5924 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T12:02:42.7264979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.148.162, 20.190.148.165] + +2025-01-08T12:02:42.7430813+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 1401.192 ms + +2025-01-08T12:02:42.7513102+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T12:02:42.7532187+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T12:02:42.9295237+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 2174.0649 ms + +2025-01-08T12:02:42.9802875+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 196.9815 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T12:02:43.0373622+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T12:02:43.0387512+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T12:02:43.3488108+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 368.6778 ms + +2025-01-08T12:02:43.4413849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.97, 40.90.133.100, 40.90.130.192] + +2025-01-08T12:03:01.6727284+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T12:03:01.6739689+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T12:03:01.9014743+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 198.9373 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T12:03:02.1504239+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 465.2512 ms + +2025-01-08T12:03:02.2724018+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T12:03:02.2749140+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T12:03:02.8184509+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 916.8719 ms + +2025-01-08T12:03:03.0491799+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 219.2329 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T12:03:03.3300951+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 284.8801 ms + +2025-01-08T12:03:29.8234066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.25] + +2025-01-08T12:03:30.2602017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.44.108] + +2025-01-08T12:03:54.8426963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.112.25] + +2025-01-08T12:03:59.8758187+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.114.21] + +2025-01-08T12:04:39.6084524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.54, 13.107.246.67] + +2025-01-08T12:04:50.8639966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 40.90.133.97, 40.90.133.100] + +2025-01-08T12:05:31.5798799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 2603:1046:1406::2] + +2025-01-08T12:05:34.0014310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.165, 20.190.144.137] + +2025-01-08T12:05:56.2443563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.113.22] + +2025-01-08T12:06:09.4717894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.54, 2620:1ec:bdf::60] + +2025-01-08T12:06:35.7425023+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:06:36.1155015+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:06:43.4858232+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:07:04.8161579+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:07:05.2314016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.25] + +2025-01-08T12:07:06.5794313+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:07:07.7272498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-01-08T12:07:29.0421889+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:07:29.4508451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.113.21] + +2025-01-08T12:07:30.9650946+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:07:31.2080564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.54, 2620:1ec:bdf::74] + +2025-01-08T12:07:52.2659278+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:07:53.4011171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-08T12:08:19.5309078+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:08:19.9955605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.1, 40.90.133.97] + +2025-01-08T12:08:28.8648366+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:08:31.7325176+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:08:32.1841185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T12:08:53.7911523+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:08:54.2656987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.162, 20.190.144.164] + +2025-01-08T12:09:24.5315704+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:09:25.0278641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::10, 2603:1047:1:a0::14, 2603:1047:1:a0::12] + +2025-01-08T12:09:27.0429393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.4] + +2025-01-08T12:09:28.8302942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 20.26.156.210] + +2025-01-08T12:09:29.8042571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-08T12:09:31.1005258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.25] + +2025-01-08T12:09:54.1309873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.148.167, 20.190.144.162] + +2025-01-08T12:09:59.1257501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.28.1] + +2025-01-08T12:10:57.3941073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.22] + +2025-01-08T12:11:38.8111284+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-08T12:11:38.8124510+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-08T12:11:39.4144191+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 590.4943 ms + +2025-01-08T12:12:06.4363063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.26] + +2025-01-08T12:12:12.7644006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-01-08T12:12:23.8090661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-08T12:12:30.1591901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.113.21] + +2025-01-08T12:12:32.5586314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.54] + +2025-01-08T12:12:53.4262344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-08T12:12:53.5694323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T12:12:54.1939769+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 52.109.52.169] + +2025-01-08T12:12:55.2009772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T12:13:09.0258115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::45] + +2025-01-08T12:13:55.4548215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.163, 20.190.144.138] + +2025-01-08T12:14:07.3229659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.72] + +2025-01-08T12:14:30.5196419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::13, 2603:1047:1:a0::12, 2603:1047:1:a0::10] + +2025-01-08T12:14:33.0904567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.5] + +2025-01-08T12:14:33.3414567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.113.25] + +2025-01-08T12:14:33.6354313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.51] + +2025-01-08T12:14:43.1465171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.69, 2620:1ec:bdf::74] + +2025-01-08T12:15:10.0889074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 20.135.6.11] + +2025-01-08T12:15:49.7106852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.138, 20.190.144.139] + +2025-01-08T12:15:59.4142897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.114.21] + +2025-01-08T12:16:11.1326790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::60, 13.107.246.69] + +2025-01-08T12:16:28.4094316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.4] + +2025-01-08T12:16:37.0988850+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:16:37.4571223+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:16:45.0539302+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:17:17.8138851+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:17:18.2298343+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-08T12:17:21.1321656+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:17:21.2962277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-01-08T12:17:30.8941991+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:17:31.1369779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.112.22] + +2025-01-08T12:17:52.5225187+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:17:52.7704307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.51, 2620:1ec:bdf::44] + +2025-01-08T12:17:55.2652027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.121.4] + +2025-01-08T12:17:56.7333047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-08T12:18:15.9700147+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:18:17.1151320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8000::154] + +2025-01-08T12:18:17.5841574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-08T12:18:57.9087793+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:18:58.9932815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.55, 13.107.246.69, 13.107.246.51] + +2025-01-08T12:19:02.3753916+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:19:02.8080726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T12:19:24.3078987+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:19:27.7711136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.138, 20.190.148.167] + +2025-01-08T12:19:50.8233624+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:19:51.2997885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::10, 2603:1047:1:a0::c, 2603:1047:1:a0::a] + +2025-01-08T12:19:53.6931506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.4] + +2025-01-08T12:19:59.8922944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.112.26] + +2025-01-08T12:20:00.7580563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.113.21] + +2025-01-08T12:20:27.2770655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 52.109.52.169] + +2025-01-08T12:20:32.2049137+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 13.105.74.50] + +2025-01-08T12:20:32.9548521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.55, 13.107.246.44] + +2025-01-08T12:20:41.7005148+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:20:50.7316221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::10, 2603:1047:1:a0::a, 2603:1047:1:a0::12] + +2025-01-08T12:20:56.6273592+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1143488.7997 ms + +2025-01-08T12:20:56.7682978+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-08T12:20:56.7693211+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-08T12:20:59.9602076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.114.21] + +2025-01-08T12:21:09.8211511+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-08T12:21:09.8220752+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-08T12:21:10.4419477+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 607.6645 ms + +2025-01-08T12:21:11.5427770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.55, 13.107.246.44, 13.107.246.73] + +2025-01-08T12:21:37.9518313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.113.4] + +2025-01-08T12:21:43.6855857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.55, 13.107.246.73, 2620:1ec:bdf::73] + +2025-01-08T12:22:18.4682457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.25] + +2025-01-08T12:22:21.4707067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-08T12:22:27.8740149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.5] + +2025-01-08T12:22:30.0789514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.11] + +2025-01-08T12:22:32.6570970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.113.21] + +2025-01-08T12:22:33.1590813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.55, 2620:1ec:bdf::67, 13.107.246.43] + +2025-01-08T12:22:53.3544774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 13.107.246.73] + +2025-01-08T12:22:56.0022450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-08T12:22:56.4158544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-08T12:22:58.0237127+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T12:22:58.2484387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-01-08T12:22:58.2509006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T12:23:23.8055905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 2603:1046:1406::5] + +2025-01-08T12:23:23.8063567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.11, 20.135.6.5] + +2025-01-08T12:23:54.2186120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T12:23:57.0336046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.11, 13.105.28.1] + +2025-01-08T12:24:03.5443493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T12:24:24.7283005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.165, 20.190.144.136] + +2025-01-08T12:24:31.0936626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.7, 20.135.6.11] + +2025-01-08T12:24:51.3311691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.165, 20.190.148.163] + +2025-01-08T12:24:51.6606128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::a, 2603:1047:1:a0::10, 2603:1047:1:a0::11] + +2025-01-08T12:25:01.2665973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.112.25] + +2025-01-08T12:25:28.7990317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-01-08T12:25:51.0908285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.163, 20.190.144.160] + +2025-01-08T12:26:01.7869855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.113.21] + +2025-01-08T12:27:03.8206279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::a, 2603:1047:1:a0::10, 2603:1047:1:a0::15] + +2025-01-08T12:27:19.2201390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.26] + +2025-01-08T12:27:21.5780116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.163, 40.126.35.64] + +2025-01-08T12:27:27.6065074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154] + +2025-01-08T12:27:33.1288735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.113.21] + +2025-01-08T12:27:53.8344521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::64, 13.107.246.44] + +2025-01-08T12:27:56.6726204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.164, 20.190.148.163] + +2025-01-08T12:27:57.8098843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T12:27:57.9263289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T12:28:03.9527855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T12:28:04.5685059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.5] + +2025-01-08T12:28:06.4301501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-01-08T12:28:18.2847042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T12:28:18.2860152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::64, 13.107.246.73] + +2025-01-08T12:28:20.7990501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::57, 2620:1ec:bdf::64] + +2025-01-08T12:28:20.8003411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 2603:1047:1:168::1d, 2603:1047:1:168::11] + +2025-01-08T12:28:23.9921274+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-01-08T12:29:25.3255660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.148.163, 40.126.35.64] + +2025-01-08T12:29:31.6296502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.11, 20.143.38.2] + +2025-01-08T12:29:51.9827924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.7, 20.135.6.11] + +2025-01-08T12:29:52.2679777+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.136, 20.190.144.160] + +2025-01-08T12:29:54.5046704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.4] + +2025-01-08T12:30:02.7072112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.112.26] + +2025-01-08T12:30:03.2045454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.114.22] + +2025-01-08T12:30:09.7655548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::10, 2603:1047:1:a0::11, 2603:1047:1:a0::13] + +2025-01-08T12:30:29.4530620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T12:30:36.3428883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.5, 20.135.6.7] + +2025-01-08T12:30:40.8201341+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-08T12:30:40.8210206+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-08T12:30:41.4518569+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 617.0371 ms + +2025-01-08T12:31:02.3810359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.114.22] + +2025-01-08T12:31:38.5853482+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.73, 13.107.246.41] + +2025-01-08T12:31:40.6164569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.3] + +2025-01-08T12:31:40.9797507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.73, 13.107.246.74] + +2025-01-08T12:31:58.1342409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.113.5] + +2025-01-08T12:32:20.7267890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.26] + +2025-01-08T12:32:24.8538657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154] + +2025-01-08T12:32:27.8014291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-01-08T12:32:29.0986827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.5, 20.135.6.11] + +2025-01-08T12:32:32.8706116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 20.135.6.5] + +2025-01-08T12:32:34.5988145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-01-08T12:32:40.4484323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.73, 13.107.246.46] + +2025-01-08T12:32:43.7966472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1404::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-08T12:32:54.3727673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.46, 2620:1ec:bdf::64] + +2025-01-08T12:32:59.3473572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8002::154, 185.199.109.133, 185.199.108.133] + +2025-01-08T12:33:04.3883396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-08T12:33:04.3896327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8002::154, 185.199.109.133] + +2025-01-08T12:33:20.9977122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 20.135.6.2] + +2025-01-08T12:33:22.8605681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8000::154, 2606:50c0:8002::154] + +2025-01-08T12:33:22.9268806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::64, 13.107.246.63] + +2025-01-08T12:33:34.1774481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.11] + +2025-01-08T12:34:15.3149566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T12:34:26.4018584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.166, 20.190.144.136] + +2025-01-08T12:34:30.5193782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.2] + +2025-01-08T12:34:52.7912400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.166, 20.190.148.163] + +2025-01-08T12:35:00.5002755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.5] + +2025-01-08T12:35:01.0744050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T12:35:02.4086670+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.166, 20.190.148.166] + +2025-01-08T12:35:03.8798800+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.21] + +2025-01-08T12:35:09.9528322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.113.5] + +2025-01-08T12:35:10.5026421+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::13, 2603:1047:1:a0::12, 2603:1047:1:a0::14] + +2025-01-08T12:35:29.3535882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1404::4, 52.109.124.29, 52.109.52.169] + +2025-01-08T12:35:39.5351035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::44, 13.107.246.46] + +2025-01-08T12:36:24.1969947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.166, 20.190.148.163] + +2025-01-08T12:36:53.4285418+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:37:14.4860257+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:37:35.5231676+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:37:38.0004661+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:37:40.3040651+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:37:40.7268438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.112.26] + +2025-01-08T12:38:14.7029292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.22] + +2025-01-08T12:38:20.8103493+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:38:26.0128861+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 2606:50c0:8001::154] + +2025-01-08T12:38:51.7385173+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:38:52.0227629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::44, 13.107.246.69] + +2025-01-08T12:38:54.1424095+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:38:59.5570746+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:38:59.6784077+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1082892.6355 ms + +2025-01-08T12:38:59.8012560+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-08T12:38:59.8029290+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-08T12:38:59.8171339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T12:39:02.6941542+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 2877.7607 ms + +2025-01-08T12:39:02.7136423+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-08T12:39:02.7156728+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-08T12:39:03.3073001+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/_alive responded 200 in 579.407 ms + +2025-01-08T12:39:03.6729015+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_alive responded 200 in 353.4527 ms + +2025-01-08T12:39:21.5328943+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:39:26.5407960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.5] + +2025-01-08T12:39:30.5810399+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:39:30.8826738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.163, 20.190.148.166] + +2025-01-08T12:39:53.8967403+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:39:55.9018646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-08T12:40:01.5009211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-01-08T12:40:03.3364865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.3] + +2025-01-08T12:40:09.1350517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.112.26] + +2025-01-08T12:40:10.2268767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.113.6] + +2025-01-08T12:40:12.5661467+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 757.6387 ms + +2025-01-08T12:40:20.4144422+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:40:22.2902191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-01-08T12:40:29.7135704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.191] + +2025-01-08T12:40:30.1318589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.167, 20.190.148.164] + +2025-01-08T12:40:33.5709955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::a, 2603:1047:1:a0::14, 2603:1047:1:a0::10] + +2025-01-08T12:40:37.2171946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.52, 2620:1ec:bdf::44] + +2025-01-08T12:40:45.2968322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::44, 13.107.246.52] + +2025-01-08T12:40:52.0302144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.5, 13.105.74.50] + +2025-01-08T12:41:44.9161500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.4] + +2025-01-08T12:42:08.6316272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 2603:1047:1:168::24, 20.190.144.165] + +2025-01-08T12:42:29.1332366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.137, 20.190.144.161] + +2025-01-08T12:42:38.2848978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::44, 13.107.246.42] + +2025-01-08T12:42:40.6231150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.42, 13.107.246.52] + +2025-01-08T12:42:41.8679481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.114.25] + +2025-01-08T12:43:03.3930415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.5, 20.135.6.11] + +2025-01-08T12:43:15.3438746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.112.22] + +2025-01-08T12:43:27.0393157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133] + +2025-01-08T12:43:28.3740943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-01-08T12:43:29.6614540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-08T12:44:04.7170649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-01-08T12:44:19.2118407+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.11, 13.105.74.50] + +2025-01-08T12:44:22.4194354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.11, 20.143.38.2] + +2025-01-08T12:44:31.7394774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.167, 20.190.144.161] + +2025-01-08T12:44:32.0115223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 2603:1047:1:168::26, 20.190.148.167] + +2025-01-08T12:44:38.1952185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.167, 20.190.148.166] + +2025-01-08T12:44:44.4456460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 2603:1046:1406::5] + +2025-01-08T12:44:54.6623505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.167, 20.190.148.163] + +2025-01-08T12:44:54.9378983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.166, 2603:1047:1:168::26] + +2025-01-08T12:44:57.0950481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-01-08T12:45:03.0647535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-01-08T12:45:04.6595452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.4] + +2025-01-08T12:45:06.7409868+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-01-08T12:45:09.7518984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-01-08T12:45:11.0099718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.114.6] + +2025-01-08T12:45:20.5799488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.5, 20.135.6.11] + +2025-01-08T12:45:22.7410685+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8000::154] + +2025-01-08T12:45:23.8903191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8003::154] + +2025-01-08T12:45:25.8513217+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-08T12:45:26.4132119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-01-08T12:45:28.5858436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.5] + +2025-01-08T12:45:38.3554303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 20.190.144.137, 20.190.144.166] + +2025-01-08T12:45:43.8363243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 2603:1047:1:168::26, 2603:1047:1:168::24] + +2025-01-08T12:45:45.9299985+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 13.107.246.52, 2620:1ec:bdf::45] + +2025-01-08T12:45:46.1977747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.11] + +2025-01-08T12:45:46.7506922+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 2603:1047:1:168::24, 2603:1047:1:168::11] + +2025-01-08T12:46:13.9213912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 20.233.83.146] + +2025-01-08T12:46:14.4126214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-01-08T12:46:23.5919181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.167, 20.190.148.162] + +2025-01-08T12:46:29.9802231+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T12:46:30.1967762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.143.38.2] + +2025-01-08T12:46:41.0968505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.42, 13.107.246.52] + +2025-01-08T12:46:41.5629584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::12, 2603:1047:1:a0::15, 2603:1047:1:a0::13] + +2025-01-08T12:46:56.9158069+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:47:07.3444833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-01-08T12:47:17.2504611+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:47:36.1855639+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:48:00.0641890+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:48:21.4080699+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:48:21.8219907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.112.25] + +2025-01-08T12:48:22.3478788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.22] + +2025-01-08T12:48:43.3775955+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:48:48.5633728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8003::154] + +2025-01-08T12:48:50.3284920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.44, 2620:1ec:bdf::45] + +2025-01-08T12:48:50.8823635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.11] + +2025-01-08T12:48:53.9653847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-08T12:49:18.2897761+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:49:22.5146026+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:49:27.2645814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-01-08T12:49:28.1708942+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:49:42.8108150+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-08T12:49:42.8119013+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-08T12:49:43.3591501+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 537.5244 ms + +2025-01-08T12:49:52.1408370+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:49:52.4470613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.167, 20.190.144.165] + +2025-01-08T12:49:54.9023442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.67, 13.107.246.44] + +2025-01-08T12:49:56.2879400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.136, 20.190.148.163] + +2025-01-08T12:50:10.2887126+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:50:13.1786782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-08T12:50:13.4099228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.113.25] + +2025-01-08T12:50:14.5173263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.116.3] + +2025-01-08T12:50:21.9522490+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T12:50:22.0848098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-01-08T12:50:50.0762256+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T12:50:50.4906401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.11] + +2025-01-08T12:50:50.9800597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T12:50:51.7055467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.136, 20.190.148.164] + +2025-01-08T12:51:41.6423020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.44, 2620:1ec:bdf::45] + +2025-01-08T12:51:41.9394100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::11, 2603:1047:1:a0::14, 2603:1047:1:a0::10] + +2025-01-08T12:52:34.0802369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.166, 20.190.144.136] + +2025-01-08T12:52:56.7781982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.44, 13.107.246.51] + +2025-01-08T12:53:23.4704890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.25] + +2025-01-08T12:53:23.7283752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.22] + +2025-01-08T12:53:49.4596425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133] + +2025-01-08T12:53:50.7659254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8001::154, 2606:50c0:8000::154] + +2025-01-08T12:53:51.4201559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.42, 13.107.246.51] + +2025-01-08T12:53:51.9456300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.74.49] + +2025-01-08T12:53:53.7154261+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133] + +2025-01-08T12:54:22.8337783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::71, 13.107.246.42] + +2025-01-08T12:54:38.4516477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::71, 13.107.246.73] + +2025-01-08T12:54:53.1733298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.138, 20.190.148.166] + +2025-01-08T12:55:00.2237430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.52.169] + +2025-01-08T12:55:00.7472007+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.51] + +2025-01-08T12:55:01.3953814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.138, 20.190.144.136] + +2025-01-08T12:55:16.9589692+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-08T12:55:17.1767189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.4] + +2025-01-08T12:55:19.6604057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.74.50] + +2025-01-08T12:55:25.0568053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8002::154, 2606:50c0:8001::154] + +2025-01-08T12:55:25.0585439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.50, 20.143.38.0] + +2025-01-08T12:55:51.3573244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 13.105.74.50] + +2025-01-08T12:55:51.6535682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T12:55:57.2776814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.36, 13.107.246.74, 13.107.246.73] + +2025-01-08T12:56:16.4083753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.113.21] + +2025-01-08T12:56:42.9402910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::14, 2603:1047:1:a0::11, 2603:1047:1:a0::8] + +2025-01-08T12:57:34.2419512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.136, 20.190.148.163] + +2025-01-08T12:57:38.4931658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.137, 2603:1047:1:168::2e] + +2025-01-08T12:57:39.7381793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.113.6] + +2025-01-08T12:58:24.3359776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.114.25] + +2025-01-08T12:58:24.5922542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-08T12:58:55.3412937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T12:58:55.3426177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-01-08T12:58:56.6620111+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8002::154, 2606:50c0:8003::154] + +2025-01-08T12:58:58.0873901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.137, 2603:1047:1:168::26] + +2025-01-08T12:58:59.0906683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T12:59:13.8229773+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-08T12:59:13.8242005+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-08T12:59:14.4452393+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 600.4201 ms + +2025-01-08T12:59:28.4673916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 13.105.74.49] + +2025-01-08T12:59:53.5812410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.163, 20.190.148.166] + +2025-01-08T12:59:58.5965884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 2603:1047:1:168::10, 20.190.148.166] + +2025-01-08T13:00:01.9468124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.167, 20.190.148.165] + +2025-01-08T13:00:01.9479016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 2603:1047:1:168::10, 20.190.144.161] + +2025-01-08T13:00:13.0224576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.166] + +2025-01-08T13:00:16.2972197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 2603:1047:1:168::10, 20.190.148.167] + +2025-01-08T13:00:22.7272374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-01-08T13:00:23.0010562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.3] + +2025-01-08T13:00:24.5764012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8002::154, 2606:50c0:8000::154] + +2025-01-08T13:00:25.4376931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-01-08T13:00:29.2890447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-08T13:00:29.2910596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.2] + +2025-01-08T13:00:30.4283983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8002::154, 2606:50c0:8003::154] + +2025-01-08T13:00:52.3041365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.2, 13.105.74.50] + +2025-01-08T13:00:52.6080722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.191] + +2025-01-08T13:00:52.7026234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.148.164] + +2025-01-08T13:00:54.5087748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::10, 20.190.148.167, 20.190.148.164] + +2025-01-08T13:00:58.4349089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.67] + +2025-01-08T13:01:11.3880122+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T13:01:11.3890323+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T13:01:12.0143348+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 599.5838 ms + +2025-01-08T13:01:12.9158611+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 252.2012 ms + +2025-01-08T13:01:13.9114605+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 299.9257 ms + +2025-01-08T13:01:15.3586737+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 355.7667 ms + +2025-01-08T13:01:19.8391719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-01-08T13:01:30.7452982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.4] + +2025-01-08T13:01:43.7144908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 2620:1ec:bdf::36] + +2025-01-08T13:02:06.6082512+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1382929.5387 ms + +2025-01-08T13:02:06.7519037+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-08T13:02:06.7537442+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-08T13:02:10.6862317+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:02:32.2153604+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:02:48.2348285+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:02:53.8035553+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:02:54.5519445+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:03:11.6908212+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 534.3875 ms + +2025-01-08T13:03:16.1050650+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:03:37.8504441+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:03:38.1269641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.2, 20.135.6.11] + +2025-01-08T13:04:12.3434217+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-08T13:04:12.3451075+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-01-08T13:04:30.2805864+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-01-08T13:04:30.2828477+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-01-08T13:04:30.8799264+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 587.4399 ms + +2025-01-08T13:04:31.2601685+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-01-08T13:04:31.2632981+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-01-08T13:04:31.6914872+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 144924.6531 ms +System.OperationCanceledException: The operation was canceled. + + +2025-01-08T13:04:31.7295804+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 470.2673 ms + +2025-01-08T13:04:32.0123051+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 723.1478 ms + +2025-01-08T13:04:39.5774896+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T13:04:39.5783950+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T13:04:40.6202038+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 811.7307 ms + +2025-01-08T13:04:40.6848876+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.4599 ms + +2025-01-08T13:04:51.5045244+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 334.4763 ms + +2025-01-08T13:04:51.5682431+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.9232 ms + +2025-01-08T13:05:09.8903530+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T13:05:09.8918988+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T13:05:09.9056038+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T13:05:09.9069917+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T13:05:09.9158214+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-08T13:05:09.9179815+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-08T13:05:10.1418205+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 209.0975 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T13:05:10.2816698+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 362.0071 ms + +2025-01-08T13:05:10.3902180+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T13:05:10.3916938+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T13:05:10.7464084+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 604.1411 ms + +2025-01-08T13:05:10.7697424+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T13:05:10.7715238+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T13:05:10.9919421+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 202.9822 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T13:05:11.4080011+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 415.9247 ms + +2025-01-08T13:05:22.9186668+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.3442 ms + +2025-01-08T13:05:28.5091682+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T13:05:28.5125629+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T13:06:02.2834942+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:06:24.2851091+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:06:24.7549344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.167, 20.190.148.164] + +2025-01-08T13:06:26.0224244+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:06:26.5360794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2d, 2603:1047:1:168::10, 2603:1047:1:168::26] + +2025-01-08T13:06:32.4921474+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:06:32.7998694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.74] + +2025-01-08T13:06:33.5197760+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:06:34.6461494+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-08T13:06:56.4499248+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:06:57.5919353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-01-08T13:07:01.8294250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.26, 140.82.113.25] + +2025-01-08T13:07:02.9657540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-01-08T13:07:04.0063820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-01-08T13:07:05.7591197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 2606:50c0:8001::154] + +2025-01-08T13:07:07.1007920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T13:07:08.0616680+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.64, 2620:1ec:bdf::44] + +2025-01-08T13:07:09.2373209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.74.50, 13.105.74.49] + +2025-01-08T13:07:10.6523057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T13:07:11.1013857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.136, 20.190.144.161] + +2025-01-08T13:07:12.8322152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.73, 2620:1ec:bdf::73] + +2025-01-08T13:08:13.4034147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.46, 13.107.246.73] + +2025-01-08T13:08:40.1987095+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.74.50, 20.135.6.11] + +2025-01-08T13:08:55.8874268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:158::5, 2603:1046:2000:148::3, 2603:1047:1:150::3] + +2025-01-08T13:09:12.3933972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.66, 13.107.246.64] + +2025-01-08T13:09:13.1010105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.11, 13.105.74.49] + +2025-01-08T13:09:17.1866053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::42, 2620:1ec:bdf::65, 13.107.246.46] + +2025-01-08T13:10:05.6092771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.34, 20.190.141.35, 20.190.141.36] + +2025-01-08T13:10:19.7028289+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T13:10:19.7047655+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T13:10:20.1029606+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 388.5448 ms + +2025-01-08T13:10:20.1752716+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.4739 ms + +2025-01-08T13:10:43.5600794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::42, 13.107.246.45, 2620:1ec:bdf::65] + +2025-01-08T13:10:49.0319154+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T13:10:49.0329482+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T13:10:49.4447939+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://cdnjs.cloudflare.com/ajax/libs/d3/7.3.0/d3.min.js responded 502 in 203.5567 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T13:10:51.0805130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-08T13:10:51.7826612+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://cdnjs.cloudflare.com/ajax/libs/d3/7.3.0/d3.min.js responded 200 in 2337.9489 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T13:11:03.5379181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T13:11:33.2428690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 2620:1ec:bdf::42] + +2025-01-08T13:11:33.2439446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.73, 2620:1ec:bdf::73] + +2025-01-08T13:11:35.3641022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T13:11:35.3649596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-01-08T13:11:35.4752658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8001::154] + +2025-01-08T13:11:37.0619988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-08T13:11:47.9522456+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.74.49, 40.90.133.100] + +2025-01-08T13:11:59.4515045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-01-08T13:12:02.9506948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.25] + +2025-01-08T13:12:05.1106853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.5] + +2025-01-08T13:12:05.4029218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.21, 140.82.112.22] + +2025-01-08T13:12:06.5427112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-08T13:12:09.0218801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.26] + +2025-01-08T13:12:10.9908588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.73, 13.107.246.35] + +2025-01-08T13:12:11.2926862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.74.49, 40.90.133.97] + +2025-01-08T13:12:13.8256867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.9, 13.105.74.49] + +2025-01-08T13:12:44.2164943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 13.107.246.73, 2620:1ec:bdf::73] + +2025-01-08T13:13:02.6577441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.4] + +2025-01-08T13:13:22.6367549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-08T13:13:26.8730365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.113.5] + +2025-01-08T13:13:42.0501302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.9] + +2025-01-08T13:14:01.6766372+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:150::3, 2603:1046:2000:158::5, 2603:1046:2000:158::3] + +2025-01-08T13:14:12.6899702+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T13:14:12.6908781+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T13:14:13.0215666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.35, 2620:1ec:bdf::73] + +2025-01-08T13:14:13.1905852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 2620:1ec:bdf::42] + +2025-01-08T13:14:13.2605014+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 536.5351 ms + +2025-01-08T13:14:18.6643801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 52.109.52.169] + +2025-01-08T13:15:07.4720804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.135.6.11] + +2025-01-08T13:15:07.5960531+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.35, 20.190.141.37, 20.190.141.38] + +2025-01-08T13:15:52.0098360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-08T13:16:03.5432009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T13:16:36.6897042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T13:16:37.0793189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-08T13:16:37.1490924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 13.107.246.73, 13.107.246.67] + +2025-01-08T13:16:38.9652996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T13:16:45.9562873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.74] + +2025-01-08T13:16:57.2787920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-01-08T13:17:06.0250309+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:17:06.8527315+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:17:07.0824340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-08T13:17:28.1206799+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:17:28.5695300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-01-08T13:17:33.7944915+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:17:34.2053760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-01-08T13:17:55.4686585+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:18:18.5910044+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:18:18.8317642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.35] + +2025-01-08T13:18:40.8900678+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:18:57.5337736+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:18:59.2302331+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:18:59.6892644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.135.6.5] + +2025-01-08T13:19:21.4339710+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:19:50.4083575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::4, 2603:1047:1:150::2, 2603:1046:2000:148::5] + +2025-01-08T13:19:52.4287582+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:19:52.7196141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-08T13:19:53.7493605+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:19:55.4608606+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:19:56.6299940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.113.3] + +2025-01-08T13:19:57.6817743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.25] + +2025-01-08T13:19:58.5001218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.113.6] + +2025-01-08T13:20:21.3020240+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:20:21.3679354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.73, 2620:1ec:bdf::38] + +2025-01-08T13:20:22.4236357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-08T13:20:23.2397580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.67] + +2025-01-08T13:20:24.2895138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.135.6.11] + +2025-01-08T13:20:24.4586794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.166, 20.190.148.167] + +2025-01-08T13:20:48.1771130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.136, 20.190.144.138] + +2025-01-08T13:20:53.2641045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-08T13:21:01.8746087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.2] + +2025-01-08T13:21:04.4701431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T13:21:18.0751046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.74] + +2025-01-08T13:21:24.4443610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.144.138, 2603:1047:1:168::2f] + +2025-01-08T13:21:25.5749122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.165, 20.190.148.167] + +2025-01-08T13:21:25.8456129+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2f, 2603:1047:1:168::27, 2603:1047:1:168::25] + +2025-01-08T13:21:36.6907267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-08T13:21:36.8482674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-01-08T13:21:36.8495204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::38, 13.107.246.74] + +2025-01-08T13:21:38.2094214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::38, 13.107.246.45] + +2025-01-08T13:21:38.5761095+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.60, 13.107.246.73] + +2025-01-08T13:21:45.7572987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.51, 13.107.246.60] + +2025-01-08T13:21:48.2141025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.45, 13.107.246.73] + +2025-01-08T13:21:57.5880216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.4] + +2025-01-08T13:22:03.7458602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-01-08T13:22:07.0285204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.3] + +2025-01-08T13:22:08.2740487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.112.26] + +2025-01-08T13:22:13.8939224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-01-08T13:22:19.3751779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 2603:1047:1:168::2f, 20.190.148.165] + +2025-01-08T13:22:29.5424495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.113.6] + +2025-01-08T13:22:34.8505615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.112.22] + +2025-01-08T13:22:37.8732292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.73, 13.107.246.44] + +2025-01-08T13:22:56.1276367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-01-08T13:23:02.5614115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::38, 13.107.246.73] + +2025-01-08T13:23:42.8276063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 52.109.52.169] + +2025-01-08T13:23:57.5817278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.2, 20.135.6.9] + +2025-01-08T13:24:02.5863567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 2603:1046:1404::1] + +2025-01-08T13:24:53.6874044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-01-08T13:24:59.0473849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.112.25] + +2025-01-08T13:25:13.4268135+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.9, 20.135.6.7] + +2025-01-08T13:25:21.7368334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.73, 13.107.246.44] + +2025-01-08T13:25:22.9843156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 2603:1046:1406::5] + +2025-01-08T13:25:23.9984785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.5] + +2025-01-08T13:25:24.8481149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.66, 13.107.246.73] + +2025-01-08T13:25:48.7189018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.167, 20.190.148.162] + +2025-01-08T13:25:49.0819475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.144.136, 2603:1047:1:168::2d] + +2025-01-08T13:25:54.4738575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-01-08T13:26:01.5219134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.144.136, 2603:1047:1:168::27] + +2025-01-08T13:26:05.2158091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T13:26:17.2055654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T13:26:25.3686145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::36, 13.107.246.51] + +2025-01-08T13:26:26.5053750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.136, 20.190.148.163] + +2025-01-08T13:26:26.7584576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.148.167, 20.190.144.136] + +2025-01-08T13:26:41.0637870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-08T13:26:42.1927607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8002::154] + +2025-01-08T13:26:42.7624782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.66, 13.107.246.44] + +2025-01-08T13:26:44.1912557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-08T13:26:47.5841738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 2603:1046:1404::1] + +2025-01-08T13:26:49.5701896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.66, 2620:1ec:bdf::73] + +2025-01-08T13:26:58.4332091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.7, 20.143.38.0] + +2025-01-08T13:26:58.4356247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.136, 20.190.144.138] + +2025-01-08T13:27:04.5116654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-01-08T13:27:13.4801269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.167, 20.190.144.136] + +2025-01-08T13:27:19.9138952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154] + +2025-01-08T13:27:20.7321580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.113.26] + +2025-01-08T13:27:35.5891106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.112.22] + +2025-01-08T13:27:50.6712259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.112.25] + +2025-01-08T13:27:58.7311995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-01-08T13:28:17.4927891+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::65, 13.107.246.66] + +2025-01-08T13:28:17.4952589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::36, 2620:1ec:bdf::67] + +2025-01-08T13:28:20.4477548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::36, 2620:1ec:bdf::73] + +2025-01-08T13:28:44.4628569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.41, 2620:1ec:bdf::65] + +2025-01-08T13:29:02.7208971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T13:29:11.5995450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.133, 20.190.166.131, 20.190.166.132] + +2025-01-08T13:29:31.0245869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::36, 13.107.246.71] + +2025-01-08T13:29:39.1133716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.16, 20.135.6.7] + +2025-01-08T13:30:45.2069652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::45, 13.107.246.41] + +2025-01-08T13:30:49.0083924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.148.167, 2603:1047:1:168::27] + +2025-01-08T13:30:50.8106168+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 2603:1047:1:168::27, 2603:1047:1:168::2d] + +2025-01-08T13:30:52.3054222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 2603:1047:1:168::27, 20.190.148.166] + +2025-01-08T13:30:54.9813882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 2606:4700::6811:190e] + +2025-01-08T13:31:05.5486916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.166, 2603:1047:1:168::2d] + +2025-01-08T13:31:07.1792572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.4] + +2025-01-08T13:31:07.5401051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 20.135.6.7] + +2025-01-08T13:31:08.6605852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T13:31:10.6912016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 20.135.6.5] + +2025-01-08T13:31:25.9427716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.71, 2620:1ec:bdf::73] + +2025-01-08T13:31:26.7641616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 2603:1047:1:168::2d, 2603:1047:1:168::1c] + +2025-01-08T13:31:44.2001571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T13:31:44.2025608+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8001::154] + +2025-01-08T13:31:44.2704873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.71, 2620:1ec:bdf::67] + +2025-01-08T13:31:46.7315375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::67, 2620:1ec:bdf::36] + +2025-01-08T13:31:48.2808550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T13:31:49.7082027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.71, 2620:1ec:bdf::67] + +2025-01-08T13:31:49.7106556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::57, 2620:1ec:bdf::45] + +2025-01-08T13:31:56.3035059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.3] + +2025-01-08T13:31:57.0773539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::13, 20.190.148.166, 2603:1047:1:168::2d] + +2025-01-08T13:32:04.9938054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-01-08T13:32:12.1299271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.37, 20.190.141.32, 20.190.141.35] + +2025-01-08T13:32:21.8049863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-01-08T13:32:22.4448769+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.113.25] + +2025-01-08T13:32:36.4815717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.113.21] + +2025-01-08T13:32:57.9935045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8000::154] + +2025-01-08T13:33:21.3296977+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T13:33:21.3307613+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T13:33:21.7172134+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 374.2416 ms + +2025-01-08T13:33:21.8034875+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.267 ms + +2025-01-08T13:33:21.8203804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.71, 2620:1ec:bdf::36] + +2025-01-08T13:33:32.3088905+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 78.5354 ms + +2025-01-08T13:33:32.3821185+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.969 ms + +2025-01-08T13:33:42.4543612+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-08T13:33:42.4553842+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-08T13:33:43.3785485+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-08T13:33:43.3796627+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-01-08T13:33:44.3628397+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 1772.0383 ms + +2025-01-08T13:33:44.5771674+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/Default.json responded 404 in 1158.1477 ms + +2025-01-08T13:33:45.3244014+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/ExtMgr/CompatList/CompatibilityList.xml responded 200 in 238.357 ms + +2025-01-08T13:33:45.4656115+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 964.451 ms + +2025-01-08T13:33:45.6666003+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 668.8343 ms + +2025-01-08T13:33:45.8442158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-08T13:33:46.4991329+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T13:33:46.6141627+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 185.5437 ms + +2025-01-08T13:33:46.6460291+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 3127.5107 ms + +2025-01-08T13:33:46.8288181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::45, 2620:1ec:bdf::57] + +2025-01-08T13:33:47.0606344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::66, 13.107.246.71] + +2025-01-08T13:33:48.2130245+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 165.9829 ms + +2025-01-08T13:33:49.0563011+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 236.4796 ms + +2025-01-08T13:33:49.0835318+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 233.4141 ms + +2025-01-08T13:33:49.5842314+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 750.5943 ms + +2025-01-08T13:33:50.3334012+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 183.7047 ms + +2025-01-08T13:33:50.5289652+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 177.9409 ms + +2025-01-08T13:33:51.4324010+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 374.9725 ms + +2025-01-08T13:33:51.6812872+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 173.9188 ms + +2025-01-08T13:33:51.7029276+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 187.7758 ms + +2025-01-08T13:33:51.8950537+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 374.8717 ms + +2025-01-08T13:33:52.0329607+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 517.8154 ms + +2025-01-08T13:33:52.0593294+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T13:33:52.0605955+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T13:33:52.2069588+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 543.0622 ms + +2025-01-08T13:33:52.2784843+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 758.3019 ms + +2025-01-08T13:33:52.3549833+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T13:33:52.3559512+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T13:33:52.3709073+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 309.9146 ms + +2025-01-08T13:33:52.6508969+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 1512.0819 ms + +2025-01-08T13:33:52.9620228+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 582.4133 ms + +2025-01-08T13:33:53.1339749+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 337.7154 ms + +2025-01-08T13:33:53.4811316+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 323.3889 ms + +2025-01-08T13:33:53.6299277+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 836.233 ms + +2025-01-08T13:33:53.6303362+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 836.6389 ms + +2025-01-08T13:33:53.6715870+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 327.7051 ms + +2025-01-08T13:33:53.6854583+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 885.2194 ms + +2025-01-08T13:33:54.7540052+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +marketplace.visualstudio.com->127.0.0.1 + +2025-01-08T13:33:54.7553390+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +marketplace.visualstudio.com->::1 + +2025-01-08T13:33:55.8049156+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 1248.9217 ms + +2025-01-08T13:33:56.0832115+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://marketplace.visualstudio.com/_apis/public/gallery/extensionquery responded 200 in 952.9993 ms + +2025-01-08T13:33:56.1289220+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 333.4418 ms + +2025-01-08T13:33:56.1671833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T13:33:57.3875860+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 167.9984 ms + +2025-01-08T13:33:58.0871494+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 169.103 ms + +2025-01-08T13:34:00.1088847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.13] + +2025-01-08T13:34:01.7842074+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 171.1153 ms + +2025-01-08T13:34:01.8792086+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 172.1349 ms + +2025-01-08T13:34:03.2067640+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 161.6591 ms + +2025-01-08T13:34:03.3763875+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 174.9979 ms + +2025-01-08T13:34:04.1281182+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 165.4659 ms + +2025-01-08T13:34:05.9578751+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 150.9942 ms + +2025-01-08T13:34:06.4904092+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 169.5083 ms + +2025-01-08T13:34:06.5095275+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 172.5663 ms + +2025-01-08T13:34:11.2308408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 20.135.6.11] + +2025-01-08T13:34:11.4397477+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 162.5791 ms + +2025-01-08T13:34:12.8212481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T13:34:12.9406368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.67, 20.190.166.132, 20.190.166.131] + +2025-01-08T13:34:18.1491978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::5, 2603:1046:2000:158::3, 2603:1046:2000:158::4] + +2025-01-08T13:34:21.4513861+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +app.vssps.visualstudio.com->127.0.0.1 + +2025-01-08T13:34:21.4524544+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +app.vssps.visualstudio.com->::1 + +2025-01-08T13:34:22.8999843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-08T13:34:23.1924016+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://app.vssps.visualstudio.com/_apis/connectionData responded 200 in 1294.7502 ms + +2025-01-08T13:34:23.2348767+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.vstsusers.visualstudio.com->127.0.0.1 + +2025-01-08T13:34:23.2358263+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.vstsusers.visualstudio.com->::1 + +2025-01-08T13:34:28.2872041+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/connectionData responded 200 in 4867.1741 ms + +2025-01-08T13:34:28.5312189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-08T13:34:28.7114203+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me responded 200 in 407.0418 ms + +2025-01-08T13:34:28.9813201+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Locations responded 200 in 246.8641 ms + +2025-01-08T13:34:29.2498033+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Settings/ProfileRefreshInterval responded 200 in 252.3552 ms + +2025-01-08T13:34:29.7631210+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Attributes responded 200 in 497.0801 ms + +2025-01-08T13:34:30.9082608+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/ClientNotification/Subscriptions/me responded 200 in 1611.9809 ms + +2025-01-08T13:34:31.0710008+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->127.0.0.1 + +2025-01-08T13:34:31.0722748+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->::1 + +2025-01-08T13:34:31.6527224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::66, 13.107.246.59] + +2025-01-08T13:34:35.2469542+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://clientnotification-userprodscus1-1.servicebus.windows.net/$servicebus/websocket responded 101 in 1673.5574 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T13:34:35.4211667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +clientnotification-userprodscus1-1.servicebus.windows.net:443->[40.84.185.67] + +2025-01-08T13:34:38.1159285+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://app.vssps.visualstudio.com/_apis/connectionData responded 200 in 451.9051 ms + +2025-01-08T13:34:38.7833210+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/connectionData responded 200 in 651.8938 ms + +2025-01-08T13:34:38.9669210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::45, 2620:1ec:bdf::53] + +2025-01-08T13:34:39.1402432+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me responded 200 in 346.2989 ms + +2025-01-08T13:34:39.3872333+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Locations responded 200 in 243.3169 ms + +2025-01-08T13:34:39.6329491+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Settings/ProfileRefreshInterval responded 200 in 241.4063 ms + +2025-01-08T13:34:39.9149172+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Attributes responded 200 in 271.8832 ms + +2025-01-08T13:34:40.0949686+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Avatar responded 200 in 441.1739 ms + +2025-01-08T13:34:40.6239713+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Avatar responded 200 in 970.1077 ms + +2025-01-08T13:34:41.7639408+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +PUT https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Attributes/VisualStudio.14_PreferredProfile;PreferredProfile responded 204 in 318.2099 ms + +2025-01-08T13:34:42.3650390+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Attributes responded 200 in 499.244 ms + +2025-01-08T13:35:00.7718023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-01-08T13:35:01.2645259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-08T13:35:02.5326562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.7] + +2025-01-08T13:35:04.0370855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.5] + +2025-01-08T13:35:08.4947373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.11] + +2025-01-08T13:35:10.1559673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.4] + +2025-01-08T13:35:23.7113574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1047:1:150::3, 2603:1046:2000:148::5] + +2025-01-08T13:35:24.0437848+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 472.3283 ms + +2025-01-08T13:35:24.6787288+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/discovery/instance responded 200 in 363.6347 ms + +2025-01-08T13:35:41.9735093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::66, 13.107.246.45] + +2025-01-08T13:35:44.0413949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T13:35:45.4323183+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T13:35:45.7989471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::53, 2620:1ec:bdf::57] + +2025-01-08T13:35:55.9426390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-08T13:36:10.6402250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.113.6] + +2025-01-08T13:36:14.0696216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.68, 20.190.166.67, 20.190.166.132] + +2025-01-08T13:36:28.2502811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T13:36:34.6684865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::57, 13.107.246.60] + +2025-01-08T13:36:43.3331533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T13:36:50.3739797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T13:36:51.0099067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::74, 13.107.246.60] + +2025-01-08T13:36:51.3526813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.44, 2620:1ec:bdf::66] + +2025-01-08T13:36:52.4478315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T13:37:06.7692973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-01-08T13:37:11.8352121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.5] + +2025-01-08T13:37:12.9193819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::74, 13.107.246.44] + +2025-01-08T13:37:13.7464268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1047:1:150::3, 20.190.141.35] + +2025-01-08T13:37:20.2082529+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:37:25.2095564+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:37:25.5575176+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:37:46.6013133+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:38:07.9029376+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:38:11.6679244+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:38:12.7894084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-01-08T13:38:32.3699333+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T13:38:32.3712509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-08T13:38:33.6324086+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:40:13.5962633+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T13:40:14.0196430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.113.6] + +2025-01-08T13:40:19.7904884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.112.25] + +2025-01-08T13:40:20.8424296+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:40:21.2618801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.21] + +2025-01-08T13:40:42.7952018+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:41:04.9278391+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:41:30.7771105+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:41:31.9261354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 2606:50c0:8001::154] + +2025-01-08T13:41:53.8286962+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:42:06.2963518+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:42:06.3730484+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-08T13:42:28.1666771+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:42:28.4200947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 13.107.246.73] + +2025-01-08T13:42:31.5813341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 20.135.6.11] + +2025-01-08T13:42:40.1369969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.133, 20.190.166.67, 20.190.166.132] + +2025-01-08T13:42:46.4836533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1047:1:150::3, 2603:1046:2000:158::4] + +2025-01-08T13:42:52.4249039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-08T13:42:54.8015368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-08T13:42:55.6900076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T13:42:58.1823398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-08T13:42:59.6879348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-08T13:43:00.7548387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T13:43:01.7609082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.113.5] + +2025-01-08T13:43:06.9910890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.113.3] + +2025-01-08T13:43:14.4393694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-08T13:43:16.3781343+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.66, 13.107.246.74] + +2025-01-08T13:43:16.9214842+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.164, 20.190.144.160] + +2025-01-08T13:43:18.3523773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-01-08T13:43:18.3547927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.4] + +2025-01-08T13:43:31.7567687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 2620:1ec:bdf::66] + +2025-01-08T13:44:12.2817841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-01-08T13:44:41.7452117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-08T13:44:42.6828642+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-08T13:44:42.6846438+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-08T13:44:43.1624735+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/rustdesk/rustdesk/releases/latest responded 302 in 447.293 ms + +2025-01-08T13:44:43.2907224+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/rustdesk/rustdesk/releases/tag/1.3.6 responded 200 in 115.6633 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T13:44:55.2392210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 20.135.6.2] + +2025-01-08T13:45:08.0989835+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T13:45:08.1004905+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T13:45:08.4373867+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 318.7584 ms + +2025-01-08T13:45:08.5031731+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.9167 ms + +2025-01-08T13:45:20.3351734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.25] + +2025-01-08T13:45:21.9077976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-08T13:45:23.2186664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1047:1:150::3, 2603:1046:2000:158::5] + +2025-01-08T13:45:34.8289318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-08T13:45:39.9523732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.2, 20.135.6.9] + +2025-01-08T13:45:42.6005924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T13:45:45.5427882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T13:45:47.1839788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-01-08T13:46:06.2484343+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-01-08T13:46:06.4572081+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.9814 ms + +2025-01-08T13:46:06.5293449+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.0027 ms + +2025-01-08T13:46:23.3951453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.164, 20.190.144.162] + +2025-01-08T13:46:29.0617782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-08T13:46:36.2723984+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 83.2556 ms + +2025-01-08T13:46:36.3450763+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.186 ms + +2025-01-08T13:46:39.1561021+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T13:46:39.1577678+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T13:46:48.5087350+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 355.3446 ms + +2025-01-08T13:46:48.5869057+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 71.4464 ms + +2025-01-08T13:47:02.8584807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.162, 20.190.144.139] + +2025-01-08T13:47:04.4898658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.3] + +2025-01-08T13:47:10.8926114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 13.107.246.74] + +2025-01-08T13:47:11.2737224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 13.107.246.74] + +2025-01-08T13:47:11.5988849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 20.135.6.2] + +2025-01-08T13:47:15.2153422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-01-08T13:47:15.2247600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.5] + +2025-01-08T13:47:15.2258977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.114.21] + +2025-01-08T13:47:15.5457467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.2, 20.135.6.9] + +2025-01-08T13:47:15.5474059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.139, 20.190.148.165] + +2025-01-08T13:47:15.5488416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.136, 20.190.144.160] + +2025-01-08T13:47:32.6560364+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-01-08T13:47:32.6572553+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-01-08T13:47:33.5322083+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->::1 + +2025-01-08T13:47:33.5332206+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-01-08T13:47:34.0873988+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.6416 ms + +2025-01-08T13:47:34.1536164+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.6926 ms + +2025-01-08T13:47:34.2720276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 20.135.6.2] + +2025-01-08T13:47:34.5226106+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T13:47:34.6130390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-01-08T13:47:34.6868650+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 170.545 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T13:47:36.2553515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-01-08T13:47:38.3400831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T13:47:40.8600770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.165, 20.190.144.139] + +2025-01-08T13:47:44.5269988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.165, 20.190.148.163] + +2025-01-08T13:47:49.7770360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.166, 20.190.144.165] + +2025-01-08T13:47:52.6651876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-08T13:47:52.7382954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-08T13:47:54.7093882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-08T13:47:54.7115360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8001::154] + +2025-01-08T13:48:02.3177944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-08T13:48:02.4422351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-01-08T13:48:05.1268261+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-08T13:48:05.8254596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-08T13:48:21.3408612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-01-08T13:48:39.2634615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 20.26.156.210] + +2025-01-08T13:48:44.7395333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1046:2000:148::2, 2603:1046:2000:158::5] + +2025-01-08T13:48:53.9151867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.9] + +2025-01-08T13:49:39.5916785+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 365.1281 ms + +2025-01-08T13:49:39.6683088+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 72.0739 ms + +2025-01-08T13:49:50.5494207+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 368.4425 ms + +2025-01-08T13:49:50.6288662+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 71.833 ms + +2025-01-08T13:49:56.8310424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.2] + +2025-01-08T13:50:05.1667881+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-08T13:50:07.0327165+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 76.5691 ms + +2025-01-08T13:50:07.0998369+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.4349 ms + +2025-01-08T13:50:22.7019259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.26] + +2025-01-08T13:50:23.9573807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-01-08T13:50:47.4300363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T13:50:57.6753170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.44, 2620:1ec:bdf::74] + +2025-01-08T13:51:09.1035401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.3] + +2025-01-08T13:51:30.3748615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T13:51:36.9798035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-01-08T13:51:52.0844410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.7] + +2025-01-08T13:52:11.5756658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.44, 2620:1ec:bdf::67] + +2025-01-08T13:52:12.0292019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::64, 2620:1ec:bdf::67, 13.107.246.61] + +2025-01-08T13:52:23.0278132+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.4] + +2025-01-08T13:52:37.7713838+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:52:38.1819760+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:52:38.8363950+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:52:40.4598799+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:52:44.9530126+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:52:52.3288330+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:53:14.7652827+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:53:15.1012901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24, 2606:4700:3032::ac43:8d18] + +2025-01-08T13:53:25.8254529+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-01-08T13:53:25.8284042+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-01-08T13:53:36.4204307+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:53:36.9161032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-08T13:53:58.6270368+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:53:58.9282471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-01-08T13:54:20.6712236+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:54:20.9290260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-01-08T13:54:33.0028820+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:54:57.2293021+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:55:01.6481931+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:55:25.2418641+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T13:55:31.3256726+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:55:36.5898354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8003::154, 2606:50c0:8002::154] + +2025-01-08T13:55:54.3517503+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T13:55:54.6063126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.45, 13.107.246.73] + +2025-01-08T13:56:16.3299074+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:56:39.3610475+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:56:39.6354765+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.70, 13.107.246.73, 2620:1ec:bdf::73] + +2025-01-08T13:57:01.3780700+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:57:01.9078035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-01-08T13:57:23.9469816+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:57:24.4952359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T13:57:42.5306674+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T13:57:42.5341021+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T13:57:43.5191894+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 963.5161 ms + +2025-01-08T13:57:43.6479452+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 121.2989 ms + +2025-01-08T13:57:47.2223465+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T13:57:50.5127999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.139, 20.190.144.136] + +2025-01-08T13:57:53.6342675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1046:2000:148::5, 2603:1046:2000:158::3] + +2025-01-08T13:57:57.6701508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T13:57:58.3623642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-08T13:57:59.5145638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T13:58:01.0899869+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 58.3817 ms + +2025-01-08T13:58:01.1607947+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.0685 ms + +2025-01-08T13:58:11.1642467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.26, 140.82.112.26] + +2025-01-08T13:58:14.4946062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-01-08T13:58:15.6690289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-01-08T13:58:17.6894055+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8000::154, 185.199.110.133, 2606:50c0:8003::154] + +2025-01-08T13:58:18.5435521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.74] + +2025-01-08T13:58:20.0305434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T13:58:20.8725519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.64] + +2025-01-08T13:58:21.4886274+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 367.8005 ms + +2025-01-08T13:58:21.5570533+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.7861 ms + +2025-01-08T13:58:21.7557899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.28.18] + +2025-01-08T13:58:22.1523785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 2603:1046:1406::2] + +2025-01-08T13:58:23.9682210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T13:58:31.0311107+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-01-08T13:58:31.0322869+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-01-08T13:58:38.4531572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-08T13:58:39.2957920+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 70.7816 ms + +2025-01-08T13:58:39.3667951+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.0071 ms + +2025-01-08T13:58:48.2498515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T13:58:52.6685357+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T13:58:52.6697493+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T13:58:52.7364459+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.3403 ms + +2025-01-08T13:58:52.8076851+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.7844 ms + +2025-01-08T13:58:53.4279438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T13:58:53.4314260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.143.38.0] + +2025-01-08T13:58:58.8805573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.28.18] + +2025-01-08T13:59:00.0306081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-08T13:59:04.5427200+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T13:59:10.9089894+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 71.1926 ms + +2025-01-08T13:59:10.9779944+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.5127 ms + +2025-01-08T13:59:19.4890503+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1404::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-08T14:00:02.3893547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.114.4] + +2025-01-08T14:00:22.6546393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.45, 13.107.246.73] + +2025-01-08T14:00:23.0723164+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.45, 13.107.246.73] + +2025-01-08T14:00:33.5188668+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 376.917 ms + +2025-01-08T14:00:33.5869819+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.4798 ms + +2025-01-08T14:00:34.5769350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T14:00:34.5810913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8000::154] + +2025-01-08T14:00:37.4395417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-08T14:00:37.4426841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-08T14:00:55.0377973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.53, 13.107.246.45] + +2025-01-08T14:00:55.4228480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.46, 2620:1ec:bdf::57] + +2025-01-08T14:00:57.7415419+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 70.4255 ms + +2025-01-08T14:00:57.8075564+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.7513 ms + +2025-01-08T14:01:00.5837691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.137, 20.190.144.161] + +2025-01-08T14:01:18.2223031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.5] + +2025-01-08T14:01:21.1948514+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 362.315 ms + +2025-01-08T14:01:21.2661259+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.7039 ms + +2025-01-08T14:01:27.1880037+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.133, 20.190.166.66, 20.190.166.132] + +2025-01-08T14:01:32.2329881+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.9024 ms + +2025-01-08T14:01:32.3080298+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.8019 ms + +2025-01-08T14:01:40.9101296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.53, 2620:1ec:bdf::70] + +2025-01-08T14:02:04.2917466+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:04.4883450+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 196.3924 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T14:02:04.5364331+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:04.9909104+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 454.514 ms + +2025-01-08T14:02:05.0064558+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:05.1678437+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 161.2693 ms + +2025-01-08T14:02:05.1835867+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:05.3543004+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 170.7806 ms + +2025-01-08T14:02:05.3710785+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:05.5341094+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 163.0209 ms + +2025-01-08T14:02:05.5403846+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:05.7094991+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 169.1068 ms + +2025-01-08T14:02:05.7298670+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:05.8986873+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 168.8133 ms + +2025-01-08T14:02:05.9088038+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:06.0800739+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 171.3899 ms + +2025-01-08T14:02:06.0893510+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:06.2608439+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 171.49 ms + +2025-01-08T14:02:06.2651139+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:06.4291692+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 164.0634 ms + +2025-01-08T14:02:06.4412453+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:06.4610414+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::44, 13.107.246.45] + +2025-01-08T14:02:06.6066726+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 165.3759 ms + +2025-01-08T14:02:06.6391823+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:06.8001534+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 160.9306 ms + +2025-01-08T14:02:06.8188144+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:06.9871824+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 168.3925 ms + +2025-01-08T14:02:07.0440376+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:07.2085903+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 164.6121 ms + +2025-01-08T14:02:07.2564867+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:07.3912095+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:07.4222636+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 165.8397 ms + +2025-01-08T14:02:07.4276729+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:07.5638476+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 172.6336 ms + +2025-01-08T14:02:07.5900949+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 162.3949 ms + +2025-01-08T14:02:07.5911225+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:07.7579226+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 166.7309 ms + +2025-01-08T14:02:07.7643392+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:07.7692409+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:07.9234073+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 159.0491 ms + +2025-01-08T14:02:07.9234581+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 154.2341 ms + +2025-01-08T14:02:07.9261260+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:08.0880011+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 161.8732 ms + +2025-01-08T14:02:08.0890543+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:08.2542284+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 165.1458 ms + +2025-01-08T14:02:08.2597062+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:08.2672350+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:08.4242665+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 164.5063 ms + +2025-01-08T14:02:08.4318314+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 164.3945 ms + +2025-01-08T14:02:08.4335021+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:08.6010785+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 167.5152 ms + +2025-01-08T14:02:08.6022564+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:08.7633008+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 161.0619 ms + +2025-01-08T14:02:08.7656711+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:08.7676253+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:08.9242099+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 156.5947 ms + +2025-01-08T14:02:08.9276030+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 161.8849 ms + +2025-01-08T14:02:08.9277660+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:09.0942057+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 166.4057 ms + +2025-01-08T14:02:09.0952798+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:09.2646576+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 169.3572 ms + +2025-01-08T14:02:09.2676587+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:09.2794060+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:09.4408742+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 173.2393 ms + +2025-01-08T14:02:09.4428204+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:09.4507892+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 171.4734 ms + +2025-01-08T14:02:09.6014379+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 158.4794 ms + +2025-01-08T14:02:09.6039326+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:09.7732513+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 169.277 ms + +2025-01-08T14:02:09.7778580+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:09.7838285+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:09.9396293+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 155.7636 ms + +2025-01-08T14:02:09.9421721+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 164.6764 ms + +2025-01-08T14:02:09.9426271+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:10.1090042+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 166.2731 ms + +2025-01-08T14:02:10.1102869+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:10.2742307+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 163.9457 ms + +2025-01-08T14:02:10.2784095+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:10.2819189+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:10.4366770+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 158.2512 ms + +2025-01-08T14:02:10.4376200+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 155.6531 ms + +2025-01-08T14:02:10.4427386+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:10.6034273+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 160.6152 ms + +2025-01-08T14:02:10.6042824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.53, 13.107.246.69] + +2025-01-08T14:02:10.6048935+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:10.7664973+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 161.615 ms + +2025-01-08T14:02:10.7691777+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:10.7776488+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:10.9257879+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 156.5389 ms + +2025-01-08T14:02:10.9318622+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:10.9369070+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 159.2165 ms + +2025-01-08T14:02:11.0894303+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 157.5703 ms + +2025-01-08T14:02:11.0904446+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:11.2478651+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 157.4042 ms + +2025-01-08T14:02:11.2504388+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:11.2649094+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:11.4155010+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 165.0484 ms + +2025-01-08T14:02:11.4205442+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:11.4268723+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 162.0255 ms + +2025-01-08T14:02:11.5825426+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 161.9371 ms + +2025-01-08T14:02:11.5849961+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:11.7600058+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 174.9798 ms + +2025-01-08T14:02:11.7647646+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:11.7672628+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:11.9281366+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 163.2363 ms + +2025-01-08T14:02:11.9295971+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 162.3033 ms + +2025-01-08T14:02:11.9341370+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:12.1019126+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 167.8416 ms + +2025-01-08T14:02:12.1030794+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:12.2726363+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 169.4915 ms + +2025-01-08T14:02:12.2759141+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:12.2809025+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:12.4411448+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 165.1949 ms + +2025-01-08T14:02:12.4435160+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 162.5668 ms + +2025-01-08T14:02:12.4441159+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:12.6076838+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 163.4254 ms + +2025-01-08T14:02:12.6102922+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:12.7705621+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 160.3134 ms + +2025-01-08T14:02:12.7749890+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:12.7808498+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:12.9359768+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 160.9932 ms + +2025-01-08T14:02:12.9390584+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:12.9432509+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 162.3297 ms + +2025-01-08T14:02:13.1022795+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 163.1899 ms + +2025-01-08T14:02:13.1060916+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:13.2758461+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 170.0296 ms + +2025-01-08T14:02:13.2987551+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:13.3034073+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:13.4608087+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 161.9762 ms + +2025-01-08T14:02:13.4636081+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 160.4144 ms + +2025-01-08T14:02:13.4700547+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:13.6373181+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 167.3935 ms + +2025-01-08T14:02:13.6385258+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:13.8032839+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 164.6694 ms + +2025-01-08T14:02:13.8359356+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:13.8552768+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:13.9993142+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 163.408 ms + +2025-01-08T14:02:14.0057768+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:14.0364737+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 181.2239 ms + +2025-01-08T14:02:14.0636719+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 325.5572 ms + +2025-01-08T14:02:14.1380378+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.1381 ms + +2025-01-08T14:02:14.1726381+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 166.8478 ms + +2025-01-08T14:02:14.1749137+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:14.3468090+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 171.7841 ms + +2025-01-08T14:02:14.3531399+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:14.5134122+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 160.2616 ms + +2025-01-08T14:02:14.5166759+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:14.6825177+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 165.814 ms + +2025-01-08T14:02:14.6916523+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:14.8560570+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 164.392 ms + +2025-01-08T14:02:14.8601982+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:15.0278433+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 167.6131 ms + +2025-01-08T14:02:15.0355474+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:15.2016714+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 166.1727 ms + +2025-01-08T14:02:15.2088838+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:15.3752662+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 166.3776 ms + +2025-01-08T14:02:15.3840869+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:15.5446940+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 160.6171 ms + +2025-01-08T14:02:15.5465260+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:15.7054701+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 158.8654 ms + +2025-01-08T14:02:15.7109962+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:15.8770718+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 166.072 ms + +2025-01-08T14:02:15.8800705+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:16.0400274+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 159.9633 ms + +2025-01-08T14:02:16.0468497+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:16.2182161+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 171.3643 ms + +2025-01-08T14:02:16.2203541+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:16.3811321+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 160.756 ms + +2025-01-08T14:02:16.3914320+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:16.5502615+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 158.836 ms + +2025-01-08T14:02:16.5561298+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:02:16.7198432+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 163.7372 ms + +2025-01-08T14:02:28.7501266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::44, 13.107.246.44] + +2025-01-08T14:02:33.4107320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.191] + +2025-01-08T14:02:36.9590516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.69, 13.107.246.45] + +2025-01-08T14:02:37.8084418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.44, 2620:1ec:bdf::40] + +2025-01-08T14:02:40.8554197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T14:03:14.2251819+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:03:15.3195019+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:03:17.1821272+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:03:17.5084877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.4] + +2025-01-08T14:03:23.2696645+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:03:23.5411981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T14:03:44.5792599+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:03:46.9953384+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:03:47.3258630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-01-08T14:03:48.0112403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.5] + +2025-01-08T14:03:48.5215218+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-01-08T14:03:48.5262368+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-01-08T14:03:49.0912393+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-08T14:03:49.0921561+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-08T14:03:49.1369501+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 379.1581 ms + +2025-01-08T14:03:49.2051707+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.7253 ms + +2025-01-08T14:03:49.9546544+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 852.9347 ms + +2025-01-08T14:03:49.9691576+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 855.2115 ms + +2025-01-08T14:04:05.4838378+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:04:07.0176169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-08T14:04:07.9210495+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:04:21.1122073+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T14:04:21.1143339+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T14:04:21.4537186+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 340.8262 ms + +2025-01-08T14:04:21.5290485+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.5424 ms + +2025-01-08T14:04:23.5276795+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:23.7323124+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 204.5304 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T14:04:23.7326092+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:24.2056027+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 473.0351 ms + +2025-01-08T14:04:24.2128221+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:24.3714675+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 158.6168 ms + +2025-01-08T14:04:24.3748605+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:24.5374387+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 162.6268 ms + +2025-01-08T14:04:24.5495248+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:24.7138762+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 164.3388 ms + +2025-01-08T14:04:24.7161519+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:24.8711157+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 154.8894 ms + +2025-01-08T14:04:24.8854046+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:25.0464633+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 160.9452 ms + +2025-01-08T14:04:25.0501324+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:25.2080552+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 157.864 ms + +2025-01-08T14:04:25.2158032+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:25.3766705+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 160.838 ms + +2025-01-08T14:04:25.3811838+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:25.5387717+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 157.5355 ms + +2025-01-08T14:04:25.5483758+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:25.7153570+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 166.9924 ms + +2025-01-08T14:04:25.7202681+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:25.8805790+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 160.302 ms + +2025-01-08T14:04:25.8958242+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:26.0537127+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 157.8739 ms + +2025-01-08T14:04:26.0581277+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:26.2152003+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 157.0646 ms + +2025-01-08T14:04:26.2247468+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:26.3821123+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 157.3543 ms + +2025-01-08T14:04:26.3862975+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:26.5505058+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 164.226 ms + +2025-01-08T14:04:26.5581721+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:26.7151650+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 156.9889 ms + +2025-01-08T14:04:26.7177621+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:26.8816825+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 163.8678 ms + +2025-01-08T14:04:26.8932208+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:27.0509766+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 157.7801 ms + +2025-01-08T14:04:27.0567370+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:27.2137585+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 157.0063 ms + +2025-01-08T14:04:27.2257411+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:27.3975462+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 171.9912 ms + +2025-01-08T14:04:27.3998497+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:27.5563470+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 156.4555 ms + +2025-01-08T14:04:27.5653862+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:27.7237796+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 158.7029 ms + +2025-01-08T14:04:27.7280025+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:27.8852135+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 157.207 ms + +2025-01-08T14:04:27.8986578+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:28.0566528+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 157.9982 ms + +2025-01-08T14:04:28.0592536+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:28.2160160+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 156.7649 ms + +2025-01-08T14:04:28.2253810+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:28.3898424+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 164.6453 ms + +2025-01-08T14:04:28.3940622+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:28.5552690+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 161.2389 ms + +2025-01-08T14:04:28.5592466+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:28.7284265+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 169.1332 ms + +2025-01-08T14:04:28.7353609+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:28.8935486+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 158.1964 ms + +2025-01-08T14:04:28.9015465+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:29.0628443+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 161.0812 ms + +2025-01-08T14:04:29.0657131+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:29.2253969+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 159.5659 ms + +2025-01-08T14:04:29.2391171+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:29.3967101+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 157.5885 ms + +2025-01-08T14:04:29.4004936+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:29.5599602+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 159.4012 ms + +2025-01-08T14:04:29.5681689+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:29.7267899+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 158.5973 ms + +2025-01-08T14:04:29.7300613+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:29.8862649+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 156.1984 ms + +2025-01-08T14:04:29.8971970+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:30.0565852+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 159.3758 ms + +2025-01-08T14:04:30.0600199+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:30.2223101+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 162.4707 ms + +2025-01-08T14:04:30.2344594+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:30.4102620+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 175.7981 ms + +2025-01-08T14:04:30.4131908+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:30.5798873+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 166.6828 ms + +2025-01-08T14:04:30.5939965+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:30.7523734+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 158.3326 ms + +2025-01-08T14:04:30.7559241+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:04:30.9195150+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 163.5785 ms + +2025-01-08T14:05:36.2768644+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T14:05:36.5243813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T14:05:39.1389142+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:05:39.5698221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.114.25] + +2025-01-08T14:05:43.2888973+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:05:44.5850969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161] + +2025-01-08T14:05:58.7522588+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:05:58.8650067+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 329.0286 ms + +2025-01-08T14:05:58.9321007+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.599 ms + +2025-01-08T14:05:59.1852541+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.113.21] + +2025-01-08T14:06:00.1070188+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:06:00.3012400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161] + +2025-01-08T14:06:04.3666166+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:06:05.6961003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-08T14:06:06.5174155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::71, 13.107.246.74] + +2025-01-08T14:06:08.9370569+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:06:09.1851845+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::40, 2620:1ec:bdf::44] + +2025-01-08T14:06:14.3551277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.191] + +2025-01-08T14:06:19.2635955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.28.16] + +2025-01-08T14:06:24.9318136+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-08T14:06:24.9330280+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-01-08T14:06:26.1497280+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 1178.6627 ms + +2025-01-08T14:06:26.8418883+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 1084.9442 ms + +2025-01-08T14:06:30.9073372+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 151.8334 ms + +2025-01-08T14:06:35.1525377+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 200.7864 ms + +2025-01-08T14:06:42.1244775+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:06:42.6060892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1046:2000:158::4, 2603:1047:1:150::1] + +2025-01-08T14:06:47.1231839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T14:06:47.5312498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-08T14:07:13.6247212+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:07:13.7399279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.113.5] + +2025-01-08T14:07:20.8214860+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:07:43.6980555+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:07:43.9517802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.74, 13.107.246.53] + +2025-01-08T14:07:48.1231326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T14:07:52.0978255+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:07:52.5549506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.74.49] + +2025-01-08T14:08:14.6583619+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:08:18.1290686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.131, 20.190.166.67, 20.190.166.132] + +2025-01-08T14:08:22.0582234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T14:08:23.9133465+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.114.4] + +2025-01-08T14:08:26.0849926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T14:08:26.0864373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T14:08:34.1682370+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::61, 13.107.246.74] + +2025-01-08T14:08:35.0075549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::44, 13.107.246.74] + +2025-01-08T14:08:53.1909565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18] + +2025-01-08T14:08:53.8604368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.113.5] + +2025-01-08T14:09:15.9190191+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:09:18.1595533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.24.14] + +2025-01-08T14:09:19.3108707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-08T14:10:30.4121815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::65, 2620:1ec:bdf::61] + +2025-01-08T14:10:37.1089456+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T14:10:37.1119989+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T14:11:05.3743652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-01-08T14:11:06.6249849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T14:11:07.0876171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.22] + +2025-01-08T14:11:07.0898420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T14:11:08.2423936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8001::154, 2606:50c0:8000::154] + +2025-01-08T14:11:15.0569689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::65, 2620:1ec:bdf::36] + +2025-01-08T14:11:15.3234490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.63, 2620:1ec:bdf::44] + +2025-01-08T14:11:21.1442511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T14:11:23.5756859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-08T14:11:31.4387082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T14:11:45.4391464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::5, 2603:1046:2000:158::5, 2603:1047:1:150::3] + +2025-01-08T14:11:54.8347196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 2603:1047:1:168::1d, 20.190.148.166] + +2025-01-08T14:12:02.5380230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.112.3] + +2025-01-08T14:12:15.2122207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::44, 2620:1ec:bdf::73] + +2025-01-08T14:12:39.7497609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.131, 20.190.141.37, 20.190.141.39] + +2025-01-08T14:12:45.3134735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::71, 2620:1ec:bdf::36] + +2025-01-08T14:12:55.2785174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.113.25] + +2025-01-08T14:12:55.2809941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161, 117.18.232.200] + +2025-01-08T14:12:55.2834148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161, 117.18.232.200] + +2025-01-08T14:12:55.5796022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::36, 2620:1ec:bdf::61] + +2025-01-08T14:12:56.0275052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.0] + +2025-01-08T14:12:56.0286422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.39, 20.190.141.38] + +2025-01-08T14:12:56.0295249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 2603:1047:1:168::1d, 20.190.144.138] + +2025-01-08T14:13:35.4152699+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:13:38.3553968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T14:13:39.2379589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-01-08T14:13:39.6555934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T14:13:40.7990226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T14:13:47.4543087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::36, 2620:1ec:bdf::73] + +2025-01-08T14:13:49.2057757+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T14:14:00.5343052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24, 2606:4700:3031::6815:46fd] + +2025-01-08T14:14:18.6130902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-01-08T14:14:20.6454673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-08T14:14:37.2347573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::44, 2620:1ec:bdf::38] + +2025-01-08T14:14:57.6808575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::10, 20.190.148.164, 2603:1047:1:168::1d] + +2025-01-08T14:15:15.6017816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.28.16] + +2025-01-08T14:15:30.5394628+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::36, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-01-08T14:15:36.5406308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.63, 2620:1ec:bdf::44] + +2025-01-08T14:15:46.1905393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T14:16:06.2351581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.113.26] + +2025-01-08T14:16:07.5182750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-08T14:16:07.7896579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.114.21] + +2025-01-08T14:16:14.5235999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-01-08T14:16:15.3496690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::65, 13.107.246.71] + +2025-01-08T14:16:16.5808781+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T14:16:16.9655967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.64.80.1, 104.21.70.253, 172.67.141.24] + +2025-01-08T14:16:18.5123612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::38, 13.107.246.51] + +2025-01-08T14:16:20.1571214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.143.38.0] + +2025-01-08T14:16:22.2632378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::10, 20.190.144.166, 2603:1047:1:168::1d] + +2025-01-08T14:16:29.6265959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.112.25] + +2025-01-08T14:16:29.9661721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T14:16:34.5955005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.22] + +2025-01-08T14:16:38.7173274+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::70, 2620:1ec:bdf::45, 2620:1ec:bdf::65] + +2025-01-08T14:16:38.9888914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::51, 2620:1ec:bdf::38] + +2025-01-08T14:16:51.5409661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::10, 20.190.144.166, 20.190.144.138] + +2025-01-08T14:17:45.0241933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.39, 20.190.141.34] + +2025-01-08T14:17:57.0076490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.7] + +2025-01-08T14:18:22.4520818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.4] + +2025-01-08T14:18:57.1524051+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:18:57.3965646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T14:19:25.5717974+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:19:42.4231123+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:19:42.9897459+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-08T14:20:06.6333538+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:20:16.1360891+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-01-08T14:20:16.1372365+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-01-08T14:20:28.2906347+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:20:30.5971249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-01-08T14:20:32.0609271+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:32.2694803+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:32.2698716+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 208.764 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T14:20:32.9630644+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 693.7611 ms + +2025-01-08T14:20:32.9771167+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:33.1852514+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:33.1866126+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 209.4224 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T14:20:33.3564804+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 171.17 ms + +2025-01-08T14:20:33.3679289+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:33.5383949+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 170.8226 ms + +2025-01-08T14:20:33.5422544+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:33.7097153+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 167.458 ms + +2025-01-08T14:20:33.7188156+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:33.8969945+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 178.1843 ms + +2025-01-08T14:20:33.9011901+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:34.0870657+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 185.8853 ms + +2025-01-08T14:20:34.0951558+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:34.2737963+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 178.6384 ms + +2025-01-08T14:20:34.2823556+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:34.4786145+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 196.2515 ms + +2025-01-08T14:20:34.5004837+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:34.7085086+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:34.7088269+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 208.3166 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T14:20:35.6728695+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 964.3897 ms + +2025-01-08T14:20:35.6776926+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:35.8868472+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 209.1263 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T14:20:35.8868643+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:37.4241479+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1537.248 ms + +2025-01-08T14:20:37.4365131+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:37.6424752+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:37.6453039+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 208.8054 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T14:20:39.1610852+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1518.6218 ms + +2025-01-08T14:20:39.1827656+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T14:20:39.1862192+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T14:20:39.2189451+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:39.4192497+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:39.4194860+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 200.63 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T14:20:41.7132965+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 2294.0957 ms + +2025-01-08T14:20:41.7236033+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:41.9387385+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 215.0958 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T14:20:41.9387451+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:44.4629757+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 2524.1893 ms + +2025-01-08T14:20:44.4795419+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:44.6833843+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 203.7858 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T14:20:44.6857429+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:45.3470886+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 661.3545 ms + +2025-01-08T14:20:45.3540167+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:45.5110960+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 157.0855 ms + +2025-01-08T14:20:45.5153611+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:45.6737088+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 158.5836 ms + +2025-01-08T14:20:45.6863993+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:45.8443220+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 157.9024 ms + +2025-01-08T14:20:45.8495666+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:46.0060517+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 156.491 ms + +2025-01-08T14:20:46.0127172+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:46.2026999+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 189.9553 ms + +2025-01-08T14:20:46.2061736+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:46.3684925+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 162.368 ms + +2025-01-08T14:20:46.3791619+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:46.5471434+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 167.9078 ms + +2025-01-08T14:20:46.5496000+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:46.7039845+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 154.3487 ms + +2025-01-08T14:20:46.7166440+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:46.8819040+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 165.2464 ms + +2025-01-08T14:20:46.8887488+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:47.0448763+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 156.1076 ms + +2025-01-08T14:20:47.0536832+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:47.2134796+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 159.7375 ms + +2025-01-08T14:20:47.2214755+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:47.3843800+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 162.8982 ms + +2025-01-08T14:20:47.3921381+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:47.5557988+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 163.6313 ms + +2025-01-08T14:20:47.5587495+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:47.7171292+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 158.3903 ms + +2025-01-08T14:20:47.7246293+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:47.8797089+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 155.0492 ms + +2025-01-08T14:20:47.8839617+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:48.0505308+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 166.5432 ms + +2025-01-08T14:20:48.0571043+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:48.2208608+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 163.7277 ms + +2025-01-08T14:20:48.2241527+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:48.3837880+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 159.6285 ms + +2025-01-08T14:20:48.3926743+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:48.5523503+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 159.6426 ms + +2025-01-08T14:20:48.5570721+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-08T14:20:48.7211162+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 164.0046 ms + +2025-01-08T14:20:49.3015801+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T14:20:49.3028145+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T14:20:49.7009056+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 381.0605 ms + +2025-01-08T14:20:49.7673238+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.8002 ms + +2025-01-08T14:20:52.0677218+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:20:57.0769238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-08T14:21:22.8722622+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:21:23.2253656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T14:21:24.2496943+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:21:24.7589014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.26] + +2025-01-08T14:21:25.7686275+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:21:48.7808272+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:21:50.2281388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.113.21] + +2025-01-08T14:21:50.5596915+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-01-08T14:21:50.5628665+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-01-08T14:22:45.8562231+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T14:23:03.0983338+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:23:08.2971425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.113.6] + +2025-01-08T14:23:29.7779049+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:23:31.9892799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8002::154] + +2025-01-08T14:23:55.3597750+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:23:55.8786086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:29:1::70, 2620:1ec:bdf::74] + +2025-01-08T14:23:59.6063677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1400::7, 52.109.56.129, 2603:1046:1406::5] + +2025-01-08T14:24:01.1804544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::74, 13.107.246.73] + +2025-01-08T14:24:02.7824891+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T14:24:06.9407271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.74.50, 13.105.74.49] + +2025-01-08T14:24:12.7755446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.34, 20.190.141.38, 20.190.141.39] + +2025-01-08T14:24:13.9615276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.144.139, 20.190.144.136] + +2025-01-08T14:24:17.0281283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T14:24:18.2839610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-08T14:24:23.2659526+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.3] + +2025-01-08T14:24:23.5621665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.114.5] + +2025-01-08T14:24:24.5824846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-08T14:24:35.1961320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.114.4] + +2025-01-08T14:24:39.1554153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.138, 20.190.148.167] + +2025-01-08T14:24:43.9329031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:190e] + +2025-01-08T14:24:50.8533021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.113.6] + +2025-01-08T14:25:07.8574740+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-08T14:25:07.8607571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-08T14:25:35.5996698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-01-08T14:25:36.6683703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::73, 2620:1ec:29:1::70] + +2025-01-08T14:25:46.6128637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 13.105.74.49, 20.135.6.11] + +2025-01-08T14:25:46.6149861+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 2603:1047:1:168::10, 20.190.144.166] + +2025-01-08T14:25:57.2632650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-08T14:25:57.2663413+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-08T14:25:58.1215605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1404::4, 52.109.0.140, 2603:1046:1400::7] + +2025-01-08T14:26:02.0244142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-01-08T14:26:05.5555506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 2603:1047:1:168::1f, 2603:1047:1:168::28] + +2025-01-08T14:26:28.7229635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.112.26] + +2025-01-08T14:26:29.3050528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 2606:2800:11f:17a5:191a:18d5:537:22f9] + +2025-01-08T14:26:29.5649278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 2606:2800:11f:17a5:191a:18d5:537:22f9] + +2025-01-08T14:26:38.6987257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.42, 2620:1ec:bdf::73] + +2025-01-08T14:26:49.4531843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.114.21] + +2025-01-08T14:26:50.7080951+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.112.21] + +2025-01-08T14:26:55.6019248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T14:26:59.7198512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.139, 20.190.144.136] + +2025-01-08T14:27:03.2701926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.138, 20.190.144.139] + +2025-01-08T14:27:21.2747419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.21, 140.82.113.22] + +2025-01-08T14:27:30.6907941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.112.21] + +2025-01-08T14:27:32.5757787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1f, 2603:1047:1:168::28, 2603:1047:1:168::10] + +2025-01-08T14:27:37.2032512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::42, 13.107.246.42] + +2025-01-08T14:28:03.6778138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1404::4, 52.109.0.140, 2603:1026:2405::6] + +2025-01-08T14:28:05.3833858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.113.6] + +2025-01-08T14:28:05.6945614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.113.26] + +2025-01-08T14:28:06.3402356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 2620:1ec:bdf::44, 2620:1ec:bdf::73] + +2025-01-08T14:28:14.3605852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.160, 20.190.144.162] + +2025-01-08T14:28:20.9197265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 20.135.6.11, 40.90.133.99] + +2025-01-08T14:28:36.1028535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-08T14:28:39.0801232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-01-08T14:28:39.0816418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 40.90.133.99, 20.135.2.0] + +2025-01-08T14:28:39.8800714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-01-08T14:28:42.1792537+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.5] + +2025-01-08T14:28:42.7029135+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.11, 40.90.133.99] + +2025-01-08T14:29:01.2901104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.112.6] + +2025-01-08T14:29:01.2909054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.4] + +2025-01-08T14:29:05.1558530+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:29:05.4279285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.143.38.0, 40.90.133.99] + +2025-01-08T14:29:26.6947869+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:29:27.2166335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::42, 13.107.246.44] + +2025-01-08T14:29:28.4420796+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:29:28.9055110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1404::4, 2603:1046:1406::5] + +2025-01-08T14:29:36.4705616+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:29:37.4781235+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:29:37.9322508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.139, 20.190.148.165] + +2025-01-08T14:29:38.4227963+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:29:38.8771741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 2603:1047:1:168::2c, 2603:1047:1:168::2f] + +2025-01-08T14:30:01.6444151+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:30:06.4194076+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:30:08.9256509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T14:30:09.2657260+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:30:11.2524331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T14:30:13.0247587+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:30:22.1084424+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:30:22.8430311+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-08T14:31:01.0368063+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:31:01.6985930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T14:31:11.5648425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::45, 2620:1ec:bdf::41] + +2025-01-08T14:31:12.2952973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::69, 2620:1ec:bdf::42] + +2025-01-08T14:31:13.5234757+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1404::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-08T14:31:49.7576015+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:31:50.0936926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-08T14:31:50.8018730+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:31:50.8041151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-08T14:31:51.7393936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.3] + +2025-01-08T14:31:58.5246153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18] + +2025-01-08T14:32:19.0712224+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T14:32:19.4839787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.113.25] + +2025-01-08T14:32:40.5321064+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:32:42.8223105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T14:32:47.2600117+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:32:47.6828882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-01-08T14:32:49.8892863+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:32:49.8907289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T14:32:50.6332085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.143.38.0, 13.105.28.1] + +2025-01-08T14:32:51.6709592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::69, 13.107.246.44] + +2025-01-08T14:32:52.7362388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.160, 20.190.144.139] + +2025-01-08T14:33:24.4908256+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:33:24.8984092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.112.6] + +2025-01-08T14:33:28.0919367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::53, 13.107.246.35] + +2025-01-08T14:33:29.0842144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.71, 2620:1ec:bdf::45] + +2025-01-08T14:33:35.5615017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2c, 2603:1047:1:168::2f, 2603:1047:1:168::25] + +2025-01-08T14:33:38.7463374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T14:33:39.0322074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T14:33:49.9934611+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-08T14:33:49.9950788+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-08T14:33:50.8232126+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 817.6784 ms + +2025-01-08T14:33:50.8232606+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 817.6554 ms + +2025-01-08T14:33:53.8917382+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-08T14:33:53.8925937+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-01-08T14:33:54.8731545+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 951.8825 ms + +2025-01-08T14:33:59.3154268+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/Default.json responded 404 in 171.0657 ms + +2025-01-08T14:34:01.8240934+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:34:03.0011561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 2606:50c0:8000::154] + +2025-01-08T14:34:05.5684623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.11, 13.105.28.1] + +2025-01-08T14:34:06.6345921+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 304 in 156.4153 ms + +2025-01-08T14:34:08.7570221+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 178.9723 ms + +2025-01-08T14:34:28.6540335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.45, 2620:1ec:bdf::44] + +2025-01-08T14:34:28.7244380+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::40, 13.107.246.45] + +2025-01-08T14:34:37.2921628+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-01-08T14:34:41.8469224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.160, 20.190.148.166] + +2025-01-08T14:34:42.1409137+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.160, 2603:1047:1:168::2c] + +2025-01-08T14:34:45.2503050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.137, 20.190.144.160] + +2025-01-08T14:34:55.8711359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.5] + +2025-01-08T14:35:09.7073315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T14:35:09.7082925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T14:35:09.7088160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T14:35:12.7384195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T14:35:12.7405195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T14:35:21.4733527+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.11, 20.135.6.2] + +2025-01-08T14:35:23.8824169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-08T14:35:32.6941656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.4] + +2025-01-08T14:35:49.7941361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.11] + +2025-01-08T14:36:02.8731827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.114.26] + +2025-01-08T14:36:12.7893955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.40] + +2025-01-08T14:36:22.3145815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.167, 20.190.144.137] + +2025-01-08T14:36:24.1980059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.112.6] + +2025-01-08T14:36:24.1997308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.112.4] + +2025-01-08T14:36:50.9697855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-01-08T14:36:51.8078100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.143.38.0] + +2025-01-08T14:36:53.4012416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.112.3] + +2025-01-08T14:37:01.7374074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-01-08T14:37:01.7998956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T14:37:01.8011490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T14:37:19.7220897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.112.25] + +2025-01-08T14:37:22.0049227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.21] + +2025-01-08T14:37:29.1520389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.60] + +2025-01-08T14:37:42.8184925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:158::4, 2603:1047:1:150::2, 2603:1046:2000:148::3] + +2025-01-08T14:37:49.4365887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.112.22] + +2025-01-08T14:37:53.1003171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.166, 20.190.148.166] + +2025-01-08T14:37:59.0200903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T14:38:29.3335667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.45, 2620:1ec:bdf::41] + +2025-01-08T14:38:29.3964485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.41] + +2025-01-08T14:38:35.5173778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.166, 20.190.144.162] + +2025-01-08T14:38:40.2444930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-08T14:38:40.5532239+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-08T14:38:56.0666332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::41, 13.107.246.60] + +2025-01-08T14:38:56.0698606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.41, 2620:1ec:bdf::42] + +2025-01-08T14:38:59.9582972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.22] + +2025-01-08T14:39:02.3700382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.5] + +2025-01-08T14:39:02.7989953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.135.6.11] + +2025-01-08T14:39:21.3634505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.4] + +2025-01-08T14:40:03.9601112+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-01-08T14:40:03.9643204+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-01-08T14:40:55.9710889+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:40:56.1996449+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.45, 2620:1ec:bdf::46] + +2025-01-08T14:41:24.0455670+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:41:24.2939235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.45, 2620:1ec:bdf::46] + +2025-01-08T14:42:09.5187200+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.5, 13.105.28.1] + +2025-01-08T14:42:31.5544423+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:42:33.0271975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-08T14:42:55.7778916+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:42:59.2609625+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.165, 20.190.144.166] + +2025-01-08T14:43:02.4110721+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:43:07.0917696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.148.165, 20.190.144.166] + +2025-01-08T14:43:15.5202944+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:43:25.8757933+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:43:26.1476776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T14:43:48.8834948+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:43:49.2411574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-08T14:43:50.2078011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-01-08T14:44:32.3907657+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T14:44:34.1876483+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.24.14] + +2025-01-08T14:44:49.0684012+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:44:49.3326992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T14:45:01.2901142+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:45:06.4822759+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-08T14:45:07.7534950+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:45:07.9384560+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-08T14:45:09.2575868+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:45:09.7020506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.113.26] + +2025-01-08T14:45:31.5503307+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:45:32.1628262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.6] + +2025-01-08T14:45:58.0515833+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:46:00.4650807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[152.199.19.161, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T14:46:23.0560747+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:46:23.5031831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-08T14:46:25.6218430+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:46:28.7890548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[152.199.19.161, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T14:46:50.6024837+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:46:59.1215218+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:47:00.4691888+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-08T14:47:01.8092883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.45, 13.107.246.60] + +2025-01-08T14:47:23.7188089+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:47:26.1358243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.73, 2620:1ec:bdf::41] + +2025-01-08T14:47:47.8068776+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:47:48.2482811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.135.6.7] + +2025-01-08T14:47:50.4167791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T14:47:51.3884973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.162, 20.190.148.165] + +2025-01-08T14:47:53.3344816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.163, 2603:1047:1:168::26, 2603:1047:1:168::2e] + +2025-01-08T14:48:01.7829646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T14:48:37.5475574+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:48:38.1462299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-01-08T14:48:39.2474863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-08T14:48:48.5454544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.165, 20.190.144.162] + +2025-01-08T14:48:52.0055895+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:150::1, 2603:1046:2000:158::3, 2603:1047:1:150::3] + +2025-01-08T14:48:54.9897775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T14:48:54.9907719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T14:48:56.1187288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-08T14:48:56.7450028+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3032::ac43:8d18, 104.21.70.253] + +2025-01-08T14:48:57.9935711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-01-08T14:49:01.6369217+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::64, 13.107.246.42, 13.107.246.65] + +2025-01-08T14:49:06.3059172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.5, 20.135.6.15] + +2025-01-08T14:49:06.3070406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.162, 20.190.148.166] + +2025-01-08T14:49:06.3079544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 2603:1047:1:168::2e, 20.190.144.166] + +2025-01-08T14:49:20.8507385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 20.26.156.215] + +2025-01-08T14:49:20.8533133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.112.26] + +2025-01-08T14:49:25.5439417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.165, 20.190.148.165] + +2025-01-08T14:49:27.0542485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.57, 13.107.246.73] + +2025-01-08T14:49:30.1441153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.113.26] + +2025-01-08T14:49:38.7892846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 104.17.25.14] + +2025-01-08T14:49:43.1737659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-08T14:49:43.4639949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-08T14:49:49.5999683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T14:49:49.6009473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T14:50:13.4852001+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-01-08T14:50:16.2407272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.112.26] + +2025-01-08T14:50:21.3525964+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.113.26] + +2025-01-08T14:50:38.5505959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.6] + +2025-01-08T14:50:41.1604121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.4] + +2025-01-08T14:51:05.2163900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 2606:2800:11f:17a5:191a:18d5:537:22f9] + +2025-01-08T14:51:05.2192366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 2606:2800:11f:17a5:191a:18d5:537:22f9] + +2025-01-08T14:51:06.1645645+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:51:11.8015078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::64, 13.107.246.42] + +2025-01-08T14:51:24.7224690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.113.21] + +2025-01-08T14:51:35.2575104+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:51:48.3865681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.112.22] + +2025-01-08T14:52:00.0283171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8003::154] + +2025-01-08T14:52:02.5736348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::45, 13.107.246.74] + +2025-01-08T14:52:02.5756707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.66, 13.107.246.74] + +2025-01-08T14:52:09.6765727+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.15, 40.90.133.102] + +2025-01-08T14:52:48.6748543+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T14:52:48.6761557+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T14:52:50.0275979+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 1341.5265 ms + +2025-01-08T14:52:50.4035856+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 373.126 ms + +2025-01-08T14:53:04.6549827+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:53:09.8261196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T14:53:13.2164240+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:53:13.4659280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.162, 20.190.144.165] + +2025-01-08T14:53:22.0225087+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:53:22.2930094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 20.190.144.166, 2603:1047:1:168::2e] + +2025-01-08T14:53:32.5163644+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:53:53.8122602+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:53:53.9298673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T14:53:56.3194441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-01-08T14:53:57.2785633+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:53:58.6117867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T14:53:59.2819694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T14:53:59.5486048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T14:53:59.9820508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T14:54:07.5196695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-01-08T14:54:09.4400454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.5, 13.105.74.49] + +2025-01-08T14:54:10.6359352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::45, 13.107.246.69] + +2025-01-08T14:54:13.9671421+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.164, 20.190.144.163] + +2025-01-08T14:54:19.7992466+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 2603:1047:1:168::1c, 2603:1047:1:168::1f] + +2025-01-08T14:54:28.3172392+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.74, 13.107.246.73] + +2025-01-08T14:54:41.0737541+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:54:41.4838626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-08T14:54:43.9585645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-08T14:54:50.3813365+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:54:50.4526094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T14:54:50.4556952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T14:54:59.9391430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.5] + +2025-01-08T14:55:02.9502090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.5, 13.105.74.50] + +2025-01-08T14:55:19.4026901+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 353.2005 ms + +2025-01-08T14:55:19.4803919+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.077 ms + +2025-01-08T14:56:14.3098229+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 384.9295 ms + +2025-01-08T14:56:14.3833856+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.5936 ms + +2025-01-08T14:56:28.7462069+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:56:33.9239676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-01-08T14:56:43.7553811+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:56:44.9100031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.233.83.145, 140.82.114.3] + +2025-01-08T14:57:06.9909718+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:57:13.4829261+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.113.21] + +2025-01-08T14:57:35.2198557+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:57:35.6437735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.112.25] + +2025-01-08T14:57:37.7156108+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:57:38.1855103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T14:57:44.0428606+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:57:44.2095790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T14:58:05.8559541+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:58:06.0026501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8001::154] + +2025-01-08T14:58:27.9051464+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:58:28.3329482+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-01-08T14:58:29.3394184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.57, 2620:1ec:bdf::41] + +2025-01-08T14:58:30.2292860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::73, 13.107.246.40] + +2025-01-08T14:58:31.4939708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T14:58:32.7972843+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:58:33.0702819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.5, 13.105.74.50] + +2025-01-08T14:58:38.7749698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.164, 20.190.148.167] + +2025-01-08T14:58:44.2298248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 2603:1047:1:168::1f, 2603:1047:1:168::1c] + +2025-01-08T14:59:10.9218278+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T14:59:22.9998465+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:59:23.1834297+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-01-08T14:59:24.0671638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.6] + +2025-01-08T14:59:33.0195227+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T14:59:33.2677369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.112.22] + +2025-01-08T14:59:34.0287676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T14:59:35.0360167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.74, 13.107.246.73] + +2025-01-08T14:59:35.4446597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::64, 2620:1ec:bdf::73] + +2025-01-08T14:59:36.1663493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 13.105.74.50] + +2025-01-08T14:59:37.1424796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.148.166, 20.190.144.136] + +2025-01-08T14:59:40.7783010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.148.167, 20.190.144.139] + +2025-01-08T14:59:44.7916285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T14:59:44.7946348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T14:59:46.5039746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 104.17.25.14] + +2025-01-08T14:59:46.7912417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T14:59:46.7938524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T14:59:47.2781681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T14:59:52.2864299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T14:59:52.2894890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T15:00:02.4235929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-08T15:00:03.9234254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 13.105.74.49] + +2025-01-08T15:00:30.8314332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::64, 2620:1ec:bdf::40] + +2025-01-08T15:00:37.2834150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.6] + +2025-01-08T15:01:08.8435783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::40, 13.107.246.41] + +2025-01-08T15:01:09.1257337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.148.166, 20.190.144.136] + +2025-01-08T15:01:24.1400264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-08T15:01:24.1420099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.165, 20.190.144.139] + +2025-01-08T15:01:30.8959346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-01-08T15:01:31.4963356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::40, 2620:1ec:bdf::42] + +2025-01-08T15:01:37.5143637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154] + +2025-01-08T15:01:40.1002139+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-08T15:01:41.5125636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.9] + +2025-01-08T15:01:46.1485473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:130:436c:6f75:6466:6c61:7265, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T15:02:14.1754240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-01-08T15:02:14.4116512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-01-08T15:02:28.8918532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.74, 2620:1ec:bdf::74] + +2025-01-08T15:02:32.2504785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.64, 2620:1ec:bdf::40] + +2025-01-08T15:02:34.1177833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.25] + +2025-01-08T15:02:35.6859569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T15:02:36.9594538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.25] + +2025-01-08T15:02:40.6584655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.131, 20.190.166.68, 20.190.166.67] + +2025-01-08T15:02:42.0783715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.26] + +2025-01-08T15:03:13.9857476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 40.126.35.145, 20.190.148.163] + +2025-01-08T15:03:21.3550805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.15] + +2025-01-08T15:03:25.7341992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.6] + +2025-01-08T15:03:28.8923471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T15:03:31.2547544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::69, 13.107.246.74] + +2025-01-08T15:03:31.6249424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.71, 2620:1ec:bdf::73] + +2025-01-08T15:03:31.8801104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 2603:1036:2403::1] + +2025-01-08T15:03:35.0578828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.9] + +2025-01-08T15:03:37.3953802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 52.109.52.2] + +2025-01-08T15:03:50.8428369+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-08T15:03:50.8465076+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-08T15:03:51.7201096+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 860.4944 ms + +2025-01-08T15:03:51.8706762+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 996.1936 ms + +2025-01-08T15:04:14.7736788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.233.83.145, 140.82.114.3, 140.82.114.4] + +2025-01-08T15:04:24.5759368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 172.67.141.24, 2606:4700:3032::ac43:8d18] + +2025-01-08T15:04:33.6564553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::66, 13.107.246.67] + +2025-01-08T15:04:37.2578495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.9, 20.135.6.15] + +2025-01-08T15:04:38.1131399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.52.2, 2603:1046:1406::2] + +2025-01-08T15:04:38.3929942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 40.126.35.85, 20.190.148.163] + +2025-01-08T15:04:40.8348996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T15:04:41.7859264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T15:04:43.1459645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::74, 2620:1ec:bdf::66] + +2025-01-08T15:04:43.8095584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::73, 13.107.246.64] + +2025-01-08T15:05:19.3570149+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:05:54.1891684+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:06:03.8860425+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-01-08T15:06:03.8876038+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-01-08T15:06:04.3673993+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.github.com/repos/Fndroid/clash_for_windows_pkg/releases/latest responded 404 in 451.1475 ms + +2025-01-08T15:06:14.5853340+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T15:07:42.2086923+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T15:08:33.9132461+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T15:08:33.9140268+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T15:08:33.9970784+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-01-08T15:08:33.9980402+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->::1 + +2025-01-08T15:08:34.5851391+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 638.2142 ms + +2025-01-08T15:08:35.3675204+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1420.8695 ms + +2025-01-08T15:08:35.7398851+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1707.0863 ms + +2025-01-08T15:08:35.9147823+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-08T15:08:35.9158199+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-01-08T15:08:36.1918955+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 531.3813 ms + +2025-01-08T15:08:36.2731152+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->127.0.0.1 + +2025-01-08T15:08:36.2743088+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->::1 + +2025-01-08T15:08:36.4301848+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/locations/recent responded 200 in 503.3294 ms + +2025-01-08T15:08:36.4303030+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/docs/recent responded 200 in 503.1402 ms + +2025-01-08T15:08:36.7766484+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 517.1939 ms + +2025-01-08T15:08:37.0788614+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 252.0826 ms + +2025-01-08T15:08:43.8890112+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/servicemanager/userconnected responded 200 in 7429.6606 ms + +2025-01-08T15:08:44.1971841+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 286.2621 ms + +2025-01-08T15:08:55.8467071+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T15:08:56.9692569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-08T15:09:05.5705926+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:09:27.8313714+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:09:28.6975616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-08T15:09:50.4905507+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:09:50.7743689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T15:09:53.6629835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T15:09:54.7605243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.3] + +2025-01-08T15:09:55.8529390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.25] + +2025-01-08T15:09:57.0095809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T15:10:02.0738450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-01-08T15:10:02.8606288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[152.199.19.161, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T15:10:03.9512653+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.113.5] + +2025-01-08T15:10:09.6707833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8001::154, 2606:50c0:8003::154, 2606:50c0:8002::154] + +2025-01-08T15:10:10.5616653+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::66] + +2025-01-08T15:10:12.7609231+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::42, 2620:1ec:bdf::40, 13.107.246.64] + +2025-01-08T15:10:13.9298705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.9] + +2025-01-08T15:10:15.2268534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T15:10:20.9434398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.163, 20.190.144.161] + +2025-01-08T15:10:30.6845825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.133, 20.190.166.67, 20.190.166.68] + +2025-01-08T15:10:32.6263027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 52.109.56.130] + +2025-01-08T15:10:33.8660389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-08T15:10:34.3293500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T15:10:35.3681645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.74.49] + +2025-01-08T15:10:40.1101228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.114.4] + +2025-01-08T15:10:46.6523318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 52.109.44.112] + +2025-01-08T15:10:59.6145746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-08T15:11:30.3027708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::42, 13.107.246.64, 13.107.246.63] + +2025-01-08T15:12:00.8930778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 2606:2800:11f:17a5:191a:18d5:537:22f9] + +2025-01-08T15:12:28.9634822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.51, 13.107.246.74] + +2025-01-08T15:12:30.6349141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-01-08T15:12:51.1421636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-08T15:12:54.0626488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T15:13:11.9878858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-08T15:13:17.5663892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T15:13:29.4991153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.3] + +2025-01-08T15:13:31.9168244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.63, 13.107.246.74] + +2025-01-08T15:13:56.9808367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-01-08T15:14:17.4145965+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-01-08T15:14:17.4180649+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->::1 + +2025-01-08T15:14:19.9011802+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 2458.1344 ms + +2025-01-08T15:14:25.0744564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 13.107.246.74, 13.107.246.44] + +2025-01-08T15:14:29.1512089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 2606:4700::6811:190e] + +2025-01-08T15:14:29.6600718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.42, 2620:1ec:bdf::44] + +2025-01-08T15:14:32.0715911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T15:14:41.6147628+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1047:1:150::3, 2603:1046:2000:158::4] + +2025-01-08T15:14:42.6168767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.5] + +2025-01-08T15:14:44.5706754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::61] + +2025-01-08T15:14:44.5731422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 40.90.133.97] + +2025-01-08T15:14:50.8669683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T15:14:50.9315690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-08T15:15:04.0725064+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:16:55.2755727+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:17:06.6995020+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:17:07.1052337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.5] + +2025-01-08T15:17:07.9822170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-08T15:17:29.7159764+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:17:32.2789541+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:17:33.4945790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T15:17:35.3963419+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:17:39.1608340+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:17:41.6359755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T15:17:44.4132084+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:17:44.8577564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.114.26] + +2025-01-08T15:17:49.2773384+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:17:49.6320908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T15:18:11.3232243+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:18:11.7368236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.113.22] + +2025-01-08T15:18:22.4566674+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:18:23.6043162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 2606:50c0:8002::154] + +2025-01-08T15:18:49.4368103+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:19:07.5986363+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:19:29.6821553+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:19:29.9270630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.35, 13.107.246.46, 13.107.246.70] + +2025-01-08T15:19:31.0011718+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:19:31.7010253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.11] + +2025-01-08T15:19:53.5475518+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:19:54.1051043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.2] + +2025-01-08T15:19:58.9210683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.160, 20.190.144.161] + +2025-01-08T15:20:00.4045660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:158::3, 2603:1047:1:150::1, 2603:1046:2000:148::5] + +2025-01-08T15:20:10.5709424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-08T15:20:18.9269547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T15:20:19.7978401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-01-08T15:20:20.4416876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T15:20:30.1160681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::67, 13.107.246.42] + +2025-01-08T15:20:50.7806128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::67, 2620:1ec:bdf::36] + +2025-01-08T15:20:50.7846308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 40.90.133.97] + +2025-01-08T15:21:15.9209193+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.7] + +2025-01-08T15:21:53.7907066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-01-08T15:21:58.3383132+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-08T15:21:58.3394569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-08T15:22:23.3004530+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.3] + +2025-01-08T15:22:35.7366828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.44.111] + +2025-01-08T15:22:38.7069613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.3] + +2025-01-08T15:22:39.3355027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 172.67.141.24, 104.21.70.253] + +2025-01-08T15:22:45.6329745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.112.25] + +2025-01-08T15:22:51.4584739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::41, 2620:1ec:bdf::44] + +2025-01-08T15:23:13.1415786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.113.22] + +2025-01-08T15:23:13.1435184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.35, 13.107.246.70, 2620:1ec:bdf::67] + +2025-01-08T15:23:35.6672259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.4] + +2025-01-08T15:23:52.2189289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::41, 13.107.246.35] + +2025-01-08T15:24:28.8962386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T15:24:30.6224708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::67, 13.107.246.70] + +2025-01-08T15:24:30.6249920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::41, 2620:1ec:bdf::67] + +2025-01-08T15:24:33.6932481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.137, 20.190.144.165] + +2025-01-08T15:24:53.7954753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 20.87.245.6] + +2025-01-08T15:24:53.7976429+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.70, 2620:1ec:bdf::63] + +2025-01-08T15:24:53.7988910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::41, 2620:1ec:bdf::36] + +2025-01-08T15:24:53.7998653+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 20.135.6.2] + +2025-01-08T15:24:55.3405152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-01-08T15:25:04.8445673+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:25:32.8303642+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:25:52.2934738+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T15:25:52.8789234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-08T15:25:54.4069784+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:25:54.4751177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T15:26:15.5260741+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:26:15.6575831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-01-08T15:26:16.1820987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T15:26:19.7246762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T15:26:20.2642069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::41, 13.107.246.42] + +2025-01-08T15:26:49.5066228+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:27:02.4020158+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:27:07.6186823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.166, 20.190.148.164] + +2025-01-08T15:27:22.8760364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.144.136, 20.190.144.137] + +2025-01-08T15:27:25.9950003+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:27:35.7259813+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:27:37.2329099+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:27:38.6829103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T15:27:43.2968678+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:27:44.7894592+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:27:44.9550486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-01-08T15:28:10.7154294+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:28:30.8042742+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T15:28:57.7664581+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:28:59.1969548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.114.22] + +2025-01-08T15:29:00.2124017+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:29:01.5883311+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:29:03.8097280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8000::154, 2606:50c0:8003::154] + +2025-01-08T15:29:08.6065650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.70, 13.107.246.64] + +2025-01-08T15:29:21.2634107+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:29:43.8376792+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:29:44.1180404+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::36, 13.107.253.45] + +2025-01-08T15:30:09.5247579+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:30:10.0103616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.7, 20.135.6.2] + +2025-01-08T15:30:16.5793301+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:30:17.8323384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-08T15:30:25.9233667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.165, 20.190.144.136] + +2025-01-08T15:30:33.3833096+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.5] + +2025-01-08T15:30:34.4675911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-01-08T15:31:08.4097676+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:31:08.6749921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.44, 13.107.246.70] + +2025-01-08T15:31:09.3764976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.7] + +2025-01-08T15:31:09.7335692+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::36, 2620:1ec:29:1::45] + +2025-01-08T15:31:11.6477086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T15:31:12.2209175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.24.14] + +2025-01-08T15:31:12.5924085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T15:31:12.5939674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T15:31:22.6520169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.55, 2620:1ec:bdf::46, 2620:1ec:29:1::70] + +2025-01-08T15:31:23.0987219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.42, 13.107.253.45] + +2025-01-08T15:31:24.9435200+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.2] + +2025-01-08T15:31:25.4060557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.0] + +2025-01-08T15:31:26.6563667+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:31:28.9783569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-01-08T15:32:03.4004178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.148.165, 20.190.144.136] + +2025-01-08T15:32:03.5201967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.144.136, 20.190.144.166] + +2025-01-08T15:32:38.7640084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.15] + +2025-01-08T15:32:52.1421503+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::12, 2603:1047:1:a0::8, 2603:1047:1:a0::11] + +2025-01-08T15:33:00.7647899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T15:33:01.6882203+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 2606:4700:3032::ac43:8d18] + +2025-01-08T15:33:02.7856535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-08T15:33:09.4527987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-08T15:33:10.2078944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.114.26] + +2025-01-08T15:33:11.0460405+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T15:33:12.0862048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.55, 2620:1ec:bdf::46] + +2025-01-08T15:33:12.0880106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:29:1::45, 2620:1ec:bdf::69] + +2025-01-08T15:33:16.1665242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.26] + +2025-01-08T15:33:24.3969973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::42, 13.107.246.51] + +2025-01-08T15:33:34.7432466+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 117.18.232.200] + +2025-01-08T15:33:37.3941234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T15:33:51.7463222+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-08T15:33:51.7481392+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-08T15:33:52.6063785+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 837.9813 ms + +2025-01-08T15:33:52.7487082+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 837.5379 ms + +2025-01-08T15:33:53.9155361+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-08T15:33:53.9167057+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-01-08T15:33:56.3717792+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 2425.0485 ms + +2025-01-08T15:33:56.4223364+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 869.7325 ms + +2025-01-08T15:33:59.7420118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.22] + +2025-01-08T15:34:08.8422361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.55, 2620:1ec:bdf::61] + +2025-01-08T15:34:15.9575224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-08T15:34:33.7626920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T15:34:35.0729444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-08T15:34:45.1651809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.55, 13.107.246.73] + +2025-01-08T15:34:53.7913626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 2620:1ec:bdf::69, 13.107.246.63] + +2025-01-08T15:34:56.4876353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.63, 13.107.246.42] + +2025-01-08T15:34:56.7945302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.52.0, 2603:1046:1406::2] + +2025-01-08T15:35:02.2863366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-08T15:35:33.3211579+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:35:38.9585318+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:35:39.4048875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.112.3] + +2025-01-08T15:35:39.8927172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T15:35:40.1083807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-01-08T15:35:45.4950176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.63, 13.107.246.55] + +2025-01-08T15:35:45.7672787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.52.0] + +2025-01-08T15:35:47.0585563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.164, 20.190.148.165] + +2025-01-08T15:35:54.2200348+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:36:16.2976688+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:36:16.3727834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T15:36:16.7394039+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:36:16.7420539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T15:36:17.3760243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.63, 13.107.246.44] + +2025-01-08T15:36:21.6921684+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T15:36:23.2408962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-08T15:36:23.9381788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.63, 2620:1ec:bdf::64] + +2025-01-08T15:36:24.2645858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.161, 20.190.148.164] + +2025-01-08T15:36:26.0228792+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.0, 2603:1046:1404::1] + +2025-01-08T15:36:30.2537035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-01-08T15:36:31.0890511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.0] + +2025-01-08T15:36:52.8739044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.4] + +2025-01-08T15:37:19.8354324+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:37:20.4036618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 2603:1046:1402::5, 52.109.52.84] + +2025-01-08T15:37:22.1735581+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:37:22.6942027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.161, 20.190.148.165] + +2025-01-08T15:37:22.9153545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 20.190.144.139, 2603:1047:1:168::10] + +2025-01-08T15:37:24.9132616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-01-08T15:38:00.4779026+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:38:02.5299576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-08T15:38:03.4134244+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:38:03.5741902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 172.67.141.24, 2606:4700:3032::ac43:8d18] + +2025-01-08T15:38:08.2704526+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-01-08T15:38:08.2712927+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-01-08T15:38:11.4196046+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T15:38:11.4211242+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T15:38:13.2588731+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T15:38:13.2601958+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T15:38:13.6594064+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 386.4327 ms + +2025-01-08T15:38:13.7402106+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 77.5188 ms + +2025-01-08T15:38:25.3321331+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:38:46.6952268+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:39:08.1970407+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:39:13.4033055+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161] + +2025-01-08T15:39:34.7969784+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:39:35.3114447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 20.26.156.210] + +2025-01-08T15:39:37.4777702+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:39:37.9326098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.112.25] + +2025-01-08T15:39:39.0145802+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:39:39.4679128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.22] + +2025-01-08T15:39:43.8311428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T15:40:05.6291270+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:40:06.7701104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 185.199.111.133] + +2025-01-08T15:40:07.8454050+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:40:08.0956125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.52, 13.107.246.63] + +2025-01-08T15:40:09.4779660+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:40:11.0366764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 2603:1046:1402::5, 52.109.44.112] + +2025-01-08T15:40:11.7842364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.46, 13.107.246.64] + +2025-01-08T15:40:26.6436991+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-08T15:40:26.6452485+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-01-08T15:40:27.0450263+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T15:40:27.0458720+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T15:40:27.7256408+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 647.5104 ms + +2025-01-08T15:40:34.6988706+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:40:35.0065828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.15, 20.143.38.0] + +2025-01-08T15:40:45.0498003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.3] + +2025-01-08T15:40:47.2121262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.113.6] + +2025-01-08T15:40:50.4057837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.112.25] + +2025-01-08T15:40:51.3847804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.46, 2620:1ec:bdf::64] + +2025-01-08T15:41:40.6590860+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:41:41.0924857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T15:41:41.8420926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.2, 20.143.38.0] + +2025-01-08T15:41:42.3960640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.165, 20.190.144.136] + +2025-01-08T15:42:03.7144796+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:42:04.0302328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2d, 20.190.144.161, 2603:1047:1:168::1d] + +2025-01-08T15:42:09.2978065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-08T15:42:09.3735182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T15:42:09.6937492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-01-08T15:42:10.3040209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T15:42:39.8392878+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:42:40.0723695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::46, 13.107.246.46] + +2025-01-08T15:42:40.8899538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::67, 13.107.246.44] + +2025-01-08T15:42:42.2605950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-08T15:42:44.3155533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 20.143.38.0, 20.135.6.11] + +2025-01-08T15:42:49.9405993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.167, 20.190.144.136] + +2025-01-08T15:42:50.9361744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.167, 20.190.144.136] + +2025-01-08T15:42:53.1379235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.3] + +2025-01-08T15:43:02.6266128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T15:43:02.7632188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8000::154] + +2025-01-08T15:43:04.0668659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T15:43:04.5556093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 172.67.141.24, 172.64.80.1] + +2025-01-08T15:43:22.3662305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.44, 13.107.246.52] + +2025-01-08T15:43:55.3385993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-01-08T15:44:12.9245011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T15:44:13.7056205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.116.5] + +2025-01-08T15:44:14.3341150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T15:44:39.2921816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.26] + +2025-01-08T15:44:39.7160263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.114.22] + +2025-01-08T15:44:41.7651484+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.44, 13.107.246.40] + +2025-01-08T15:45:07.7944212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 20.143.38.0, 20.143.38.2] + +2025-01-08T15:45:08.3759111+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.136, 20.190.144.165] + +2025-01-08T15:45:21.6551525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T15:45:23.2276284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::46, 13.107.246.43] + +2025-01-08T15:45:36.7840053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.2, 20.143.38.2] + +2025-01-08T15:45:37.3418991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.148.167, 20.190.144.136] + +2025-01-08T15:45:37.4298140+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.166, 20.190.148.167] + +2025-01-08T15:45:53.5601297+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:46:13.1971372+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T15:47:06.0755602+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T15:47:10.2149017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-08T15:47:11.6057584+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:47:12.7352387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-01-08T15:47:13.2942781+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-08T15:47:28.8330915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.43, 2620:1ec:bdf::64] + +2025-01-08T15:47:30.0599892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T15:47:31.1224039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.2, 20.135.6.5] + +2025-01-08T15:47:54.3905087+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T15:48:18.0934859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.161, 20.190.148.165] + +2025-01-08T15:48:24.0569901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.161, 2603:1047:1:168::1f] + +2025-01-08T15:48:46.8204141+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:49:06.2972240+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:49:06.5412674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.113.4] + +2025-01-08T15:49:08.0320540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T15:49:08.9160609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-08T15:49:31.4767079+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:49:55.6647968+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:49:55.9467432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24, 2606:4700:3031::6815:46fd] + +2025-01-08T15:50:17.3639413+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:50:22.3718259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161] + +2025-01-08T15:52:27.4831745+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T15:52:27.8947647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.116.5] + +2025-01-08T15:52:31.0437212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.114.26] + +2025-01-08T15:52:32.1322263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.114.21] + +2025-01-08T15:52:36.7818712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T15:52:38.8685664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T15:52:40.1459612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-01-08T15:52:41.1746950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::67, 13.107.246.45] + +2025-01-08T15:52:42.0832203+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::35, 13.107.246.66] + +2025-01-08T15:52:43.3022235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.5, 20.135.6.2] + +2025-01-08T15:52:47.0694436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.136] + +2025-01-08T15:52:52.0562523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1f, 20.190.144.161, 20.190.148.167] + +2025-01-08T15:52:55.8587854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T15:52:57.5153117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T15:52:59.5718805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-01-08T15:53:00.2061731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T15:53:02.9119837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.113.6] + +2025-01-08T15:53:04.5661304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-08T15:53:10.2610540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.2, 13.105.74.49] + +2025-01-08T15:53:19.3198451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.166, 40.126.35.144] + +2025-01-08T15:53:19.6123525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1f, 20.190.144.161, 20.190.148.163] + +2025-01-08T15:53:21.5065426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.166, 20.190.148.167] + +2025-01-08T15:53:25.3741331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.166, 40.126.35.128] + +2025-01-08T15:54:08.8958210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-08T15:54:09.2942016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.114.3] + +2025-01-08T15:54:09.4557271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161] + +2025-01-08T15:54:09.5715974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-08T15:54:09.8571639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 13.105.74.49, 40.90.133.102] + +2025-01-08T15:54:11.0978769+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-08T15:54:19.7802089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.66, 2620:1ec:bdf::69] + +2025-01-08T15:54:33.1878277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T15:54:43.0505799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.74, 2620:1ec:bdf::57] + +2025-01-08T15:54:43.5070875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::65, 2620:1ec:bdf::67] + +2025-01-08T15:54:44.0893057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 40.90.133.102, 20.135.1.1] + +2025-01-08T15:54:59.8757500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T15:55:00.8666047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 40.90.133.102, 20.135.2.0] + +2025-01-08T15:55:05.1457917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.2, 40.90.133.102] + +2025-01-08T15:55:19.1827832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T15:55:19.1847844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T15:55:33.9538679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.114.5] + +2025-01-08T15:55:33.9558800+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::65, 13.107.246.45] + +2025-01-08T15:55:37.0957897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.1, 40.90.133.102] + +2025-01-08T15:55:37.0974168+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1406::7, 52.109.124.141] + +2025-01-08T15:55:37.0982207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T15:55:37.0989974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 40.126.35.128, 20.190.148.167] + +2025-01-08T15:55:38.7093410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.148.163, 20.190.148.166] + +2025-01-08T15:55:45.8208545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.1, 40.90.133.99] + +2025-01-08T15:55:47.2499937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-08T15:56:43.6591354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1036:2400::12] + +2025-01-08T15:56:46.9262827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T15:56:52.6940557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::15, 2603:1047:1:a0::14, 2603:1047:1:a0::11] + +2025-01-08T15:57:14.0434704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-08T15:57:17.8349328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.137, 20.190.144.138] + +2025-01-08T15:57:20.1179869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.114.26, 140.82.113.25] + +2025-01-08T15:57:21.5018654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-01-08T15:57:22.8013031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 117.18.232.200] + +2025-01-08T15:57:30.1545762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.4] + +2025-01-08T15:57:41.6031082+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:57:41.8901547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T15:58:03.1025824+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:58:24.4440805+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:58:24.8756284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.26] + +2025-01-08T15:58:46.3592182+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:59:07.6307806+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:59:07.8816729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T15:59:08.6451091+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:59:09.7809900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-01-08T15:59:31.5232816+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T15:59:31.9772196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.3] + +2025-01-08T15:59:33.0464144+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:59:34.8195960+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T15:59:35.2541140+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.114.21] + +2025-01-08T16:00:01.9641700+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:00:02.2468443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.45] + +2025-01-08T16:00:28.1636675+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:00:28.4378752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.64, 13.107.246.74] + +2025-01-08T16:00:41.4810364+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:00:42.6212151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-08T16:00:44.8191946+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:00:46.3099792+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T16:00:55.6360702+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:00:56.1291246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.191] + +2025-01-08T16:01:17.7950269+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:01:22.9940699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.1, 20.135.6.15] + +2025-01-08T16:01:44.7888361+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:01:46.1719235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-08T16:01:55.7751524+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:01:56.2255890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.138, 20.190.144.137] + +2025-01-08T16:02:05.0979509+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:02:05.6110884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::16, 2603:1047:1:a0::12, 2603:1047:1:a0::11] + +2025-01-08T16:02:27.1926917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T16:02:48.8670032+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:02:49.3121140+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-01-08T16:02:52.5870119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-08T16:03:00.1584928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-08T16:03:06.7070279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-01-08T16:03:08.6907663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T16:03:26.1223642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 13.105.28.1] + +2025-01-08T16:03:33.5829119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.138, 20.190.144.139] + +2025-01-08T16:03:37.3185521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.26] + +2025-01-08T16:03:52.6237922+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-08T16:03:52.6255303+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-08T16:03:53.4783690+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 843.5758 ms + +2025-01-08T16:03:53.8011556+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 1028.1422 ms + +2025-01-08T16:04:08.8523862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T16:04:08.9159256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T16:04:10.0502704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-01-08T16:04:10.0520520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T16:04:28.8584208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-08T16:04:32.5061090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.3] + +2025-01-08T16:05:02.4333156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.64, 13.107.246.69] + +2025-01-08T16:05:04.4005884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-08T16:05:04.4728268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.45, 13.107.246.55] + +2025-01-08T16:05:17.0503252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.15] + +2025-01-08T16:05:27.7446492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.9] + +2025-01-08T16:05:34.8346508+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T16:05:34.8364947+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T16:05:35.4993934+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 628.6758 ms + +2025-01-08T16:05:42.9339361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-01-08T16:05:44.0721408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-01-08T16:05:44.4941807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-01-08T16:05:44.4954630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.135.6.15] + +2025-01-08T16:05:50.5262420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::51, 13.107.246.45] + +2025-01-08T16:05:56.7605102+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.13] + +2025-01-08T16:06:18.7275937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.135.6.11] + +2025-01-08T16:06:20.2214553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.64, 13.107.246.61] + +2025-01-08T16:06:34.2494029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.114.6] + +2025-01-08T16:06:48.0245178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.113.21] + +2025-01-08T16:06:49.1564151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.61, 13.107.246.69] + +2025-01-08T16:06:54.8969539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1036:2400::14] + +2025-01-08T16:06:57.9899996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.139, 20.190.144.164] + +2025-01-08T16:07:12.1549838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.113.4] + +2025-01-08T16:07:13.3330714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.135.6.2] + +2025-01-08T16:07:17.8950225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.132, 20.190.166.68, 20.190.166.67] + +2025-01-08T16:07:34.2772629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1400::4] + +2025-01-08T16:07:34.2789371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.164, 20.190.148.166] + +2025-01-08T16:07:37.0443282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.45, 13.107.246.55] + +2025-01-08T16:07:37.3188383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.61, 13.107.246.36] + +2025-01-08T16:07:42.6509952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 13.107.42.18] + +2025-01-08T16:07:51.8085245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::63, 13.107.246.51] + +2025-01-08T16:07:57.2106240+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:08:18.6228772+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:08:19.1270600+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:08:19.6554501+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:08:22.7679076+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:08:23.1387231+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24, 2606:4700:3031::6815:46fd] + +2025-01-08T16:08:23.5713426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-08T16:08:24.0679662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-08T16:08:43.0354184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.25, 140.82.114.26] + +2025-01-08T16:08:46.8735606+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:08:51.8384759+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.61, 13.107.246.40] + +2025-01-08T16:08:52.9450907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.9] + +2025-01-08T16:09:00.5016810+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:09:08.4069622+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:09:13.1095275+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:09:18.1236264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-01-08T16:09:22.5545032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.3] + +2025-01-08T16:09:29.6656068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::63, 13.107.246.55] + +2025-01-08T16:09:33.2089586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T16:09:33.6590172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T16:09:54.1503590+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T16:09:55.0951902+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:10:02.0433682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.113.21] + +2025-01-08T16:10:02.4033191+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:10:32.8752721+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:10:33.3663765+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.46, 13.107.246.45] + +2025-01-08T16:10:35.7994190+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:10:35.8008744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 2620:1ec:bdf::45] + +2025-01-08T16:10:36.3554228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.2] + +2025-01-08T16:10:53.1007055+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-08T16:10:55.7454860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.4] + +2025-01-08T16:11:16.6709744+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:11:17.1926941+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:11:18.3265036+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8002::154, 185.199.109.133] + +2025-01-08T16:11:23.8503862+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:11:24.6268085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.45, 2620:1ec:bdf::73] + +2025-01-08T16:11:30.9397885+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:11:31.3874676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.15] + +2025-01-08T16:11:54.4257852+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:11:54.7663189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T16:12:01.1555047+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:12:01.6049021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-08T16:12:12.2451593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.166, 20.190.144.136] + +2025-01-08T16:12:18.7466126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.67, 20.190.166.66, 20.190.166.68] + +2025-01-08T16:12:22.8446731+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T16:12:22.8458758+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T16:12:23.5029575+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 626.6707 ms + +2025-01-08T16:12:31.5240995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.161, 20.190.144.136] + +2025-01-08T16:12:33.0991071+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T16:12:38.1133885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T16:13:11.0062374+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:13:25.2279776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3032::ac43:8d18, 172.67.141.24] + +2025-01-08T16:13:25.6499205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.24.14] + +2025-01-08T16:13:44.4684514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-01-08T16:13:48.9548705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T16:13:48.9566472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T16:13:54.9573247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.15] + +2025-01-08T16:14:07.3311979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.67, 20.190.166.66, 20.190.166.68] + +2025-01-08T16:14:09.3468620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T16:14:20.7134901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154] + +2025-01-08T16:14:21.0175219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 2620:1ec:bdf::45] + +2025-01-08T16:14:30.4769969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-01-08T16:14:35.8080045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.55] + +2025-01-08T16:14:38.2101771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T16:14:38.4738613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-08T16:14:38.5358044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T16:14:38.7650283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.112.5] + +2025-01-08T16:14:55.1301061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.116.3] + +2025-01-08T16:15:02.7074126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.114.21] + +2025-01-08T16:15:12.2077447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-08T16:15:13.5100463+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T16:15:36.7394436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.64, 2620:1ec:bdf::51] + +2025-01-08T16:15:36.8086256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.55, 13.107.246.51, 13.107.246.38] + +2025-01-08T16:15:41.3597178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T16:15:50.9957100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8002::154] + +2025-01-08T16:15:51.3468502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.38, 2620:1ec:bdf::63] + +2025-01-08T16:15:51.6517746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 52.109.52.84] + +2025-01-08T16:15:51.6528086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.2] + +2025-01-08T16:15:53.8111354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-08T16:15:53.8125194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-08T16:15:55.7471933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.15] + +2025-01-08T16:16:25.1573439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-01-08T16:16:26.1827865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::51, 2620:1ec:bdf::46] + +2025-01-08T16:16:26.5865737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:150::3, 2603:1046:2000:148::4, 20.190.166.67] + +2025-01-08T16:16:38.8868967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.2] + +2025-01-08T16:16:45.5964006+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:17:48.5988130+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T16:17:49.1520386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.133, 20.190.166.131, 20.190.166.68] + +2025-01-08T16:17:50.4513015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:150::3, 2603:1046:2000:148::4, 2603:1046:2000:148::5] + +2025-01-08T16:17:56.5068402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.113.21] + +2025-01-08T16:17:58.0651418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.64, 2620:1ec:bdf::51] + +2025-01-08T16:17:58.4196329+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.51, 2620:1ec:bdf::36] + +2025-01-08T16:18:00.8909342+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.15, 13.105.74.49] + +2025-01-08T16:18:23.5809868+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:18:26.3864683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T16:18:26.7770300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:190e, 104.17.24.14] + +2025-01-08T16:18:27.1148896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.6] + +2025-01-08T16:18:32.0682397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::36, 13.107.246.38] + +2025-01-08T16:18:32.6188153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.15, 20.135.6.7] + +2025-01-08T16:18:40.8626802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.55, 2620:1ec:bdf::36] + +2025-01-08T16:18:46.3145804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.113.26] + +2025-01-08T16:18:50.3059832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T16:18:50.3083451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T16:18:54.1806263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.64, 13.107.246.71] + +2025-01-08T16:18:58.0247032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.116.4] + +2025-01-08T16:18:59.2800558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.7, 13.105.28.16] + +2025-01-08T16:19:01.0858310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-08T16:19:08.2335470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.7, 13.105.74.50] + +2025-01-08T16:19:08.3139012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.68, 20.190.166.132, 20.190.166.66] + +2025-01-08T16:19:25.9444495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154] + +2025-01-08T16:19:28.6626794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-01-08T16:19:30.8727804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.7, 13.105.28.16] + +2025-01-08T16:19:37.6383087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::36, 13.107.246.38] + +2025-01-08T16:19:44.3281826+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T16:19:44.5813110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T16:19:44.8459873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T16:20:05.9440714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 140.82.116.4, 140.82.116.3] + +2025-01-08T16:20:22.4482724+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.21] + +2025-01-08T16:20:25.5706343+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::36, 13.107.246.71] + +2025-01-08T16:20:46.7044283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.4] + +2025-01-08T16:20:50.0525681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-01-08T16:20:51.7805085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T16:20:52.0565687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T16:20:53.8103330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.61, 2620:1ec:bdf::36] + +2025-01-08T16:20:56.5760402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.116.4, 140.82.116.3, 140.82.121.4] + +2025-01-08T16:21:26.4740811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.64, 13.107.246.66] + +2025-01-08T16:21:26.4767601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.46, 13.107.246.61] + +2025-01-08T16:21:27.0501726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.7, 20.143.38.2] + +2025-01-08T16:21:27.1157039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::4, 2603:1047:1:150::3, 2603:1046:2000:148::2] + +2025-01-08T16:21:44.3826121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.15, 20.143.38.2] + +2025-01-08T16:21:54.7582874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.65, 13.107.246.46] + +2025-01-08T16:22:04.7206230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T16:22:06.1959788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1404::5] + +2025-01-08T16:22:55.3080693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.67, 20.190.166.66, 20.190.166.132] + +2025-01-08T16:23:02.0695957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-01-08T16:23:02.4718875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.21] + +2025-01-08T16:23:04.6001359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.46, 13.107.246.61] + +2025-01-08T16:23:04.9036346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T16:23:05.1711913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.7, 20.135.6.15] + +2025-01-08T16:23:08.0396867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.135.6.7] + +2025-01-08T16:23:18.9105156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.64, 13.107.246.71] + +2025-01-08T16:23:30.8918894+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:23:33.5960692+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:23:37.0423369+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:23:37.7225164+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:23:37.8874164+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd] + +2025-01-08T16:23:58.9388279+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:23:59.3355502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-08T16:24:20.7750411+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:24:42.0975500+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:24:57.9394589+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:25:20.0910619+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:25:20.5004114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.25] + +2025-01-08T16:25:21.8461113+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:26:22.6706769+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T16:26:23.0987773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-08T16:26:48.6042369+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:26:49.7544574+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:26:50.1524934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.116.3] + +2025-01-08T16:27:11.9416757+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:27:16.9529431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-08T16:27:48.5872409+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:27:51.4640693+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:27:51.7545885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.73, 2620:1ec:bdf::51] + +2025-01-08T16:28:17.4782565+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:28:17.7319300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.55, 13.107.246.61] + +2025-01-08T16:28:25.9335272+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:28:26.3815925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-08T16:28:29.5486273+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.2, 20.135.6.11] + +2025-01-08T16:28:31.0109256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T16:28:32.2962871+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.164, 20.190.144.162] + +2025-01-08T16:28:36.3425511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 20.190.141.36, 20.190.141.34] + +2025-01-08T16:28:39.3038350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T16:28:40.0260146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-01-08T16:28:40.8947691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-08T16:28:42.2607599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24, 2606:4700:3031::6815:46fd] + +2025-01-08T16:28:44.3913795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T16:28:52.8736207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T16:28:55.9407186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-01-08T16:29:06.1203628+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::70, 13.107.246.46, 13.107.246.73] + +2025-01-08T16:29:07.1122312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.2, 20.135.6.2] + +2025-01-08T16:29:10.4569064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-08T16:29:20.5623752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.136, 20.190.148.163] + +2025-01-08T16:29:38.6833459+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.61, 13.107.246.57] + +2025-01-08T16:29:58.9756078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.47, 13.107.246.44] + +2025-01-08T16:30:01.2195136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-08T16:30:24.3145617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.112.26] + +2025-01-08T16:30:57.9997490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.6] + +2025-01-08T16:30:59.1007581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 20.233.83.145] + +2025-01-08T16:31:07.3807087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::70, 2620:1ec:29:1::45, 13.107.246.46] + +2025-01-08T16:31:24.6364003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.113.21] + +2025-01-08T16:31:34.0516075+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.113.25] + +2025-01-08T16:31:51.7309289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1a, 20.190.144.164, 20.190.144.162] + +2025-01-08T16:32:10.6721976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.2, 13.105.74.49] + +2025-01-08T16:32:11.2324658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.136, 20.190.144.165] + +2025-01-08T16:32:14.5315005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8000::154, 2606:50c0:8001::154, 185.199.109.133] + +2025-01-08T16:32:17.4393081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-08T16:32:17.5803662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8000::154, 2606:50c0:8001::154] + +2025-01-08T16:32:29.5746293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::70, 2620:1ec:29:1::45, 13.107.246.73] + +2025-01-08T16:32:52.1216202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::70, 13.107.246.74] + +2025-01-08T16:32:52.1882668+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.47, 13.107.246.73] + +2025-01-08T16:32:55.2874276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.112.26] + +2025-01-08T16:32:58.0862651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.114.5] + +2025-01-08T16:33:04.3358511+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T16:33:04.3367404+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T16:33:04.3815893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.143.38.2] + +2025-01-08T16:33:08.7028464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-01-08T16:33:09.1508842+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.73, 2620:1ec:bdf::70] + +2025-01-08T16:33:25.5652789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.4] + +2025-01-08T16:33:26.5724510+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 20.233.83.145] + +2025-01-08T16:33:26.7634816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.47, 13.107.246.57] + +2025-01-08T16:33:33.3489674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 13.105.74.49] + +2025-01-08T16:33:33.6296838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-01-08T16:33:34.3782783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.138, 20.190.148.165] + +2025-01-08T16:33:37.6448582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1a, 2603:1047:1:168::1d, 2603:1047:1:168::27] + +2025-01-08T16:33:41.6508993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.150, 20.190.144.166, 20.190.144.138] + +2025-01-08T16:33:43.4869101+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T16:33:43.6122178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-01-08T16:33:43.9061798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T16:33:44.3765982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-01-08T16:33:46.8451928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T16:33:46.8472877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T16:33:53.4902006+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-08T16:33:53.4919707+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-08T16:33:55.1440744+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-08T16:33:55.1449962+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-01-08T16:33:55.4196105+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 1891.8284 ms + +2025-01-08T16:33:56.0785761+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 905.5297 ms + +2025-01-08T16:33:56.1705107+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 2345.4146 ms + +2025-01-08T16:33:56.9503059+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 155.6216 ms + +2025-01-08T16:33:57.9062299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.22] + +2025-01-08T16:34:00.3475015+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 174.3327 ms + +2025-01-08T16:34:00.3499391+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 176.888 ms + +2025-01-08T16:34:00.3639214+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 190.663 ms + +2025-01-08T16:34:00.5224551+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 304 in 339.4343 ms + +2025-01-08T16:34:03.1616294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::69, 13.107.246.47] + +2025-01-08T16:34:06.8148178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.73, 13.107.246.51] + +2025-01-08T16:34:10.1018131+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/Default.json responded 404 in 158.6684 ms + +2025-01-08T16:34:12.2875050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-08T16:34:18.1172213+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 304 in 172.61 ms + +2025-01-08T16:34:21.0244787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.143.38.0] + +2025-01-08T16:34:28.0186665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.164, 20.190.144.160] + +2025-01-08T16:34:50.8482197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.64.80.1, 2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd] + +2025-01-08T16:35:00.5784151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.57, 13.107.246.74] + +2025-01-08T16:35:00.9572676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1d, 2603:1047:1:168::20, 2603:1047:1:168::27] + +2025-01-08T16:35:02.1945106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.114.5] + +2025-01-08T16:35:10.0380193+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.4] + +2025-01-08T16:35:24.0619830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.26] + +2025-01-08T16:35:25.2873012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.113.25] + +2025-01-08T16:35:35.8689312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.191] + +2025-01-08T16:36:04.2462764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.71, 13.107.246.57] + +2025-01-08T16:36:13.1382695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 2620:1ec:bdf::44, 13.107.246.73] + +2025-01-08T16:36:25.3795898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.114.21] + +2025-01-08T16:36:43.3376190+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.131, 20.190.166.132, 20.190.166.68] + +2025-01-08T16:37:02.2138023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.66, 13.107.246.71] + +2025-01-08T16:37:15.9943830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-01-08T16:37:19.1342647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-08T16:37:41.5890617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.2] + +2025-01-08T16:37:52.7579892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.66, 2620:1ec:bdf::40] + +2025-01-08T16:37:52.8292828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.74, 2620:1ec:bdf::44] + +2025-01-08T16:37:59.2534518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.6] + +2025-01-08T16:38:04.7138038+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T16:38:04.7162616+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T16:38:10.4101610+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T16:38:10.4118882+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T16:38:10.7519908+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 323.7094 ms + +2025-01-08T16:38:10.8235426+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.0462 ms + +2025-01-08T16:38:19.5396299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.57, 13.107.246.44] + +2025-01-08T16:38:19.5420068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.44, 13.107.246.74] + +2025-01-08T16:38:26.6532948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 2603:1047:1:168::1d, 2603:1047:1:168::20] + +2025-01-08T16:38:35.0321090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.4] + +2025-01-08T16:38:35.8836655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.164, 20.190.148.166] + +2025-01-08T16:38:46.4058023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T16:38:46.6865119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T16:38:47.8292919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-08T16:38:47.8921569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T16:38:48.3399393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T16:38:52.8941131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T16:38:58.4789746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.112.22] + +2025-01-08T16:39:13.1465569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.44, 13.107.246.66] + +2025-01-08T16:39:15.0533008+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-08T16:39:16.2567806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 20.233.83.145] + +2025-01-08T16:39:40.3173921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.5] + +2025-01-08T16:39:52.5341958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.64.80.1, 172.67.141.24, 2606:4700:3031::6815:46fd] + +2025-01-08T16:39:53.0634266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.66, 2620:1ec:bdf::40] + +2025-01-08T16:40:02.6312814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.6] + +2025-01-08T16:40:12.0943128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.4] + +2025-01-08T16:40:27.8042162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.25] + +2025-01-08T16:40:35.3071662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-01-08T16:40:37.3006915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.4] + +2025-01-08T16:40:43.6909983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.2] + +2025-01-08T16:40:46.4678574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T16:40:58.7105009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T16:41:01.1276721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.6] + +2025-01-08T16:41:05.2948077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.44, 13.107.246.66] + +2025-01-08T16:41:09.8490734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 20.233.83.146] + +2025-01-08T16:41:09.9509810+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-08T16:41:09.9527909+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-01-08T16:41:10.2847186+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T16:41:10.2861080+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T16:41:10.8707477+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 550.2784 ms + +2025-01-08T16:41:17.4825495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T16:41:18.6170049+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::36, 13.107.246.44] + +2025-01-08T16:41:19.2455377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.71, 13.107.246.44] + +2025-01-08T16:41:25.9613468+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.114.21] + +2025-01-08T16:41:43.8859914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.68, 20.190.166.132, 20.190.166.67] + +2025-01-08T16:42:17.3758290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8001::154] + +2025-01-08T16:42:20.4192575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T16:42:25.0791964+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-01-08T16:42:43.0842063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.5] + +2025-01-08T16:42:54.9980287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.6] + +2025-01-08T16:42:55.0722048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::36, 13.107.246.74] + +2025-01-08T16:42:55.1396667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.71, 13.107.246.74] + +2025-01-08T16:43:10.3339314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 20.233.83.146] + +2025-01-08T16:43:10.8666815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.74, 13.107.246.44] + +2025-01-08T16:43:19.9315400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.74, 13.107.246.45] + +2025-01-08T16:43:27.6158360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-08T16:43:28.8283099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.148.166, 20.190.144.137] + +2025-01-08T16:43:38.2281263+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:43:59.2666580+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:44:20.5713824+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:44:21.4350883+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:44:21.7529253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T16:44:25.7634115+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:44:26.1044417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-08T16:44:37.5758345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T16:44:41.3062957+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:44:42.4321009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-01-08T16:45:03.9963109+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:45:04.1852153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T16:45:41.8965453+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:46:05.6749723+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T16:46:15.9588510+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:46:19.9803227+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:46:20.3793649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.114.26] + +2025-01-08T16:46:46.9238906+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:46:55.1895801+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:46:55.6197591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.114.21] + +2025-01-08T16:47:16.9888803+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T16:47:18.1292679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-01-08T16:47:41.1536197+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:47:42.2378005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.44] + +2025-01-08T16:48:02.2495237+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T16:48:02.2508386+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T16:48:02.5156942+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T16:48:16.9994966+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:48:20.4091494+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T16:48:20.4100413+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T16:48:21.7951788+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 1372.2701 ms + +2025-01-08T16:48:21.8563226+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.6839 ms + +2025-01-08T16:48:24.4558368+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T16:48:24.6891593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.41, 2620:1ec:bdf::74] + +2025-01-08T16:48:32.9329530+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.4767 ms + +2025-01-08T16:48:32.9971202+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.4918 ms + +2025-01-08T16:48:51.2753346+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T16:48:51.7680741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 2603:1046:1406::2, 52.109.52.0] + +2025-01-08T16:48:52.9551977+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.8127 ms + +2025-01-08T16:48:53.3248325+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 366.8961 ms + +2025-01-08T16:48:54.9225386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.15, 20.143.38.2] + +2025-01-08T16:49:00.8324851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.131, 20.190.166.66, 20.190.166.68] + +2025-01-08T16:49:06.7226369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.166, 20.190.148.162] + +2025-01-08T16:49:09.7542222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T16:49:15.4172067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-08T16:49:17.8303373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T16:49:23.1860659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T16:49:24.3105432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.3] + +2025-01-08T16:49:28.7393162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-01-08T16:49:29.6237488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.51, 2620:1ec:bdf::74] + +2025-01-08T16:49:33.1435894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T16:49:39.1062595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T16:49:39.1094613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T16:49:45.2704737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-01-08T16:50:01.0789082+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 337.8786 ms + +2025-01-08T16:50:01.1421037+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.6727 ms + +2025-01-08T16:50:16.3012044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.135.6.2] + +2025-01-08T16:50:17.3105009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-08T16:50:58.5334546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.2] + +2025-01-08T16:51:00.6899069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.2] + +2025-01-08T16:51:07.5725375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.74.49] + +2025-01-08T16:51:21.4570409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.113.25] + +2025-01-08T16:51:46.5063236+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 382.111 ms + +2025-01-08T16:51:46.5846627+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 73.1735 ms + +2025-01-08T16:51:56.3027026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-01-08T16:51:58.2876088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.165, 20.190.144.164] + +2025-01-08T16:51:58.7166677+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->::1 + +2025-01-08T16:51:58.7222477+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-01-08T16:51:59.8585300+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.gstatic.com/ => https://gapis.geekzu.org/g-fonts/ + +2025-01-08T16:52:00.0599224+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.gstatic.com/s/notosans/v38/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a7duw.woff2 responded 502 in 202.2602 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T16:52:00.0599177+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.gstatic.com/ => https://gapis.geekzu.org/g-fonts/ + +2025-01-08T16:52:01.8708351+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-01-08T16:52:01.8723387+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-01-08T16:52:08.6200360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T16:52:08.8046376+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.gstatic.com/s/notosans/v38/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a7duw.woff2 responded 302 in 8744.706 ms + +2025-01-08T16:52:09.7956000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.47] + +2025-01-08T16:52:18.6879702+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-01-08T16:52:18.6898773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.57] + +2025-01-08T16:52:22.5067802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.46, 2620:1ec:bdf::74] + +2025-01-08T16:52:43.3180559+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.3199 ms + +2025-01-08T16:52:43.3971248+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.1836 ms + +2025-01-08T16:52:50.9386202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.49, 20.135.6.11] + +2025-01-08T16:52:54.3847356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.3] + +2025-01-08T16:52:54.9652750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 13.107.246.42] + +2025-01-08T16:52:55.1643991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 13.105.74.49] + +2025-01-08T16:53:00.6954159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1406::7] + +2025-01-08T16:53:04.4042775+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.5548 ms + +2025-01-08T16:53:04.4692495+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.3501 ms + +2025-01-08T16:53:04.7025759+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.gstatic.com/ => https://gapis.geekzu.org/g-fonts/ + +2025-01-08T16:53:04.9149002+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.gstatic.com/ => https://gapis.geekzu.org/g-fonts/ + +2025-01-08T16:53:04.9150559+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.gstatic.com/s/notosans/v38/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a7duw.woff2 responded 502 in 212.5159 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T16:53:05.3887870+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.gstatic.com/s/notosans/v38/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a7duw.woff2 responded 302 in 473.9344 ms + +2025-01-08T16:53:06.0802019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-08T16:53:08.1059234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.114.6] + +2025-01-08T16:53:10.7137360+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T16:53:10.7158898+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T16:53:15.4307496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.162, 20.190.148.165] + +2025-01-08T16:53:25.5492228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.64.80.1, 2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd] + +2025-01-08T16:53:26.3438173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-01-08T16:53:27.1519818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.42, 13.107.246.73] + +2025-01-08T16:53:27.2228053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.66, 2620:1ec:bdf::69] + +2025-01-08T16:53:36.4419393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.113.5] + +2025-01-08T16:53:38.6140356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-08T16:53:42.6720113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::44, 13.107.246.42] + +2025-01-08T16:53:42.8942875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 2603:1046:1406::2, 52.109.44.108] + +2025-01-08T16:53:44.5808799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.66, 2620:1ec:bdf::64] + +2025-01-08T16:53:44.9275577+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T16:53:45.7505672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.86, 40.126.35.81, 40.126.35.87] + +2025-01-08T16:53:45.7528196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.164] + +2025-01-08T16:53:58.6824932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-08T16:54:00.6908009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 20.143.38.0] + +2025-01-08T16:54:12.1062636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.157.1, 20.190.157.3, 20.190.157.2] + +2025-01-08T16:54:12.5667501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.148.163, 2603:1047:1:168::28] + +2025-01-08T16:54:14.3969391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T16:54:16.2185850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T16:54:19.3108384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T16:54:28.4479331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.6] + +2025-01-08T16:54:31.4022667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.57, 2620:1ec:bdf::44] + +2025-01-08T16:54:34.6764995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-08T16:54:34.9683282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-01-08T16:54:35.2823144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.64.80.1, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T16:54:40.1298637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T16:54:40.1954315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T16:54:42.6853437+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-08T16:54:50.8582971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T16:54:52.6141367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-01-08T16:54:55.2766894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.114.3] + +2025-01-08T16:54:56.0916319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.11] + +2025-01-08T16:56:25.1328086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.166, 20.190.148.164] + +2025-01-08T16:56:26.4503449+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5] + +2025-01-08T16:56:29.3119837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.112.26] + +2025-01-08T16:56:33.2614547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.143.38.0] + +2025-01-08T16:56:49.1406050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-01-08T16:56:56.4348367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.4] + +2025-01-08T16:56:56.7031467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.113.21] + +2025-01-08T16:56:58.5428521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.137, 20.190.144.160] + +2025-01-08T16:57:19.2830491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-08T16:57:20.4175665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-08T16:57:22.6753699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T16:57:22.7384822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::64, 13.107.246.46] + +2025-01-08T16:57:23.7480714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T16:57:56.0959019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.57, 2620:1ec:bdf::73] + +2025-01-08T16:58:32.2491158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.57, 13.107.246.44, 2620:1ec:bdf::44] + +2025-01-08T16:58:32.5389736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::64, 13.107.246.66] + +2025-01-08T16:58:34.0410789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.7] + +2025-01-08T16:58:43.2865043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.57, 13.107.246.44] + +2025-01-08T16:58:43.2893371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.46, 2620:1ec:bdf::64] + +2025-01-08T16:58:56.7781524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.166, 20.190.144.137] + +2025-01-08T16:59:02.6626360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.2] + +2025-01-08T16:59:11.5829265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.33, 20.190.141.37, 20.190.141.35] + +2025-01-08T16:59:20.5337425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T16:59:20.5361477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 13.107.42.18] + +2025-01-08T16:59:20.6519482+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-08T16:59:20.6552809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T16:59:21.0328751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-08T16:59:22.3627655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.143.38.2] + +2025-01-08T16:59:34.2605220+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.44, 2620:1ec:bdf::44] + +2025-01-08T16:59:36.2873879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.24.14] + +2025-01-08T16:59:36.4473117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 2606:4700:3032::ac43:8d18] + +2025-01-08T16:59:36.7415149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.64.80.1, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T16:59:40.9772697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T16:59:41.4197501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T16:59:48.9924919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-01-08T16:59:51.2314569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 2603:1046:1404::1] + +2025-01-08T16:59:54.3890371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-01-08T16:59:56.0945270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.137, 20.190.148.164] + +2025-01-08T17:00:22.5407207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.47, 2620:1ec:bdf::60, 13.107.246.41] + +2025-01-08T17:01:26.6059402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T17:01:27.7148629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.166, 20.190.148.164] + +2025-01-08T17:01:29.2606644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-01-08T17:01:41.5385636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.25] + +2025-01-08T17:01:46.8760485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.5] + +2025-01-08T17:01:52.7909941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.41, 13.107.246.44] + +2025-01-08T17:01:57.2305751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.113.21] + +2025-01-08T17:01:59.7234287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.148.164, 20.190.144.161] + +2025-01-08T17:02:13.5608219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.112.22] + +2025-01-08T17:02:19.7175244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.46, 13.107.246.60] + +2025-01-08T17:02:24.7557895+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T17:02:25.2144836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.4] + +2025-01-08T17:02:25.2159669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T17:02:25.2775110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.41, 13.107.246.60] + +2025-01-08T17:03:05.0541206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-01-08T17:03:31.0509820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T17:03:39.9856869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 2606:4700:3032::ac43:8d18] + +2025-01-08T17:03:45.3246755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::45, 13.107.246.44] + +2025-01-08T17:03:49.6288451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.61, 13.107.246.41, 13.107.246.46] + +2025-01-08T17:03:55.4348127+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-08T17:03:55.4365722+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-08T17:03:56.9946937+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 1524.8058 ms + +2025-01-08T17:03:57.0634442+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 847.5888 ms + +2025-01-08T17:03:57.8922269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-01-08T17:03:57.9785452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.148.164, 20.190.144.166] + +2025-01-08T17:04:03.2158921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.5] + +2025-01-08T17:04:12.8463987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.2] + +2025-01-08T17:04:14.3119934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.167, 20.190.148.166] + +2025-01-08T17:04:14.5886493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.34, 20.190.141.37, 20.190.141.35] + +2025-01-08T17:04:20.8571348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T17:04:20.9831369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-08T17:04:20.9856479+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T17:04:20.9872085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T17:04:22.3002797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-08T17:04:22.6083844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.61, 13.107.246.41, 13.107.246.60] + +2025-01-08T17:04:39.1894539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T17:04:39.4087202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.5] + +2025-01-08T17:04:39.8655027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-08T17:04:40.4889584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T17:04:44.6429789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T17:04:44.7856790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-08T17:04:44.7869650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T17:04:48.6351490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.61, 13.107.246.41, 2620:1ec:bdf::63] + +2025-01-08T17:04:50.1275507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-01-08T17:04:53.8761809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.4] + +2025-01-08T17:04:54.1999495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.15] + +2025-01-08T17:04:55.6535031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-01-08T17:05:13.5660201+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.2] + +2025-01-08T17:05:37.0021650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.44, 13.107.246.73] + +2025-01-08T17:05:45.7227158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.73, 13.107.246.44] + +2025-01-08T17:06:03.9454966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.2] + +2025-01-08T17:06:28.9393473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.167, 20.190.148.165] + +2025-01-08T17:06:30.2171500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.113.3] + +2025-01-08T17:06:41.5340081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.112.26] + +2025-01-08T17:06:43.5587195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.113.25] + +2025-01-08T17:06:47.6571703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.112.5] + +2025-01-08T17:06:53.2666027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.44, 2620:1ec:bdf::63] + +2025-01-08T17:06:58.4675825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.113.4] + +2025-01-08T17:06:58.7133992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.112.22] + +2025-01-08T17:07:06.8513972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.112.4] + +2025-01-08T17:07:14.8455885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.21] + +2025-01-08T17:07:21.7830987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T17:07:21.7853606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-08T17:07:25.8133240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T17:07:26.1711079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T17:07:27.7589796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.61, 2620:1ec:bdf::63, 2620:1ec:bdf::67] + +2025-01-08T17:07:30.1901206+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T17:07:30.1910709+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T17:07:30.8317223+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 614.2137 ms + +2025-01-08T17:07:31.2737629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.61, 13.107.246.45, 2620:1ec:bdf::63] + +2025-01-08T17:07:31.4192385+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 306.71 ms + +2025-01-08T17:08:37.7993929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.44] + +2025-01-08T17:08:38.1529771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.61, 13.107.246.45, 2620:1ec:bdf::40] + +2025-01-08T17:08:49.9384318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::40, 13.107.246.74] + +2025-01-08T17:08:59.1618528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.191] + +2025-01-08T17:09:08.1931447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-08T17:09:15.1044991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.143.38.2] + +2025-01-08T17:09:15.7621591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.165, 20.190.144.136] + +2025-01-08T17:09:16.0632429+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.37, 20.190.141.32, 20.190.141.35] + +2025-01-08T17:09:34.5874090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T17:09:34.7309789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T17:09:34.8809885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T17:09:35.1819342+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T17:09:36.7516344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T17:09:37.4173193+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.74, 2620:1ec:bdf::63] + +2025-01-08T17:09:37.9160625+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.15] + +2025-01-08T17:09:40.3258640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-01-08T17:09:40.8007342+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-08T17:09:40.8024588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-01-08T17:09:41.0903696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.112.6] + +2025-01-08T17:09:43.5916257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 2603:1047:1:168::20, 20.190.148.167] + +2025-01-08T17:09:44.9455340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T17:09:46.4025970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T17:09:46.8624392+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.2] + +2025-01-08T17:09:48.6447476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-08T17:09:52.3678189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-08T17:09:53.4749013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-01-08T17:09:53.4766165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.165, 20.190.144.161] + +2025-01-08T17:09:57.6810736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-01-08T17:09:59.7458893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.2] + +2025-01-08T17:10:16.9966492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 2603:1047:1:168::20, 2603:1047:1:168::26] + +2025-01-08T17:10:31.7106415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 2620:1ec:bdf::69] + +2025-01-08T17:10:42.6993234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.143.38.0] + +2025-01-08T17:10:46.5301040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-08T17:10:53.0310931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::20, 2603:1047:1:168::26, 20.190.148.167] + +2025-01-08T17:10:54.1302874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 20.190.148.167, 20.190.148.163] + +2025-01-08T17:10:58.6323242+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T17:10:58.6374467+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T17:11:00.7302740+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T17:11:00.7324647+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T17:11:01.1103565+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 366.8911 ms + +2025-01-08T17:11:01.1780865+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.9844 ms + +2025-01-08T17:11:04.0087755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.6] + +2025-01-08T17:11:30.0903704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.166, 20.190.144.136] + +2025-01-08T17:11:42.4548096+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 74.5681 ms + +2025-01-08T17:11:42.5278575+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.0603 ms + +2025-01-08T17:11:43.0397571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.26] + +2025-01-08T17:11:45.8581293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-08T17:11:59.5116556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.113.4] + +2025-01-08T17:11:59.7710659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.113.21] + +2025-01-08T17:12:02.4457775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.137, 20.190.144.160] + +2025-01-08T17:12:15.5515910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.22] + +2025-01-08T17:12:36.7743383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8001::154] + +2025-01-08T17:12:50.9861031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-08T17:13:05.7148954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.2] + +2025-01-08T17:13:09.7856433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.112.4] + +2025-01-08T17:13:10.0131222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.5] + +2025-01-08T17:13:13.9479628+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.112.5] + +2025-01-08T17:13:38.2338857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::53, 13.107.246.36] + +2025-01-08T17:13:38.5852278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.63, 2620:1ec:bdf::74] + +2025-01-08T17:14:38.8597315+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:15:29.3746349+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:15:29.8138530+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.2, 20.135.6.2] + +2025-01-08T17:15:51.2944338+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:15:54.5975008+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.39, 20.190.141.34, 20.190.141.38] + +2025-01-08T17:16:12.3954036+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:16:12.8827364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.167, 2603:1047:1:168::26] + +2025-01-08T17:16:35.6961320+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:16:57.7943668+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:16:58.0323933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T17:17:19.5034301+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:17:24.5189322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133] + +2025-01-08T17:17:46.2930288+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:17:47.0137572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 20.26.156.215] + +2025-01-08T17:18:08.7566345+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:18:09.1255014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 172.67.141.24, 104.21.70.253] + +2025-01-08T17:18:15.1923599+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:18:15.5485128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-08T17:18:41.3253427+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:18:41.5678034+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T17:18:43.4750613+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:18:48.4825999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-01-08T17:19:10.2388242+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:19:10.4240734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T17:19:13.3021537+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 172.67.141.24, 104.21.70.253] + +2025-01-08T17:19:14.4298548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.25, 140.82.114.25] + +2025-01-08T17:19:19.3880941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-01-08T17:19:20.4978903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-01-08T17:19:22.6643333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 2606:50c0:8003::154] + +2025-01-08T17:19:23.5295706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.74, 2620:1ec:bdf::64] + +2025-01-08T17:19:24.4596270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::35, 13.107.246.36] + +2025-01-08T17:19:26.5535025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T17:19:30.1585168+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.2, 20.143.38.0] + +2025-01-08T17:19:36.7717074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::12, 2603:1047:1:a0::16, 2603:1047:1:a0::11] + +2025-01-08T17:19:39.1481341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-08T17:19:41.2722858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.233.83.145, 20.26.156.215] + +2025-01-08T17:19:46.8896304+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T17:19:46.8916944+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T17:19:52.9641976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::64, 2620:1ec:bdf::74] + +2025-01-08T17:20:02.7587233+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:02.7600114+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:02.8009555+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:02.8021033+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:02.8030539+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-08T17:20:02.8040047+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-08T17:20:03.0173259+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 182.4208 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T17:20:03.1177959+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 304.0055 ms + +2025-01-08T17:20:03.2118305+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:03.2130334+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:03.7048155+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 684.5132 ms + +2025-01-08T17:20:03.7160529+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T17:20:03.7179587+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T17:20:03.9424515+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 201.3524 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-08T17:20:04.1604129+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 217.6854 ms + +2025-01-08T17:20:10.1675435+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:10.1691164+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:10.2772065+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 98.9804 ms + +2025-01-08T17:20:10.3862576+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:10.3875198+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:10.3903494+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 201.5776 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T17:20:10.6430133+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 253.1919 ms + +2025-01-08T17:20:10.8698871+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 209.9617 ms +System.OperationCanceledException: The operation was canceled. + + +2025-01-08T17:20:11.1332719+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 264.5353 ms + +2025-01-08T17:20:14.6207812+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:14.6218445+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:14.7288745+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 99.3497 ms + +2025-01-08T17:20:14.8476486+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 204.6935 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T17:20:14.8970628+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:14.8980313+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:15.7592657+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 912.2646 ms + +2025-01-08T17:20:15.9947418+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 204.7975 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T17:20:16.2155587+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 221.2514 ms + +2025-01-08T17:20:26.7927547+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:26.7936479+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:26.9019099+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 96.3785 ms + +2025-01-08T17:20:26.9968260+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:26.9985392+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:27.0369029+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 217.9763 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T17:20:27.9154699+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 879.8094 ms + +2025-01-08T17:20:28.1780297+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 187.7283 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T17:20:28.6275148+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 450.275 ms + +2025-01-08T17:20:30.6997577+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T17:20:30.7010525+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T17:20:30.8447738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.143.38.2] + +2025-01-08T17:20:30.9608681+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 221.5205 ms + +2025-01-08T17:20:31.7957198+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 280.667 ms + +2025-01-08T17:20:37.5475456+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:37.5488022+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:37.6697513+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 111.1243 ms + +2025-01-08T17:20:37.7674397+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-08T17:20:37.7687213+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-08T17:20:37.7701429+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 200.2575 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T17:20:38.6497300+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 880.0259 ms + +2025-01-08T17:20:38.8816891+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 196.1562 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T17:20:39.3311513+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 449.4588 ms + +2025-01-08T17:20:55.5035258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.39, 20.190.141.37, 20.190.141.35] + +2025-01-08T17:21:07.4440716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-08T17:21:31.5255915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 13.107.246.74, 2620:1ec:bdf::64] + +2025-01-08T17:21:35.3350351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.5] + +2025-01-08T17:21:39.2746538+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 204.4153 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T17:21:40.1455533+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 871.2498 ms + +2025-01-08T17:21:40.3506945+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 404 in 198.6007 ms + +2025-01-08T17:21:40.6110492+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 256.4759 ms + +2025-01-08T17:21:43.5172596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 20.233.83.145] + +2025-01-08T17:21:58.9956545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T17:22:21.0635621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-08T17:22:21.5223627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-01-08T17:22:25.5300064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-08T17:22:25.5323178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-08T17:22:43.7386652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 13.107.246.74, 2620:1ec:bdf::74] + +2025-01-08T17:23:05.8291767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-08T17:23:09.9010709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T17:23:09.9029178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T17:23:11.5850067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.114.5] + +2025-01-08T17:23:16.1785143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-08T17:23:28.3061481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 13.107.246.38, 13.107.246.74] + +2025-01-08T17:23:35.7874835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-08T17:23:36.4541192+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::35, 13.107.246.36, 2620:1ec:bdf::73] + +2025-01-08T17:23:42.4807859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T17:23:42.4849610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-08T17:23:46.8089352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-01-08T17:23:48.0132141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-08T17:24:05.8501270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-08T17:24:06.4279900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T17:24:06.4296840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::35, 13.107.246.74, 2620:1ec:bdf::74] + +2025-01-08T17:24:06.7282989+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-01-08T17:24:06.7293023+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->::1 + +2025-01-08T17:24:07.1531300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-08T17:24:07.6713108+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 908.4866 ms + +2025-01-08T17:24:30.3779093+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:24:39.1968142+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-08T17:24:39.1976419+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-08T17:24:39.5716908+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 364.3172 ms + +2025-01-08T17:24:39.6487831+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.0134 ms + +2025-01-08T17:24:51.9683654+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:25:12.4521968+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T17:25:12.4563369+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T17:25:14.1348121+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:25:15.6237351+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:25:16.0427603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.113.22] + +2025-01-08T17:25:37.3783933+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:25:37.8046621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.112.25] + +2025-01-08T17:25:46.9376825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T17:26:08.7287526+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:26:09.0187656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:29:1::67, 13.107.246.65] + +2025-01-08T17:26:10.0847013+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:26:10.3451214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::46, 13.107.246.38] + +2025-01-08T17:26:36.8992025+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:26:39.0934250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8003::154] + +2025-01-08T17:27:01.0448441+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:27:23.3562507+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:27:23.8143253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-08T17:27:45.7507146+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:27:48.2199205+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:28:00.1704997+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.137, 20.190.144.163] + +2025-01-08T17:29:42.9140754+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:29:48.1222646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::12, 2603:1047:1:a0::16, 2603:1047:1:a0::8] + +2025-01-08T17:29:53.1369472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T17:29:53.9453572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T17:29:54.6852788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T17:29:55.6545244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-01-08T17:30:03.7129197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-08T17:30:04.5899362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T17:30:05.3913474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-01-08T17:30:06.1019080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-01-08T17:30:09.8002060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T17:30:11.6816841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::53, 13.107.246.66] + +2025-01-08T17:30:12.4931020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.38, 2620:1ec:bdf::57] + +2025-01-08T17:30:15.6988181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-08T17:30:17.5142306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::12, 2603:1047:1:a0::16, 20.190.141.37] + +2025-01-08T17:30:19.4176598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.114.21] + +2025-01-08T17:30:38.8142716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.112.25] + +2025-01-08T17:30:47.3978844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T17:30:47.6926643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T17:31:09.3889992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 13.107.246.73] + +2025-01-08T17:31:10.4556513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 13.107.246.73] + +2025-01-08T17:31:21.1051953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.11] + +2025-01-08T17:31:22.1115663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.37, 20.190.141.33, 20.190.141.39] + +2025-01-08T17:31:38.2072057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T17:31:41.5217504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T17:31:44.1956708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.113.4] + +2025-01-08T17:31:56.1600391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 2606:4700:130:436c:6f75:6466:6c61:7265] + +2025-01-08T17:32:27.5387675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 20.135.6.11, 20.135.6.15] + +2025-01-08T17:33:01.3738098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.163, 20.190.144.162] + +2025-01-08T17:33:11.2592252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.112.5] + +2025-01-08T17:33:20.3367779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.112.3] + +2025-01-08T17:33:44.1976378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.113.4] + +2025-01-08T17:33:54.3261670+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-08T17:33:54.3270431+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-01-08T17:33:55.3755041+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 1012.0385 ms + +2025-01-08T17:33:57.0275952+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-08T17:33:57.0287362+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-08T17:33:57.9049457+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 864.5532 ms + +2025-01-08T17:33:58.0665171+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 974.1262 ms + +2025-01-08T17:34:04.5907774+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 173.3502 ms + +2025-01-08T17:34:18.6317486+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 304 in 162.3552 ms + +2025-01-08T17:34:19.8599939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T17:34:27.2330513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 20.135.6.5, 20.135.6.11] + +2025-01-08T17:34:31.2234666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.5] + +2025-01-08T17:34:31.6039326+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T17:34:31.6081566+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T17:35:14.2136232+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:35:18.1699609+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:35:18.4215475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T17:35:39.7311935+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:35:40.1313560+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.5] + +2025-01-08T17:35:44.1823786+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:35:44.6044816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.3] + +2025-01-08T17:37:54.0894974+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:37:54.2086711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-08T17:37:57.9842001+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:38:21.2903435+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:38:21.6604777+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-08T17:38:45.2396747+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:38:45.4911514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-08T17:39:10.7182697+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:39:12.8650549+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:39:13.1132275+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-08T17:39:34.7241137+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:39:35.0677167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T17:39:40.8954790+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:39:41.2565145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:130:436c:6f75:6466:6c61:7265, 104.21.70.253] + +2025-01-08T17:40:02.9714710+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:40:08.8984386+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:40:09.3035892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.112.25] + +2025-01-08T17:43:05.4602147+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-08T17:43:05.9042219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.114.22] + +2025-01-08T17:43:07.9696678+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:43:09.3221109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T17:43:31.0663432+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:43:31.3209445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 2620:1ec:bdf::73] + +2025-01-08T17:43:39.4102380+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:43:39.6720194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 2620:1ec:bdf::73] + +2025-01-08T17:43:44.0277813+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:43:50.6813794+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:43:51.1635824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.2, 20.143.38.0] + +2025-01-08T17:44:13.1082021+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:44:18.3237908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 2603:1046:1406::2] + +2025-01-08T17:44:40.3451976+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:45:02.6006357+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:45:03.1173468+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.162, 20.190.144.160] + +2025-01-08T17:45:24.8292783+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:45:25.3318913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.21, 40.126.35.86, 40.126.35.151] + +2025-01-08T17:45:30.5338735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-08T17:45:31.4042139+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T17:45:32.5229580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5] + +2025-01-08T17:45:33.4324223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-08T17:45:34.4111628+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-08T17:45:35.3349471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-08T17:45:36.2832094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T17:45:37.2618361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T17:45:38.4254100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 20.26.156.215] + +2025-01-08T17:45:39.5556013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T17:45:41.3241062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161, 117.18.232.200] + +2025-01-08T17:45:46.4746688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.113.26] + +2025-01-08T17:45:47.2156067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.112.22] + +2025-01-08T17:45:49.4189334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 52.109.52.84] + +2025-01-08T17:45:54.2670219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::66] + +2025-01-08T17:45:54.9359963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-01-08T17:45:56.9834447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 40.90.128.17] + +2025-01-08T17:46:03.0667653+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 52.109.52.2] + +2025-01-08T17:46:03.4619287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.162, 20.190.144.164] + +2025-01-08T17:46:04.7601517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.26.156.215] + +2025-01-08T17:46:05.5130500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1406::7] + +2025-01-08T17:46:20.2635029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.112.25] + +2025-01-08T17:46:23.4427300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-08T17:46:35.1168008+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->127.0.0.1 + +2025-01-08T17:46:35.1181889+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->::1 + +2025-01-08T17:46:35.5338587+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/v2.1/federationProvider responded 200 in 399.058 ms + +2025-01-08T17:46:42.1557614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.35, 20.190.141.38, 20.190.141.36] + +2025-01-08T17:47:12.3116768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.143.38.0] + +2025-01-08T17:47:27.2401529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.113.25] + +2025-01-08T17:47:38.4947615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.112.6] + +2025-01-08T17:47:44.9170830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 20.26.156.215] + +2025-01-08T17:47:54.8337546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::61, 13.107.246.74, 2620:1ec:bdf::74] + +2025-01-08T17:47:54.8353182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[152.199.19.161, 117.18.232.200, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-08T17:47:55.3944843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-08T17:47:56.2524498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.135.6.7] + +2025-01-08T17:48:07.3146862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.113.21] + +2025-01-08T17:48:09.4864971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-08T17:48:10.6378427+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-01-08T17:48:14.3754148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.80, 40.126.35.21, 40.126.35.86] + +2025-01-08T17:48:32.0241137+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::61, 13.107.246.74, 2620:1ec:bdf::66] + +2025-01-08T17:48:32.0939753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 13.107.246.67] + +2025-01-08T17:48:40.1119853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.60, 2620:1ec:bdf::73] + +2025-01-08T17:48:43.4115221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.135.6.2] + +2025-01-08T17:48:45.8659792+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 117.18.232.200] + +2025-01-08T17:48:49.8685158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.144.139, 20.190.148.162] + +2025-01-08T17:48:51.1880514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T17:48:51.4677195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.143.38.0] + +2025-01-08T17:49:17.8914729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-08T17:49:38.9029919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.114.5] + +2025-01-08T17:49:43.5319973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 117.18.232.200] + +2025-01-08T17:49:45.7450475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.113.4] + +2025-01-08T17:50:00.3648798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T17:50:04.1048853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.148.162, 20.190.144.139] + +2025-01-08T17:50:24.7792615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::61, 13.107.246.74, 13.107.246.61] + +2025-01-08T17:50:25.0072649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::13, 2603:1047:1:a0::14, 2603:1047:1:a0::8] + +2025-01-08T17:50:51.9488811+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:51:13.9382299+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:51:14.1786410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-08T17:51:29.5269023+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:51:29.7686360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T17:53:38.3500043+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:53:38.7761769+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.3] + +2025-01-08T17:53:47.8102750+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-08T17:53:47.8110791+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-08T17:53:48.3144582+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/rustdesk/rustdesk/releases/latest responded 302 in 471.2993 ms + +2025-01-08T17:53:48.5717771+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/rustdesk/rustdesk/releases/tag/1.3.6 responded 200 in 243.5217 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T17:54:18.2127713+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-08T17:54:20.3560088+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:54:44.7756446+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:54:45.1417469+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-08T17:54:50.1678821+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:54:51.2915561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-01-08T17:55:00.2450710+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:55:00.4995138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-08T17:55:22.2756181+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:55:22.6535884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-01-08T17:55:24.7553734+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:55:25.0839356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:130:436c:6f75:6466:6c61:7265, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T17:55:46.5425169+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:55:48.0378484+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-08T17:55:57.0418400+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:55:57.5408732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-08T17:56:19.3070460+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:56:19.5081087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-08T17:56:25.1965975+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:56:25.6113319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.26] + +2025-01-08T17:58:25.8071261+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T17:58:27.1407917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-08T17:58:48.9207117+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:58:49.1632827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.61, 13.107.246.74, 2620:1ec:bdf::61] + +2025-01-08T17:59:10.8986301+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:59:11.1608718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.74, 2620:1ec:bdf::74] + +2025-01-08T17:59:33.1872888+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T17:59:33.6588023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-01-08T17:59:55.5878737+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T18:01:06.3898799+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T18:01:06.7985825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1406::7, 52.109.52.84] + +2025-01-08T18:01:53.7005876+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T18:01:54.1026490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.143.38.0, 13.105.28.1] + +2025-01-08T18:01:59.5269527+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T18:01:59.9429770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.136, 20.190.144.163] + +2025-01-08T18:02:03.0923081+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T18:02:03.5848091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.148.166, 20.190.148.162] + +2025-01-08T18:02:26.3751263+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T18:02:34.1863895+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-01-08T18:02:34.1879811+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-08T18:02:48.5290047+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T18:02:49.2839910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.2, 20.143.38.0] + +2025-01-08T18:02:55.1335354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-08T18:02:56.1509706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-08T18:03:17.9214542+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T18:03:18.1628005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T18:03:20.1760720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-01-08T18:03:25.0848108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-08T18:03:26.1744045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T18:03:27.2311650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4] + +2025-01-08T18:03:28.0962110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-01-08T18:03:29.2011774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.6] + +2025-01-08T18:03:30.2912425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.113.21] + +2025-01-08T18:03:32.9832336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-08T18:03:38.0425723+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.113.25] + +2025-01-08T18:03:39.8267139+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.44.111] + +2025-01-08T18:03:44.6139720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8002::154, 2606:50c0:8001::154] + +2025-01-08T18:03:45.4487802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::73] + +2025-01-08T18:03:46.1133888+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::42, 13.107.246.74, 13.107.246.46] + +2025-01-08T18:03:47.1453398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.52.0, 52.109.56.126] + +2025-01-08T18:03:49.7947096+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T18:03:51.0941002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-08T18:03:51.0970247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::42, 2620:1ec:bdf::74, 13.107.246.46] + +2025-01-08T18:03:52.4149995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.148.163, 20.190.144.139] + +2025-01-08T18:03:56.7423312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-01-08T18:03:57.1115041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-08T18:03:57.9263206+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-08T18:03:57.9290283+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-08T18:03:58.7595026+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 304 in 819.0785 ms + +2025-01-08T18:03:58.9257554+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 304 in 833.6977 ms + +2025-01-08T18:04:41.4664160+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T18:04:42.1237652+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T18:04:42.1263999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6] + +2025-01-08T18:04:44.7783208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.11, 20.135.6.2] + +2025-01-08T18:05:08.4616751+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T18:05:29.4994678+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-08T18:07:46.9678182+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-08T18:07:46.9982843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-08T18:07:54.5442182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T18:07:55.9891124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::45, 2620:1ec:bdf::74] + +2025-01-08T18:07:57.4094067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-08T18:07:59.1788066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T18:07:59.9155548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 2620:1ec:bdf::42, 2620:1ec:bdf::74] + +2025-01-08T18:08:01.8776702+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.143.38.0, 20.135.6.5] + +2025-01-08T18:08:04.2456357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.136, 20.190.144.164] + +2025-01-08T18:08:09.4724072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::13, 20.190.148.163, 20.190.144.136] + +2025-01-08T18:08:12.4969704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.114.3] + +2025-01-08T18:08:13.3655246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.5] + +2025-01-08T18:08:14.2234340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-08T18:08:14.8770385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-08T18:08:15.6227523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-08T18:08:20.0745079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T18:08:21.5032684+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-08T18:08:23.1125014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-01-08T18:08:24.0241876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-08T18:08:26.6623941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-08T18:08:26.8285770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T18:08:27.3938406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-01-08T18:08:28.9313612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-08T18:08:30.2221066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-01-08T18:08:30.8029816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.113.22] + +2025-01-08T18:08:43.1836978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.112.25] + +2025-01-08T18:08:47.8235818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::74, 13.107.246.44] + +2025-01-08T18:08:48.1970328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.46, 2620:1ec:bdf::42] + +2025-01-08T18:08:53.3013937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.44, 2620:1ec:bdf::73] + +2025-01-08T18:08:54.2158508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::13, 20.190.148.163, 20.190.148.167] + +2025-01-08T18:08:56.2984323+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-08T18:08:56.2995528+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-08T18:08:56.7199494+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-01-08T18:08:56.7211184+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->::1 + +2025-01-08T18:08:56.9266869+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 603.3065 ms + +2025-01-08T18:08:56.9483996+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-08T18:08:56.9493637+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-01-08T18:08:57.5062852+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 544.5928 ms + +2025-01-08T18:08:57.7989390+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1065.9772 ms + +2025-01-08T18:09:09.5472414+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 13.107.43.18] + +2025-01-08T18:09:10.0703996+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://clientnotification-userprodscus1-1.servicebus.windows.net/$servicebus/websocket responded 101 in 16474547.4058 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-08T18:09:16.3855451+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 294.988 ms + +2025-01-08T18:09:16.9719956+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 301.9237 ms + diff --git a/logs/log20250110.txt b/logs/log20250110.txt new file mode 100644 index 0000000..8903810 --- /dev/null +++ b/logs/log20250110.txt @@ -0,0 +1,14405 @@ +2025-01-10T13:59:09.1471987+08:00 [INF] +FastGithub.HttpServer +已监听https://localhost:443,https反向代理服务启动完成 + +2025-01-10T13:59:09.2588979+08:00 [INF] +FastGithub.HttpServer +已监听http://localhost:81,http反向代理服务启动完成 + +2025-01-10T13:59:09.2677162+08:00 [INF] +FastGithub.HttpServer +已监听ssh://localhost:22,github的ssh反向代理服务启动完成 + +2025-01-10T13:59:09.2721131+08:00 [INF] +FastGithub.HttpServer +已监听git://localhost:9418,github的git反向代理服务启动完成 + +2025-01-10T13:59:09.3323383+08:00 [INF] +FastGithub.AppHostedService +FastGithub启动完成,当前版本为v2.1.4,访问 https://github.com/dotnetcore/fastgithub 关注新版本 + +2025-01-10T13:59:09.4375329+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +127.0.0.1:80 <=> 127.0.0.1:81 + +2025-01-10T13:59:09.4434776+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +::1:80 <=> ::1:81 + +2025-01-10T13:59:10.2343059+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T13:59:10.2373476+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T13:59:20.2557941+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-01-10T13:59:20.2597997+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-01-10T13:59:20.2928531+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-01-10T13:59:20.2944952+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-01-10T13:59:20.7860288+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 227.7569 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T13:59:20.8094339+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 201.3781 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T13:59:20.8094318+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 201.3879 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T13:59:23.3439017+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T13:59:25.6677664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 104.17.25.14] + +2025-01-10T13:59:33.0941335+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 22332.5349 ms + +2025-01-10T13:59:34.4668313+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 13703.8033 ms + +2025-01-10T13:59:37.2363338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T13:59:37.4952916+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 205.4894 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T13:59:37.4952838+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 203.9977 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T13:59:42.6801293+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 21870.483 ms + +2025-01-10T13:59:43.7031453+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 22893.5121 ms + +2025-01-10T13:59:46.3185717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.44.108] + +2025-01-10T13:59:49.3503872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-01-10T13:59:50.6999192+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 13203.4832 ms + +2025-01-10T13:59:50.8954160+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 206.4924 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T13:59:50.8954570+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 206.4605 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T13:59:54.7421563+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 207.2556 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T13:59:55.3161449+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 213.8188 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T13:59:56.3381232+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 211.4281 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T13:59:59.6301750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74] + +2025-01-10T14:00:02.6677238+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 7925.6934 ms + +2025-01-10T14:00:03.3369343+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 25841.475 ms + +2025-01-10T14:00:03.3599447+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 12463.6539 ms + +2025-01-10T14:00:03.6159304+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 8298.6632 ms + +2025-01-10T14:00:03.7643637+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 7426.3073 ms + +2025-01-10T14:00:04.0790089+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 26318.489 ms + +2025-01-10T14:00:04.5753711+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 209.068 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:04.6052533+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 205.4154 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:04.6052539+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 205.6812 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:04.8409214+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 13944.6245 ms + +2025-01-10T14:00:05.6666924+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 208.8659 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:05.6667276+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 208.4377 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:05.7797791+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1205.8683 ms + +2025-01-10T14:00:05.8703128+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1265.1708 ms + +2025-01-10T14:00:06.6559734+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 989.6986 ms + +2025-01-10T14:00:06.7558514+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1089.4929 ms + +2025-01-10T14:00:12.5046390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +clientnotification-userprodscus1-1.servicebus.windows.net:443->[40.84.185.67] + +2025-01-10T14:00:13.7813169+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 200.9806 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:13.7813169+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 204.2731 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:14.5686842+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 9964.2244 ms + +2025-01-10T14:00:14.7667051+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 985.6848 ms + +2025-01-10T14:00:14.8906566+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1109.6164 ms + +2025-01-10T14:00:18.1954744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-10T14:00:18.7832677+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 216.0794 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:19.6812741+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 205.4259 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:19.6812719+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 211.1309 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:19.9220523+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 241.4673 ms + +2025-01-10T14:00:20.1516624+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 471.057 ms + +2025-01-10T14:00:20.4477116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-10T14:00:20.8696730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5] + +2025-01-10T14:00:21.7441944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.148.162, 20.190.144.161] + +2025-01-10T14:00:22.7848186+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 4001.1512 ms + +2025-01-10T14:00:23.0165262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 52.109.56.130] + +2025-01-10T14:00:24.2062894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.130.192, 20.135.17.50, 20.135.4.170] + +2025-01-10T14:00:24.6740834+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 213.871 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:25.2645264+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 591.4344 ms + +2025-01-10T14:00:26.9888821+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 206.6744 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:27.0037621+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 209.3754 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:27.2233529+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 219.7818 ms + +2025-01-10T14:00:27.2812845+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 117.18.232.200] + +2025-01-10T14:00:27.4328898+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 444.5207 ms + +2025-01-10T14:00:28.3556744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T14:00:29.4778225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.144.138, 2603:1047:1:168::1c] + +2025-01-10T14:00:29.9046058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.112.21, 140.82.114.22] + +2025-01-10T14:00:30.9187114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-10T14:00:31.8921552+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[117.18.232.200, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T14:00:31.9766414+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 203.576 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:32.5494578+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 572.5977 ms + +2025-01-10T14:00:33.3102554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-01-10T14:00:34.4088885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26] + +2025-01-10T14:00:35.2480055+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 196.7309 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:35.4114461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T14:00:35.6198628+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 213.8512 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:35.6957808+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 448.1872 ms + +2025-01-10T14:00:35.9184464+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 299.8145 ms + +2025-01-10T14:00:36.5595649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3] + +2025-01-10T14:00:39.0261040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::51] + +2025-01-10T14:00:39.8928562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.112.21, 140.82.114.21] + +2025-01-10T14:00:41.1785561+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 196.8485 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:41.4462170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T14:00:41.7765365+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 597.9846 ms + +2025-01-10T14:00:42.0805378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 2603:1046:1406::7] + +2025-01-10T14:00:54.3364462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T14:00:56.7975696+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 198.8433 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:57.1405818+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 202.2435 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:00:57.1556465+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 206.2882 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:00:57.4556475+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 658.9212 ms + +2025-01-10T14:00:57.5288174+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 211.5675 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:00:57.6075789+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 466.4684 ms + +2025-01-10T14:00:57.6216705+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 457.3627 ms + +2025-01-10T14:00:57.8189226+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 290.4727 ms + +2025-01-10T14:00:57.8797767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.26] + +2025-01-10T14:01:00.4106176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-01-10T14:01:04.3809066+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T14:01:04.3828948+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T14:01:04.3849667+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T14:01:04.3876301+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T14:01:04.7942899+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +codeload.github.com->::1 + +2025-01-10T14:01:04.7976340+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +codeload.github.com->127.0.0.1 + +2025-01-10T14:01:04.8091372+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +codeload.github.com->::1 + +2025-01-10T14:01:04.8107785+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +codeload.github.com->127.0.0.1 + +2025-01-10T14:01:06.6687145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10] + +2025-01-10T14:01:07.1864932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.112.26] + +2025-01-10T14:01:07.2725644+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 206.2517 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:01:07.7609762+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://codeload.github.com/fujya/CertManager/zip/refs/heads/master responded 200 in 2860.0496 ms + +2025-01-10T14:01:07.8470750+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 574.6235 ms + +2025-01-10T14:01:17.2842575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.130.192, 40.90.130.199, 20.135.17.50] + +2025-01-10T14:01:57.1101172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.112.5] + +2025-01-10T14:01:59.8256116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::72] + +2025-01-10T14:02:07.8271749+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 192.8737 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:02:08.2871398+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 460.0672 ms + +2025-01-10T14:02:08.8157734+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 172.8382 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:02:08.8517655+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 198.3453 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:02:09.0697509+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 218.0622 ms + +2025-01-10T14:02:09.2396124+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 416.3817 ms + +2025-01-10T14:02:09.6132400+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 194.2746 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:02:09.6290186+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 205.1436 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:02:10.0824694+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 470.2139 ms + +2025-01-10T14:02:10.2783738+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 650.0122 ms + +2025-01-10T14:02:21.7590729+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 196.6189 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:02:21.7611231+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 198.2567 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:02:22.3574236+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 599.665 ms + +2025-01-10T14:02:22.4206970+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 662.8034 ms + +2025-01-10T14:02:22.6949615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.190.129, 20.190.190.131, 20.190.190.194] + +2025-01-10T14:02:25.0340635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 40.90.130.192, 40.90.130.199] + +2025-01-10T14:02:25.7181846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T14:02:31.9558700+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:133:206e:1315:22a5:2006:24fd, 117.18.232.200, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T14:02:39.8188617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-01-10T14:02:40.7396015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.112.22] + +2025-01-10T14:03:06.8105737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-10T14:03:23.9201804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T14:03:56.6755784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.61] + +2025-01-10T14:03:58.2952274+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.5] + +2025-01-10T14:04:01.9309242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-10T14:04:26.1321242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 40.90.130.192, 20.135.1.1] + +2025-01-10T14:04:44.9845619+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd, 117.18.232.200] + +2025-01-10T14:04:46.2771689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.24.14] + +2025-01-10T14:04:47.8970322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.114.26] + +2025-01-10T14:04:48.8055816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.50, 40.90.130.192] + +2025-01-10T14:04:50.6789293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T14:04:51.2780954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.19, 40.126.35.145, 40.126.35.18] + +2025-01-10T14:04:53.5443335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-10T14:04:54.3408581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 13.105.74.50] + +2025-01-10T14:04:59.7455843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 13.107.246.44] + +2025-01-10T14:04:59.7480735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 2620:1ec:bdf::55] + +2025-01-10T14:05:18.3252062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.61] + +2025-01-10T14:05:18.3885783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.55, 2620:1ec:bdf::55] + +2025-01-10T14:05:25.4162133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-10T14:05:26.6916082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T14:05:28.3158115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-01-10T14:05:29.4206066+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T14:05:29.4225962+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T14:05:30.0225067+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-01-10T14:05:30.0237434+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-01-10T14:05:30.0295494+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-01-10T14:05:30.0324038+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-01-10T14:05:30.2434271+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 195.8213 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:05:30.2585319+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 203.546 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:05:30.6245837+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 381.2268 ms + +2025-01-10T14:05:30.7446152+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 486.1715 ms + +2025-01-10T14:05:33.3377772+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search responded 200 in 1192.9667 ms + +2025-01-10T14:05:33.3656017+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->::1 + +2025-01-10T14:05:33.3669680+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->127.0.0.1 + +2025-01-10T14:05:33.3679282+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->::1 + +2025-01-10T14:05:33.3688054+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->127.0.0.1 + +2025-01-10T14:05:34.3525909+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 705.0267 ms + +2025-01-10T14:05:34.3869581+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/settings/two_factor_authentication/holiday_warning_banner responded 200 in 661.912 ms + +2025-01-10T14:05:34.3957183+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/blackbird_count responded 304 in 749.0114 ms + +2025-01-10T14:05:34.4243061+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 699.3156 ms + +2025-01-10T14:05:34.4408242+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 794.1532 ms + +2025-01-10T14:05:34.5457282+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 898.2176 ms + +2025-01-10T14:05:34.7359066+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 200 in 952.129 ms + +2025-01-10T14:05:34.7651644+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 1117.6237 ms + +2025-01-10T14:05:34.7749257+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 1127.5514 ms + +2025-01-10T14:05:34.8694181+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 1221.8549 ms + +2025-01-10T14:05:35.1297716+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 1482.3842 ms + +2025-01-10T14:05:35.1810098+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 1533.5534 ms + +2025-01-10T14:05:35.2599728+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 304 in 1450.4473 ms + +2025-01-10T14:05:35.4106856+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 1605.5468 ms + +2025-01-10T14:05:35.5993228+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 1951.6518 ms + +2025-01-10T14:05:35.7756710+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 361.7715 ms + +2025-01-10T14:05:38.9910743+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 211.5234 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:05:39.3905608+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.160, 20.190.144.163] + +2025-01-10T14:05:39.5770540+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 585.0649 ms + +2025-01-10T14:05:40.0960588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 2603:1047:1:168::29, 2603:1047:1:168::2d] + +2025-01-10T14:05:41.9343028+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T14:05:43.2478662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T14:05:43.4917552+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T14:05:44.1755623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.112.25] + +2025-01-10T14:05:44.1767026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T14:05:52.5477190+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 199.2764 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:05:53.2408288+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 692.7915 ms + +2025-01-10T14:05:54.5663190+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 208.8849 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:05:55.2662515+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 701.0508 ms + +2025-01-10T14:05:59.8328273+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-01-10T14:06:01.4054138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.21] + +2025-01-10T14:06:07.0997818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-01-10T14:06:08.3230875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.112.25] + +2025-01-10T14:08:00.7069147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.113.5] + +2025-01-10T14:08:24.8819119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-10T14:08:24.8833232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-10T14:08:40.3310388+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 623.138 ms + +2025-01-10T14:08:47.9561563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.5] + +2025-01-10T14:08:50.7766987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.3] + +2025-01-10T14:09:03.4055905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.61, 13.107.246.44] + +2025-01-10T14:11:00.5959096+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:11:22.9967333+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:11:24.5678762+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:11:25.0334223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-10T14:11:46.6475625+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:11:50.2178008+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T14:12:03.3417042+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:12:03.9195425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 104.17.25.14] + +2025-01-10T14:12:20.5719843+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:12:25.7490363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-10T14:12:47.4275376+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:12:47.6872107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-10T14:12:59.8409242+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:13:00.0262619+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-10T14:13:22.0493337+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:13:23.4926529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-01-10T14:13:45.3337092+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:13:45.7406043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.113.5] + +2025-01-10T14:13:48.0465733+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T14:13:48.0491482+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T14:13:48.0521369+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->::1 + +2025-01-10T14:13:48.0542128+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-01-10T14:13:48.9329915+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-01-10T14:13:48.9360807+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-01-10T14:13:49.1625671+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 188.9366 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:13:49.7179645+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 554.9051 ms + +2025-01-10T14:14:07.3548918+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:14:10.9511919+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:14:11.1320592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T14:14:32.8425379+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:14:33.3114507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-10T14:14:39.1406560+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.26] + +2025-01-10T14:14:41.1297338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-01-10T14:14:42.0134846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.55, 13.107.246.74, 2620:1ec:bdf::42] + +2025-01-10T14:14:44.1425247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.74] + +2025-01-10T14:14:46.3031171+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 200.9488 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:14:49.2651567+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 2962.7834 ms + +2025-01-10T14:14:49.5626030+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 2603:1046:1406::2, 2603:1046:1400::1] + +2025-01-10T14:15:03.0803706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.166, 20.190.148.162] + +2025-01-10T14:15:08.9849975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.148.163, 20.190.148.164] + +2025-01-10T14:15:23.2921277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.5, 13.105.74.50] + +2025-01-10T14:15:23.6916184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.162, 20.190.144.137] + +2025-01-10T14:15:23.6940944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.148.164, 20.190.144.136] + +2025-01-10T14:15:37.1928954+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 197.4243 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:15:37.6516414+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 458.1125 ms + +2025-01-10T14:15:39.6682793+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 206.4665 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:15:40.5752366+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 908.4631 ms + +2025-01-10T14:15:40.7238357+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-01-10T14:15:40.7251369+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-01-10T14:15:40.9452091+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 196.1367 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:15:40.9457203+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 209.1305 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:15:41.4805776+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 535.329 ms + +2025-01-10T14:15:43.2818428+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 205.3848 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:15:43.2825851+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 206.1518 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:15:43.8542984+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 2909.2496 ms + +2025-01-10T14:15:43.9028282+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 621.1554 ms + +2025-01-10T14:15:43.9536577+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 190.3933 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:15:43.9550106+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 184.8593 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:15:44.4031619+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 447.0954 ms + +2025-01-10T14:15:45.3029256+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 1348.6863 ms + +2025-01-10T14:15:45.3473130+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 2065.1851 ms + +2025-01-10T14:16:13.4178648+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 213.6509 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:16:13.4180864+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 213.9099 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:16:13.8610829+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 442.9895 ms + +2025-01-10T14:16:13.9425164+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 525.3635 ms + +2025-01-10T14:16:14.3295093+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 182.5323 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:16:15.7717699+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1444.201 ms + +2025-01-10T14:16:17.9312456+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T14:16:17.9325405+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T14:16:17.9431043+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T14:16:17.9440579+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T14:16:17.9541560+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-10T14:16:17.9551995+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-10T14:16:18.3499345+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 212.1303 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:16:19.6097437+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 1389.8317 ms + +2025-01-10T14:16:19.7035444+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T14:16:19.7053052+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T14:16:20.1800623+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 1829.9839 ms + +2025-01-10T14:16:20.1871162+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T14:16:20.1897273+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T14:16:20.4047860+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 201.8795 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:16:20.5466531+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.55, 13.107.246.74, 2620:1ec:bdf::36] + +2025-01-10T14:16:20.8377765+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.50, 40.90.133.97] + +2025-01-10T14:16:20.9025804+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 497.6795 ms + +2025-01-10T14:16:22.1894996+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T14:16:22.1912755+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T14:16:22.3067847+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 105.5002 ms + +2025-01-10T14:16:22.4131905+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 202.3448 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:16:22.4290926+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T14:16:22.4303357+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T14:16:22.6703312+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 257.4231 ms + +2025-01-10T14:16:22.8855306+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 207.0932 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T14:16:23.1551548+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 269.8657 ms + +2025-01-10T14:16:28.4346384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.112.9] + +2025-01-10T14:16:57.3593110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-10T14:16:59.0670303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8002::154] + +2025-01-10T14:17:04.6184585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-10T14:17:32.6617105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.50, 20.135.2.0] + +2025-01-10T14:17:38.4724644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-01-10T14:17:44.3793817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-10T14:17:48.3761651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T14:17:48.3777214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T14:17:59.5640371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.55, 13.107.246.74] + +2025-01-10T14:18:11.3197513+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 609.6964 ms + +2025-01-10T14:18:27.0558152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 2603:1047:1:168::10, 2603:1047:1:168::19] + +2025-01-10T14:18:31.9406539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.2.0, 40.90.130.204] + +2025-01-10T14:18:32.9496993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.3] + +2025-01-10T14:19:01.1554974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.66] + +2025-01-10T14:19:05.7048717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.37, 20.190.141.34, 20.190.141.38] + +2025-01-10T14:19:26.2858642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.9] + +2025-01-10T14:19:29.8732855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-01-10T14:19:29.8743294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 20.26.156.215] + +2025-01-10T14:19:29.8752627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.66, 2620:1ec:bdf::74] + +2025-01-10T14:19:29.8760997+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.246.66] + +2025-01-10T14:19:30.1667686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.164, 40.126.35.145] + +2025-01-10T14:19:33.4183519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.4] + +2025-01-10T14:19:33.6628374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-01-10T14:19:59.1018242+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:20:00.5203913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.25] + +2025-01-10T14:20:04.8830363+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:20:05.3697846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.73, 2620:1ec:bdf::73] + +2025-01-10T14:20:21.3118504+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-10T14:20:21.3134813+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-01-10T14:20:21.6135900+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T14:20:21.6145803+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T14:20:22.5104273+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 855.0067 ms + +2025-01-10T14:20:26.3911166+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:20:26.5356403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8003::154] + +2025-01-10T14:20:51.0981798+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:20:51.3512309+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.46, 2620:1ec:bdf::38] + +2025-01-10T14:20:54.6776641+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T14:20:54.6801897+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T14:20:54.6812678+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->::1 + +2025-01-10T14:20:54.6826562+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-01-10T14:20:55.8765554+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:21:27.2957101+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:21:53.9658402+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:21:54.4369767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.5, 20.135.2.0] + +2025-01-10T14:21:59.5176481+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T14:21:59.5192978+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T14:22:16.2212122+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:22:16.6734320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 2603:1046:1406::2] + +2025-01-10T14:22:17.1671765+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-01-10T14:22:17.1684251+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-01-10T14:22:17.3884322+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 199.1566 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T14:22:17.8423954+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 455.6922 ms + +2025-01-10T14:22:45.9223344+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:22:47.7508327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.164, 40.126.35.151] + +2025-01-10T14:25:11.1072388+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:25:16.3217554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.37, 20.190.141.32, 20.190.141.39] + +2025-01-10T14:25:21.3285259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T14:25:22.4950665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-10T14:25:24.5423708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-01-10T14:25:25.5607264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.113.6] + +2025-01-10T14:25:26.3570336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T14:25:28.0755770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-01-10T14:25:28.9999647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T14:25:30.1052471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-10T14:25:31.0713335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-10T14:25:33.5130784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.112.10] + +2025-01-10T14:25:34.5994277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.112.21] + +2025-01-10T14:25:35.7281112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.113.26] + +2025-01-10T14:25:37.7532934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.41] + +2025-01-10T14:25:39.7084850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 2606:50c0:8002::154] + +2025-01-10T14:25:40.5173009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::38, 13.107.246.57] + +2025-01-10T14:25:43.9782543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.5, 40.90.130.204] + +2025-01-10T14:25:52.5713614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.66, 13.107.246.74] + +2025-01-10T14:25:55.0581676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.73, 13.107.246.66] + +2025-01-10T14:25:55.0597460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 2603:1046:1406::7] + +2025-01-10T14:26:13.5344913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.162, 20.190.144.164] + +2025-01-10T14:26:28.7092429+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1406::7, 52.109.44.112] + +2025-01-10T14:26:30.2108450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1406::7] + +2025-01-10T14:26:41.9433156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.74] + +2025-01-10T14:26:55.0516420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.5, 40.90.133.97] + +2025-01-10T14:26:58.7671303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.5, 20.135.6.2] + +2025-01-10T14:27:27.8587705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 20.233.83.146] + +2025-01-10T14:27:32.5033288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.113.4] + +2025-01-10T14:27:33.0550024+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T14:27:41.7093321+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T14:27:41.7104022+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T14:27:42.3286629+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 609.6228 ms + +2025-01-10T14:27:42.8308825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.66, 2620:1ec:bdf::45] + +2025-01-10T14:27:47.7172905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-10T14:27:53.5310686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T14:27:55.5905116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-01-10T14:27:56.1739113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 20.135.6.5] + +2025-01-10T14:27:59.0404808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.144.165, 20.190.148.167] + +2025-01-10T14:28:02.2891512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::45, 13.107.246.74] + +2025-01-10T14:28:37.8310370+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.112.26] + +2025-01-10T14:29:22.7393190+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.5, 20.135.6.2] + +2025-01-10T14:29:43.8978447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.36, 2620:1ec:bdf::45] + +2025-01-10T14:29:45.0131856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::11, 2603:1047:1:168::26, 20.190.144.165] + +2025-01-10T14:29:46.0246475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T14:30:05.5381489+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T14:30:05.5391932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.9] + +2025-01-10T14:30:05.5399576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.4] + +2025-01-10T14:30:07.8744075+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.21, 140.82.113.22] + +2025-01-10T14:30:12.4850062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.167, 20.190.148.165] + +2025-01-10T14:30:12.7695606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.148.167, 2603:1047:1:168::12] + +2025-01-10T14:31:58.7468587+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:32:01.1084486+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:32:01.3628234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T14:32:23.0475417+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:32:24.5239647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-10T14:32:36.4012286+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:32:37.5205863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-01-10T14:32:50.5932562+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:32:51.0448583+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.112.10] + +2025-01-10T14:33:34.3918219+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:33:34.6540803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-10T14:33:36.5772217+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:33:41.5950268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-10T14:34:03.0111564+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:34:03.1894211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-10T14:34:25.3605389+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:34:25.8240013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.3] + +2025-01-10T14:34:28.3541941+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:34:28.6483630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T14:34:40.0115718+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:34:40.4489827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-10T14:35:23.0576668+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:35:23.4927943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.26] + +2025-01-10T14:35:31.9707051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-01-10T14:35:33.0179627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 13.107.246.45, 13.107.246.65] + +2025-01-10T14:35:33.9624287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-01-10T14:35:40.2361057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.2, 40.90.130.204] + +2025-01-10T14:35:46.5683031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T14:35:48.0084564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1404::5] + +2025-01-10T14:35:49.6802529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.165, 20.190.148.162] + +2025-01-10T14:35:50.8374183+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::10, 2603:1047:1:168::26, 2603:1047:1:168::2f] + +2025-01-10T14:35:57.7583862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.116.9] + +2025-01-10T14:36:03.9349056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.9, 20.135.6.2] + +2025-01-10T14:36:27.4375521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T14:37:02.0666478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T14:37:02.3760014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-10T14:37:02.3768068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-10T14:37:11.4911143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.1, 20.135.6.9] + +2025-01-10T14:37:12.6944407+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T14:37:12.6956940+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T14:37:13.3290557+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 619.0115 ms + +2025-01-10T14:37:24.8936855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-10T14:37:24.8964380+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.112.6] + +2025-01-10T14:37:27.3365574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-10T14:37:33.5639683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.4] + +2025-01-10T14:37:34.7450508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::44, 13.107.246.74] + +2025-01-10T14:37:42.0745252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-01-10T14:37:43.6443948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 13.107.246.65, 13.107.246.36] + +2025-01-10T14:37:52.5110790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::a, 2603:1047:1:a0::16, 2603:1047:1:a0::10] + +2025-01-10T14:37:54.2945854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-10T14:38:02.0208913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.6] + +2025-01-10T14:38:05.5708479+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.5] + +2025-01-10T14:38:24.9280661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-10T14:38:26.7399126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.143.38.2, 13.105.28.1] + +2025-01-10T14:38:35.5662819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-10T14:38:35.5684195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-10T14:38:43.0480090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133] + +2025-01-10T14:38:44.3604359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-01-10T14:38:47.1852957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-01-10T14:39:19.5248223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.4] + +2025-01-10T14:39:19.5261066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-01-10T14:39:19.5269468+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T14:39:27.3979399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.4] + +2025-01-10T14:39:31.1455800+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T14:39:33.2986331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T14:39:42.5680707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.22, 140.82.112.22] + +2025-01-10T14:39:47.6080402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::44, 13.107.246.36] + +2025-01-10T14:39:48.3826703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.63, 13.107.246.36] + +2025-01-10T14:39:53.3908592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T14:40:20.3246230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.63, 13.107.246.74] + +2025-01-10T14:40:20.3297342+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.191] + +2025-01-10T14:40:20.6571179+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.86, 40.126.35.84, 40.126.35.144] + +2025-01-10T14:40:23.9687248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.26] + +2025-01-10T14:40:34.8292975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8000::154] + +2025-01-10T14:40:36.6928631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.36, 13.107.246.51, 13.107.246.60] + +2025-01-10T14:40:36.9344165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 13.107.246.74, 2620:1ec:bdf::71] + +2025-01-10T14:40:46.4371561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.13] + +2025-01-10T14:40:52.6826181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T14:40:56.9815461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.144, 20.190.144.163, 20.190.148.163] + +2025-01-10T14:41:00.2156528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.116.10] + +2025-01-10T14:41:00.4368909+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.6] + +2025-01-10T14:41:33.5892163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T14:41:48.7182445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.55, 13.107.246.51, 13.107.246.74] + +2025-01-10T14:42:20.8064447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.143.38.2, 20.135.6.2] + +2025-01-10T14:42:26.7762939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-01-10T14:42:38.8478370+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.10] + +2025-01-10T14:42:52.6839174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.6] + +2025-01-10T14:42:53.2705256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::14, 2603:1047:1:a0::10, 2603:1047:1:a0::15] + +2025-01-10T14:43:05.6946957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T14:43:14.6876892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 40.126.35.144, 20.190.144.136] + +2025-01-10T14:43:36.5419496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-10T14:43:36.6061596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 13.107.43.18] + +2025-01-10T14:43:39.3553961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T14:43:39.3593559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-01-10T14:43:42.2709875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-10T14:43:43.6834289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-10T14:43:43.9603377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-10T14:43:49.3471563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.55, 2620:1ec:bdf::69, 13.107.246.51] + +2025-01-10T14:43:51.6473347+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.57, 13.107.246.55, 2620:1ec:bdf::69] + +2025-01-10T14:43:56.4217676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.143.38.2] + +2025-01-10T14:44:02.6896968+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1322982.2463 ms + +2025-01-10T14:44:02.8459478+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T14:44:02.8526981+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T14:44:03.8865683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.133, 20.190.166.131] + +2025-01-10T14:44:05.7718395+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 2908.4434 ms + +2025-01-10T14:44:05.7811574+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T14:44:05.7823132+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T14:44:06.4216274+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/_alive responded 200 in 630.2929 ms + +2025-01-10T14:44:06.8226799+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_alive responded 200 in 386.5581 ms + +2025-01-10T14:44:17.9504363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.4] + +2025-01-10T14:44:30.5566731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 117.18.232.200] + +2025-01-10T14:44:32.0841209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T14:44:32.0860602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T14:44:44.9800080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.112.21] + +2025-01-10T14:44:57.1063120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.0] + +2025-01-10T14:45:25.0053180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.114.25] + +2025-01-10T14:45:31.7586595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 13.107.43.18] + +2025-01-10T14:45:37.0583828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.36, 13.107.246.60] + +2025-01-10T14:45:43.1155983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.2] + +2025-01-10T14:45:45.0768525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.191] + +2025-01-10T14:45:51.8132281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.28.18] + +2025-01-10T14:45:55.1661529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.163, 20.190.144.160] + +2025-01-10T14:46:04.5254634+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.6] + +2025-01-10T14:46:04.5277290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-01-10T14:46:13.6227906+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T14:46:17.1082716+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T14:46:44.3466452+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 636.0703 ms + +2025-01-10T14:46:51.0344502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.57, 2620:1ec:bdf::69, 13.107.246.51] + +2025-01-10T14:47:15.3059739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T14:47:15.3072188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T14:47:15.3085295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-10T14:47:20.4112974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.113.9] + +2025-01-10T14:47:27.8079539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-10T14:47:29.4850905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-10T14:47:32.0016730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.36, 13.107.246.60, 2620:1ec:bdf::44] + +2025-01-10T14:47:36.2895065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.36, 2620:1ec:bdf::51, 13.107.246.60] + +2025-01-10T14:47:38.2484832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.36, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-01-10T14:47:44.2573774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-01-10T14:47:46.5201917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.36, 2620:1ec:bdf::51] + +2025-01-10T14:48:03.7280452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 20.26.156.210] + +2025-01-10T14:48:04.1835837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.113.10] + +2025-01-10T14:48:32.6294252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-10T14:48:39.3724213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-10T14:48:40.2994709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-10T14:48:40.4274567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T14:48:41.3445518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.114.9] + +2025-01-10T14:48:41.5527570+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T14:48:43.1558128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T14:48:55.4966457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T14:48:56.1530184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T14:48:56.6139378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::71, 2620:1ec:bdf::51] + +2025-01-10T14:49:03.3096197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-10T14:49:04.9515399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.67, 20.190.166.131, 20.190.166.68] + +2025-01-10T14:49:25.0528496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-01-10T14:49:40.2481804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.55, 2620:1ec:bdf::69] + +2025-01-10T14:49:45.6632275+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.112.22] + +2025-01-10T14:49:47.7743124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.36, 13.107.246.69] + +2025-01-10T14:49:48.8610706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::66, 13.107.246.55] + +2025-01-10T14:50:17.5623301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.67, 20.190.166.131, 20.190.166.68] + +2025-01-10T14:50:26.1350642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.26] + +2025-01-10T14:50:32.8461003+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:50:53.8650926+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:50:54.2026958+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:50:55.9795301+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:51:17.3843569+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:51:42.8526077+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:52:04.4262865+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:52:08.7502993+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:52:12.8424566+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:52:13.0600697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.114.3] + +2025-01-10T14:52:17.1015392+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:52:38.7179000+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:53:00.6595678+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:53:26.1696708+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:53:36.4827596+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:53:38.3643334+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:53:40.9493429+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:53:41.2230605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.66, 2620:1ec:bdf::46] + +2025-01-10T14:54:05.0356844+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:54:19.7375485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.60, 13.107.246.57] + +2025-01-10T14:54:42.6780678+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T14:54:45.4904543+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:54:54.1651675+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T14:54:54.6198639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-01-10T14:55:16.3648831+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:55:17.9083769+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.133, 20.190.166.131, 20.190.166.66] + +2025-01-10T14:55:43.6589482+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:55:45.1737544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.133, 20.190.166.131, 20.190.166.66] + +2025-01-10T14:55:49.3680364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T14:55:50.9270421+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-01-10T14:55:52.2611068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-10T14:55:53.6553349+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-01-10T14:55:55.9441511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T14:56:06.2135485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T14:56:14.7006636+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T14:56:14.7018054+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T14:56:15.3282850+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 616.0763 ms + +2025-01-10T14:56:17.1768308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.113.10] + +2025-01-10T14:56:26.0127811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T14:56:27.3396773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-10T14:56:34.4065464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-01-10T14:56:35.0200501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8003::154, 2606:50c0:8001::154] + +2025-01-10T14:56:35.7669704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.45, 13.107.246.44] + +2025-01-10T14:57:09.6889033+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T14:57:09.7548864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::53, 2620:1ec:bdf::66] + +2025-01-10T14:57:10.7966595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.11] + +2025-01-10T14:57:19.2912929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.133, 20.190.166.131, 20.190.166.67] + +2025-01-10T14:57:22.4824801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.114.10] + +2025-01-10T14:57:23.2154610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-01-10T14:57:46.8878742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd, 117.18.232.200] + +2025-01-10T14:57:46.8895191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T14:57:49.9595281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.45, 13.107.246.66] + +2025-01-10T14:58:05.7282262+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-01-10T14:58:05.7290296+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-01-10T14:58:06.5057323+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.github.com/repos/Fndroid/clash_for_windows_pkg/releases/latest responded 404 in 746.4155 ms + +2025-01-10T14:58:14.1105037+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 4.208.26.197] + +2025-01-10T14:58:15.2144267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 13.105.74.50] + +2025-01-10T14:58:23.8753213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.0] + +2025-01-10T14:58:58.2473950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8001::154, 2606:50c0:8003::154, 2606:50c0:8000::154] + +2025-01-10T14:59:20.2334931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.45, 2620:1ec:bdf::45] + +2025-01-10T14:59:27.6206708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.60, 2620:1ec:bdf::53] + +2025-01-10T14:59:57.8895331+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T14:59:57.8912389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.9] + +2025-01-10T15:00:01.2589573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.26] + +2025-01-10T15:00:02.0975998+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.44.111] + +2025-01-10T15:00:12.7462669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.1.1, 40.90.136.180] + +2025-01-10T15:00:15.2996825+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@8.8.8.8:53->Unexpected end of stream + +2025-01-10T15:00:21.5218864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 2603:1046:1406::2] + +2025-01-10T15:00:22.8463815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::53, 2620:1ec:bdf::63] + +2025-01-10T15:00:25.7107487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-10T15:00:27.1429974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.133, 20.190.166.66, 20.190.166.68] + +2025-01-10T15:00:27.3714528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::13, 2603:1047:1:168::24, 20.190.144.139] + +2025-01-10T15:00:40.6185694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.113.10] + +2025-01-10T15:00:41.7847722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.1.1, 40.90.130.199] + +2025-01-10T15:00:42.2648427+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::45, 2620:1ec:bdf::74] + +2025-01-10T15:00:43.5441627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.164, 20.190.148.166] + +2025-01-10T15:01:19.7293092+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:01:46.9180786+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:01:46.9828513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T15:02:10.3321711+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:02:15.3483999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[] + +2025-01-10T15:02:18.7015367+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:02:23.7217042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133] + +2025-01-10T15:02:57.0335722+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:02:57.4546255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-10T15:03:00.2840615+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unexpected end of stream + +2025-01-10T15:03:01.4097071+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-01-10T15:03:09.8570827+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1143028.9727 ms + +2025-01-10T15:03:10.0143455+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T15:03:10.0151603+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T15:03:21.3022411+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T15:03:21.5834322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.9] + +2025-01-10T15:03:29.4130996+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T15:03:29.4145390+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T15:03:29.4156123+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->::1 + +2025-01-10T15:03:29.4172444+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-01-10T15:03:33.6225175+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-01-10T15:03:33.6254933+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-01-10T15:03:33.8553900+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 196.4786 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T15:03:34.3224367+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 467.108 ms + +2025-01-10T15:03:39.7309740+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T15:03:39.7317240+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T15:03:40.1848080+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 326.706 ms + +2025-01-10T15:03:40.2559801+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.0923 ms + +2025-01-10T15:03:50.4241605+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:03:50.4903312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T15:05:22.1072621+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:05:22.1085666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T15:05:43.8057926+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:05:44.0798547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-01-10T15:05:46.7818446+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 1071.4651 ms + +2025-01-10T15:05:49.1252005+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:05:49.3946185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 40.90.133.100, 20.135.1.1] + +2025-01-10T15:06:10.7782141+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:06:12.0270003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T15:06:26.8157725+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:06:27.2948646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.21] + +2025-01-10T15:06:31.0377106+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:06:31.2207406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T15:06:53.0023848+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:06:53.4528658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-10T15:06:54.7371949+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:06:55.0597850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8000::154, 2606:50c0:8002::154, 2606:50c0:8003::154] + +2025-01-10T15:06:55.9452710+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.45, 13.107.246.51] + +2025-01-10T15:07:18.0534853+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:07:27.8546030+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T15:07:49.7237496+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:08:12.2376963+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:08:12.7020712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 2603:1046:1406::7] + +2025-01-10T15:08:38.4167693+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:08:38.9125096+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.165, 20.190.148.166] + +2025-01-10T15:09:26.1019234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 2603:1047:1:168::13, 2603:1047:1:168::28] + +2025-01-10T15:09:28.1373663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6] + +2025-01-10T15:09:30.2280637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T15:09:31.2784397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-10T15:09:33.5499391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 104.17.25.14] + +2025-01-10T15:11:47.9182266+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:11:48.2565596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-10T15:11:58.1560405+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10] + +2025-01-10T15:12:00.3024301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-10T15:12:06.0785191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-10T15:12:15.0391186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3] + +2025-01-10T15:12:20.1947369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.113.22] + +2025-01-10T15:12:23.2054846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T15:12:29.3854704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.112.25] + +2025-01-10T15:12:31.1930842+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-10T15:12:32.3809327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.100, 40.90.130.199, 40.90.130.204] + +2025-01-10T15:12:33.3024295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-10T15:12:54.9507147+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:12:55.2098963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::73, 13.107.246.74] + +2025-01-10T15:13:01.2671024+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-01-10T15:13:22.9262511+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:13:23.2305971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::73, 2620:1ec:bdf::46] + +2025-01-10T15:13:24.5249826+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T15:13:25.9007244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 2603:1046:1406::7, 52.109.52.84] + +2025-01-10T15:13:26.9284437+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.137, 20.190.148.162] + +2025-01-10T15:13:50.4944482+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:13:51.5055369+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:13:52.5433948+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:13:52.7883627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9] + +2025-01-10T15:14:14.5159335+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:14:14.7706088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.121.6] + +2025-01-10T15:14:19.7097279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 20.26.156.215] + +2025-01-10T15:14:41.4324990+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:14:41.4993850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-10T15:14:42.1853090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-10T15:14:50.0438812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.24.14] + +2025-01-10T15:15:16.6954862+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T15:15:16.6969105+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T15:15:17.3323095+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 623.6344 ms + +2025-01-10T15:15:25.1140036+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:15:30.1252968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-10T15:15:35.2662872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::44, 13.107.246.65] + +2025-01-10T15:15:35.6314803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8003::154] + +2025-01-10T15:15:36.7514178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-10T15:15:38.7949107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 40.126.35.19, 40.126.35.20] + +2025-01-10T15:16:00.2705259+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:16:01.0278435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 2603:1047:1:168::1c, 2603:1047:1:168::24] + +2025-01-10T15:16:11.6769268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T15:16:21.3400940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.112.5] + +2025-01-10T15:16:43.1242112+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:16:43.3619863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 20.26.156.215] + +2025-01-10T15:16:45.0704019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.114.25] + +2025-01-10T15:16:53.3451870+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:16:53.3482399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T15:16:57.3665216+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:16:57.6221616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.114.21] + +2025-01-10T15:17:18.7184070+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:18:30.0887394+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:18:31.4033134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8002::154] + +2025-01-10T15:19:14.4161237+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 964384.6066 ms + +2025-01-10T15:19:14.5770421+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T15:19:14.5784764+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T15:19:17.5052271+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 2913.7553 ms + +2025-01-10T15:19:18.0975994+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/_alive responded 200 in 582.6121 ms + +2025-01-10T15:19:18.4790153+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_alive responded 200 in 368.2037 ms + +2025-01-10T15:20:23.0924427+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T15:20:23.5349973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.102, 40.90.130.204, 40.90.130.197] + +2025-01-10T15:20:24.5512683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.45, 13.107.246.74] + +2025-01-10T15:20:25.8329476+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:20:31.2627533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.36, 13.107.246.74] + +2025-01-10T15:20:57.0787904+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:21:28.5869005+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:21:29.0535318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.52.0] + +2025-01-10T15:21:31.0017041+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:21:36.2056170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.38, 20.190.141.35, 20.190.141.36] + +2025-01-10T15:21:42.0399569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.148.164, 20.190.144.137] + +2025-01-10T15:21:45.1492839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T15:21:46.2310363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-01-10T15:21:47.9269697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-10T15:22:08.9681024+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:22:10.5922594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-10T15:22:19.8429779+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:22:21.1875445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-10T15:22:28.3449252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.6] + +2025-01-10T15:22:34.3611505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-10T15:22:35.5952011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.114.22] + +2025-01-10T15:22:36.4972811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T15:22:37.1785473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T15:22:38.3343764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.113.26] + +2025-01-10T15:22:39.0102071+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8002::154, 2606:50c0:8003::154] + +2025-01-10T15:22:39.9806808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.15, 13.105.74.50] + +2025-01-10T15:22:45.0091470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.124.29, 52.109.52.169] + +2025-01-10T15:23:00.5512250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.13] + +2025-01-10T15:23:01.8391262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.74, 13.107.246.40] + +2025-01-10T15:23:24.2501218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.4] + +2025-01-10T15:23:25.2630110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-10T15:23:26.8825688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-10T15:23:27.9951284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.165, 20.190.144.163] + +2025-01-10T15:23:29.4934958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-10T15:23:37.0532076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8000::154, 2606:50c0:8003::154] + +2025-01-10T15:23:42.5408768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1046:2000:148::4, 2603:1046:2000:148::2] + +2025-01-10T15:24:00.9762475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10] + +2025-01-10T15:24:00.9788371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5] + +2025-01-10T15:24:02.0356067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.4] + +2025-01-10T15:24:20.9714379+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T15:24:26.5836271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.112.5] + +2025-01-10T15:24:47.7066983+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T15:24:47.7084415+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T15:24:48.3269913+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 605.7481 ms + +2025-01-10T15:24:51.6241814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.45, 13.107.246.74] + +2025-01-10T15:24:59.2062293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T15:25:24.9135599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.40, 13.107.246.74] + +2025-01-10T15:25:25.9815560+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.40, 13.107.246.74] + +2025-01-10T15:25:27.4561176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.124.29, 52.109.56.129] + +2025-01-10T15:25:33.8035365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 13.105.74.50, 40.90.133.97] + +2025-01-10T15:25:33.8689065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-10T15:25:44.8824368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T15:26:32.7661695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T15:26:37.7832690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.35, 20.190.141.34, 20.190.141.38] + +2025-01-10T15:26:47.1749240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T15:26:52.2091795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-10T15:26:52.9569143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T15:26:53.4132922+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-01-10T15:26:54.0963659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T15:26:56.1584687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 2606:50c0:8003::154] + +2025-01-10T15:27:03.9833307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-10T15:27:05.7970594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T15:27:11.1167938+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 4.208.26.199] + +2025-01-10T15:27:11.5337735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-10T15:27:14.4982612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 20.26.156.216] + +2025-01-10T15:27:25.4646988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-01-10T15:27:50.7182774+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:27:51.1113251+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-10T15:28:10.3245726+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T15:28:18.4250511+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:28:19.0626906+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:28:19.8218377+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:28:21.0763087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161, 117.18.232.200] + +2025-01-10T15:29:07.2009151+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:29:07.4561594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T15:29:29.2335178+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:29:50.8964486+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:29:51.1263493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T15:29:52.3910968+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:29:52.8266960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.21] + +2025-01-10T15:29:53.9017330+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:29:54.3472783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.25, 140.82.112.26] + +2025-01-10T15:30:23.4133616+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:30:23.7597443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 2606:50c0:8001::154] + +2025-01-10T15:30:27.1819256+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:30:27.2780866+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.36, 2620:1ec:bdf::67] + +2025-01-10T15:30:29.3135332+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:30:29.5883482+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.7, 13.105.74.50] + +2025-01-10T15:30:51.4685165+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:30:51.9235396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 2603:1046:1406::5] + +2025-01-10T15:32:26.2433764+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:32:26.5325788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::41, 2620:1ec:bdf::53] + +2025-01-10T15:32:53.6529650+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:33:02.4214501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T15:33:03.6218125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.39, 20.190.141.32] + +2025-01-10T15:33:09.7980957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:158::4, 2603:1046:2000:148::5, 2603:1046:2000:148::2] + +2025-01-10T15:33:20.0487767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-01-10T15:33:21.0251350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T15:33:22.6985873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-10T15:33:28.0390290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-10T15:33:50.8052246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.121.6] + +2025-01-10T15:33:56.9877550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T15:33:57.9810388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T15:33:59.0033084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T15:34:00.1769410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.113.3] + +2025-01-10T15:34:07.0330928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.114.25] + +2025-01-10T15:34:09.0114035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-10T15:34:18.7035270+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T15:34:18.7045020+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T15:34:19.3758141+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 661.3375 ms + +2025-01-10T15:34:19.5585507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.7, 13.105.74.50] + +2025-01-10T15:34:32.6114956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.36, 13.107.246.52, 2620:1ec:bdf::67] + +2025-01-10T15:34:36.4993753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.163, 20.190.144.164] + +2025-01-10T15:34:39.1139126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.121.10] + +2025-01-10T15:34:40.9161787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.7, 40.90.133.100] + +2025-01-10T15:34:55.0554870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.113.22] + +2025-01-10T15:34:55.3034529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.112.25] + +2025-01-10T15:35:27.7643476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-10T15:35:27.8295919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.36, 2620:1ec:bdf::74] + +2025-01-10T15:35:30.6436893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::45] + +2025-01-10T15:35:30.9110773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.11, 40.90.133.97] + +2025-01-10T15:35:52.3393832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.114.6] + +2025-01-10T15:35:52.9484775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.52.169] + +2025-01-10T15:35:57.2381183+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.113.25] + +2025-01-10T15:36:03.3094918+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.113.3] + +2025-01-10T15:36:19.2738572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.11] + +2025-01-10T15:36:20.7049067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.71] + +2025-01-10T15:36:33.0651514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T15:37:00.4547339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T15:37:10.7057225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 20.26.156.216] + +2025-01-10T15:37:12.1281908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 52.109.52.84] + +2025-01-10T15:37:21.9229475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T15:37:25.4724438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.114.25] + +2025-01-10T15:37:25.4741910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.52] + +2025-01-10T15:37:26.5083869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 2603:1046:1406::2] + +2025-01-10T15:37:44.1432456+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.113.9] + +2025-01-10T15:37:58.9974474+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:38:02.5927928+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:38:03.9497478+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:38:09.6538548+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:38:33.5307145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-01-10T15:38:54.8640553+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:38:55.4503004+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-10T15:39:16.7640227+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:39:38.4174027+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:39:38.6724760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 13.107.42.18] + +2025-01-10T15:40:00.1029564+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:40:05.2811652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T15:40:31.0421385+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:40:31.4394258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.113.26] + +2025-01-10T15:40:37.4057800+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:40:37.6789563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 13.107.42.18] + +2025-01-10T15:40:38.5943509+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:40:38.9980842+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.112.3] + +2025-01-10T15:40:43.1128225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.113.9] + +2025-01-10T15:40:44.4373424+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:40:45.9016139+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:40:52.5063883+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:40:52.9402493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.21, 140.82.114.21] + +2025-01-10T15:40:53.6442696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.71, 2620:1ec:bdf::74] + +2025-01-10T15:40:57.0389950+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:40:57.2949615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 13.107.246.71, 2620:1ec:bdf::74] + +2025-01-10T15:41:19.9475668+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-01-10T15:41:27.9842717+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:41:33.1963672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.135.6.7] + +2025-01-10T15:41:55.3252791+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:42:00.5115373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T15:42:21.3805099+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1382889.5352 ms + +2025-01-10T15:42:21.4914984+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T15:42:21.4925319+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T15:42:22.5172620+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:42:28.3539715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T15:42:29.6774037+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.166, 20.190.144.137] + +2025-01-10T15:42:33.8904051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:150::1, 2603:1046:2000:158::3, 2603:1047:1:150::2] + +2025-01-10T15:42:36.9151686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T15:42:37.8676120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.6] + +2025-01-10T15:42:45.8980089+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:42:48.5735202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 13.107.246.45, 2620:1ec:bdf::74] + +2025-01-10T15:43:00.4700996+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:43:00.7096364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.45, 2620:1ec:bdf::74] + +2025-01-10T15:43:24.2158183+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:43:34.6150184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-10T15:43:49.6993040+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T15:43:49.7000615+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T15:43:50.3286260+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 614.6009 ms + +2025-01-10T15:43:57.5768143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 104.17.25.14] + +2025-01-10T15:44:15.5611611+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.144.139, 20.190.144.166] + +2025-01-10T15:44:45.2019105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T15:44:45.5662775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T15:44:54.7361230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T15:45:02.3941475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T15:45:02.3960128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-01-10T15:45:06.6422887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-10T15:45:09.2546069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 2603:1047:1:168::27, 2603:1047:1:168::20] + +2025-01-10T15:45:32.9806059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-10T15:45:39.7064432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.4] + +2025-01-10T15:45:41.2676386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.9] + +2025-01-10T15:45:43.1669223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.121.9] + +2025-01-10T15:45:52.7992996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-01-10T15:45:54.0536873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.113.22] + +2025-01-10T15:45:54.1337440+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.66, 2620:1ec:bdf::44] + +2025-01-10T15:45:54.1532490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 13.107.246.45, 13.107.246.71] + +2025-01-10T15:45:56.7389037+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T15:45:58.0952460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::67, 13.107.246.45] + +2025-01-10T15:46:19.9058525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 2606:50c0:8002::154] + +2025-01-10T15:46:25.3345808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.45, 2620:1ec:bdf::57] + +2025-01-10T15:46:30.3059076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.135.6.11] + +2025-01-10T15:46:33.9114418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.135.6.5] + +2025-01-10T15:46:38.9238241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.113.5] + +2025-01-10T15:46:55.4573334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T15:46:56.0440569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.0] + +2025-01-10T15:47:32.9180656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.163, 20.190.148.166] + +2025-01-10T15:47:38.2108641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.148.166, 2603:1047:1:168::12] + +2025-01-10T15:47:47.6103507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-10T15:47:49.6915498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.148.166, 20.190.148.167] + +2025-01-10T15:47:51.1037135+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.9] + +2025-01-10T15:47:52.2404695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.45, 2620:1ec:bdf::65] + +2025-01-10T15:47:52.5403048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.45, 2620:1ec:bdf::67] + +2025-01-10T15:47:58.0686786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-01-10T15:47:58.0698929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-01-10T15:47:58.0708013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::65, 13.107.246.66] + +2025-01-10T15:47:58.0715594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::57, 13.107.246.73] + +2025-01-10T15:47:58.0733056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.5, 20.135.6.11] + +2025-01-10T15:47:58.0744999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 52.109.52.0] + +2025-01-10T15:48:45.4807528+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:50:26.4464693+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T15:50:26.4482874+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T15:50:26.4568348+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T15:50:26.4584968+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T15:50:26.4680146+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-10T15:50:26.4690674+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-10T15:50:26.6915933+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 208.1778 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T15:50:26.8746322+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 403.8482 ms + +2025-01-10T15:50:26.9666780+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T15:50:26.9675314+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T15:50:28.6757774+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 1978.8787 ms + +2025-01-10T15:50:28.7229369+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T15:50:28.7252298+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T15:50:28.9450390+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 189.962 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T15:50:29.4805068+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 535.4992 ms + +2025-01-10T15:50:30.7855972+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T15:50:30.7871242+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T15:50:30.9931550+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 197.005 ms + +2025-01-10T15:50:31.0140618+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 205.4859 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T15:50:31.0943367+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T15:50:31.0952723+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T15:50:31.8557273+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 836.2354 ms + +2025-01-10T15:50:32.0797972+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 201.3594 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T15:50:32.3692725+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 289.7853 ms + +2025-01-10T15:51:39.2280987+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:51:39.4727049+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T15:52:01.0972782+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:52:01.6873017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-10T15:52:08.1296353+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:52:09.2493957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-01-10T15:52:10.2277963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.121.9] + +2025-01-10T15:52:15.2417535+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:52:15.4836790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-10T15:52:36.9304886+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:52:42.1647873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-10T15:52:44.2813421+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:52:44.7239154+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.112.3] + +2025-01-10T15:53:06.5408677+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:53:06.9759703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.113.5] + +2025-01-10T15:53:20.7025208+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T15:53:20.7047109+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T15:53:21.3638363+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 635.211 ms + +2025-01-10T15:53:29.7482404+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:53:30.1990603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-10T15:53:40.4536496+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:53:41.7050312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T15:53:54.3325383+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:53:54.5115286+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T15:54:16.3288938+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:54:16.7621209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.25] + +2025-01-10T15:54:17.8589608+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:54:18.1875213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-10T15:54:39.8683304+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:54:40.1317991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.66, 13.107.246.45] + +2025-01-10T15:54:56.1965373+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:54:57.4672813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::45, 13.107.246.74] + +2025-01-10T15:54:58.6292685+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:55:05.0196468+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:55:05.4455897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 52.109.52.2] + +2025-01-10T15:55:07.0375042+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:55:07.4923327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.5, 40.90.130.204] + +2025-01-10T15:55:33.5537326+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:57:53.2988540+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:57:53.7837093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.160, 20.190.148.162] + +2025-01-10T15:57:54.8348580+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:57:55.2862919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.148.167, 20.190.144.162] + +2025-01-10T15:57:59.5952324+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T15:57:59.8432959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T15:58:29.3978950+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T15:58:29.8036411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.9] + +2025-01-10T15:58:32.8567377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-10T15:58:38.5746736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-10T15:58:39.4324224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-10T15:58:40.6712593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 104.17.24.14] + +2025-01-10T15:58:41.7334476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-01-10T15:58:42.7936654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-01-10T15:58:43.8996962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3] + +2025-01-10T15:58:45.8324227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161] + +2025-01-10T15:58:46.9245507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.112.21] + +2025-01-10T15:58:47.4243750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161, 117.18.232.200] + +2025-01-10T15:58:48.0772873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.26] + +2025-01-10T15:58:48.4625208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-01-10T15:58:49.3537984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-10T15:58:49.9995876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.64, 2620:1ec:bdf::73] + +2025-01-10T15:58:50.7605624+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.74, 13.107.246.66] + +2025-01-10T15:58:51.7937377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 40.90.133.97, 40.90.133.112] + +2025-01-10T15:58:52.8389315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.52.2, 52.109.56.126] + +2025-01-10T15:58:53.8990716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1406::7, 52.109.52.84] + +2025-01-10T15:58:54.5596701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.86, 40.126.35.84, 40.126.35.64] + +2025-01-10T15:58:55.0042550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 2603:1047:1:168::2f, 2603:1047:1:168::18] + +2025-01-10T15:58:58.2518491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1406::7] + +2025-01-10T15:59:00.7733023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.5, 40.90.133.97] + +2025-01-10T15:59:16.3724874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.85, 40.126.35.81, 40.126.35.18] + +2025-01-10T15:59:17.6175722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-10T15:59:21.4073675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 2606:50c0:8002::154] + +2025-01-10T15:59:28.7891899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.139, 20.190.148.164] + +2025-01-10T15:59:38.5612082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T15:59:41.6452242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.66, 2620:1ec:bdf::74] + +2025-01-10T15:59:41.7111599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::44, 2620:1ec:bdf::73] + +2025-01-10T15:59:44.0262495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.3] + +2025-01-10T15:59:49.0806389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.113.26] + +2025-01-10T15:59:49.3471099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.11, 20.135.6.5] + +2025-01-10T15:59:58.3276741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.112.26] + +2025-01-10T15:59:58.4010334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T16:00:09.9249359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.1, 20.135.6.5] + +2025-01-10T16:00:21.6462027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.144.139, 2603:1047:1:168::2f] + +2025-01-10T16:00:53.4433533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T16:00:53.7111042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 13.107.246.66, 2620:1ec:bdf::74] + +2025-01-10T16:00:57.3229084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.2] + +2025-01-10T16:01:03.4747126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.160, 20.190.148.162] + +2025-01-10T16:01:27.1000520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.114.26, 140.82.112.25] + +2025-01-10T16:01:44.2850508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.4] + +2025-01-10T16:01:54.9031469+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::44, 13.107.246.66] + +2025-01-10T16:02:14.5462881+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.114.10] + +2025-01-10T16:02:43.9861350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.144.136, 20.190.148.162] + +2025-01-10T16:02:49.8117321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.5] + +2025-01-10T16:02:51.7072427+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T16:02:51.7090294+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T16:02:52.3255704+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 603.4175 ms + +2025-01-10T16:03:05.0313337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.162, 20.190.148.163] + +2025-01-10T16:03:05.8505218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 2603:1047:1:168::18, 2603:1047:1:168::2f] + +2025-01-10T16:03:30.0577481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.112.9] + +2025-01-10T16:03:35.0673251+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-10T16:03:35.5815294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-01-10T16:03:35.5836763+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-10T16:03:35.7159981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8000::154, 185.199.110.133] + +2025-01-10T16:03:37.4061170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T16:03:44.8270328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-10T16:03:50.0378065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-10T16:03:56.6970822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T16:03:57.5058939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-10T16:03:58.3978619+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.38, 2620:1ec:bdf::52] + +2025-01-10T16:03:58.9731794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.53, 2620:1ec:bdf::46] + +2025-01-10T16:03:59.8928449+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.0] + +2025-01-10T16:04:12.9143762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.114.10] + +2025-01-10T16:04:18.9233879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-10T16:04:19.0948851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::46, 2620:1ec:bdf::73] + +2025-01-10T16:04:21.2586922+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T16:04:24.4122245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 185.199.110.133] + +2025-01-10T16:04:28.9971666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.148.164, 20.190.144.162] + +2025-01-10T16:04:42.3569884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::51, 2620:1ec:bdf::44] + +2025-01-10T16:04:42.4210533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::46, 13.107.246.73] + +2025-01-10T16:04:42.8130555+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T16:04:42.8146476+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T16:04:43.4186263+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 571.355 ms + +2025-01-10T16:04:54.3100203+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.113.3] + +2025-01-10T16:04:58.7057086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.114.9] + +2025-01-10T16:05:00.1330910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::63, 2620:1ec:bdf::51] + +2025-01-10T16:05:00.4757276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.53, 2620:1ec:bdf::46] + +2025-01-10T16:05:01.5130339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 52.109.52.169] + +2025-01-10T16:05:02.3374301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 2603:1046:1406::2] + +2025-01-10T16:05:11.1557170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.116.6] + +2025-01-10T16:05:11.6509915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T16:05:12.5522807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.11, 13.105.28.1] + +2025-01-10T16:05:24.4797306+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1382971.381 ms + +2025-01-10T16:05:24.6229752+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T16:05:24.6252696+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T16:05:27.6172576+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 2981.5235 ms + +2025-01-10T16:05:29.7169910+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/_alive responded 200 in 2091.4316 ms + +2025-01-10T16:05:30.1058347+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_alive responded 200 in 379.6717 ms + +2025-01-10T16:05:40.2694441+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T16:05:40.2705145+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T16:05:40.3159022+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T16:05:40.3169865+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T16:05:40.3180710+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-10T16:05:40.3189693+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-10T16:05:40.5325131+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 200.6209 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T16:05:40.7733890+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 445.4066 ms + +2025-01-10T16:05:40.8963659+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T16:05:40.8979014+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T16:05:41.9738618+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 1440.8794 ms + +2025-01-10T16:05:41.9788666+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T16:05:41.9796907+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T16:05:42.1926622+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 195.1104 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T16:05:44.2293789+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T16:05:44.2310633+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T16:05:44.4637951+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 210.5955 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T16:05:44.7831322+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 543.5477 ms + +2025-01-10T16:05:44.9083774+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T16:05:44.9098552+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T16:05:45.0443697+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 367.2183 ms + +2025-01-10T16:05:45.2718658+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 205.1041 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T16:05:45.6189291+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 3117.9238 ms + +2025-01-10T16:05:45.8686212+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 310.4081 ms + +2025-01-10T16:05:49.1352120+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 199.2249 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T16:05:52.7221601+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 3586.6715 ms + +2025-01-10T16:05:52.9440199+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 193.5881 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T16:05:53.9679488+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 1023.161 ms + +2025-01-10T16:06:45.3772724+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.4] + +2025-01-10T16:06:58.4726720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::44, 13.107.246.53] + +2025-01-10T16:07:13.4125633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.35, 20.190.141.39, 20.190.141.36] + +2025-01-10T16:07:13.9322514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 20.190.144.136, 2603:1047:1:168::18] + +2025-01-10T16:07:40.8852797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.9, 20.135.6.11] + +2025-01-10T16:07:49.2340350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 2603:1047:1:168::18, 2603:1047:1:168::2f] + +2025-01-10T16:08:02.6423967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 20.190.144.166, 20.190.144.139] + +2025-01-10T16:08:06.3150625+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 2603:1047:1:168::29, 20.190.144.166] + +2025-01-10T16:08:07.6325533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T16:08:07.6346600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T16:08:07.6361495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T16:08:57.2700053+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:09:18.7059560+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:09:29.2113272+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:09:29.3377941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-01-10T16:09:39.5312406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T16:10:01.2851033+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:10:02.2063383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-10T16:10:24.0288327+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:10:25.3384471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T16:10:34.7143666+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:10:34.8896401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T16:11:00.8561963+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:11:06.0471599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 140.82.121.6, 140.82.121.5] + +2025-01-10T16:11:07.6205362+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:11:34.0790593+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:11:58.4795703+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:11:58.9711377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.4] + +2025-01-10T16:12:25.5296845+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:12:36.6906596+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unexpected end of stream + +2025-01-10T16:12:38.1004120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.21] + +2025-01-10T16:13:01.8384314+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:13:04.0842322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.114.26] + +2025-01-10T16:13:05.1994786+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:13:05.3377448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T16:13:26.3940079+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:13:26.6714548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.11, 20.135.6.9] + +2025-01-10T16:13:28.0597930+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:13:50.0861144+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:13:50.1574620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::44, 2620:1ec:bdf::74] + +2025-01-10T16:15:28.0940668+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:15:28.1723551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.67, 2620:1ec:bdf::74] + +2025-01-10T16:15:44.3537962+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:15:49.8749346+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unexpected end of stream + +2025-01-10T16:15:52.1892118+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:15:55.2959803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.36, 20.190.141.39, 20.190.141.34] + +2025-01-10T16:16:20.9819992+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:16:21.2958865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 20.190.148.166, 20.190.144.166] + +2025-01-10T16:16:24.1854938+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T16:16:25.1466063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-01-10T16:16:26.1998313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.24.14] + +2025-01-10T16:16:31.6557981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154] + +2025-01-10T16:16:32.3925650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-10T16:16:38.7747711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-10T16:16:41.9075033+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-01-10T16:16:42.9986363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.9] + +2025-01-10T16:17:04.7971113+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:17:06.2577198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8002::154, 2606:50c0:8001::154] + +2025-01-10T16:17:07.4072364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T16:17:08.6400643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 40.90.130.199, 40.90.130.197] + +2025-01-10T16:17:17.1856133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.53, 2620:1ec:bdf::73] + +2025-01-10T16:17:18.0968172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.41, 2620:1ec:bdf::74] + +2025-01-10T16:17:39.4538424+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:17:39.4577180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 52.109.52.84] + +2025-01-10T16:17:43.1548825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-10T16:17:43.7126023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.113.10] + +2025-01-10T16:17:44.2308461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.22, 140.82.113.21] + +2025-01-10T16:17:48.2105862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 2603:1047:1:168::20, 2603:1047:1:168::10] + +2025-01-10T16:17:56.3670285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::11, 2603:1047:1:a0::10, 2603:1047:1:a0::c] + +2025-01-10T16:18:00.8576522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T16:18:07.6594162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.4] + +2025-01-10T16:18:08.3796450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.112.25] + +2025-01-10T16:18:13.9652193+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-01-10T16:18:14.3997627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 40.90.130.199] + +2025-01-10T16:18:15.2758130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T16:18:16.0834696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-10T16:18:17.9498833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 40.90.130.199, 40.90.130.197] + +2025-01-10T16:18:23.7526492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-01-10T16:18:24.0416953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::64, 2620:1ec:bdf::74, 13.107.246.53] + +2025-01-10T16:18:24.3194729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::74, 2620:1ec:bdf::66] + +2025-01-10T16:18:31.3759066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 40.90.130.197, 40.90.130.199] + +2025-01-10T16:18:34.4793204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T16:18:34.4833201+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 2603:1046:1406::2, 52.109.52.0] + +2025-01-10T16:18:34.8179011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.134, 40.126.35.87, 40.126.35.151] + +2025-01-10T16:18:35.8309020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4] + +2025-01-10T16:18:35.8324508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 20.26.156.210] + +2025-01-10T16:18:55.5550230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 13.107.246.41] + +2025-01-10T16:18:56.0804956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::74, 13.107.246.46] + +2025-01-10T16:18:58.6773259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.114.4] + +2025-01-10T16:19:47.3867420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-01-10T16:20:23.3873382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 40.90.130.197] + +2025-01-10T16:20:29.5408884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::45] + +2025-01-10T16:20:31.0268941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.113.5] + +2025-01-10T16:20:48.3932092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.3] + +2025-01-10T16:20:51.8015778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.121.10] + +2025-01-10T16:20:54.6542176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.21, 40.126.35.80, 40.126.35.144] + +2025-01-10T16:20:57.3705378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.7] + +2025-01-10T16:21:07.2193507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-10T16:21:10.9832446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.112.25] + +2025-01-10T16:21:19.8097913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T16:21:26.1805579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T16:21:27.8732825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-10T16:21:27.8748425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-10T16:21:27.8757396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-10T16:21:28.0915708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.112.6] + +2025-01-10T16:21:32.1243841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154] + +2025-01-10T16:21:35.6761847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-10T16:21:40.6795498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133] + +2025-01-10T16:21:40.9565760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T16:21:41.0250085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-10T16:21:41.0275779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-10T16:21:41.1741581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T16:21:44.1643633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T16:21:51.2620778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.4] + +2025-01-10T16:22:00.0545097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.2, 20.143.38.0] + +2025-01-10T16:22:05.3584578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.137, 20.190.148.167] + +2025-01-10T16:22:24.6581206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-10T16:22:31.0893462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T16:22:49.9150241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.112.22] + +2025-01-10T16:22:57.8031232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::11, 2603:1047:1:a0::10, 2603:1047:1:a0::13] + +2025-01-10T16:23:01.2498134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.26, 140.82.113.26] + +2025-01-10T16:23:09.4213534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8000::154, 185.199.110.133] + +2025-01-10T16:23:09.9965744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.112.25] + +2025-01-10T16:23:18.8490225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-10T16:23:21.0052439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 2606:50c0:8002::154] + +2025-01-10T16:23:22.1476331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 2620:1ec:bdf::74, 13.107.246.46] + +2025-01-10T16:23:56.1157118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.46, 2620:1ec:bdf::74] + +2025-01-10T16:23:56.1886564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.52, 13.107.246.73] + +2025-01-10T16:23:57.4920133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 2620:1ec:bdf::74, 13.107.246.46] + +2025-01-10T16:23:59.1617349+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-01-10T16:24:47.8243110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T16:25:46.1223341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.113.9] + +2025-01-10T16:25:50.9561995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1404::5] + +2025-01-10T16:26:04.0622039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.162, 20.190.144.137] + +2025-01-10T16:26:05.3893992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.5] + +2025-01-10T16:26:18.1299227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.26] + +2025-01-10T16:26:24.5856229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.46, 13.107.246.41] + +2025-01-10T16:26:25.2472872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.162, 40.126.35.150] + +2025-01-10T16:26:33.0651270+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1262951.3119 ms + +2025-01-10T16:26:33.1928716+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T16:26:33.1940670+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T16:26:37.2854772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-10T16:26:42.3024685+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-01-10T16:26:42.7456951+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 13.107.43.18] + +2025-01-10T16:26:42.7467076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 13.107.42.18, 13.107.43.18] + +2025-01-10T16:26:45.5279890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8003::154, 2606:50c0:8002::154, 2606:50c0:8001::154] + +2025-01-10T16:26:50.3710133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-10T16:27:01.9651893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.143.38.2] + +2025-01-10T16:27:05.8188050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.163, 40.126.35.150] + +2025-01-10T16:27:19.2969350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::74, 2620:1ec:bdf::40] + +2025-01-10T16:27:25.5801152+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T16:27:25.5820149+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T16:27:25.5842220+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->::1 + +2025-01-10T16:27:25.5864439+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-01-10T16:27:26.2410139+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-01-10T16:27:26.2443453+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-01-10T16:27:26.4745944+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 199.1725 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T16:27:26.5277975+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 893.1522 ms + +2025-01-10T16:27:27.7043100+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1229.3961 ms + +2025-01-10T16:27:34.0764362+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T16:27:34.0771530+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T16:27:34.4161604+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 330.9799 ms + +2025-01-10T16:27:34.4921124+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.8976 ms + +2025-01-10T16:27:48.6276304+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.25 ms + +2025-01-10T16:27:48.6953941+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.5972 ms + +2025-01-10T16:27:50.9991714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.21] + +2025-01-10T16:27:51.2238005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.114.4] + +2025-01-10T16:27:59.0305016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::15, 2603:1047:1:a0::13, 2603:1047:1:a0::12] + +2025-01-10T16:28:02.2289865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2f, 2603:1047:1:168::28, 2603:1047:1:168::20] + +2025-01-10T16:28:03.7440604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 2603:1047:1:168::27, 2603:1047:1:168::25] + +2025-01-10T16:28:06.3635187+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.4667 ms + +2025-01-10T16:28:06.4313347+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.2834 ms + +2025-01-10T16:28:10.9636111+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.26] + +2025-01-10T16:28:22.9405398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8003::154, 2606:50c0:8001::154, 185.199.108.133] + +2025-01-10T16:28:23.5774465+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 13.107.246.46] + +2025-01-10T16:28:25.0076623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.163, 20.190.144.165] + +2025-01-10T16:28:26.2781266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 2620:1ec:bdf::64] + +2025-01-10T16:28:26.4545770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::74, 13.107.246.73] + +2025-01-10T16:28:39.7997705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.9] + +2025-01-10T16:28:39.8041609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-01-10T16:28:57.0321941+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:29:18.0633210+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:29:30.0670208+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:29:51.3289021+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:30:12.6610492+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:30:13.0075608+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:30:14.0002116+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:30:35.6390382+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:30:35.8826598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.113.9] + +2025-01-10T16:30:57.5895043+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:30:57.8278032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.5] + +2025-01-10T16:30:59.2074394+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:31:23.7202591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.21] + +2025-01-10T16:31:43.3500364+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T16:31:43.3537334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T16:31:53.1426665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.25] + +2025-01-10T16:32:01.2565714+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:32:01.4934803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-01-10T16:32:23.0497871+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:32:28.0565122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-10T16:32:29.1465564+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:32:31.6218937+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:32:32.6875098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.52, 13.107.246.46] + +2025-01-10T16:32:54.6789366+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:32:54.7614942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.46, 2620:1ec:bdf::73] + +2025-01-10T16:33:17.7948120+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:33:18.1046612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.2, 20.135.6.15] + +2025-01-10T16:33:22.6453282+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:33:27.6508642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-10T16:33:49.8596743+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:33:55.0262731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 52.109.44.108] + +2025-01-10T16:34:05.0394380+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.163, 40.126.35.64] + +2025-01-10T16:34:14.3187266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 2603:1047:1:168::12, 2603:1047:1:168::11] + +2025-01-10T16:34:21.5085344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T16:34:23.2863702+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-01-10T16:34:25.5944691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-10T16:34:30.5287290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T16:34:35.1557370+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-10T16:34:36.3136552+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 13.107.43.18] + +2025-01-10T16:34:37.4227384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.6] + +2025-01-10T16:34:42.4072317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T16:34:42.8558580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T16:34:44.2507391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.121.4] + +2025-01-10T16:34:49.5705057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.9] + +2025-01-10T16:34:50.9330734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.112.21] + +2025-01-10T16:34:56.8409583+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.25, 140.82.113.26] + +2025-01-10T16:35:13.1184720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.46, 2620:1ec:bdf::73] + +2025-01-10T16:35:18.0147613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 13.107.246.74] + +2025-01-10T16:35:19.0916455+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 20.135.6.15, 20.135.6.2] + +2025-01-10T16:35:21.5858235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.113.9] + +2025-01-10T16:35:30.3807640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 2603:1046:1406::2] + +2025-01-10T16:36:25.8547553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 2620:1ec:bdf::46] + +2025-01-10T16:36:25.8562215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 20.135.6.15, 40.90.133.97] + +2025-01-10T16:36:56.6991474+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T16:36:56.6998616+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T16:36:57.2641725+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 552.4215 ms + +2025-01-10T16:37:12.9189641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.112.9] + +2025-01-10T16:37:14.4832337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 2620:1ec:bdf::46] + +2025-01-10T16:37:16.0556103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 2620:1ec:bdf::67] + +2025-01-10T16:37:23.7579580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T16:37:23.7593812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T16:37:31.9558053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T16:37:32.3186619+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-10T16:37:48.4911894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-10T16:38:05.9986843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 2603:1047:1:168::12, 20.190.144.161] + +2025-01-10T16:38:21.7328246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 20.135.6.15, 40.90.130.207] + +2025-01-10T16:38:24.3310336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-10T16:38:32.8547462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.114.10] + +2025-01-10T16:38:33.3822781+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 20.135.6.15, 40.90.133.99] + +2025-01-10T16:38:52.8327115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.4] + +2025-01-10T16:38:56.6970462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.64, 40.126.35.128, 40.126.35.19] + +2025-01-10T16:38:56.6984687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 20.190.144.161, 20.190.144.166] + +2025-01-10T16:39:03.8867580+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:39:07.8893841+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:39:28.9148572+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:39:32.7701606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.70, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T16:39:55.5863712+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:39:56.0551647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.144, 40.126.35.85, 40.126.35.19] + +2025-01-10T16:39:59.4187903+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:40:04.6177830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 20.190.144.161, 2603:1047:1:168::1f] + +2025-01-10T16:40:12.6242950+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:40:13.4063393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T16:40:52.9882872+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:40:53.5755236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 104.17.25.14] + +2025-01-10T16:41:19.1075921+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:41:20.2306036+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-10T16:41:21.8230350+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:41:22.0137979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T16:41:43.4265289+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:42:09.5507674+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:42:13.4498551+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:42:13.8947115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.6] + +2025-01-10T16:42:39.6228930+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T16:42:40.0511426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.112.4] + +2025-01-10T16:42:56.5683743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T16:43:02.4087997+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T16:43:03.6700232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 117.18.232.200] + +2025-01-10T16:43:04.7940538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-10T16:43:36.0794426+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1022870.523 ms + +2025-01-10T16:43:36.1927043+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T16:43:36.1960380+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T16:43:39.0966385+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 2887.3865 ms + +2025-01-10T16:43:39.1020798+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T16:43:39.1031535+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T16:43:40.7274013+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/_alive responded 200 in 1612.9902 ms + +2025-01-10T16:43:41.1162204+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_alive responded 200 in 367.6165 ms + +2025-01-10T16:46:09.8148295+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T16:46:09.8496169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 117.18.232.200] + +2025-01-10T16:46:13.0685006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-01-10T16:46:14.1398518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.73] + +2025-01-10T16:46:16.5305933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 13.105.74.50, 40.90.133.99] + +2025-01-10T16:46:19.0245206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T16:46:20.0524252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.73] + +2025-01-10T16:46:22.1702527+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-10T16:46:23.3803246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.128, 40.126.35.86, 40.126.35.20] + +2025-01-10T16:46:28.3093922+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 608.8914 ms + +2025-01-10T16:46:29.1961053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 20.190.144.166, 20.190.144.163] + +2025-01-10T16:46:32.1890388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T16:46:33.5491110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 2606:4700::6811:190e] + +2025-01-10T16:46:35.4274272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-01-10T16:46:36.2223341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.5] + +2025-01-10T16:46:37.1019402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T16:46:37.9786405+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T16:46:38.8655574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-10T16:46:39.8275196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.4] + +2025-01-10T16:47:02.7025889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-10T16:47:12.2459123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.113.9] + +2025-01-10T16:47:15.9397967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.233.83.146, 20.205.243.168, 140.82.113.5] + +2025-01-10T16:47:29.8923280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-10T16:47:35.0771225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 40.90.133.99, 20.135.1.1] + +2025-01-10T16:47:41.6183301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.114.4] + +2025-01-10T16:47:55.0226163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T16:47:56.6281614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T16:48:06.0935362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T16:48:06.6361439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.113.21] + +2025-01-10T16:48:09.1480391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T16:48:10.0286223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T16:48:20.0022061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T16:48:35.0402631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-10T16:48:36.4291655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.139, 20.190.148.165] + +2025-01-10T16:48:38.4375606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.233.83.146, 140.82.114.5, 20.205.243.168] + +2025-01-10T16:48:44.8550075+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.114.10] + +2025-01-10T16:49:03.9270208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.113.9] + +2025-01-10T16:49:07.9678584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 117.18.232.200] + +2025-01-10T16:49:07.9707652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.112.25] + +2025-01-10T16:49:29.4863226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::46] + +2025-01-10T16:49:31.0926558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 40.90.133.99, 40.90.133.100] + +2025-01-10T16:49:32.3919448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 2603:1046:1406::2] + +2025-01-10T16:49:33.8947930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::59] + +2025-01-10T16:49:44.9373364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-10T16:49:58.3039981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 2603:1047:1:168::25, 20.190.144.164] + +2025-01-10T16:50:13.5154561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T16:50:17.0263041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.38] + +2025-01-10T16:50:23.4786232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.7, 40.90.133.99] + +2025-01-10T16:50:30.4056683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::74] + +2025-01-10T16:50:42.3301569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-01-10T16:50:49.9964777+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 20.233.83.150] + +2025-01-10T16:50:50.7143099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T16:51:04.3401075+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-10T16:51:05.1466961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.5, 20.135.6.7] + +2025-01-10T16:51:16.2974664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.25] + +2025-01-10T16:51:16.3652990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T16:51:16.3669923+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::59, 2620:1ec:bdf::74] + +2025-01-10T16:51:20.9486669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 2603:1036:2400::12, 2603:1046:1400::7] + +2025-01-10T16:51:22.3187467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T16:51:25.9633646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.41, 2620:1ec:bdf::59] + +2025-01-10T16:51:29.8253234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.166, 20.190.144.139] + +2025-01-10T16:51:30.2924096+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::25, 2603:1047:1:168::18, 2603:1047:1:168::10] + +2025-01-10T16:51:33.1764390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-10T16:51:34.6714266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-01-10T16:51:36.8523629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-01-10T16:51:45.0981522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-01-10T16:51:45.6535224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T16:51:45.8234535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T16:51:46.3237583+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.114.4] + +2025-01-10T16:52:19.7344855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.5, 13.105.74.50] + +2025-01-10T16:52:21.3728410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.114.5] + +2025-01-10T16:52:21.5473196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-01-10T16:52:31.4643604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.66, 13.107.246.41] + +2025-01-10T16:52:43.9261194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.4] + +2025-01-10T16:52:52.9045985+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.22] + +2025-01-10T16:52:54.0217296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-10T16:53:00.4179153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8001::154] + +2025-01-10T16:53:02.3105814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 117.18.232.200] + +2025-01-10T16:53:06.9439437+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161, 117.18.232.200] + +2025-01-10T16:53:08.1909406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.112.21] + +2025-01-10T16:53:08.4517649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T16:53:09.7544288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T16:53:14.5417777+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.112.22] + +2025-01-10T16:53:21.9120608+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.66, 2620:1ec:bdf::59] + +2025-01-10T16:53:39.8504947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.165, 20.190.144.139] + +2025-01-10T16:53:39.8520222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::25, 2603:1047:1:168::18, 20.190.148.166] + +2025-01-10T16:53:56.5989345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::25, 20.190.144.136, 2603:1047:1:168::18] + +2025-01-10T16:54:24.0597818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.38, 2620:1ec:bdf::74] + +2025-01-10T16:54:43.0931736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.6] + +2025-01-10T16:55:31.5254568+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::59, 13.107.246.41] + +2025-01-10T16:55:56.4924754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.116.3] + +2025-01-10T16:55:58.7062007+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T16:55:58.7076098+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T16:55:59.3336748+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 613.3216 ms + +2025-01-10T16:56:05.4803609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 13.105.74.50, 20.135.6.7] + +2025-01-10T16:56:18.8161256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.114.26, 140.82.113.26] + +2025-01-10T16:56:18.8826138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.42, 13.107.246.74] + +2025-01-10T16:56:18.8848794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::59, 13.107.246.74] + +2025-01-10T16:56:20.6420757+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-01-10T16:56:22.6275344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T16:56:24.4948112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.66, 13.107.246.42] + +2025-01-10T16:56:26.5796219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.66, 2620:1ec:bdf::59] + +2025-01-10T16:56:26.8612785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.64, 13.107.246.66] + +2025-01-10T16:56:38.3049363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.165, 20.190.148.166] + +2025-01-10T16:56:38.7637999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.148.165, 20.190.148.166] + +2025-01-10T16:56:40.0775190+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T16:56:45.3812105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154] + +2025-01-10T16:56:46.2757498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.24.14] + +2025-01-10T16:56:46.5544558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T16:56:47.0178878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T16:56:59.5786707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-01-10T16:57:11.0389826+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.144.163, 20.190.148.165] + +2025-01-10T16:57:20.7850603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.7, 13.105.74.50] + +2025-01-10T16:57:33.0862919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.66, 13.107.246.64] + +2025-01-10T16:57:42.6273947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.5] + +2025-01-10T16:57:53.2879964+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-01-10T16:57:58.5183878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T16:57:59.1619270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T16:58:06.3220503+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T16:58:06.3265485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-10T16:58:09.7498308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-10T16:58:10.2966650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-01-10T16:58:10.5165898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T16:58:15.7361775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.114.21] + +2025-01-10T16:58:17.9919944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::59, 13.107.246.74] + +2025-01-10T16:58:22.8140440+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.74, 13.107.246.59] + +2025-01-10T16:58:35.9362583+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-01-10T16:58:35.9380840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.4] + +2025-01-10T16:58:37.1589205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.114.26] + +2025-01-10T16:58:43.7328406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.165, 20.190.144.164] + +2025-01-10T16:58:44.9605019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-01-10T16:58:56.9794703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.144.164, 20.190.144.139] + +2025-01-10T16:58:57.8701377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.132, 20.190.166.66, 20.190.166.133] + +2025-01-10T16:59:25.1663972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.64, 13.107.246.69] + +2025-01-10T16:59:26.4467431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.7, 13.105.74.49] + +2025-01-10T16:59:32.2639935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::45, 13.107.246.74] + +2025-01-10T17:00:26.3813838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 13.105.74.49, 20.135.6.9] + +2025-01-10T17:00:27.9346949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.3] + +2025-01-10T17:00:40.9378401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.10] + +2025-01-10T17:00:54.7602166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-10T17:01:05.1923800+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T17:01:05.1932719+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T17:01:06.1891694+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 960.6258 ms + +2025-01-10T17:01:06.5465393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T17:01:10.6979063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.5, 13.105.74.49] + +2025-01-10T17:01:21.2285123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-10T17:01:22.4116800+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T17:01:22.4130990+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T17:01:22.7849359+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/ppsecure/GetUserKeyData.srf responded 400 in 359.7213 ms + +2025-01-10T17:01:25.1246530+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 284.8312 ms + +2025-01-10T17:01:26.6554545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::45, 13.107.246.59] + +2025-01-10T17:01:27.1807391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 13.105.74.49, 20.135.6.9] + +2025-01-10T17:01:27.4567750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-01-10T17:01:37.0655322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.69, 2620:1ec:bdf::65] + +2025-01-10T17:01:38.4741703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.166, 20.190.144.160] + +2025-01-10T17:01:43.4518595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T17:01:45.9442604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-01-10T17:01:46.6734059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T17:01:46.6748326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T17:01:48.3522283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-10T17:02:09.5394995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::45, 2620:1ec:bdf::41] + +2025-01-10T17:02:22.6275169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.74.50, 20.135.6.5] + +2025-01-10T17:02:34.7528891+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::65, 13.107.246.46] + +2025-01-10T17:02:34.8134763+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::45, 2620:1ec:bdf::41] + +2025-01-10T17:02:40.0732825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.113.6] + +2025-01-10T17:02:43.9523522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-01-10T17:02:45.7907157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.113.4] + +2025-01-10T17:02:53.7799029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.112.9] + +2025-01-10T17:02:59.9189615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-01-10T17:03:06.5732016+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 593.2753 ms + +2025-01-10T17:03:08.9017753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-10T17:03:11.0571697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-01-10T17:03:11.9200004+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-10T17:03:37.4175448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.26] + +2025-01-10T17:03:41.3761532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.139, 20.190.144.166] + +2025-01-10T17:03:44.0542132+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1202920.3757 ms + +2025-01-10T17:03:44.2107956+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T17:03:44.2122836+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T17:03:52.5607066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.6] + +2025-01-10T17:03:58.7989951+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.6] + +2025-01-10T17:03:58.8664989+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::65, 13.107.246.66] + +2025-01-10T17:04:03.9666136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.133, 20.190.166.66, 20.190.166.132] + +2025-01-10T17:04:09.1343098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.114.3] + +2025-01-10T17:04:25.7651779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.46, 13.107.246.64] + +2025-01-10T17:04:28.5308038+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-01-10T17:04:30.4185995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.66, 13.107.246.46] + +2025-01-10T17:04:30.4220772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::41, 13.107.246.59] + +2025-01-10T17:04:33.1915341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.59, 13.107.246.63] + +2025-01-10T17:04:35.2811596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::41, 13.107.246.59] + +2025-01-10T17:04:47.8840782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.9, 13.105.74.50] + +2025-01-10T17:05:04.1429329+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.116.5] + +2025-01-10T17:05:29.7105156+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T17:05:29.7121226+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T17:05:30.3535062+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 628.1214 ms + +2025-01-10T17:05:32.7382563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T17:06:03.7368209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.9] + +2025-01-10T17:06:05.6384323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.59, 2620:1ec:bdf::63] + +2025-01-10T17:06:11.2121886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.5] + +2025-01-10T17:06:12.6731374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::41, 13.107.246.59] + +2025-01-10T17:06:22.7672934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.114.25] + +2025-01-10T17:06:26.7642263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::41, 2620:1ec:bdf::74] + +2025-01-10T17:06:27.3663488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.63, 2620:1ec:bdf::41] + +2025-01-10T17:06:27.5298976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.4] + +2025-01-10T17:06:39.1979117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.166, 20.190.144.160] + +2025-01-10T17:06:43.2360250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.148.166, 20.190.144.166] + +2025-01-10T17:06:45.1020444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T17:06:45.1039872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-10T17:06:46.2239536+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-01-10T17:06:54.7324010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-10T17:07:03.8588199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-10T17:07:03.9874110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-01-10T17:07:04.2209250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.9] + +2025-01-10T17:07:09.6810808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.73, 2620:1ec:bdf::74] + +2025-01-10T17:07:09.6821115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.73, 13.107.246.63] + +2025-01-10T17:07:23.5404410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 20.135.6.9] + +2025-01-10T17:07:41.8190432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.135.6.5] + +2025-01-10T17:07:53.5211339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.113.4] + +2025-01-10T17:07:55.6778837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.112.10] + +2025-01-10T17:08:00.3787273+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-01-10T17:08:02.3005796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8000::154] + +2025-01-10T17:08:18.7557915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T17:08:19.2936817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.3] + +2025-01-10T17:08:20.0941863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-10T17:08:20.5451002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8003::154, 2606:50c0:8002::154, 185.199.108.133] + +2025-01-10T17:08:37.8579115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.113.26] + +2025-01-10T17:08:44.6307524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.166, 20.190.144.138] + +2025-01-10T17:08:53.4104790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.10] + +2025-01-10T17:08:59.9557678+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.132, 20.190.166.68] + +2025-01-10T17:09:37.0281705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.73, 2620:1ec:bdf::74] + +2025-01-10T17:09:37.2808182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-01-10T17:10:33.5988594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.137, 20.190.144.138] + +2025-01-10T17:10:55.1364290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.116.10] + +2025-01-10T17:10:59.3618337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T17:11:25.3494869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.26] + +2025-01-10T17:11:29.5017681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:22::18] + +2025-01-10T17:11:45.1772339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T17:11:58.2135533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-10T17:11:58.6609216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.137, 20.190.144.164] + +2025-01-10T17:12:00.5800166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-01-10T17:12:00.6452775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T17:12:00.6479339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T17:12:01.2293266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-01-10T17:12:09.8401810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 104.17.25.14] + +2025-01-10T17:12:09.9788784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-01-10T17:12:14.6181675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.164, 20.190.144.139] + +2025-01-10T17:12:23.7637157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.143.38.0] + +2025-01-10T17:12:59.0714859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T17:13:00.5295023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-10T17:13:00.5307241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8003::154] + +2025-01-10T17:13:02.7260748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-01-10T17:13:20.0800590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-10T17:13:21.9108725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-10T17:13:22.2542997+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.116.3] + +2025-01-10T17:13:24.4433790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-10T17:13:34.0573424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.2] + +2025-01-10T17:13:40.4984674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.44.111] + +2025-01-10T17:14:00.6387062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.68, 20.190.166.132, 20.190.166.67] + +2025-01-10T17:14:01.7538339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.116.5] + +2025-01-10T17:14:09.3290624+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T17:14:38.9727545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T17:15:00.7261385+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T17:15:00.7275845+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T17:15:01.3522243+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 613.5642 ms + +2025-01-10T17:15:26.7529967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T17:15:34.1582453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.166, 20.190.144.164] + +2025-01-10T17:16:29.1227810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.114.26] + +2025-01-10T17:16:29.1877515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.74, 13.107.246.73] + +2025-01-10T17:16:29.1931076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.74, 2620:1ec:bdf::52] + +2025-01-10T17:16:29.6113082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T17:16:33.2135171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.45, 13.107.246.74] + +2025-01-10T17:16:45.8171746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T17:16:45.8187477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-10T17:16:45.8201134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.43.18] + +2025-01-10T17:16:59.0924910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.166, 20.190.148.164] + +2025-01-10T17:17:00.3173397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.112.6] + +2025-01-10T17:17:02.6484622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T17:17:03.8400442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T17:17:10.4198566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-10T17:17:15.4273383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-01-10T17:17:21.2536461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 140.82.116.10, 140.82.121.10] + +2025-01-10T17:17:22.7602666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::41, 13.107.246.74] + +2025-01-10T17:17:23.0017024+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.36, 13.107.246.74] + +2025-01-10T17:17:24.8357510+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.143.38.2] + +2025-01-10T17:17:25.4709444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.163, 20.190.144.166] + +2025-01-10T17:17:30.9341221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T17:17:34.9519791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::51, 2620:1ec:bdf::41] + +2025-01-10T17:17:43.7362021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.9] + +2025-01-10T17:17:47.9082092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-01-10T17:18:02.2069409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8002::154, 185.199.109.133] + +2025-01-10T17:18:05.5663969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T17:18:06.2147153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 140.82.116.10, 140.82.113.9] + +2025-01-10T17:18:06.7579524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.4] + +2025-01-10T17:18:06.9763203+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-10T17:18:06.9795517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8002::154] + +2025-01-10T17:18:10.2221562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.112.25] + +2025-01-10T17:18:15.0710385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.6] + +2025-01-10T17:18:22.6181215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-01-10T17:18:26.4725417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.113.21] + +2025-01-10T17:18:28.3920593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 2606:50c0:8001::154] + +2025-01-10T17:18:35.3425189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.113.22] + +2025-01-10T17:18:35.4058146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::51, 2620:1ec:bdf::69] + +2025-01-10T17:18:40.8833910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.25] + +2025-01-10T17:19:02.1357300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.68, 20.190.166.131, 20.190.166.132] + +2025-01-10T17:19:04.7961155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.6] + +2025-01-10T17:19:20.4908626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-01-10T17:19:24.5331856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.36, 13.107.246.74, 2620:1ec:bdf::52] + +2025-01-10T17:19:48.0296523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.6] + +2025-01-10T17:19:49.3209454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.112.25] + +2025-01-10T17:20:04.5415819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T17:20:28.2674546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.116.3] + +2025-01-10T17:20:28.6296864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.36, 13.107.246.74] + +2025-01-10T17:20:32.3094170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.36, 2620:1ec:bdf::45] + +2025-01-10T17:20:32.3113806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::51, 13.107.246.66] + +2025-01-10T17:20:34.8549530+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.166, 20.190.144.138] + +2025-01-10T17:20:39.1118733+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::51, 2620:1ec:bdf::40] + +2025-01-10T17:20:53.6921557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 140.82.113.9, 140.82.121.10] + +2025-01-10T17:21:12.8967071+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T17:21:28.7820595+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:21:47.1363756+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1082907.3216 ms + +2025-01-10T17:21:47.2621066+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T17:21:47.2639011+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T17:21:49.8126721+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T17:21:49.8755576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T17:21:50.2460950+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 2963.9935 ms + +2025-01-10T17:21:50.2616668+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T17:21:50.2624035+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T17:21:50.8618007+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/_alive responded 200 in 583.0634 ms + +2025-01-10T17:21:51.2521599+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_alive responded 200 in 372.3745 ms + +2025-01-10T17:22:15.3340358+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T17:22:16.4575215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-01-10T17:22:30.0917693+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:22:30.4934798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-10T17:22:51.9119651+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T17:22:52.3419189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.113.9] + +2025-01-10T17:23:13.7930577+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T17:23:14.0478507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T17:23:19.7848831+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:23:19.9330362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-10T17:23:41.3324262+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T17:23:41.5024701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T17:23:42.5349603+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:23:42.9677325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.6] + +2025-01-10T17:24:04.3680369+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T17:24:07.1377731+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:24:28.2258301+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:24:29.8615307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-10T17:24:32.3135010+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 608.8195 ms + +2025-01-10T17:24:38.9845482+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:24:47.2815452+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:24:47.7152066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.112.26] + +2025-01-10T17:24:55.3489619+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-10T17:25:13.9935625+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.41, 2620:1ec:bdf::52] + +2025-01-10T17:26:21.2031828+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T17:26:21.7155228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-10T17:26:28.7535983+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:26:29.0486413+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.66] + +2025-01-10T17:26:49.0915054+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T17:26:49.7228508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-10T17:27:01.7379308+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:27:03.1811874+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:27:25.3916552+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T17:27:28.9439342+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.67, 20.190.166.132, 20.190.166.133] + +2025-01-10T17:27:53.4251306+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T17:27:56.9203554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.37, 20.190.141.35, 20.190.141.36] + +2025-01-10T17:28:04.0686880+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T17:28:04.8665021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-01-10T17:28:05.5775934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T17:28:06.8857481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-10T17:28:08.8158741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-10T17:28:09.9030336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 20.26.156.215] + +2025-01-10T17:28:11.2264374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.121.10] + +2025-01-10T17:28:12.2376682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-01-10T17:28:20.9158814+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:28:20.9826476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::52, 2620:1ec:bdf::74] + +2025-01-10T17:28:23.2926223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-10T17:28:28.3087185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T17:28:28.5887597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T17:28:29.0218522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.46] + +2025-01-10T17:28:31.4072477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.143.38.0] + +2025-01-10T17:28:31.4094424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::70] + +2025-01-10T17:29:10.9864548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T17:29:10.9887696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T17:29:19.5200294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.112.5] + +2025-01-10T17:29:20.5253910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 20.26.156.210] + +2025-01-10T17:29:25.2318065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-01-10T17:29:30.1212079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.112.22] + +2025-01-10T17:29:48.9785126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.25] + +2025-01-10T17:29:57.7173935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-01-10T17:29:58.1251760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-01-10T17:30:05.3230616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-10T17:30:10.2157383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-01-10T17:30:12.5776091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.5] + +2025-01-10T17:30:17.8803188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.46, 2620:1ec:bdf::74] + +2025-01-10T17:30:18.6175557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.73, 2620:1ec:bdf::45] + +2025-01-10T17:30:20.4678294+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:30:30.9124916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.74, 13.107.246.46] + +2025-01-10T17:30:32.1071207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-10T17:30:32.1086689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::45, 2620:1ec:bdf::73] + +2025-01-10T17:31:08.3097054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T17:31:10.5373927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.114.22] + +2025-01-10T17:31:10.8734812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::59, 13.107.246.74] + +2025-01-10T17:31:11.4116213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-01-10T17:31:13.0019940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18, 2620:1ec:21::18] + +2025-01-10T17:31:13.7085365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.21] + +2025-01-10T17:31:18.9091257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.73, 2620:1ec:bdf::59] + +2025-01-10T17:31:40.3944496+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T17:31:43.8970554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::67, 2620:1ec:bdf::73] + +2025-01-10T17:31:44.5720084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::51, 13.107.246.73] + +2025-01-10T17:31:52.8002884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-10T17:32:12.4041635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 13.105.28.18] + +2025-01-10T17:32:19.6636739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::51, 13.107.246.41] + +2025-01-10T17:32:25.7163259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.132, 20.190.166.68, 20.190.166.133] + +2025-01-10T17:32:33.6816968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::67, 13.107.246.52] + +2025-01-10T17:33:02.4383679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.34, 20.190.141.35, 20.190.141.39] + +2025-01-10T17:33:04.3430698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18, 2620:1ec:21::18] + +2025-01-10T17:33:08.4621603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-10T17:33:09.5875729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-10T17:33:11.6052731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-01-10T17:33:21.3577233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.41, 2620:1ec:bdf::51] + +2025-01-10T17:33:24.7610425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-10T17:33:25.5232229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8003::154, 2606:50c0:8001::154] + +2025-01-10T17:33:28.4455475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-10T17:33:45.9791743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::15, 2603:1047:1:a0::12, 2603:1047:1:a0::13] + +2025-01-10T17:34:05.7393535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 117.18.232.200] + +2025-01-10T17:34:12.3010637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T17:34:15.9717026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-01-10T17:34:16.6456732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T17:34:27.8159919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T17:34:30.6730659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.113.22] + +2025-01-10T17:34:30.6766869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T17:34:35.4841531+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.66, 13.107.246.73] + +2025-01-10T17:34:41.3789867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.114.26] + +2025-01-10T17:34:49.2400901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.114.26] + +2025-01-10T17:35:00.8417620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8002::154, 2606:50c0:8003::154] + +2025-01-10T17:35:16.3224281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T17:35:19.0374348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::40, 13.107.246.66] + +2025-01-10T17:35:25.6764314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.112.10] + +2025-01-10T17:35:37.4371806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.25] + +2025-01-10T17:36:03.4261999+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T17:36:03.4273963+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T17:36:03.4671989+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T17:36:03.4684761+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T17:36:03.4737107+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-10T17:36:03.4751002+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-10T17:36:03.6928996+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 202.0069 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T17:36:03.8642895+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 379.5206 ms + +2025-01-10T17:36:03.9585810+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T17:36:03.9594199+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T17:36:05.3861507+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 1693.2639 ms + +2025-01-10T17:36:05.3921516+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T17:36:05.3930248+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T17:36:05.6064124+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 197.488 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T17:36:06.0290731+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 422.6698 ms + +2025-01-10T17:36:20.6939178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.114.21] + +2025-01-10T17:36:21.1116618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::51, 13.107.246.73] + +2025-01-10T17:36:28.7904999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.113.6] + +2025-01-10T17:36:32.6336733+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 2603:1047:1:a0::15, 2603:1047:1:a0::12] + +2025-01-10T17:36:45.4324118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.41, 13.107.246.73] + +2025-01-10T17:37:04.6618198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 20.135.6.5] + +2025-01-10T17:37:27.7019056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.68, 20.190.166.133, 20.190.166.132] + +2025-01-10T17:37:29.4722485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.121.9] + +2025-01-10T17:37:35.7031719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.52, 13.107.246.73, 2620:1ec:bdf::40] + +2025-01-10T17:37:41.8253215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.52, 13.107.246.73] + +2025-01-10T17:37:58.6491290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 20.190.141.35, 20.190.141.34] + +2025-01-10T17:38:06.1842150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T17:38:06.1873919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T17:38:06.1891848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T17:38:10.3613368+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->::1 + +2025-01-10T17:38:10.3621997+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->127.0.0.1 + +2025-01-10T17:38:10.6251769+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->::1 + +2025-01-10T17:38:10.6264794+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->127.0.0.1 + +2025-01-10T17:38:10.6420635+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->::1 + +2025-01-10T17:38:10.6432540+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->127.0.0.1 + +2025-01-10T17:38:11.7513753+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://devtools.azureedge.net/serve_file/@16ab910a6e75f1c7d2da060bbe9ac569dfe64f70/third_party/webhint/worker_frame.html responded 200 in 764.8565 ms + +2025-01-10T17:38:11.7527429+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://devtools.azureedge.net/docs/131/stable.json responded 200 in 859.5273 ms + +2025-01-10T17:38:12.2829871+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://devtools.azureedge.net/serve_file/@16ab910a6e75f1c7d2da060bbe9ac569dfe64f70/third_party/webhint/webhint.js responded 200 in 512.7792 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: The read operation failed, see inner exception. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'SslStream'. + + +2025-01-10T17:38:14.4999339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::64, 13.107.246.74] + +2025-01-10T17:38:20.9430214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-10T17:38:25.9606062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-01-10T17:38:31.7448228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-10T17:38:46.1298990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8002::154, 2606:50c0:8003::154, 2606:50c0:8001::154] + +2025-01-10T17:38:47.7952630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::51, 13.107.246.73] + +2025-01-10T17:38:48.3848869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.63, 13.107.246.44] + +2025-01-10T17:38:51.6740309+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 2603:1047:1:a0::a, 2603:1047:1:a0::13] + +2025-01-10T17:38:54.5476333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 13.107.42.18] + +2025-01-10T17:38:54.5504152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-10T17:39:03.8033955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.138, 20.190.144.137] + +2025-01-10T17:39:19.4183472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.68, 20.190.166.133, 20.190.166.132] + +2025-01-10T17:39:21.9345550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.5, 13.105.74.49] + +2025-01-10T17:39:23.5998003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.143.38.2, 20.135.6.5] + +2025-01-10T17:39:25.9231262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.143.38.2, 13.105.74.49] + +2025-01-10T17:39:28.2945062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::51, 13.107.246.36] + +2025-01-10T17:39:32.5572448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-01-10T17:39:36.2950446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::41, 13.107.246.63] + +2025-01-10T17:39:51.3336126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.114.26] + +2025-01-10T17:39:55.4377174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.3] + +2025-01-10T17:40:02.0732745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-10T17:40:07.0940663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8003::154, 2606:50c0:8001::154, 185.199.108.133] + +2025-01-10T17:40:17.6190222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.36, 2620:1ec:bdf::44] + +2025-01-10T17:40:21.1765412+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.40, 2620:1ec:bdf::64] + +2025-01-10T17:40:26.2808917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.113.9] + +2025-01-10T17:40:31.9007072+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T17:40:31.9019909+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T17:40:32.1446440+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 208.1023 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T17:40:32.5742277+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 655.3367 ms + +2025-01-10T17:40:32.7457984+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T17:40:32.7467714+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T17:40:33.4295704+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 1285.2438 ms + +2025-01-10T17:40:33.6480726+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 196.3869 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T17:40:40.9708436+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 7322.7397 ms + +2025-01-10T17:40:56.8268166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.26] + +2025-01-10T17:41:10.2256241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::67, 13.107.246.36] + +2025-01-10T17:41:15.8012748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.143.38.2, 20.135.6.7] + +2025-01-10T17:41:20.4226328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-10T17:42:00.7515547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-01-10T17:42:03.2541517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.21] + +2025-01-10T17:42:13.5755374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.7, 40.90.130.199] + +2025-01-10T17:42:24.4608620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-01-10T17:42:28.8106228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.66, 2620:1ec:bdf::41] + +2025-01-10T17:42:34.2396936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-10T17:42:35.8304585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::a, 2603:1047:1:a0::13, 20.190.141.35] + +2025-01-10T17:42:51.6490026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T17:42:54.1818492+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1262916.3966 ms + +2025-01-10T17:42:54.3112848+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-01-10T17:42:54.3135184+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-01-10T17:43:15.8467698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.36, 2620:1ec:bdf::64] + +2025-01-10T17:43:30.2047960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.143.38.2, 40.90.133.102] + +2025-01-10T17:43:33.4504789+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-10T17:43:33.4514651+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-10T17:43:33.6708556+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 207.2792 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T17:43:41.4680547+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 7795.4117 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T17:44:03.8520770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 40.126.35.80, 2603:1047:1:168::1a] + +2025-01-10T17:44:19.4311112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T17:44:28.4534649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T17:44:31.2831770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T17:44:40.7289983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154] + +2025-01-10T17:44:45.7562636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133] + +2025-01-10T17:44:54.6742420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-10T17:44:58.3702526+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T17:44:58.3710799+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T17:44:59.9429152+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 1559.9657 ms + +2025-01-10T17:45:00.3152868+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 371.1932 ms + +2025-01-10T17:45:00.3778334+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.4883 ms + +2025-01-10T17:45:05.3638404+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.112.6] + +2025-01-10T17:45:27.3632508+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.9587 ms + +2025-01-10T17:45:27.4441847+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 74.1286 ms + +2025-01-10T17:45:34.7372812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8002::154, 2606:50c0:8000::154, 185.199.111.133] + +2025-01-10T17:45:53.4572966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.113.22] + +2025-01-10T17:46:00.5605962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.112.25] + +2025-01-10T17:46:02.3220603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.112.4] + +2025-01-10T17:46:10.5439754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.36, 13.107.246.74] + +2025-01-10T17:46:19.0033804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 40.90.133.102, 40.90.130.199] + +2025-01-10T17:46:28.5117525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.36, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-10T17:46:30.4582609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-10T17:46:47.6084090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T17:46:55.7887490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 2603:1047:1:168::27, 2603:1047:1:168::1a] + +2025-01-10T17:47:18.4756787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.6] + +2025-01-10T17:47:20.3015641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.112.10] + +2025-01-10T17:47:25.3747401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T17:47:26.0949149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.21] + +2025-01-10T17:47:27.8456521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.36, 13.107.246.74] + +2025-01-10T17:47:28.3569198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 40.90.133.102, 40.90.130.197] + +2025-01-10T17:47:29.3646917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::46, 13.107.246.74] + +2025-01-10T17:47:37.7540986+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.67, 20.190.166.66, 20.190.166.133] + +2025-01-10T17:47:42.7883024+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 20.190.144.162, 2603:1047:1:168::27] + +2025-01-10T17:47:45.0873480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.4] + +2025-01-10T17:47:51.6631492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T17:47:59.3856722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.6] + +2025-01-10T17:47:59.6084354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.113.9] + +2025-01-10T17:48:04.2966140+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::63, 13.107.246.41, 13.107.246.36] + +2025-01-10T17:48:07.0152409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.3] + +2025-01-10T17:48:14.0910105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-10T17:48:14.0932265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 2603:1047:1:168::27, 2603:1047:1:168::1a] + +2025-01-10T17:48:16.1876422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::64, 13.107.246.74] + +2025-01-10T17:48:16.3181341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 2620:1ec:bdf::63, 13.107.246.41] + +2025-01-10T17:48:18.0436095+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 40.90.133.102] + +2025-01-10T17:48:29.6204744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::64, 2620:1ec:bdf::42] + +2025-01-10T17:48:30.8989317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 20.135.1.1] + +2025-01-10T17:48:37.8439691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 40.90.133.99] + +2025-01-10T17:49:03.6066375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 2603:1047:1:168::28, 2603:1047:1:168::2d] + +2025-01-10T17:49:24.1973713+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:22::18, 2620:1ec:21::18, 13.107.42.18] + +2025-01-10T17:49:41.7994282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.112.10] + +2025-01-10T17:49:44.0486217+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T17:50:07.0937341+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T17:50:10.2874865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.148.166, 20.190.144.164] + +2025-01-10T17:50:15.5363595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-10T17:50:24.5420139+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T17:50:25.0667767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-10T17:50:28.2086863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-10T17:50:28.7168485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-01-10T17:50:29.6018614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.24.14] + +2025-01-10T17:50:30.1717378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 4.208.26.200] + +2025-01-10T17:50:35.9640731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T17:50:40.7553211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::63, 13.107.246.41] + +2025-01-10T17:50:42.9123655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::46, 13.107.246.36] + +2025-01-10T17:50:52.8700066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1406::7] + +2025-01-10T17:51:02.7781714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.121.9] + +2025-01-10T17:51:03.0647999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T17:51:04.4911148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.114.22] + +2025-01-10T17:51:04.8978988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-10T17:51:10.5592977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8001::154, 185.199.111.133] + +2025-01-10T17:51:11.7431813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T17:51:11.7444929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T17:51:12.4231304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.26, 140.82.114.25] + +2025-01-10T17:51:16.2052250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::46, 2620:1ec:bdf::73] + +2025-01-10T17:51:17.7456914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.0] + +2025-01-10T17:52:01.5780978+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T17:52:01.5790920+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T17:52:02.9378887+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 1345.1049 ms + +2025-01-10T17:52:03.0098685+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 70.352 ms + +2025-01-10T17:52:04.6820123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::46, 2620:1ec:bdf::40] + +2025-01-10T17:52:06.0543302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.166, 20.190.144.160] + +2025-01-10T17:52:12.4380915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 2603:1047:1:168::10, 2603:1047:1:168::2f] + +2025-01-10T17:52:17.0929669+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.4543 ms + +2025-01-10T17:52:17.1675823+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.9881 ms + +2025-01-10T17:52:17.2790365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.114.10] + +2025-01-10T17:52:17.4950360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-01-10T17:52:19.5139531+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.112.25] + +2025-01-10T17:52:20.2086854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 40.90.133.99, 40.90.130.204] + +2025-01-10T17:52:21.6147994+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.121.9] + +2025-01-10T17:52:26.9071910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.113.22] + +2025-01-10T17:52:32.6861872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.121.3] + +2025-01-10T17:52:37.4266982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T17:52:39.9612282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.148.165, 20.190.148.162] + +2025-01-10T17:52:46.0065364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.22] + +2025-01-10T17:52:49.2577519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 52.109.52.84] + +2025-01-10T17:53:00.4711679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 40.90.133.99] + +2025-01-10T17:53:08.7448378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.114.10] + +2025-01-10T17:53:09.6904581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.121.4] + +2025-01-10T17:53:09.9349238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161] + +2025-01-10T17:53:13.4261008+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 2603:1046:1406::7] + +2025-01-10T17:53:14.6623834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.41, 2620:1ec:bdf::46] + +2025-01-10T17:53:16.6029699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.45, 13.107.246.41] + +2025-01-10T17:53:20.9220927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.45, 13.107.246.60] + +2025-01-10T17:53:35.3238992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.60, 2620:1ec:bdf::46] + +2025-01-10T17:53:36.6286787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::64, 2620:1ec:bdf::42, 2620:1ec:bdf::74] + +2025-01-10T17:53:38.4813155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 40.90.133.102] + +2025-01-10T17:53:42.8199576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 20.135.6.9] + +2025-01-10T17:54:03.4246574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.164, 20.190.148.165] + +2025-01-10T17:54:03.5437279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 2603:1047:1:168::10, 2603:1047:1:168::28] + +2025-01-10T17:54:05.3257261+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 13.107.246.45, 13.107.246.60] + +2025-01-10T17:54:34.4149065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T17:54:34.4173815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T17:54:35.2956983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.4] + +2025-01-10T17:54:36.4554310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-10T17:54:45.2586972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.7] + +2025-01-10T17:54:56.9197381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::64, 2620:1ec:bdf::42] + +2025-01-10T17:55:17.9846434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154] + +2025-01-10T17:55:28.2829443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154] + +2025-01-10T17:55:30.6901386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 2620:1ec:22::18] + +2025-01-10T17:55:31.4149118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-10T17:55:36.5532767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-10T17:55:41.5607787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-01-10T17:55:43.8236551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T17:55:45.5668155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.113.4] + +2025-01-10T17:56:11.5110875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.112.5] + +2025-01-10T17:56:16.5144304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 2606:50c0:8000::154] + +2025-01-10T17:56:17.1137860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 152.199.19.161] + +2025-01-10T17:56:27.9188768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.112.26] + +2025-01-10T17:56:28.8393955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.113.22] + +2025-01-10T17:56:29.3636367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T17:56:29.4749551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.113.4] + +2025-01-10T17:56:29.7850301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.40, 13.107.246.45] + +2025-01-10T17:56:37.2302488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::73, 13.107.246.45] + +2025-01-10T17:57:08.2849005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-10T17:57:16.1419743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 20.190.148.166, 20.190.144.164] + +2025-01-10T17:57:19.0915876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.113.6] + +2025-01-10T17:57:33.3612598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.40, 13.107.246.74] + +2025-01-10T17:57:34.1842597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::73, 13.107.246.53] + +2025-01-10T17:57:40.6647437+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.160, 20.190.144.166] + +2025-01-10T17:57:40.7934830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 20.190.148.166, 2603:1047:1:168::26] + +2025-01-10T17:57:49.8716904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-10T17:57:58.1545114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.74, 13.107.246.41] + +2025-01-10T17:58:14.0275664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T17:58:17.8914178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::42, 13.107.246.74, 2620:1ec:bdf::74] + +2025-01-10T17:58:19.1491579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::73, 13.107.246.60] + +2025-01-10T17:58:38.4239268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.73] + +2025-01-10T17:58:44.7214152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.9] + +2025-01-10T17:58:47.8377403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::74] + +2025-01-10T17:58:47.8400658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.74, 13.107.246.44] + +2025-01-10T17:58:58.0900646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.148.166, 20.190.144.165] + +2025-01-10T17:58:58.3611061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 2603:1047:1:168::28, 20.190.148.166] + +2025-01-10T17:59:03.6368585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.165, 20.190.144.160] + +2025-01-10T17:59:03.7497362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::10, 20.190.144.160, 2603:1047:1:168::13] + +2025-01-10T17:59:06.7000457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.60, 13.107.246.64] + +2025-01-10T17:59:08.9102546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T17:59:16.0689933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 2603:1047:1:168::10, 20.190.144.160] + +2025-01-10T17:59:25.4095262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T17:59:25.4111748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-01-10T17:59:34.6266833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.74, 13.107.246.61] + +2025-01-10T17:59:53.1155300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 2603:1047:1:168::11, 2603:1047:1:168::10] + +2025-01-10T18:00:08.2659388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.64, 13.107.246.74] + +2025-01-10T18:00:11.0382303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.112.5] + +2025-01-10T18:00:22.8047498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-01-10T18:00:29.6583595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-01-10T18:00:31.3825622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:22::18, 2620:1ec:21::18] + +2025-01-10T18:00:32.0866890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-10T18:00:37.1005576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8000::154, 185.199.109.133, 2606:50c0:8001::154] + +2025-01-10T18:00:50.4205400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133] + +2025-01-10T18:00:55.4247014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-01-10T18:00:56.3983942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T18:00:56.9457492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T18:00:57.1924908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.114.4] + +2025-01-10T18:01:26.6744136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-01-10T18:01:26.6760463+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.116.10] + +2025-01-10T18:01:29.5963780+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.26] + +2025-01-10T18:01:29.8546743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-10T18:01:30.0306804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T18:01:30.0951395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.44, 2620:1ec:bdf::74] + +2025-01-10T18:01:30.1673436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.61, 13.107.246.44, 2620:1ec:bdf::74] + +2025-01-10T18:02:11.1946339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T18:02:14.4132162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.44, 2620:1ec:bdf::74] + +2025-01-10T18:02:14.6864049+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.73, 13.107.246.44] + +2025-01-10T18:02:14.9931828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.61, 13.107.246.44] + +2025-01-10T18:02:22.5372488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.165, 20.190.148.166] + +2025-01-10T18:02:22.8225838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::25, 2603:1047:1:168::10, 2603:1047:1:168::1a] + +2025-01-10T18:02:24.5499368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-01-10T18:02:32.9346383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-10T18:02:33.1544970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-10T18:02:33.2687948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.4] + +2025-01-10T18:02:34.3471409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::51, 13.107.246.44] + +2025-01-10T18:02:39.9463070+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T18:02:41.3888857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.165, 20.190.148.162] + +2025-01-10T18:02:47.7249512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-01-10T18:02:47.7957272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::44] + +2025-01-10T18:03:43.1393112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.112.5] + +2025-01-10T18:03:44.0832205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.73, 2620:1ec:bdf::41] + +2025-01-10T18:03:46.6772125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.7] + +2025-01-10T18:03:50.1541403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.61, 2620:1ec:bdf::74] + +2025-01-10T18:03:52.7506190+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T18:03:52.7516457+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T18:03:52.7521151+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->::1 + +2025-01-10T18:03:52.7524643+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-01-10T18:03:53.8270427+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 1017.7589 ms + +2025-01-10T18:03:54.1438505+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-01-10T18:03:54.1451438+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-01-10T18:03:54.1465031+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-01-10T18:03:54.1477551+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-01-10T18:03:54.1593008+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1259834.1694 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T18:03:54.3686493+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://api.github.com/_private/browser/stats responded 502 in 199.1422 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:03:54.3816026+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://collector.github.com/github/collect responded 502 in 211.4777 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:03:54.7510947+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 382.5623 ms + +2025-01-10T18:03:56.0587886+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1689.6455 ms + +2025-01-10T18:03:59.6618717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.139, 20.190.148.163] + +2025-01-10T18:04:00.7307431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T18:04:02.0065843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.61] + +2025-01-10T18:04:08.6082393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::44, 2620:1ec:bdf::74] + +2025-01-10T18:04:08.9143914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.64, 13.107.246.73] + +2025-01-10T18:04:10.7280351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-10T18:04:15.1547631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.73, 2620:1ec:bdf::41] + +2025-01-10T18:04:25.7512827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T18:04:25.7522567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-01-10T18:04:38.2143426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.61, 13.107.246.73] + +2025-01-10T18:04:46.3153157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.9] + +2025-01-10T18:05:11.2139942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T18:05:11.8211262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.6] + +2025-01-10T18:05:12.5807742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::44, 13.107.246.69] + +2025-01-10T18:05:28.0834634+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.4] + +2025-01-10T18:05:29.0998572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.9] + +2025-01-10T18:05:30.7061767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T18:05:30.7104353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T18:05:35.7348460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154] + +2025-01-10T18:05:36.4126497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 104.17.25.14] + +2025-01-10T18:05:40.7644001+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8001::154] + +2025-01-10T18:05:40.8781429+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.113.5] + +2025-01-10T18:05:47.1821649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.36, 20.190.141.35, 20.190.141.33] + +2025-01-10T18:05:54.3516153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133] + +2025-01-10T18:05:59.8693263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8001::154, 185.199.108.133] + +2025-01-10T18:06:03.4436872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::44, 13.107.246.61] + +2025-01-10T18:06:03.7181792+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.11] + +2025-01-10T18:06:04.4388724+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-01-10T18:06:04.8279700+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.136, 20.190.148.165] + +2025-01-10T18:06:06.1109220+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.10] + +2025-01-10T18:06:10.3908654+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T18:06:10.3921494+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T18:06:10.4378224+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T18:06:10.4387929+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T18:06:10.4474907+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-10T18:06:10.4498377+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-10T18:06:10.6640019+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 197.7324 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:06:11.0812260+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 628.909 ms + +2025-01-10T18:06:11.1770182+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T18:06:11.1780161+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T18:06:13.7539124+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 3089.6977 ms + +2025-01-10T18:06:13.7705655+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T18:06:13.7723469+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T18:06:13.9949109+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 203.7888 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:06:14.7904544+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 795.3849 ms + +2025-01-10T18:06:22.2069326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.113.5] + +2025-01-10T18:06:30.0757787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.21] + +2025-01-10T18:06:30.9835262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-10T18:06:31.1687937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.74, 2620:1ec:bdf::44] + +2025-01-10T18:06:31.2312017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.64, 2620:1ec:bdf::73] + +2025-01-10T18:06:32.0553697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-10T18:06:33.4529596+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +secure.gravatar.com->::1 + +2025-01-10T18:06:33.4553256+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +secure.gravatar.com->127.0.0.1 + +2025-01-10T18:06:35.0089984+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://secure.gravatar.com/avatar/f2092110233c711e48cd5aa2de50c8ac responded 502 in 141.377 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:06:35.0089985+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://secure.gravatar.com/avatar/ee53b4c3a4ee067275c9de9710bbcd5f responded 502 in 170.4504 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:06:35.0218174+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://secure.gravatar.com/avatar/2f2bde2687b806ffce1e8df3a97fdbac responded 502 in 147.6725 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:06:35.0218161+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://secure.gravatar.com/avatar/4fe55ad76b20e30ee86bb4efd87a3e93 responded 502 in 138.5895 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:06:35.5566887+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:06:36.1385882+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/ee53b4c3a4ee067275c9de9710bbcd5f responded 200 in 1116.1083 ms + +2025-01-10T18:06:36.4394684+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/ee53b4c3a4ee067275c9de9710bbcd5f responded 200 in 1613.4325 ms + +2025-01-10T18:06:36.6159372+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/2f2bde2687b806ffce1e8df3a97fdbac responded 200 in 1260.2451 ms + +2025-01-10T18:06:36.7705003+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/d49d4e4294ce5620c339e99d4c07ef15 responded 200 in 629.5333 ms + +2025-01-10T18:06:36.8416364+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/f2092110233c711e48cd5aa2de50c8ac responded 200 in 1486.175 ms + +2025-01-10T18:06:36.9093507+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/ee53b4c3a4ee067275c9de9710bbcd5f responded 200 in 465.1072 ms + +2025-01-10T18:06:37.8164550+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/4fe55ad76b20e30ee86bb4efd87a3e93 responded 200 in 2460.666 ms + +2025-01-10T18:06:40.7505481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-10T18:06:44.4089295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.116.10] + +2025-01-10T18:06:53.8725375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-01-10T18:06:55.2384946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.2, 20.143.38.0] + +2025-01-10T18:06:58.3753309+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 2620:1ec:bdf::74] + +2025-01-10T18:07:26.7293330+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/d131cf7bb3dd1a57109929df8eb98d03 responded 200 in 1108.7053 ms + +2025-01-10T18:07:26.8440736+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/13095d0aa28431ee84ab63c51d0d9314 responded 200 in 802.269 ms + +2025-01-10T18:07:27.0419088+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/d131cf7bb3dd1a57109929df8eb98d03 responded 200 in 1421.3178 ms + +2025-01-10T18:07:27.1736375+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/38303b4bc8106d80b6281a699bd3d398 responded 200 in 1076.591 ms + +2025-01-10T18:07:27.2171237+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/48dec18ddea7749a4db8c444c5740e6b responded 200 in 1175.3182 ms + +2025-01-10T18:07:27.3297202+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/e847b696692dff3f6dbd24c043723b49 responded 200 in 1287.9689 ms + +2025-01-10T18:07:27.5159213+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/d91024cff760595a133f383d07dd5c08 responded 200 in 338.3614 ms + +2025-01-10T18:07:31.9665177+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/fb0cab38e9ff30d7b2755a6023fe4104 responded 200 in 4753.0726 ms + +2025-01-10T18:07:48.8374852+08:00 [ERR] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/7328257a0089c05471f04d5beda1d625 responded 502 in 22710.5866 ms +System.Net.Http.HttpRequestException: An error occurred while sending the request. + ---> System.IO.IOException: Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + ---> System.Net.Sockets.SocketException (10060): 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + --- End of inner exception stack trace --- + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 ) + at System.Net.Security.SslStream.EnsureFullTlsFrameAsync[TIOAdapter](TIOAdapter ) + at System.Net.Security.SslStream.ReadAsyncInternal[TIOAdapter](TIOAdapter , Memory`1 ) + at System.Net.Http.HttpConnection.InitialFillAsync(Boolean ) + at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage , Boolean , CancellationToken ) + --- End of inner exception stack trace --- + at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage , Boolean , CancellationToken ) + at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage , Boolean , Boolean , CancellationToken ) + at System.Net.Http.DiagnosticsHandler.SendAsyncCore(HttpRequestMessage , Boolean , CancellationToken ) + at FastGithub.Http.HttpClientHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + at FastGithub.Http.HttpClient.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + at Yarp.ReverseProxy.Forwarder.HttpForwarder.SendAsync(HttpContext context, String destinationPrefix, HttpMessageInvoker httpClient, ForwarderRequestConfig requestConfig, HttpTransformer transformer) + +2025-01-10T18:07:55.0320642+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:08:18.0153142+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:08:19.5542081+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:08:31.4035916+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://secure.gravatar.com/avatar/32d356a415d1b32f5eedcbbab6576195 responded 502 in 205.5601 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:08:31.4035918+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://secure.gravatar.com/avatar/e9a5f0fd1f99e301f60187c679589b42 responded 502 in 204.984 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:08:31.4038772+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://secure.gravatar.com/avatar/c4c9fe57b8cd8823ac8e990ed83a0995 responded 502 in 207.699 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T18:08:31.4041298+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://secure.gravatar.com/avatar/d1eea51d09e54ed57f23904bb795d4c0 responded 502 in 205.0974 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:08:31.4044494+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://secure.gravatar.com/avatar/77c6b3a4fca56c1b32703aa5e984556a responded 502 in 205.633 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:08:32.2737947+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/c4c9fe57b8cd8823ac8e990ed83a0995 responded 200 in 869.2547 ms + +2025-01-10T18:08:32.8921458+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/32d356a415d1b32f5eedcbbab6576195 responded 200 in 1486.7608 ms + +2025-01-10T18:08:33.0273002+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/d1eea51d09e54ed57f23904bb795d4c0 responded 200 in 1607.9836 ms + +2025-01-10T18:08:33.4955276+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/77c6b3a4fca56c1b32703aa5e984556a responded 200 in 2076.2022 ms + +2025-01-10T18:08:33.7535788+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://secure.gravatar.com/avatar/e9a5f0fd1f99e301f60187c679589b42 responded 200 in 2334.2196 ms + +2025-01-10T18:08:41.3340954+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:08:53.8677707+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:09:14.6560327+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T18:09:14.6583017+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T18:09:15.0452412+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 366.1373 ms + +2025-01-10T18:09:15.1153067+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.863 ms + +2025-01-10T18:09:15.2009972+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:09:27.2696170+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 71.6327 ms + +2025-01-10T18:09:27.3391915+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.8817 ms + +2025-01-10T18:09:36.7858530+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:09:44.0642273+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:09:45.4832853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.121.10] + +2025-01-10T18:10:06.9366953+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:10:28.8233717+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:10:29.1015295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.6] + +2025-01-10T18:10:44.5510784+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:10:44.7867140+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-01-10T18:11:00.6341499+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 362.2104 ms + +2025-01-10T18:11:00.7065657+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.4018 ms + +2025-01-10T18:11:06.5236830+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:11:07.8077359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T18:11:12.9688430+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.5325 ms + +2025-01-10T18:11:13.0342370+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.7647 ms + +2025-01-10T18:11:24.6278536+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:11:28.9540657+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:11:29.2324793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.3] + +2025-01-10T18:11:29.4537199+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.0774 ms + +2025-01-10T18:11:29.5210489+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.0526 ms + +2025-01-10T18:11:45.2488964+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:11:45.3528363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.69, 2620:1ec:bdf::74] + +2025-01-10T18:11:46.6964132+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:11:46.7671118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::41, 13.107.246.66] + +2025-01-10T18:11:47.7278198+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 104.8731 ms + +2025-01-10T18:11:47.8019234+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.2881 ms + +2025-01-10T18:12:22.6421280+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T18:12:25.3466544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 2603:1046:1400::7, 2603:1036:2405::5] + +2025-01-10T18:12:39.2895998+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.15, 20.143.38.2] + +2025-01-10T18:12:45.2150862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.45, 13.107.246.73] + +2025-01-10T18:12:58.0842000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.139, 20.190.144.165] + +2025-01-10T18:13:03.4408046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.35, 20.190.141.39, 20.190.141.37] + +2025-01-10T18:13:12.5349871+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-01-10T18:13:14.6542473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T18:13:18.0269075+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 562.085 ms + +2025-01-10T18:13:18.0966536+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.2904 ms + +2025-01-10T18:13:29.7814342+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.9757 ms + +2025-01-10T18:13:29.8489554+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.1126 ms + +2025-01-10T18:13:30.3826736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-10T18:13:32.9743131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-10T18:13:40.3607859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8000::154, 2606:50c0:8002::154] + +2025-01-10T18:13:41.6140411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.4] + +2025-01-10T18:13:42.8987959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.121.6] + +2025-01-10T18:13:45.8858783+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.3599 ms + +2025-01-10T18:13:45.9504273+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.3823 ms + +2025-01-10T18:13:47.7393656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T18:13:48.8307683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.21, 140.82.113.22] + +2025-01-10T18:13:57.2452766+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.9282 ms + +2025-01-10T18:13:57.3133429+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.7926 ms + +2025-01-10T18:13:58.6588943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.113.25] + +2025-01-10T18:13:59.2132179+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.143.38.2, 20.143.38.0] + +2025-01-10T18:14:04.1009681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.67] + +2025-01-10T18:14:58.6813636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.121.9] + +2025-01-10T18:15:01.0012356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.21, 140.82.112.22] + +2025-01-10T18:15:09.0567877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.69] + +2025-01-10T18:15:18.1990623+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@8.8.8.8:53->Unexpected end of stream + +2025-01-10T18:15:18.2646375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.51, 13.107.246.45] + +2025-01-10T18:15:52.8977990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.6] + +2025-01-10T18:16:05.1281408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.21, 140.82.113.22] + +2025-01-10T18:16:20.7183846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T18:16:31.5307572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.73, 2620:1ec:bdf::64] + +2025-01-10T18:16:33.6755232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.64, 2620:1ec:bdf::41] + +2025-01-10T18:16:50.1683416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.51, 2620:1ec:bdf::74] + +2025-01-10T18:16:53.4443442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.164, 20.190.144.165] + +2025-01-10T18:16:59.2881584+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:16:59.5235230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.3] + +2025-01-10T18:17:06.0714921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 2603:1046:1400::7, 52.109.68.129] + +2025-01-10T18:17:12.5355893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.143.38.0, 40.90.133.99] + +2025-01-10T18:17:13.9107578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 2620:1ec:bdf::64] + +2025-01-10T18:17:15.6449515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::74, 2620:1ec:bdf::41] + +2025-01-10T18:17:15.9856061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-10T18:17:15.9872176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 2603:1047:1:168::29, 20.190.144.139] + +2025-01-10T18:17:16.8803423+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T18:17:16.8813719+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T18:17:17.2750372+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 379.9522 ms + +2025-01-10T18:17:17.3459291+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.8084 ms + +2025-01-10T18:17:22.1175939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-01-10T18:17:22.3907666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-10T18:17:22.3951615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-01-10T18:17:38.5332279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.59, 2620:1ec:bdf::74] + +2025-01-10T18:17:52.1446791+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.3123 ms + +2025-01-10T18:17:52.2149401+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.0486 ms + +2025-01-10T18:17:53.7642260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 2603:1047:1:168::29, 20.190.144.165] + +2025-01-10T18:18:10.0792150+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.7586 ms + +2025-01-10T18:18:10.1506042+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.8082 ms + +2025-01-10T18:18:20.2933621+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 110.4242 ms + +2025-01-10T18:18:20.3636478+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.8277 ms + +2025-01-10T18:18:20.6252026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.15, 40.90.133.99] + +2025-01-10T18:18:21.7065547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.57, 2620:1ec:bdf::40] + +2025-01-10T18:18:22.6044491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T18:18:24.1491000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.148.162, 20.190.144.165] + +2025-01-10T18:18:24.9143107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 2603:1047:1:168::29, 20.190.148.164] + +2025-01-10T18:18:31.1979028+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 180.4937 ms + +2025-01-10T18:18:31.2683919+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.7945 ms + +2025-01-10T18:18:31.8752574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2] + +2025-01-10T18:18:32.2280677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T18:18:32.2292681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T18:18:34.2030402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-10T18:18:39.2266674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-10T18:18:41.6421201+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 58.6169 ms + +2025-01-10T18:18:41.7092872+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.1335 ms + +2025-01-10T18:18:44.2482897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133] + +2025-01-10T18:18:45.9753859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8002::154, 2606:50c0:8000::154, 2606:50c0:8001::154] + +2025-01-10T18:18:50.4363301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-01-10T18:18:51.1397135+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.112.22, 140.82.113.21] + +2025-01-10T18:18:54.5363199+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.0417 ms + +2025-01-10T18:18:54.6091811+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.9033 ms + +2025-01-10T18:18:59.2393815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.113.25] + +2025-01-10T18:19:05.3384126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.64, 13.107.246.59] + +2025-01-10T18:19:07.2757782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.148.162, 2603:1047:1:168::12] + +2025-01-10T18:19:23.7320794+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 1322.0476 ms + +2025-01-10T18:19:23.8002359+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.4019 ms + +2025-01-10T18:19:40.0333470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.64, 13.107.246.67] + +2025-01-10T18:19:50.0792628+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.35, 20.190.141.38] + +2025-01-10T18:19:56.5945747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-10T18:20:08.3848890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 4.225.11.201] + +2025-01-10T18:20:18.9465377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T18:20:19.0093009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.67, 13.107.246.59] + +2025-01-10T18:20:19.0102930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.57, 13.107.246.40, 2620:1ec:bdf::40] + +2025-01-10T18:20:36.7252604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-01-10T18:20:49.8730603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T18:20:57.3984086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.15, 13.105.74.50] + +2025-01-10T18:20:58.6451711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T18:20:59.7305990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.148.164, 20.190.148.162] + +2025-01-10T18:21:01.7075652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.225.11.201, 140.82.121.5] + +2025-01-10T18:21:21.1997896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T18:21:23.0886021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T18:21:27.3310191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.114.26] + +2025-01-10T18:21:32.2554813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-10T18:21:33.6182059+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 321.9958 ms + +2025-01-10T18:21:33.6893598+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.3067 ms + +2025-01-10T18:21:41.7854264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.64, 13.107.246.67] + +2025-01-10T18:21:46.1184025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.67, 13.107.246.59] + +2025-01-10T18:21:47.1470303+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.8906 ms + +2025-01-10T18:21:47.2170482+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.8791 ms + +2025-01-10T18:21:50.4363862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-10T18:21:50.4995262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.45, 13.107.246.73] + +2025-01-10T18:21:50.5616632+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::44, 13.107.246.74] + +2025-01-10T18:21:59.3035732+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 377.7107 ms + +2025-01-10T18:21:59.9739686+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 664.1483 ms + +2025-01-10T18:22:00.9552856+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->::1 + +2025-01-10T18:22:00.9574148+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-01-10T18:22:15.2829081+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.5852 ms + +2025-01-10T18:22:15.3595009+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 74.3145 ms + +2025-01-10T18:22:40.2194593+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T18:22:40.2204319+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T18:22:40.2824431+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.4711 ms + +2025-01-10T18:22:40.3527382+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.6709 ms + +2025-01-10T18:22:44.6138858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T18:22:50.1227542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.1, 20.135.6.15] + +2025-01-10T18:22:56.2359481+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 371.3789 ms + +2025-01-10T18:22:56.3267749+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 74.165 ms + +2025-01-10T18:23:00.5326480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.73, 13.107.246.74] + +2025-01-10T18:23:01.8665124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.52.169] + +2025-01-10T18:23:03.3978676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.148.166, 20.190.144.160] + +2025-01-10T18:23:23.0133471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T18:23:28.0968724+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 313.394 ms + +2025-01-10T18:23:28.1593525+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.1916 ms + +2025-01-10T18:23:36.9297799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-10T18:23:37.8354993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-10T18:23:38.3213939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-10T18:23:43.5891272+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.6496 ms + +2025-01-10T18:23:43.9533896+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 356.1378 ms + +2025-01-10T18:23:58.7771908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 185.199.109.133] + +2025-01-10T18:23:59.8560839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.21] + +2025-01-10T18:24:00.2461556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-01-10T18:24:03.3101455+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-01-10T18:24:27.6771593+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.9546 ms + +2025-01-10T18:24:27.7464643+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.4919 ms + +2025-01-10T18:24:29.9534686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.73, 2620:1ec:bdf::44] + +2025-01-10T18:24:39.1951013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-10T18:24:43.2497605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.74] + +2025-01-10T18:24:50.6014176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.36, 20.190.141.32, 20.190.141.39] + +2025-01-10T18:24:58.6927601+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 79.1817 ms + +2025-01-10T18:24:58.7629281+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.8393 ms + +2025-01-10T18:25:02.2794073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.42, 13.107.246.73] + +2025-01-10T18:25:10.7491254+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 1359.3726 ms + +2025-01-10T18:25:10.8116892+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.0991 ms + +2025-01-10T18:25:12.2724785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-10T18:25:22.8889961+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.8116 ms + +2025-01-10T18:25:22.9638298+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.6531 ms + +2025-01-10T18:25:30.8574886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.160, 20.190.144.139] + +2025-01-10T18:25:50.6055281+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@8.8.8.8:53->Unexpected end of stream + +2025-01-10T18:26:01.9939809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-10T18:26:14.3285246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.139, 20.190.144.163] + +2025-01-10T18:26:30.9691670+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T18:26:30.9703674+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T18:26:32.4568887+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1457.7613 ms + +2025-01-10T18:26:32.4777816+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1465.9794 ms + +2025-01-10T18:26:32.6061292+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1606.8326 ms + +2025-01-10T18:26:33.9066514+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 653.2004 ms + +2025-01-10T18:26:42.1176279+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1959.0428 ms + +2025-01-10T18:26:45.3730020+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 413.1439 ms + +2025-01-10T18:26:57.5025453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.114.9] + +2025-01-10T18:27:00.3348879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 20.26.156.210] + +2025-01-10T18:27:11.5881609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.112.3] + +2025-01-10T18:27:20.5138248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T18:27:23.4241403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.114.22] + +2025-01-10T18:27:23.9676008+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T18:27:47.5787807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 13.107.246.41] + +2025-01-10T18:27:55.6099387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 13.107.246.51] + +2025-01-10T18:28:00.6799126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-10T18:28:02.7097697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.9, 13.105.74.50] + +2025-01-10T18:28:11.8259235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-01-10T18:28:20.7763582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 20.190.148.167, 20.190.144.136] + +2025-01-10T18:28:28.8917205+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:28:40.0379563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.41, 2620:1ec:bdf::74] + +2025-01-10T18:28:41.9072309+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 2603:1046:1406::5] + +2025-01-10T18:28:44.6887904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-10T18:28:45.2767519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-10T18:28:47.6121970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T18:28:49.5011292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-10T18:28:59.4680041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2c, 20.190.144.164, 2603:1047:1:168::25] + +2025-01-10T18:29:15.6861065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T18:29:24.0121892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-01-10T18:29:26.3342588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.24.14] + +2025-01-10T18:29:32.0143579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-01-10T18:29:43.8789660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-01-10T18:29:49.0791892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8003::154, 185.199.108.133, 185.199.111.133] + +2025-01-10T18:29:50.7922010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.113.22] + +2025-01-10T18:29:53.1469878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.25, 140.82.114.25] + +2025-01-10T18:29:55.4425454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::66, 13.107.246.41] + +2025-01-10T18:30:08.2759737+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T18:30:08.2767958+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T18:30:09.6714428+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 1385.3365 ms + +2025-01-10T18:30:09.7331801+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.8042 ms + +2025-01-10T18:30:13.1958201+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 13.105.28.1, 20.135.6.9] + +2025-01-10T18:30:21.7891244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.81, 40.126.35.86, 40.126.35.129] + +2025-01-10T18:30:26.5493030+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2c, 2603:1047:1:168::29, 20.190.144.164] + +2025-01-10T18:30:52.3204737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.114.9] + +2025-01-10T18:30:54.1476400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-01-10T18:31:00.9576247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::66, 2620:1ec:bdf::44] + +2025-01-10T18:31:14.4082272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 20.190.144.164, 2603:1047:1:168::1d] + +2025-01-10T18:31:48.3686412+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T18:31:48.3708081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-10T18:32:00.6790889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 20.26.156.210] + +2025-01-10T18:32:01.0656861+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.113.10] + +2025-01-10T18:32:08.4316736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.81, 40.126.35.151, 40.126.35.86] + +2025-01-10T18:32:13.6245845+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::64, 2620:1ec:bdf::74] + +2025-01-10T18:32:25.9583864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T18:32:29.6842681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T18:32:29.9550444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T18:32:35.3162661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::66, 2620:1ec:bdf::44, 13.107.246.40] + +2025-01-10T18:33:14.5314797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 20.26.156.215] + +2025-01-10T18:33:29.1105519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::66, 2620:1ec:bdf::44] + +2025-01-10T18:33:35.5792086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::36, 2620:1ec:bdf::46, 13.107.246.42] + +2025-01-10T18:33:39.5334185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::65, 2620:1ec:bdf::64] + +2025-01-10T18:33:41.6343219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 40.90.130.199, 40.90.128.17] + +2025-01-10T18:33:45.5551452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.20, 40.126.35.129, 40.126.35.86] + +2025-01-10T18:33:48.7997854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.144.160, 2603:1047:1:168::29] + +2025-01-10T18:34:14.8171014+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T18:34:15.6310237+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::36, 2620:1ec:bdf::40, 2620:1ec:bdf::46] + +2025-01-10T18:34:20.4894090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 40.90.133.102, 40.90.130.199] + +2025-01-10T18:34:26.1215633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::64, 2620:1ec:bdf::36] + +2025-01-10T18:34:27.6387355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::66, 2620:1ec:bdf::44, 13.107.246.66] + +2025-01-10T18:34:35.7219268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1400::4] + +2025-01-10T18:34:38.1745740+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T18:34:43.0971278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 40.126.35.20, 40.126.35.129] + +2025-01-10T18:34:47.3078112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.68, 20.190.166.67, 20.190.166.66] + +2025-01-10T18:34:56.8820810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2] + +2025-01-10T18:35:09.8306086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-01-10T18:35:14.8463064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133] + +2025-01-10T18:35:29.4168928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8003::154, 2606:50c0:8002::154] + +2025-01-10T18:35:35.2379473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.26.156.210, 140.82.121.5, 140.82.121.6] + +2025-01-10T18:35:44.9890090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-01-10T18:35:46.5487432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.114.25] + +2025-01-10T18:35:47.7792874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-10T18:35:49.3276338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::46, 2620:1ec:bdf::36] + +2025-01-10T18:35:49.8892790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.2, 40.90.133.102] + +2025-01-10T18:35:57.3749521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.66, 2620:1ec:bdf::66] + +2025-01-10T18:35:59.3353971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T18:36:01.9485100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::59, 2620:1ec:bdf::65, 2620:1ec:bdf::64] + +2025-01-10T18:36:02.2059043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T18:36:03.6098143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 40.126.35.129, 40.126.35.86] + +2025-01-10T18:36:36.7604317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.114.9] + +2025-01-10T18:36:41.0831147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::41, 2620:1ec:bdf::46] + +2025-01-10T18:36:49.7601106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::66, 2620:1ec:bdf::63] + +2025-01-10T18:36:51.7754655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.144.164, 20.190.144.138] + +2025-01-10T18:36:52.7836123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1046:2000:158::3, 2603:1047:1:150::2] + +2025-01-10T18:37:03.1980593+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T18:37:12.2128797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.121.5, 20.26.156.210, 140.82.121.6] + +2025-01-10T18:37:28.4118643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::59, 2620:1ec:bdf::65, 2620:1ec:bdf::36] + +2025-01-10T18:37:33.2614477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-10T18:37:35.0380517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-01-10T18:38:04.8562379+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T18:38:04.8571263+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T18:38:05.5310534+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 651.9173 ms + +2025-01-10T18:38:06.4199243+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 595.5887 ms + +2025-01-10T18:38:31.2835759+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::71, 2620:1ec:bdf::66] + +2025-01-10T18:38:46.1334935+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:39:25.5315739+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:39:50.6248687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::41, 2620:1ec:bdf::36] + +2025-01-10T18:39:57.8861265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::59, 2620:1ec:bdf::36, 2620:1ec:bdf::71] + +2025-01-10T18:39:58.6189165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.2, 13.105.28.1] + +2025-01-10T18:40:07.6627453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 2603:1046:1400::7, 2603:1036:2403::3] + +2025-01-10T18:40:08.2397965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::44, 2620:1ec:bdf::71] + +2025-01-10T18:40:17.0730478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.138, 20.190.144.164] + +2025-01-10T18:40:19.0951165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.67, 20.190.166.68] + +2025-01-10T18:40:28.0151553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[] + +2025-01-10T18:40:34.5324474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-10T18:40:36.5482436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-01-10T18:40:36.9948634+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-10T18:40:39.2057048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-01-10T18:40:47.0322780+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-10T18:40:56.7495508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-01-10T18:41:00.8769221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.113.26] + +2025-01-10T18:41:01.6151308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::41, 2620:1ec:bdf::36, 13.107.246.74] + +2025-01-10T18:41:12.6576663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 2620:1ec:bdf::71, 13.107.246.44] + +2025-01-10T18:41:34.5278381+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T18:41:34.5293833+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T18:41:34.5451424+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T18:41:34.5470565+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T18:41:34.5591084+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-10T18:41:34.5625009+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-10T18:41:34.7767310+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 194.8269 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:41:35.2017295+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 637.269 ms + +2025-01-10T18:41:35.2830596+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-10T18:41:35.2844610+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-10T18:41:36.5693578+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 1792.7732 ms + +2025-01-10T18:41:36.5742384+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T18:41:36.5749670+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T18:41:36.7993213+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 210.9936 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-10T18:41:37.1515792+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 352.3028 ms + +2025-01-10T18:41:37.9322754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.6] + +2025-01-10T18:41:42.6069208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 20.26.156.215] + +2025-01-10T18:41:55.4379054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.74, 13.107.246.41] + +2025-01-10T18:42:02.9098010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::55, 2620:1ec:bdf::36, 13.107.246.40] + +2025-01-10T18:42:04.6009274+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.40, 2620:1ec:bdf::71] + +2025-01-10T18:42:07.9557223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.162, 20.190.144.164] + +2025-01-10T18:42:13.2005637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.5] + +2025-01-10T18:42:13.4266935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.114.9] + +2025-01-10T18:42:14.3499026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 2603:1046:1400::7, 2603:1036:2400::12] + +2025-01-10T18:42:18.8256175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T18:42:28.7680659+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@8.8.8.8:53->Unexpected end of stream + +2025-01-10T18:42:32.7590410+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1683.5498 ms + +2025-01-10T18:42:35.5750157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.113.25] + +2025-01-10T18:42:59.6156962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.4] + +2025-01-10T18:43:21.8263540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.40, 13.107.246.74] + +2025-01-10T18:43:27.8961416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 13.107.246.51, 13.107.246.40] + +2025-01-10T18:43:45.5664565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 2603:1046:1406::2, 52.109.52.0] + +2025-01-10T18:43:59.6013060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.114.5] + +2025-01-10T18:44:05.9688458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.10] + +2025-01-10T18:44:29.6502618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.40, 13.107.246.42] + +2025-01-10T18:44:35.3409221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.33, 20.190.141.35] + +2025-01-10T18:44:53.4677676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::36, 13.107.246.71] + +2025-01-10T18:44:53.9675823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::55, 13.107.246.40, 2620:1ec:bdf::71] + +2025-01-10T18:44:54.5352872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:150::2, 2603:1047:1:150::1, 2603:1046:2000:158::3] + +2025-01-10T18:45:13.7635976+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 965.697 ms + +2025-01-10T18:45:14.6079431+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1836.3006 ms + +2025-01-10T18:45:15.0031660+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 2174.7329 ms + +2025-01-10T18:45:16.0090535+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 3161.547 ms + +2025-01-10T18:45:17.2939456+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 879.5885 ms + +2025-01-10T18:45:17.4943354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 2603:1036:2400::12, 2603:1046:1400::7] + +2025-01-10T18:45:17.9409809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-10T18:45:18.2934147+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T18:45:18.2948819+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T18:45:18.5809143+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/ppsecure/GetUserKeyData.srf responded 200 in 269.5944 ms + +2025-01-10T18:45:19.5556857+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1163.4341 ms + +2025-01-10T18:45:24.2956575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::55, 13.107.246.38, 13.107.246.44] + +2025-01-10T18:45:42.1504636+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +edge-consumer-static.azureedge.net->::1 + +2025-01-10T18:45:42.1534148+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +edge-consumer-static.azureedge.net->127.0.0.1 + +2025-01-10T18:45:42.7875855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-10T18:45:42.9937840+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://edge-consumer-static.azureedge.net/mouse-gesture/config.json responded 200 in 333.755 ms + +2025-01-10T18:45:45.0891995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T18:45:45.0933838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T18:45:46.5395350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-10T18:45:51.9835260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-01-10T18:45:54.7726926+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T18:45:54.7742047+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T18:45:55.1703975+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 382.5676 ms + +2025-01-10T18:45:55.2450622+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.7549 ms + +2025-01-10T18:46:00.4081129+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133] + +2025-01-10T18:46:00.6616545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.112.9] + +2025-01-10T18:46:06.9219395+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.1876 ms + +2025-01-10T18:46:06.9761951+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8001::154, 2606:50c0:8000::154, 185.199.111.133] + +2025-01-10T18:46:06.9914717+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.2495 ms + +2025-01-10T18:46:09.8354199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.112.6, 140.82.114.5, 140.82.121.5] + +2025-01-10T18:46:21.5422341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-10T18:46:29.5188781+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.25] + +2025-01-10T18:46:30.7147342+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.067 ms + +2025-01-10T18:46:30.8074064+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 84.6234 ms + +2025-01-10T18:46:39.2145060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 13.107.246.51, 2620:1ec:bdf::63] + +2025-01-10T18:46:42.6132255+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T18:46:47.6559773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 40.90.133.102, 40.90.133.99] + +2025-01-10T18:47:17.2215403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:150::2, 2603:1046:2000:148::3, 2603:1046:2000:158::3] + +2025-01-10T18:48:01.7503686+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 382.231 ms + +2025-01-10T18:48:01.8169159+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.3114 ms + +2025-01-10T18:48:11.7899929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.112.6, 140.82.114.5, 140.82.114.6] + +2025-01-10T18:48:14.9460115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.112.25] + +2025-01-10T18:48:16.4022571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.67, 2620:1ec:bdf::64] + +2025-01-10T18:48:17.0445515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 13.107.246.38, 13.107.246.44] + +2025-01-10T18:48:18.4671268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T18:48:19.3834333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 40.90.133.102, 20.135.20.1] + +2025-01-10T18:48:20.2755822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::44, 13.107.246.51] + +2025-01-10T18:48:46.4188079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.4] + +2025-01-10T18:48:58.0745271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.51, 13.107.246.47] + +2025-01-10T18:49:00.6583256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 40.90.133.102, 20.135.1.1] + +2025-01-10T18:49:03.6867716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.139, 2603:1047:1:168::2d] + +2025-01-10T18:49:06.6215085+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:49:16.2040331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.114.5, 140.82.112.6, 140.82.114.6] + +2025-01-10T18:49:21.7021425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.71, 13.107.246.67] + +2025-01-10T18:49:43.6339114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-01-10T18:49:43.6375840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 20.26.156.215] + +2025-01-10T18:49:44.8427500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.74, 13.107.246.71] + +2025-01-10T18:49:45.4313778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::42, 2620:1ec:bdf::44, 13.107.246.51] + +2025-01-10T18:49:45.9896174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::71, 13.107.246.38] + +2025-01-10T18:49:46.5719624+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 40.90.133.102, 40.90.133.99] + +2025-01-10T18:49:47.7242400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.38, 20.190.141.33] + +2025-01-10T18:49:53.4847641+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T18:50:08.2804042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.112.4] + +2025-01-10T18:50:12.2705404+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.74, 2620:1ec:bdf::53] + +2025-01-10T18:50:12.2751983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.74, 13.107.246.47] + +2025-01-10T18:50:12.2780077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.102, 40.90.133.99, 20.135.1.1] + +2025-01-10T18:50:15.6193156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-10T18:50:28.2925702+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-01-10T18:50:28.7312111+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::42, 13.107.246.74] + +2025-01-10T18:50:29.6643336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.11, 40.90.133.102] + +2025-01-10T18:50:29.7269511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 13.107.246.44, 2620:1ec:bdf::71] + +2025-01-10T18:50:41.0675651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::13, 2603:1047:1:168::28, 20.190.144.139] + +2025-01-10T18:50:47.4843532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-10T18:51:16.3250527+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154] + +2025-01-10T18:51:18.0072380+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-10T18:51:32.0288424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.113.22] + +2025-01-10T18:51:45.7599898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.112.26] + +2025-01-10T18:51:50.7880661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8001::154, 185.199.110.133] + +2025-01-10T18:51:52.4869312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.112.6] + +2025-01-10T18:51:53.7180784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::69, 13.107.246.74] + +2025-01-10T18:52:23.0547353+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:52:24.0558058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::42, 13.107.246.42] + +2025-01-10T18:52:37.0942455+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.11, 20.135.6.2] + +2025-01-10T18:52:42.4540347+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-10T18:53:21.0775731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T18:53:40.4707459+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133] + +2025-01-10T18:54:03.3839798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-01-10T18:54:09.2611874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.26, 140.82.112.25] + +2025-01-10T18:54:15.2706745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.114.5] + +2025-01-10T18:54:26.2868635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T18:54:30.9985058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1036:2400::12] + +2025-01-10T18:54:38.0462269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::69, 2620:1ec:bdf::44] + +2025-01-10T18:54:40.8094623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::44, 13.107.246.65] + +2025-01-10T18:54:43.8345452+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T18:54:54.1678292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-01-10T18:54:55.4241921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.121.6] + +2025-01-10T18:55:02.6425477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 13.107.246.40, 13.107.246.67] + +2025-01-10T18:55:03.9417661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.65, 2620:1ec:bdf::74] + +2025-01-10T18:55:06.5862150+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T18:55:12.4619548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.34, 20.190.141.39] + +2025-01-10T18:55:23.8660223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 140.82.112.9] + +2025-01-10T18:55:28.3942703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.121.5] + +2025-01-10T18:55:30.2317296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 20.26.156.215] + +2025-01-10T18:55:35.6469027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 2603:1046:1400::7, 2603:1036:2407::5] + +2025-01-10T18:55:38.7550214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-10T18:55:45.7332118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.15, 20.135.6.2] + +2025-01-10T18:55:53.0642522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.163, 20.190.144.165] + +2025-01-10T18:55:58.5062353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.139, 20.190.144.136] + +2025-01-10T18:56:18.6286094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-10T18:56:19.7087316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T18:56:22.3194596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T18:56:34.2290509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-10T18:56:42.2058614+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T18:56:42.2071132+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T18:56:42.6372519+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 415.7093 ms + +2025-01-10T18:56:42.7169558+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 74.8711 ms + +2025-01-10T18:56:42.7903537+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 20.26.156.216] + +2025-01-10T18:56:48.1216682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T18:56:50.2116355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.21] + +2025-01-10T18:57:01.1328947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.112.25] + +2025-01-10T18:57:02.1200280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::60, 2620:1ec:bdf::74] + +2025-01-10T18:57:03.5304184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::44, 13.107.246.40] + +2025-01-10T18:57:08.7426023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 13.107.246.40, 13.107.246.57] + +2025-01-10T18:57:09.7607361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 20.135.6.15] + +2025-01-10T18:57:35.3908122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154] + +2025-01-10T18:57:40.5941150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T18:57:49.9781190+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T18:57:58.3388117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.3] + +2025-01-10T18:58:08.3461619+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T18:58:09.8188491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::45, 13.107.246.46] + +2025-01-10T18:58:11.1495062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::44, 2620:1ec:bdf::45] + +2025-01-10T18:58:11.6874759+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.11] + +2025-01-10T18:58:17.9150454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.164, 20.190.144.138] + +2025-01-10T18:58:22.5006949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2c, 20.190.148.164, 20.190.144.138] + +2025-01-10T18:58:34.4347090+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:58:46.9332652+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:58:47.4734166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T18:58:49.2857343+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:58:50.8735979+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:59:14.7238798+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:59:39.1883427+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T18:59:51.3391161+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T18:59:51.5585675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.114.6] + +2025-01-10T19:00:00.8541710+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:00:22.2194980+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:00:39.6420205+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:00:40.3991659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-01-10T19:01:37.1580842+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T19:01:50.8465981+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T19:02:32.0753003+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-10T19:02:36.2757656+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:02:41.2946489+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-01-10T19:03:02.6674522+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:03:09.4297158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T19:03:17.9587442+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:03:18.1911850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T19:03:21.7251030+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T19:03:34.6110634+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:03:35.5993544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.113.21] + +2025-01-10T19:03:45.2884417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T19:03:48.4697352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-10T19:03:49.9750805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.45, 13.107.246.66] + +2025-01-10T19:03:54.9509009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::45] + +2025-01-10T19:04:08.9486105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.4.169, 20.135.6.15] + +2025-01-10T19:04:24.8099254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 52.109.52.84] + +2025-01-10T19:04:37.8783950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.139, 20.190.144.163] + +2025-01-10T19:04:52.6153751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 2603:1047:1:168::28, 2603:1047:1:168::29] + +2025-01-10T19:05:03.6240949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T19:05:08.1924720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-10T19:05:08.6520813+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:05:18.2101398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-10T19:05:38.7957325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9] + +2025-01-10T19:05:41.9080171+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T19:05:43.0413975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-10T19:05:54.6614334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-10T19:06:01.4483525+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T19:06:01.4492515+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T19:06:02.4121553+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 947.2105 ms + +2025-01-10T19:06:02.4810924+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.0541 ms + +2025-01-10T19:06:02.8400663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8003::154, 2606:50c0:8001::154] + +2025-01-10T19:06:06.6132108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.6] + +2025-01-10T19:06:11.9574163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.114.25] + +2025-01-10T19:06:12.8062600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T19:06:16.0998401+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 85.5474 ms + +2025-01-10T19:06:16.1885153+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 79.792 ms + +2025-01-10T19:06:22.2373298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:06:28.7733717+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.9584 ms + +2025-01-10T19:06:28.8413421+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.9936 ms + +2025-01-10T19:06:33.8432380+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.112.22] + +2025-01-10T19:06:39.6918287+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T19:06:39.9647569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.56.129, 2603:1046:1400::7, 52.109.20.39] + +2025-01-10T19:06:41.7337662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.66, 2620:1ec:bdf::74] + +2025-01-10T19:06:46.7910289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.4.169, 20.135.17.16] + +2025-01-10T19:06:49.0258657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.42, 13.107.246.74] + +2025-01-10T19:07:00.5286856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 52.109.44.112] + +2025-01-10T19:07:03.7609634+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T19:07:40.7267792+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.112.3, 140.82.121.3, 20.205.243.166] + +2025-01-10T19:07:45.5093043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-01-10T19:07:46.2520009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.113.25] + +2025-01-10T19:07:47.6684609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-01-10T19:08:00.0243046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T19:08:03.4372406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 40.90.130.192, 20.135.4.169] + +2025-01-10T19:08:07.6188148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.139, 20.190.148.165] + +2025-01-10T19:08:10.8989997+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165] + +2025-01-10T19:08:12.1392348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T19:08:14.5550527+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 1003.719 ms + +2025-01-10T19:08:14.6219089+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.0915 ms + +2025-01-10T19:08:20.1604574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.121.3, 20.205.243.166] + +2025-01-10T19:08:29.2929973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.112.5] + +2025-01-10T19:08:35.0220963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:133:206e:1315:22a5:2006:24fd, 72.21.81.200, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:08:40.4847663+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.0903 ms + +2025-01-10T19:08:40.8606011+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 371.3801 ms + +2025-01-10T19:08:51.6864640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd, 72.21.81.200] + +2025-01-10T19:08:57.7311999+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.8746 ms + +2025-01-10T19:08:58.1051958+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 370.964 ms + +2025-01-10T19:08:58.2478557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.73, 13.107.246.74] + +2025-01-10T19:09:06.9812003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::60, 13.107.246.73] + +2025-01-10T19:09:15.5723379+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T19:09:25.4224249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::45, 13.107.246.41] + +2025-01-10T19:09:30.6880024+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 20.190.148.166, 20.190.144.163] + +2025-01-10T19:09:51.2345578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.114.3, 140.82.121.3, 20.205.243.166] + +2025-01-10T19:09:56.1620210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.6] + +2025-01-10T19:10:06.0688196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.112.22, 140.82.113.22] + +2025-01-10T19:10:20.2867853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 40.90.130.192, 20.135.1.1] + +2025-01-10T19:10:22.7855406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T19:10:33.1979952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.139, 20.190.144.161] + +2025-01-10T19:10:39.1254435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 20.190.148.164, 20.190.144.163] + +2025-01-10T19:10:55.0431337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T19:10:59.9623851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T19:11:07.0961591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.114.3, 20.205.243.166, 140.82.121.3] + +2025-01-10T19:11:13.9943358+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-10T19:11:15.1286171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-01-10T19:11:15.6059749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd, 72.21.81.200] + +2025-01-10T19:11:16.7121760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-10T19:11:17.9785470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.112.25] + +2025-01-10T19:11:29.9279031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-10T19:11:36.0285655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 40.90.130.192] + +2025-01-10T19:11:55.7195182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.41, 2620:1ec:bdf::44] + +2025-01-10T19:12:44.3875546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.112.5] + +2025-01-10T19:12:57.0270636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-01-10T19:13:03.7744094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-01-10T19:13:05.8448656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.40, 13.107.246.73] + +2025-01-10T19:13:08.2997416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.7] + +2025-01-10T19:13:14.6022887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.121.9, 20.205.243.165] + +2025-01-10T19:13:15.8883885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.112.22] + +2025-01-10T19:13:15.8913325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-10T19:14:02.5814688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.6] + +2025-01-10T19:14:03.4378064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 4.225.11.194] + +2025-01-10T19:14:04.7314052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T19:14:13.0863401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T19:14:15.9066483+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.74] + +2025-01-10T19:14:17.7538650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.45, 2620:1ec:bdf::44] + +2025-01-10T19:14:18.0676767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.42, 2620:1ec:bdf::41] + +2025-01-10T19:14:24.6070163+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T19:14:24.6080564+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T19:14:26.1017748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 40.90.133.100] + +2025-01-10T19:14:26.3070170+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 1688.3862 ms + +2025-01-10T19:14:26.3765217+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.7147 ms + +2025-01-10T19:14:29.4012868+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1406::7] + +2025-01-10T19:14:37.2449117+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.4115 ms + +2025-01-10T19:14:37.3194981+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.3704 ms + +2025-01-10T19:14:46.6195354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-10T19:14:47.8873541+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.5771 ms + +2025-01-10T19:14:47.9626770+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 72.2006 ms + +2025-01-10T19:14:49.8968954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.161, 40.126.35.129] + +2025-01-10T19:14:55.9877761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.113.10, 140.82.121.9, 20.205.243.165] + +2025-01-10T19:15:15.0738364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.22, 140.82.112.22] + +2025-01-10T19:15:18.4298384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.73, 2620:1ec:bdf::73] + +2025-01-10T19:15:19.6836070+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::69, 2620:1ec:bdf::44] + +2025-01-10T19:15:23.8514119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.28.16] + +2025-01-10T19:15:26.2991109+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:15:27.8498618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 20.26.156.215] + +2025-01-10T19:15:28.2099700+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::41, 2620:1ec:bdf::69] + +2025-01-10T19:15:38.4621216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.161, 40.126.35.84] + +2025-01-10T19:15:39.0494783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.163, 2603:1047:1:168::11] + +2025-01-10T19:15:41.1029098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.45, 2620:1ec:bdf::69] + +2025-01-10T19:15:41.9176710+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.167, 20.190.148.162] + +2025-01-10T19:16:08.7968916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.3] + +2025-01-10T19:16:16.0311081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-10T19:16:17.1533266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-01-10T19:16:17.8830758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::57, 13.107.246.73] + +2025-01-10T19:16:31.1432102+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8002::154] + +2025-01-10T19:16:37.5327448+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-10T19:16:37.5336829+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-01-10T19:16:37.8208258+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T19:16:37.8217240+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T19:16:38.4948244+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 648.3836 ms + +2025-01-10T19:16:38.9554726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:150::2, 2603:1046:2000:158::3, 2603:1046:2000:148::4] + +2025-01-10T19:16:39.0340306+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 278.2071 ms + +2025-01-10T19:16:45.6461762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-01-10T19:17:04.0148130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.42, 2620:1ec:bdf::41] + +2025-01-10T19:17:25.0662604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.47, 2620:1ec:bdf::57] + +2025-01-10T19:17:25.8094079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.66, 13.107.246.42] + +2025-01-10T19:17:40.6696412+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-01-10T19:17:41.7547109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.40, 13.107.246.45] + +2025-01-10T19:17:44.2136564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.9] + +2025-01-10T19:17:46.9859179+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-01-10T19:17:55.6664876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.112.25] + +2025-01-10T19:17:57.8582290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.26] + +2025-01-10T19:18:05.2393056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T19:18:05.2407873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-10T19:18:09.2992729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.191] + +2025-01-10T19:18:10.0463973+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T19:18:10.0472514+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T19:18:10.4210649+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 360.5343 ms + +2025-01-10T19:18:10.4880679+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.5741 ms + +2025-01-10T19:18:16.4087564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.113.22] + +2025-01-10T19:18:58.2021323+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.1397 ms + +2025-01-10T19:18:58.2744203+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.4802 ms + +2025-01-10T19:19:29.0350191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:19:29.7090806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:19:32.9022353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.47, 13.107.246.73] + +2025-01-10T19:19:33.1360214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.73, 2620:1ec:bdf::69] + +2025-01-10T19:19:37.0917517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.162, 20.190.144.161] + +2025-01-10T19:19:41.7952078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.3] + +2025-01-10T19:19:42.8959972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.66, 13.107.246.73] + +2025-01-10T19:19:46.8093028+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.4] + +2025-01-10T19:19:49.4514064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-10T19:19:50.0227069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T19:20:10.2137391+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 311.3973 ms + +2025-01-10T19:20:10.2823553+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.4335 ms + +2025-01-10T19:20:12.3610831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.6] + +2025-01-10T19:20:15.9362295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-10T19:20:24.5176410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.47, 13.107.246.73, 13.107.246.41] + +2025-01-10T19:20:29.6121573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.73, 13.107.246.44] + +2025-01-10T19:20:29.9518638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.42, 13.107.246.73] + +2025-01-10T19:20:42.8571741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-01-10T19:20:43.1711984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.47, 13.107.246.73, 2620:1ec:bdf::57] + +2025-01-10T19:20:44.7287107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-10T19:20:47.6736741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.162, 20.190.148.163] + +2025-01-10T19:20:52.0205836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-10T19:20:53.3321114+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.0958 ms + +2025-01-10T19:20:53.3940479+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.8259 ms + +2025-01-10T19:21:10.2404648+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 20.26.156.215] + +2025-01-10T19:21:16.9995230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-10T19:21:22.0097478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-01-10T19:21:24.9946380+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.9197 ms + +2025-01-10T19:21:25.0638841+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.7307 ms + +2025-01-10T19:21:30.9408291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.114.5] + +2025-01-10T19:21:31.5384165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-01-10T19:21:32.2110699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.26] + +2025-01-10T19:21:38.3695024+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-01-10T19:21:40.2366828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.47, 13.107.246.73, 13.107.246.44] + +2025-01-10T19:21:41.7952661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::2, 2603:1046:2000:148::5, 2603:1046:2000:148::4] + +2025-01-10T19:21:55.1915879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.73, 13.107.246.44] + +2025-01-10T19:22:00.8446194+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 383.6173 ms + +2025-01-10T19:22:00.9315690+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 79.952 ms + +2025-01-10T19:22:01.9103440+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.112.26] + +2025-01-10T19:22:05.0577079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.10] + +2025-01-10T19:22:05.6779434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.47, 13.107.246.73] + +2025-01-10T19:22:05.6787457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::44, 13.107.246.73] + +2025-01-10T19:22:05.9698569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::44, 13.107.246.73] + +2025-01-10T19:22:19.8346401+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.3575 ms + +2025-01-10T19:22:19.9032174+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.6308 ms + +2025-01-10T19:22:25.9281708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.44] + +2025-01-10T19:22:25.9982803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.44] + +2025-01-10T19:22:26.0011935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.44] + +2025-01-10T19:22:42.0794067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-01-10T19:22:48.3901211+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 72.4886 ms + +2025-01-10T19:22:48.4567547+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.3935 ms + +2025-01-10T19:22:52.7188626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.32, 20.190.141.33, 20.190.141.38] + +2025-01-10T19:22:59.5578301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.113.26] + +2025-01-10T19:23:14.4001921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T19:23:14.7529015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T19:23:18.1156208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.113.10] + +2025-01-10T19:23:18.3299045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-10T19:23:27.9866310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.6] + +2025-01-10T19:23:33.4654933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.9] + +2025-01-10T19:23:35.0339310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::71, 2620:1ec:bdf::44] + +2025-01-10T19:24:06.2044170+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T19:24:06.2059885+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T19:24:06.5600035+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 354.3777 ms + +2025-01-10T19:24:06.6299252+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.6764 ms + +2025-01-10T19:24:25.8861052+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 78.8556 ms + +2025-01-10T19:24:25.9534095+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.7607 ms + +2025-01-10T19:24:34.0174814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.44, 2620:1ec:bdf::45] + +2025-01-10T19:24:34.0882656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.44, 2620:1ec:bdf::45] + +2025-01-10T19:24:37.2563740+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.113.10] + +2025-01-10T19:24:44.1475011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.56.129, 2603:1046:1400::7, 2603:1036:2400::12] + +2025-01-10T19:24:44.6395546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::45, 13.107.246.73] + +2025-01-10T19:25:16.9081977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T19:25:19.3256372+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.2583 ms + +2025-01-10T19:25:19.4065270+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.5143 ms + +2025-01-10T19:25:26.1904163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.44, 13.107.246.73] + +2025-01-10T19:25:26.1922908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::45, 13.107.246.44] + +2025-01-10T19:25:26.4638734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.28.18] + +2025-01-10T19:25:27.9520555+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:25:30.8529952+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.195 ms + +2025-01-10T19:25:30.9291856+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.5741 ms + +2025-01-10T19:25:31.1338712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::45, 13.107.246.44] + +2025-01-10T19:25:31.7665382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::69, 2620:1ec:bdf::45] + +2025-01-10T19:25:33.1230306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::36, 2620:1ec:bdf::69] + +2025-01-10T19:25:44.2062439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.45, 2620:1ec:bdf::69] + +2025-01-10T19:25:44.6053593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 2603:1046:1400::7] + +2025-01-10T19:25:54.9891452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T19:25:56.1405673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-10T19:26:03.6600599+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 314.1164 ms + +2025-01-10T19:26:03.7223654+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.8537 ms + +2025-01-10T19:26:12.2218209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-01-10T19:26:19.1993765+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-01-10T19:26:20.5930236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-10T19:26:22.8741763+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-10T19:26:37.7800072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.26] + +2025-01-10T19:26:37.9175372+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 2606:50c0:8002::154] + +2025-01-10T19:26:38.7679208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::65, 2620:1ec:bdf::69] + +2025-01-10T19:26:41.1902703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::57, 2620:1ec:bdf::65] + +2025-01-10T19:26:42.1495062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::4, 2603:1046:2000:148::2, 2603:1047:1:150::1] + +2025-01-10T19:26:49.2565196+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.3061 ms + +2025-01-10T19:26:49.3329864+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.7128 ms + +2025-01-10T19:26:51.7515685+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.10] + +2025-01-10T19:27:02.1557846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.114.25] + +2025-01-10T19:27:08.3912674+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.5465 ms + +2025-01-10T19:27:08.4551506+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.6572 ms + +2025-01-10T19:27:17.8310067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.45, 2620:1ec:bdf::45] + +2025-01-10T19:27:26.5813498+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 70.8038 ms + +2025-01-10T19:27:26.6621603+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.4422 ms + +2025-01-10T19:27:31.3952262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::36, 13.107.246.44] + +2025-01-10T19:27:31.7970524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.45, 13.107.246.44] + +2025-01-10T19:27:36.8814298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.9] + +2025-01-10T19:27:53.9155161+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.35, 20.190.141.36] + +2025-01-10T19:27:57.8995554+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 317.5343 ms + +2025-01-10T19:27:57.9726312+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.2287 ms + +2025-01-10T19:28:01.9992760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.116.4, 20.205.243.166, 140.82.121.3] + +2025-01-10T19:28:02.5818498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.114.26] + +2025-01-10T19:28:22.6206211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.10] + +2025-01-10T19:28:22.8609085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-01-10T19:28:23.4060713+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::65, 2620:1ec:bdf::69] + +2025-01-10T19:28:35.2422050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.112.9] + +2025-01-10T19:28:35.4089157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.2] + +2025-01-10T19:28:37.3557770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 20.190.144.137, 20.190.144.136] + +2025-01-10T19:28:42.4226834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.45, 2620:1ec:bdf::40] + +2025-01-10T19:28:55.9516355+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:28:56.5186258+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:28:59.1972567+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:28:59.5176644+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:29:00.5922080+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:29:01.1506320+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:29:03.0347188+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:29:42.7903649+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:29:44.4091092+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:29:44.6423348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.10] + +2025-01-10T19:29:45.6239846+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:29:49.7340412+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:30:11.8084310+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:30:12.3213786+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:30:13.2828475+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:30:34.6732824+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:30:36.9329190+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:30:37.1809274+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::44, 2620:1ec:bdf::36] + +2025-01-10T19:30:38.1503694+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:30:38.4109185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::44, 13.107.246.45] + +2025-01-10T19:30:40.0875525+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:30:40.5502589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T19:30:42.6810377+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:30:43.1642144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-01-10T19:31:04.9201376+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:31:05.2085186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::44, 2620:1ec:bdf::73] + +2025-01-10T19:31:12.2848959+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:31:13.8031785+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:31:20.5271738+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T19:31:20.5281012+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T19:31:21.8585016+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 1320.9699 ms + +2025-01-10T19:31:21.9217204+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.1691 ms + +2025-01-10T19:31:38.7772654+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.9879 ms + +2025-01-10T19:31:38.8485295+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.457 ms + +2025-01-10T19:31:42.6937258+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:31:49.7687043+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.9089 ms + +2025-01-10T19:31:49.8342548+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.4385 ms + +2025-01-10T19:32:09.8487493+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:32:15.0483123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.162, 2603:1047:1:168::1b] + +2025-01-10T19:32:22.2101798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T19:32:28.6630097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T19:32:29.6684226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T19:32:30.3117863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-10T19:32:31.6138516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-10T19:32:33.2551694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-10T19:32:34.1098417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-01-10T19:32:35.9368905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.6] + +2025-01-10T19:32:37.7524413+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-10T19:32:39.3614655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.113.26] + +2025-01-10T19:32:41.1425980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-10T19:32:41.9480645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::44, 2620:1ec:bdf::36] + +2025-01-10T19:32:43.0565605+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.9485 ms + +2025-01-10T19:32:43.1237993+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.6937 ms + +2025-01-10T19:32:46.7130775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::44, 2620:1ec:bdf::73] + +2025-01-10T19:32:54.0720611+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.44, 2620:1ec:bdf::65] + +2025-01-10T19:33:00.5967936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.38, 20.190.141.36, 20.190.141.32] + +2025-01-10T19:33:03.8348637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.113.25] + +2025-01-10T19:33:14.5517774+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 316.5493 ms + +2025-01-10T19:33:14.6210118+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.722 ms + +2025-01-10T19:33:16.4653341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-10T19:33:16.4698687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-10T19:33:18.2430635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.28.1] + +2025-01-10T19:33:23.4935376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.9] + +2025-01-10T19:33:23.7119614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-10T19:33:30.8633543+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.3854 ms + +2025-01-10T19:33:30.9288556+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.9888 ms + +2025-01-10T19:33:35.9645061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.112.10] + +2025-01-10T19:33:39.3470070+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::65, 2620:1ec:bdf::44] + +2025-01-10T19:33:56.4414438+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 84.1088 ms + +2025-01-10T19:33:56.5120268+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.0825 ms + +2025-01-10T19:34:06.6459768+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.631 ms + +2025-01-10T19:34:06.7146805+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.945 ms + +2025-01-10T19:35:14.6811974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.9] + +2025-01-10T19:35:18.3350502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-10T19:35:19.6060836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 117.18.232.200] + +2025-01-10T19:35:22.6336996+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 327.4538 ms + +2025-01-10T19:35:22.7030942+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.7598 ms + +2025-01-10T19:35:25.6223248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::44, 13.107.246.66] + +2025-01-10T19:35:29.2809668+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-01-10T19:35:38.2801328+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:35:39.1555278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-01-10T19:35:39.3758000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.112.6] + +2025-01-10T19:35:39.8925623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::44, 2620:1ec:bdf::41] + +2025-01-10T19:35:39.9708838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.66, 2620:1ec:bdf::42] + +2025-01-10T19:35:40.3460519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::44, 2620:1ec:bdf::57] + +2025-01-10T19:35:44.0431586+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.6656 ms + +2025-01-10T19:35:44.1075889+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.299 ms + +2025-01-10T19:35:56.2688117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 20.190.144.161, 2603:1047:1:168::10] + +2025-01-10T19:36:02.0520162+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.7754 ms + +2025-01-10T19:36:02.1225064+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.4653 ms + +2025-01-10T19:36:12.6898886+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 345.596 ms + +2025-01-10T19:36:12.7585156+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.5043 ms + +2025-01-10T19:36:51.3559161+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 2603:1047:1:168::1b, 2603:1047:1:168::10] + +2025-01-10T19:37:10.7840964+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.9] + +2025-01-10T19:37:16.4026631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1d, 2603:1047:1:168::1f, 2603:1047:1:168::20] + +2025-01-10T19:37:18.4899555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-01-10T19:37:20.1088053+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T19:37:20.1099509+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T19:37:20.5627916+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 453.4901 ms + +2025-01-10T19:37:20.6301577+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.6169 ms + +2025-01-10T19:37:29.9828697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-01-10T19:37:38.4157866+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T19:37:38.5948801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T19:37:39.7086162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-01-10T19:37:40.0326887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-01-10T19:37:40.4645934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-10T19:37:40.9169992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.10] + +2025-01-10T19:37:43.0358699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.113.21] + +2025-01-10T19:37:43.7208414+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.25] + +2025-01-10T19:37:45.9032296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 2606:50c0:8003::154] + +2025-01-10T19:37:46.2655973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::42, 13.107.246.66, 2620:1ec:bdf::44] + +2025-01-10T19:37:47.0228382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::57, 13.107.246.67] + +2025-01-10T19:37:47.3811348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::59, 2620:1ec:bdf::38, 2620:1ec:bdf::41] + +2025-01-10T19:37:51.2793610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::44, 2620:1ec:bdf::42] + +2025-01-10T19:37:55.6939973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.67, 2620:1ec:bdf::57] + +2025-01-10T19:38:01.5486617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.35, 20.190.141.38, 20.190.141.32] + +2025-01-10T19:38:05.0571629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.113.26] + +2025-01-10T19:38:05.4251745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.67, 13.107.246.53] + +2025-01-10T19:38:17.5444302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-10T19:38:17.5487703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-10T19:38:25.4563663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-01-10T19:38:38.2664502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.53, 2620:1ec:bdf::57] + +2025-01-10T19:38:59.8785354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 40.90.133.102] + +2025-01-10T19:38:59.8818057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::42, 2620:1ec:bdf::69] + +2025-01-10T19:38:59.8832699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::59, 2620:1ec:bdf::41, 13.107.246.51] + +2025-01-10T19:38:59.9712913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T19:39:00.2904625+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.165] + +2025-01-10T19:39:00.2928665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1d, 2603:1047:1:168::20, 2603:1047:1:168::2d] + +2025-01-10T19:39:27.8171496+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 354.2615 ms + +2025-01-10T19:39:27.8883391+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.6622 ms + +2025-01-10T19:39:51.3402074+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.3701 ms + +2025-01-10T19:39:51.4084230+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.4562 ms + +2025-01-10T19:39:57.0948387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.6] + +2025-01-10T19:40:02.6242036+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.0898 ms + +2025-01-10T19:40:02.6901768+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.5708 ms + +2025-01-10T19:40:03.6621626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.66, 2620:1ec:bdf::42] + +2025-01-10T19:40:05.9005294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 20.135.6.11] + +2025-01-10T19:40:15.8536949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161] + +2025-01-10T19:40:15.8583040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161] + +2025-01-10T19:40:17.3528382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:40:17.3568546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:40:23.9435169+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.7955 ms + +2025-01-10T19:40:24.0139546+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.4425 ms + +2025-01-10T19:40:41.3773300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::59, 13.107.246.73, 13.107.246.40] + +2025-01-10T19:40:41.9090714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::41, 13.107.246.66] + +2025-01-10T19:40:41.9798395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.67] + +2025-01-10T19:40:58.5259788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.2, 13.105.28.1] + +2025-01-10T19:40:58.9751287+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.6962 ms + +2025-01-10T19:40:59.0449322+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.3781 ms + +2025-01-10T19:41:06.9156489+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::41, 2620:1ec:bdf::69] + +2025-01-10T19:41:13.3384208+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 313.3486 ms + +2025-01-10T19:41:13.4049345+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.2721 ms + +2025-01-10T19:41:19.5242469+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 20.143.38.2] + +2025-01-10T19:41:49.6765534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.163, 20.190.144.164] + +2025-01-10T19:42:04.7250810+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.987 ms + +2025-01-10T19:42:04.7932594+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.8495 ms + +2025-01-10T19:42:05.1724837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.144.160, 20.190.148.164] + +2025-01-10T19:42:17.5844291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2f, 2603:1047:1:168::2d, 20.190.144.160] + +2025-01-10T19:42:23.7471543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T19:42:23.7482992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T19:42:23.7491385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T19:42:27.9225853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-10T19:42:29.5449579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::59, 13.107.246.73, 13.107.246.65] + +2025-01-10T19:42:32.1673879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-10T19:42:45.3217226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-10T19:42:48.1235153+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T19:42:48.1245451+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T19:42:48.1927141+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.7373 ms + +2025-01-10T19:42:48.2619467+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.35 ms + +2025-01-10T19:42:50.3423758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-01-10T19:42:50.7120510+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.114.10] + +2025-01-10T19:42:50.8391566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-10T19:42:52.0669889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-01-10T19:42:52.7535192+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.112.25] + +2025-01-10T19:42:55.5047589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-10T19:42:57.1025179+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.65, 13.107.246.40] + +2025-01-10T19:42:58.0350925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::42, 2620:1ec:bdf::41] + +2025-01-10T19:42:58.3929505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::42, 2620:1ec:bdf::44] + +2025-01-10T19:43:10.5298478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.25] + +2025-01-10T19:43:16.2238972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 13.105.28.1] + +2025-01-10T19:43:17.2003638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.148.164, 20.190.144.165] + +2025-01-10T19:43:19.5832041+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 326.2324 ms + +2025-01-10T19:43:19.6605333+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.9946 ms + +2025-01-10T19:43:21.1480516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-10T19:43:22.0408226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.3] + +2025-01-10T19:43:26.4839016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.113.22] + +2025-01-10T19:43:27.3841142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-10T19:43:28.5409092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.143.38.2] + +2025-01-10T19:43:35.6952903+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 72.5763 ms + +2025-01-10T19:43:35.7807989+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 76.6761 ms + +2025-01-10T19:43:42.0695279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1402::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-10T19:44:06.9776884+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:44:11.1213855+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:44:16.7555835+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T19:44:16.7565416+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T19:44:16.8184948+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.5182 ms + +2025-01-10T19:44:16.8867159+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.2299 ms + +2025-01-10T19:44:32.1755946+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:44:45.2511597+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.7194 ms + +2025-01-10T19:44:45.3227393+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.4342 ms + +2025-01-10T19:44:53.2312886+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:44:53.6155540+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:44:54.5239521+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:44:56.9160720+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 73.816 ms + +2025-01-10T19:44:56.9863915+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.7313 ms + +2025-01-10T19:45:15.7455658+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:45:24.2945618+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:45:32.4325093+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 379.4866 ms + +2025-01-10T19:45:32.5158133+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 72.0752 ms + +2025-01-10T19:45:45.7812248+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:45:50.8603257+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:45:52.6986973+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:45:54.3138008+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:45:57.5921534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T19:45:58.7948138+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:46:07.1961463+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:46:07.1992887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 2606:2800:133:206e:1315:22a5:2006:24fd] + +2025-01-10T19:46:10.6387297+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.3094 ms + +2025-01-10T19:46:10.7341727+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 88.8434 ms + +2025-01-10T19:46:30.1305795+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 376.8855 ms + +2025-01-10T19:46:30.5164493+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 378.4866 ms + +2025-01-10T19:46:34.0208052+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:46:42.8564591+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:46:52.1636906+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.246 ms + +2025-01-10T19:46:52.2455577+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 75.244 ms + +2025-01-10T19:47:04.8647442+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:47:04.9917839+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.2029 ms + +2025-01-10T19:47:05.0614269+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.3854 ms + +2025-01-10T19:47:05.1451348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.40] + +2025-01-10T19:47:20.2222865+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 360.3109 ms + +2025-01-10T19:47:20.2900122+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.7404 ms + +2025-01-10T19:47:26.9774292+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:47:28.4611911+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:47:28.7220851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 2620:1ec:bdf::61] + +2025-01-10T19:47:50.3990313+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:47:50.6441789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::42, 2620:1ec:bdf::41] + +2025-01-10T19:48:12.3913741+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:48:14.1394509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 13.105.28.1, 20.143.38.2] + +2025-01-10T19:48:36.0692864+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:49:01.3093315+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:49:12.1441408+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:49:39.1296230+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:49:44.3204736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.148.164, 20.190.144.162] + +2025-01-10T19:49:52.1267157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-10T19:49:52.9593340+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:49:58.1623337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-10T19:50:00.1792086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T19:50:02.2922534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-10T19:50:08.0403972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-01-10T19:50:10.4673829+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.112.10] + +2025-01-10T19:50:11.4796953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-10T19:50:12.5548717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.6] + +2025-01-10T19:50:18.6086002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-01-10T19:50:20.6715148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.113.25] + +2025-01-10T19:50:21.7752382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.4] + +2025-01-10T19:50:25.3046210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-10T19:50:29.9942213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.74, 2620:1ec:bdf::41] + +2025-01-10T19:50:31.0995778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.40, 2620:1ec:bdf::61] + +2025-01-10T19:50:31.9092903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::53, 13.107.246.74] + +2025-01-10T19:50:35.0144394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.25.5, 20.143.38.2] + +2025-01-10T19:50:54.6111801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.6] + +2025-01-10T19:50:56.8562643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:50:59.2983154+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:51:02.3069940+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T19:51:02.3082208+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T19:51:02.9717832+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 649.0486 ms + +2025-01-10T19:51:03.6238856+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 644.5679 ms + +2025-01-10T19:51:05.3296353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.148.164, 20.190.148.165] + +2025-01-10T19:51:06.6051213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[117.18.232.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T19:51:06.6088821+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.112.3] + +2025-01-10T19:51:07.2348060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[117.18.232.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T19:51:08.1595573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.74, 2620:1ec:bdf::74] + +2025-01-10T19:51:11.3283969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.114.10] + +2025-01-10T19:51:25.5594163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.15, 20.135.25.5] + +2025-01-10T19:51:40.3465020+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.6959 ms + +2025-01-10T19:51:40.4129484+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.4548 ms + +2025-01-10T19:51:40.9484699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.74, 13.107.246.45] + +2025-01-10T19:52:13.3485919+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.1494 ms + +2025-01-10T19:52:13.4150686+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.7305 ms + +2025-01-10T19:52:16.0581138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::61, 13.107.246.74, 2620:1ec:bdf::41] + +2025-01-10T19:52:16.3402846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.45, 2620:1ec:bdf::71] + +2025-01-10T19:52:16.3434336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.42, 13.107.246.74] + +2025-01-10T19:52:24.0649310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.113.4] + +2025-01-10T19:52:41.0008186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::41, 13.107.246.40] + +2025-01-10T19:52:41.2229280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.45, 13.107.246.67] + +2025-01-10T19:52:46.7572300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 2603:1046:1402::1, 2603:1046:1404::1] + +2025-01-10T19:52:52.0059930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.74, 2620:1ec:bdf::42] + +2025-01-10T19:53:02.8738815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.10] + +2025-01-10T19:53:06.1463756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.32, 20.190.141.37, 20.190.141.39] + +2025-01-10T19:53:11.2445576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[117.18.232.200, 152.199.19.161, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:53:14.5905694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.15, 20.135.2.0] + +2025-01-10T19:53:16.3203696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.135.6.15] + +2025-01-10T19:53:19.6344233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.32, 20.190.141.37, 20.190.141.34] + +2025-01-10T19:53:22.3178984+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 358.5404 ms + +2025-01-10T19:53:22.3841456+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.6351 ms + +2025-01-10T19:53:34.1630554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.25] + +2025-01-10T19:53:38.2497066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.4] + +2025-01-10T19:53:40.0819412+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.74, 2620:1ec:bdf::41] + +2025-01-10T19:53:51.3985280+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-10T19:53:51.3998840+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-01-10T19:53:51.9057828+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/rustdesk/rustdesk/releases/latest responded 302 in 467.3506 ms + +2025-01-10T19:53:52.7001701+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/rustdesk/rustdesk/releases/tag/1.3.6 responded 200 in 780.5112 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-10T19:53:56.9077578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.135.6.2] + +2025-01-10T19:53:58.9634838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-10T19:53:58.9669673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.2, 20.135.6.15] + +2025-01-10T19:53:58.9701262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.67, 13.107.246.74] + +2025-01-10T19:54:28.6177012+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:54:29.9505846+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:54:32.3789897+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 71.8081 ms + +2025-01-10T19:54:32.4482501+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.9373 ms + +2025-01-10T19:54:35.9123097+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T19:54:35.9134864+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T19:54:36.0854152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.112.10] + +2025-01-10T19:54:36.4993697+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 535.0115 ms + +2025-01-10T19:54:38.8538293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[117.18.232.200, 2606:2800:133:206e:1315:22a5:2006:24fd, 152.199.19.161] + +2025-01-10T19:54:45.7305193+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.74, 2620:1ec:bdf::41] + +2025-01-10T19:55:13.8315080+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 328.2291 ms + +2025-01-10T19:55:13.9050829+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.9649 ms + +2025-01-10T19:55:29.6781761+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.3677 ms + +2025-01-10T19:55:29.7420738+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.3437 ms + +2025-01-10T19:55:30.8835410+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:55:44.2562264+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:55:51.6429369+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.9874 ms + +2025-01-10T19:55:51.7180659+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 70.7696 ms + +2025-01-10T19:56:16.6008703+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:56:32.6463837+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:56:37.6581806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-01-10T19:56:47.6622098+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T19:56:49.6968394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 104.17.24.14] + +2025-01-10T19:56:51.8922967+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-10T19:56:51.8936865+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-10T19:56:52.4189087+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 525.8648 ms + +2025-01-10T19:56:52.4982055+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.334 ms + +2025-01-10T19:57:35.5078939+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:57:38.9129932+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 379.8647 ms + +2025-01-10T19:57:38.9819165+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.7605 ms + +2025-01-10T19:57:41.7385366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.10] + +2025-01-10T19:57:45.7723601+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@8.8.8.8:53->Unexpected end of stream + +2025-01-10T19:57:56.2139664+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 76.5378 ms + +2025-01-10T19:57:56.2872566+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.5677 ms + +2025-01-10T19:58:06.8089179+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:58:09.5040773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-01-10T19:58:31.8233156+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 70.6487 ms + +2025-01-10T19:58:31.9010484+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 75.3089 ms + +2025-01-10T19:58:35.3497082+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:58:40.5617558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-10T19:58:49.7200333+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.5178 ms + +2025-01-10T19:58:49.7959165+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 73.5177 ms + +2025-01-10T19:59:00.0733798+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.235 ms + +2025-01-10T19:59:00.1380442+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.4516 ms + +2025-01-10T19:59:06.5261773+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-10T19:59:10.3987417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.112.25] + +2025-01-10T19:59:20.0104832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:59:21.7827872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-10T19:59:22.1810345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[72.21.81.200, 2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a] + +2025-01-10T19:59:23.7055766+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 2606:50c0:8001::154] + +2025-01-10T19:59:24.2355827+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 383.1356 ms + +2025-01-10T19:59:24.3076803+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.176 ms + +2025-01-10T19:59:30.1071010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.71, 13.107.246.73] + +2025-01-10T19:59:41.6119191+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.5905 ms + +2025-01-10T19:59:41.6769476+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.6065 ms + +2025-01-10T19:59:42.3563046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.15, 20.135.6.2] + +2025-01-10T19:59:44.9571339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.71, 13.107.246.73] + +2025-01-10T19:59:51.4973522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.71, 13.107.246.73] + +2025-01-10T19:59:53.8109425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-10T19:59:59.4885983+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.9847 ms + +2025-01-10T19:59:59.5618190+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 71.1025 ms + +2025-01-10T20:00:06.4706898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.32, 20.190.141.38] + +2025-01-10T20:00:13.6811539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.37, 20.190.141.32, 20.190.141.38] + +2025-01-10T20:00:20.2190658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-10T20:00:20.9409495+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-10T20:00:30.0356369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.121.5] + +2025-01-10T20:00:56.6016433+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.102 ms + +2025-01-10T20:00:56.6862642+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.4904 ms + +2025-01-10T20:01:09.1718880+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 376.8469 ms + +2025-01-10T20:01:09.5577380+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 363.2022 ms + +2025-01-10T20:01:12.2591694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.3] + +2025-01-10T20:01:40.0837839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154] + +2025-01-10T20:01:53.9680082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.71, 13.107.246.65] + +2025-01-10T20:02:14.5480333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 2603:1046:1404::1] + +2025-01-10T20:02:28.2595516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-01-10T20:02:40.0325097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-01-10T20:02:40.7141974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.113.6, 20.205.243.168, 140.82.114.6] + +2025-01-10T20:03:04.5119235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.73] + +2025-01-10T20:03:04.8025189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.45] + +2025-01-10T20:03:30.7297536+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.113.6, 140.82.114.6, 20.205.243.168] + +2025-01-10T20:03:42.5120199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T20:03:58.5816895+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T20:04:12.4900917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.113.4] + +2025-01-10T20:04:17.1952916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.113.26] + +2025-01-10T20:04:17.6156462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-10T20:04:33.2303509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.15, 13.105.74.49] + +2025-01-10T20:04:37.9612117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.45, 2620:1ec:bdf::59] + +2025-01-10T20:04:55.9256934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9] + +2025-01-10T20:05:01.1824885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.113.6, 140.82.112.6, 140.82.114.6] + +2025-01-10T20:05:06.3545044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2606:2800:11f:17a5:191a:18d5:537:22f9, 2606:2800:147:120f:30c:1ba0:fc6:265a, 152.199.19.161] + +2025-01-10T20:05:07.2200217+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +mrodevicemgr.officeapps.live.com->127.0.0.1 + +2025-01-10T20:05:07.2208525+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +mrodevicemgr.officeapps.live.com->::1 + +2025-01-10T20:05:08.9817947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.112.21, 140.82.114.21] + +2025-01-10T20:05:09.3018057+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://mrodevicemgr.officeapps.live.com/mrodevicemgrsvc/api/v1/SDXReleaseDataPackages responded 202 in 1921.4813 ms + +2025-01-10T20:05:10.3511913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 2606:50c0:8001::154] + +2025-01-10T20:05:13.7448914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::52, 13.107.246.66, 2620:1ec:bdf::44] + +2025-01-10T20:05:19.3044708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 40.90.133.99] + +2025-01-10T20:05:20.1029665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.253.65, 2620:1ec:29:1::70] + +2025-01-10T20:05:20.6939055+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::59, 13.107.246.45] + +2025-01-10T20:05:21.1433229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-10T20:05:22.9764590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.166, 40.126.35.18] + +2025-01-10T20:05:28.6678856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 2603:1047:1:168::18, 2603:1047:1:168::24] + +2025-01-10T20:05:30.4688002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-01-10T20:05:37.2441312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.3] + +2025-01-10T20:05:40.0415633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::31, 13.107.253.65] + +2025-01-10T20:06:15.0509225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-10T20:06:15.5191980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T20:06:16.1718133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-10T20:06:54.7303237+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-01-10T20:06:57.7574194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.66, 2620:1ec:bdf::44] + +2025-01-10T20:07:01.9394590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::69, 2620:1ec:bdf::59] + +2025-01-10T20:07:37.3768157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::31, 13.107.246.60] + +2025-01-10T20:07:43.2391477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-10T20:07:51.3205322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.121.9] + +2025-01-10T20:07:53.3790328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-10T20:07:54.5099801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-10T20:07:55.8439617+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-10T20:07:55.8450881+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-01-10T20:07:56.0877794+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-10T20:07:56.0892080+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-10T20:07:57.6406845+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1521.3661 ms + +2025-01-10T20:07:58.7531446+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 853.2098 ms + +2025-01-10T20:08:03.3979069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::43, 13.107.246.45, 2620:1ec:bdf::31] + diff --git a/logs/log20250111.txt b/logs/log20250111.txt new file mode 100644 index 0000000..a34618b --- /dev/null +++ b/logs/log20250111.txt @@ -0,0 +1,12066 @@ +2025-01-11T13:32:01.0642044+08:00 [INF] +FastGithub.HttpServer +已监听https://localhost:443,https反向代理服务启动完成 + +2025-01-11T13:32:01.1269307+08:00 [INF] +FastGithub.HttpServer +已监听http://localhost:81,http反向代理服务启动完成 + +2025-01-11T13:32:01.1283899+08:00 [INF] +FastGithub.HttpServer +已监听ssh://localhost:22,github的ssh反向代理服务启动完成 + +2025-01-11T13:32:01.1294963+08:00 [INF] +FastGithub.HttpServer +已监听git://localhost:9418,github的git反向代理服务启动完成 + +2025-01-11T13:32:01.1670614+08:00 [INF] +FastGithub.AppHostedService +FastGithub启动完成,当前版本为v2.1.4,访问 https://github.com/dotnetcore/fastgithub 关注新版本 + +2025-01-11T13:32:01.2157959+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +127.0.0.1:80 <=> 127.0.0.1:81 + +2025-01-11T13:32:01.2182870+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +::1:80 <=> ::1:81 + +2025-01-11T13:32:36.7702470+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:32:37.0662579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.73, 2620:1ec:bdf::74] + +2025-01-11T13:32:58.8727138+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:32:59.3610294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.132, 20.190.166.68] + +2025-01-11T13:33:14.5521875+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-11T13:33:14.5554142+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T13:33:14.6097468+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-11T13:33:14.6109741+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T13:33:14.8518393+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-11T13:33:14.8603113+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-11T13:33:15.8854245+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 145.3012 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T13:33:15.9268149+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-11T13:33:15.9495844+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T13:33:16.3890646+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 837.0206 ms + +2025-01-11T13:33:16.4994979+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-11T13:33:16.5112727+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T13:33:16.8778531+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 931.5452 ms + +2025-01-11T13:33:16.9174752+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-11T13:33:16.9241574+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T13:33:19.3982996+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 3545.9799 ms + +2025-01-11T13:33:19.4100454+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-11T13:33:19.4187538+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T13:33:19.6105466+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 203.9422 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T13:33:20.1777273+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 202.953 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T13:33:20.2167155+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 609.7707 ms + +2025-01-11T13:33:20.4280015+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 200.7462 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T13:33:21.9226857+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 1745.1567 ms + +2025-01-11T13:33:21.9459266+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 1518.1754 ms + +2025-01-11T13:33:22.7911250+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 183.4396 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T13:33:24.3359613+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 1545.9963 ms + +2025-01-11T13:33:24.5471399+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 204.3419 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T13:33:59.4602188+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T13:33:59.4611066+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-11T13:34:05.1104722+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 5299.7941 ms + +2025-01-11T13:34:05.1210084+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 4362.4655 ms + +2025-01-11T13:34:08.1422452+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-11T13:34:08.1443344+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-01-11T13:34:10.0605554+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 1647.8001 ms + +2025-01-11T13:34:19.3601856+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 702.213 ms + +2025-01-11T13:34:23.1107384+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 171.6087 ms + +2025-01-11T13:34:23.2833226+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 344.2037 ms + +2025-01-11T13:34:47.5087635+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:34:48.1048163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-01-11T13:36:18.2033452+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->::1 + +2025-01-11T13:36:18.2066415+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->127.0.0.1 + +2025-01-11T13:36:18.8330758+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->::1 + +2025-01-11T13:36:18.8374785+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->127.0.0.1 + +2025-01-11T13:36:18.8430770+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->::1 + +2025-01-11T13:36:18.8463275+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +devtools.azureedge.net->127.0.0.1 + +2025-01-11T13:36:19.7751139+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://devtools.azureedge.net/serve_file/@16ab910a6e75f1c7d2da060bbe9ac569dfe64f70/third_party/webhint/worker_frame.html responded 200 in 911.1777 ms + +2025-01-11T13:36:19.8026210+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://devtools.azureedge.net/docs/131/stable.json responded 200 in 1445.4337 ms + +2025-01-11T13:36:20.1790970+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:36:20.4890778+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://devtools.azureedge.net/serve_file/@16ab910a6e75f1c7d2da060bbe9ac569dfe64f70/third_party/webhint/webhint.js responded 200 in 674.5218 ms + +2025-01-11T13:36:20.6353570+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.83, 23.62.212.97, 2600:140b:2c00:78::1737:33dc] + +2025-01-11T13:36:42.2715955+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:36:47.4627205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133] + +2025-01-11T13:36:52.3408648+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:36:53.7042613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.112, 2600:140b:2c00:32::1730:a75d] + +2025-01-11T13:37:15.3678748+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:37:15.8461432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 40.90.130.207, 13.104.208.165] + +2025-01-11T13:37:18.9087794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8003::154] + +2025-01-11T13:37:19.4162885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.73, 2620:1ec:bdf::74] + +2025-01-11T13:37:20.4864836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.114.26, 140.82.112.25] + +2025-01-11T13:37:22.2839491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-11T13:37:23.2551479+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-11T13:37:24.2175836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-11T13:37:26.1973347+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-11T13:37:27.2820807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.21] + +2025-01-11T13:37:28.5011041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3] + +2025-01-11T13:37:30.1554778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +clientnotification-userprodscus1-1.servicebus.windows.net:443->[40.84.185.67] + +2025-01-11T13:37:31.5251554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10] + +2025-01-11T13:37:31.9715018+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:37:37.1766345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-11T13:37:42.0350303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-11T13:37:42.9455533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-11T13:37:48.1063326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-01-11T13:37:49.2509893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.87, 40.126.35.18, 40.126.35.128] + +2025-01-11T13:37:50.3432354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-01-11T13:37:51.8908633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1400::7, 2603:1036:2407::5] + +2025-01-11T13:37:53.0460520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 2603:1046:1406::2, 52.109.52.2] + +2025-01-11T13:37:55.2294405+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.11, 40.90.130.207] + +2025-01-11T13:37:56.1727734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-11T13:37:57.1300852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-11T13:37:57.4126955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.74, 2620:1ec:bdf::74] + +2025-01-11T13:37:59.1147294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.83, 23.62.212.97, 2600:140b:2c00:32::1730:a76b] + +2025-01-11T13:38:00.4974582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.68, 20.190.166.132] + +2025-01-11T13:38:02.9485143+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-11T13:38:02.9504477+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T13:38:04.3513772+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 320.0299 ms + +2025-01-11T13:38:04.4144918+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.5507 ms + +2025-01-11T13:38:23.1915215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.112, 2600:140b:1e00:a::1730:9595] + +2025-01-11T13:38:24.7143071+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.21, 140.82.114.22] + +2025-01-11T13:38:47.8557760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1406::1, 2603:1046:1401::1, 52.109.120.46] + +2025-01-11T13:39:06.0209217+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 317.579 ms + +2025-01-11T13:39:06.0854109+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.2254 ms + +2025-01-11T13:39:08.9526737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.114.26] + +2025-01-11T13:39:33.0814668+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-01-11T13:39:33.7878520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 20.26.156.216] + +2025-01-11T13:39:35.2075386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.21] + +2025-01-11T13:39:36.0365448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.11, 40.90.133.102] + +2025-01-11T13:39:59.0876031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.5] + +2025-01-11T13:40:00.4285100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 104.17.24.14] + +2025-01-11T13:40:21.7953345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.11, 20.135.6.5] + +2025-01-11T13:40:23.9580771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.74, 2620:1ec:bdf::51] + +2025-01-11T13:40:44.4820605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.74, 2620:1ec:bdf::74] + +2025-01-11T13:41:22.0398789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 2600:140b:2c00:32::1730:a76b] + +2025-01-11T13:41:33.4208712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.3] + +2025-01-11T13:41:40.6090435+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T13:41:40.6099981+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-01-11T13:41:41.4022425+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 760.7957 ms + +2025-01-11T13:41:41.6121993+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->127.0.0.1 + +2025-01-11T13:41:41.6131872+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->::1 + +2025-01-11T13:41:42.1115027+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/v2.1/federationprovider responded 200 in 260.2747 ms + +2025-01-11T13:41:42.5314765+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 322.3708 ms + +2025-01-11T13:41:44.9738679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-01-11T13:41:48.7297244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T13:41:55.0808356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T13:42:01.2055669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.38, 20.190.141.36] + +2025-01-11T13:42:03.6838542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.114.5] + +2025-01-11T13:42:35.6860946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-01-11T13:42:36.0946362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-01-11T13:42:36.8156003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-11T13:42:37.8936687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::69] + +2025-01-11T13:42:38.6096099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-11T13:42:38.6185476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 2603:1047:1:168::2e, 2603:1047:1:168::28] + +2025-01-11T13:42:47.1127295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 2620:1ec:bdf::74] + +2025-01-11T13:42:47.5341186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::73, 13.107.246.46] + +2025-01-11T13:42:47.5369278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::73, 2620:1ec:bdf::51] + +2025-01-11T13:42:48.2271877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 2603:1047:1:168::12, 2603:1047:1:168::2e] + +2025-01-11T13:42:50.0335091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 2603:1046:1406::1, 52.109.120.46] + +2025-01-11T13:42:56.8302440+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-01-11T13:42:58.9533800+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.44.111] + +2025-01-11T13:42:59.4653870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 2600:140b:1e00:a::1730:9596] + +2025-01-11T13:43:04.8764324+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.136, 20.190.144.165] + +2025-01-11T13:43:07.5472075+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.41, 13.107.246.74] + +2025-01-11T13:43:11.7598730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 23.62.212.150] + +2025-01-11T13:43:24.5044287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.112, 2600:140b:2c00:32::1730:a75d] + +2025-01-11T13:43:29.0717423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.2, 20.135.6.11] + +2025-01-11T13:43:37.5123312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.114.3] + +2025-01-11T13:43:38.9061533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.155, 23.62.212.112] + +2025-01-11T13:43:47.7198600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-11T13:43:48.1156012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1406::1, 2603:1046:1401::1, 52.109.120.46] + +2025-01-11T13:43:59.1365875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-11T13:44:14.5737036+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.114.26, 140.82.113.26] + +2025-01-11T13:44:16.0601839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.2, 20.143.38.0] + +2025-01-11T13:44:27.0672017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::73, 2620:1ec:bdf::41] + +2025-01-11T13:44:35.4903421+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-11T13:45:01.3012748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-11T13:45:22.1945347+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.5, 20.143.38.2] + +2025-01-11T13:45:45.2527425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.46, 13.107.246.74] + +2025-01-11T13:46:09.0763569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.112.6] + +2025-01-11T13:46:25.0099587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.114.26, 140.82.112.26] + +2025-01-11T13:46:34.9558821+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-01-11T13:46:45.3604000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-11T13:46:47.9105872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T13:46:47.9127819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8000::154, 2606:50c0:8001::154] + +2025-01-11T13:46:50.6982490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T13:46:51.5876007+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.42, 2620:1ec:bdf::73, 13.107.246.46] + +2025-01-11T13:47:08.3841196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1404::4, 52.109.124.29, 2603:1046:1406::5] + +2025-01-11T13:47:19.2131760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.62.212.79] + +2025-01-11T13:47:19.5349162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.33, 20.190.141.34, 20.190.141.39] + +2025-01-11T13:47:26.0384538+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:47:47.0705377+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:47:47.9011527+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:48:10.7477759+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:48:15.1684756+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:48:16.6619741+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:48:17.0338033+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-11T13:48:39.1871876+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:48:48.5092668+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:49:09.8076478+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:49:10.4803316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 20.26.156.216] + +2025-01-11T13:49:42.7424461+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:49:43.1741353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.112.25] + +2025-01-11T13:49:44.2029073+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:49:44.6689145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.21] + +2025-01-11T13:50:06.3683535+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:50:30.0162353+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:50:59.0684987+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:50:59.5265648+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1406::1, 52.109.120.46, 2603:1046:1401::1] + +2025-01-11T13:51:00.6051454+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:51:26.0106466+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T13:51:26.2612599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::74, 2620:1ec:bdf::65] + +2025-01-11T13:51:47.9654316+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:51:48.1987506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.42, 13.107.246.46] + +2025-01-11T13:51:49.2156804+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:51:49.7040756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::65, 2620:1ec:bdf::41] + +2025-01-11T13:52:11.6793282+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:52:33.8145248+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T13:52:34.2823358+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 20.135.6.5] + +2025-01-11T13:52:39.0004901+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:52:44.1604263+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:52:45.5577635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.97, 23.62.212.83] + +2025-01-11T13:53:00.6455969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.62.212.112] + +2025-01-11T13:53:06.5186019+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:53:11.7475212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.38, 20.190.141.36, 20.190.141.35] + +2025-01-11T13:53:13.7992820+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:53:14.2492085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.136, 20.190.148.164] + +2025-01-11T13:53:18.6765739+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:53:25.0739855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-11T13:53:34.6186246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902] + +2025-01-11T13:53:39.5992434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-11T13:53:41.8936121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-01-11T13:53:42.6352650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T13:53:44.5427431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-01-11T13:55:31.2186499+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:55:32.9972694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.112.25] + +2025-01-11T13:55:34.1670832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.114.22] + +2025-01-11T13:55:35.2626793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.6] + +2025-01-11T13:55:36.7188415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T13:55:37.6210404+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 2603:1036:2400::9] + +2025-01-11T13:55:42.6994643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.45, 2620:1ec:bdf::45] + +2025-01-11T13:55:43.3866939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-01-11T13:55:44.1128184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.44, 2620:1ec:bdf::74] + +2025-01-11T13:55:46.4196408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 52.109.52.84] + +2025-01-11T13:55:48.1809874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.5, 13.105.28.1] + +2025-01-11T13:56:09.4234509+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T13:56:10.3494772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.148.165, 20.190.144.166] + +2025-01-11T13:56:15.7628847+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@127.0.0.1:5533->Invalid response received with code ServerFailure + +2025-01-11T13:56:23.1656134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10] + +2025-01-11T13:56:25.4415840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-01-11T13:56:25.7254418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::45, 13.107.246.74] + +2025-01-11T13:56:25.7276062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 13.105.74.49, 13.105.74.50] + +2025-01-11T13:56:26.4400333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::42, 13.107.246.73] + +2025-01-11T13:56:33.2211281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.0] + +2025-01-11T13:56:40.1573162+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@8.8.8.8:53->Unexpected end of stream + +2025-01-11T13:56:47.2999010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::45, 2620:1ec:bdf::74] + +2025-01-11T13:56:48.0760736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.1, 13.105.74.49] + +2025-01-11T13:56:48.0777852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::42, 2620:1ec:bdf::69] + +2025-01-11T13:56:52.7829621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::42, 13.107.246.66, 13.107.246.73] + +2025-01-11T13:57:11.5848954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 2600:140b:2c00:3a::1727:a05b] + +2025-01-11T13:57:12.3174341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 2600:140b:2c00:3a::1727:a09d] + +2025-01-11T13:57:33.9576637+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@8.8.8.8:53->Unexpected end of stream + +2025-01-11T13:57:33.9601751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6] + +2025-01-11T13:57:34.9995732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 20.26.156.215] + +2025-01-11T13:58:12.0186548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.50, 13.105.28.1] + +2025-01-11T13:58:21.2752544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::42, 13.107.246.66, 13.107.246.74] + +2025-01-11T13:58:22.4367335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.38, 2620:1ec:bdf::35] + +2025-01-11T13:58:23.1735765+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-01-11T13:58:29.4138171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.52.2, 52.109.44.108] + +2025-01-11T13:58:30.4981066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-11T13:58:31.9229989+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.112, 2600:140b:2c00:3a::1727:a09d] + +2025-01-11T13:58:35.1760853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.162, 20.190.144.163] + +2025-01-11T13:58:40.7673238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.139, 20.190.148.166] + +2025-01-11T13:58:51.2831550+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T13:58:57.2594210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-11T13:58:58.9876360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.121.10] + +2025-01-11T13:59:04.4817244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.6] + +2025-01-11T13:59:06.4958355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-11T13:59:11.4381314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T13:59:13.4025858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-01-11T13:59:15.1350529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.130.199, 13.105.28.16, 13.105.74.50] + +2025-01-11T13:59:15.9174047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 2606:50c0:8003::154] + +2025-01-11T13:59:20.6478612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-11T13:59:25.1133664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.45, 2620:1ec:bdf::45] + +2025-01-11T13:59:25.6560439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::42, 13.107.246.66] + +2025-01-11T13:59:49.9685296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::64, 13.107.246.74, 13.107.246.45] + +2025-01-11T14:00:03.8199661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.130.199, 13.104.158.177, 13.105.28.16] + +2025-01-11T14:00:07.4349876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.130.199, 40.90.128.21, 13.104.158.177] + +2025-01-11T14:00:25.3323825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.52.2] + +2025-01-11T14:00:35.4297918+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.26.156.215, 140.82.121.3] + +2025-01-11T14:00:35.9308416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.25] + +2025-01-11T14:00:36.1711059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-11T14:00:41.7924094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-01-11T14:00:45.4019141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::35, 13.107.246.74] + +2025-01-11T14:01:06.9579450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 20.26.156.215] + +2025-01-11T14:01:26.8920591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.40, 13.107.246.74] + +2025-01-11T14:01:31.1978999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.45, 2620:1ec:bdf::64] + +2025-01-11T14:01:31.2026306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.45, 2620:1ec:bdf::74] + +2025-01-11T14:01:37.3579894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 2600:140b:2c00:3a::1727:a0b0] + +2025-01-11T14:01:38.9112049+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.130.199, 40.90.133.112, 40.90.128.21] + +2025-01-11T14:02:06.0991518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.112.6] + +2025-01-11T14:02:07.5625379+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.113.3] + +2025-01-11T14:02:08.4725839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 40.90.130.199, 40.90.133.112] + +2025-01-11T14:02:15.5562632+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.15, 40.90.130.199] + +2025-01-11T14:02:25.9101258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.13] + +2025-01-11T14:02:38.9832703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::11, 2603:1047:1:a0::15, 2603:1047:1:a0::12] + +2025-01-11T14:02:52.7772021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::63, 13.107.246.45] + +2025-01-11T14:03:09.8620243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.3] + +2025-01-11T14:03:15.0543853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.15] + +2025-01-11T14:03:16.1222870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.139, 20.190.144.162] + +2025-01-11T14:03:23.3270280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::35, 13.107.246.45] + +2025-01-11T14:03:29.2841321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-11T14:03:31.9969304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-11T14:03:32.8856921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 2600:140b:2c00:3a::1727:a09d] + +2025-01-11T14:03:44.0317615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.148.167, 20.190.148.163] + +2025-01-11T14:04:00.9167520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.10] + +2025-01-11T14:04:05.1336468+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T14:04:05.1349864+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-11T14:04:05.5556941+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 413.0457 ms + +2025-01-11T14:04:05.5933880+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 438.8392 ms + +2025-01-11T14:04:12.2029903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-11T14:04:17.2123814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T14:04:17.3485462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-01-11T14:04:18.7964203+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 2606:50c0:8000::154] + +2025-01-11T14:04:21.8396029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-11T14:04:24.8032664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-01-11T14:04:26.1152061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.74, 13.107.246.66] + +2025-01-11T14:05:00.9661091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.0] + +2025-01-11T14:05:42.0049877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.114.26] + +2025-01-11T14:05:42.8775668+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-11T14:05:43.5555978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.114.3] + +2025-01-11T14:05:45.0355150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8002::154, 2606:50c0:8001::154] + +2025-01-11T14:05:45.5770283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-01-11T14:05:47.3932464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.38, 2620:1ec:bdf::35] + +2025-01-11T14:05:47.6232667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::63, 13.107.246.53] + +2025-01-11T14:06:30.7664057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.9] + +2025-01-11T14:06:31.0891443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.121.5] + +2025-01-11T14:06:33.5420993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::35, 13.107.246.66] + +2025-01-11T14:06:33.6086100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::42, 2620:1ec:bdf::73] + +2025-01-11T14:06:34.7062290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::63, 13.107.246.53, 2620:1ec:bdf::66] + +2025-01-11T14:06:36.7434800+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 2600:140b:2c00:3a::1727:a083] + +2025-01-11T14:06:48.7193761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::35, 13.107.246.66, 2620:1ec:bdf::66] + +2025-01-11T14:06:48.7202433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::74, 13.107.246.74] + +2025-01-11T14:06:53.9506348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::35, 2620:1ec:bdf::66, 2620:1ec:bdf::69] + +2025-01-11T14:07:08.2293598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.3] + +2025-01-11T14:07:12.9350153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 23.206.229.165] + +2025-01-11T14:07:12.9361802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 184.30.148.85] + +2025-01-11T14:07:12.9373185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.139, 20.190.148.164] + +2025-01-11T14:07:19.7866789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.116.4] + +2025-01-11T14:07:23.9971540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-01-11T14:07:26.8761175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-11T14:07:30.3290520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::35, 2620:1ec:bdf::66, 13.107.246.46] + +2025-01-11T14:07:39.7156813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::12, 2603:1047:1:a0::c, 2603:1047:1:a0::10] + +2025-01-11T14:07:49.9651794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::63, 13.107.246.53] + +2025-01-11T14:07:51.2951453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.21] + +2025-01-11T14:07:52.9306250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.53, 2620:1ec:bdf::66] + +2025-01-11T14:08:03.2511774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.73, 2620:1ec:bdf::73] + +2025-01-11T14:08:03.3118134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::35, 2620:1ec:bdf::66] + +2025-01-11T14:08:04.6233281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.67, 13.107.246.53] + +2025-01-11T14:08:16.9299704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.28.1] + +2025-01-11T14:08:17.8604279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.162, 20.190.148.167] + +2025-01-11T14:08:23.4712928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::66, 13.107.246.46] + +2025-01-11T14:08:30.4126376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.73, 2620:1ec:bdf::66] + +2025-01-11T14:08:39.4545302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-11T14:08:41.0985264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 2600:1405:8400:b::17dc:4948] + +2025-01-11T14:08:46.3049711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.112, 23.55.179.210] + +2025-01-11T14:08:46.7858141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.139, 20.190.144.161] + +2025-01-11T14:08:53.7535198+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:09:00.8528758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 23.48.5.7] + +2025-01-11T14:09:08.6486496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.121.9] + +2025-01-11T14:09:15.4267889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-11T14:09:16.0996651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T14:09:19.2555252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-01-11T14:09:25.1853793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-01-11T14:09:26.0901965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.6] + +2025-01-11T14:09:26.2073337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T14:09:30.1959237+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.53, 13.107.246.41] + +2025-01-11T14:09:33.5666003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T14:09:38.0854941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.73, 13.107.246.36] + +2025-01-11T14:09:54.3080697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-11T14:09:58.6018663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.0.138] + +2025-01-11T14:10:05.6710705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.0] + +2025-01-11T14:10:08.0748178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.121.10] + +2025-01-11T14:10:19.8463209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::46, 13.107.246.73] + +2025-01-11T14:10:26.0231670+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.36, 2620:1ec:bdf::66] + +2025-01-11T14:10:46.0285578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-01-11T14:10:46.5469474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-01-11T14:10:46.9997323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.4] + +2025-01-11T14:10:50.2453305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.36, 13.107.246.46] + +2025-01-11T14:10:50.5823088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.41, 13.107.246.73] + +2025-01-11T14:10:52.8106817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.139, 20.190.148.163] + +2025-01-11T14:10:59.4092123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-11T14:11:01.0549280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::46, 13.107.246.41] + +2025-01-11T14:11:29.5594865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.167, 20.190.144.139] + +2025-01-11T14:11:31.6972907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-01-11T14:11:41.8295960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.36, 13.107.246.74] + +2025-01-11T14:11:53.7303370+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.73, 13.107.246.36] + +2025-01-11T14:12:10.5036742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.5] + +2025-01-11T14:12:25.8865863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.41, 13.107.246.73] + +2025-01-11T14:12:25.8877840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.36, 13.107.246.74] + +2025-01-11T14:12:26.0358296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-11T14:12:27.8240376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-11T14:12:29.5155025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.73, 13.107.246.36] + +2025-01-11T14:12:29.7762056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.46, 13.107.246.41] + +2025-01-11T14:12:51.7561846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.73, 13.107.246.74] + +2025-01-11T14:12:54.5891342+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::12, 2603:1047:1:a0::14, 2603:1047:1:a0::11] + +2025-01-11T14:12:56.5720669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.113.26] + +2025-01-11T14:12:57.4181567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.46, 13.107.246.73] + +2025-01-11T14:13:07.1720842+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.74, 13.107.246.73] + +2025-01-11T14:13:07.2356900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.246.73] + +2025-01-11T14:13:07.2371725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.36, 13.107.246.74] + +2025-01-11T14:13:09.8535078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-01-11T14:13:18.5747115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.143.38.2] + +2025-01-11T14:13:30.8282116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.67] + +2025-01-11T14:13:38.3727969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.6] + +2025-01-11T14:13:42.1951558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.51, 13.107.246.73] + +2025-01-11T14:13:45.4234985+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.0.136] + +2025-01-11T14:13:46.8250603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.163, 20.190.144.166] + +2025-01-11T14:14:06.2683959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.112, 23.48.5.20] + +2025-01-11T14:14:11.4804130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.166, 20.190.148.164] + +2025-01-11T14:14:13.5881401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-11T14:14:19.2394797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-11T14:14:20.8555074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-01-11T14:14:21.9712727+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T14:14:23.8754698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.5] + +2025-01-11T14:14:23.8766795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T14:14:24.6570710+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::44, 13.107.246.40] + +2025-01-11T14:14:25.7798665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-11T14:14:31.2444990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-01-11T14:14:33.3714008+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.36, 13.107.246.74, 13.107.246.73] + +2025-01-11T14:14:35.6464746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-11T14:14:38.9411351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::19, 2603:1047:1:168::1a, 2603:1047:1:168::28] + +2025-01-11T14:14:40.0245131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.36] + +2025-01-11T14:14:54.5099795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.5] + +2025-01-11T14:15:20.3384830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.40, 13.107.246.74] + +2025-01-11T14:15:25.1707455+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.67] + +2025-01-11T14:15:27.4415359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.166, 20.190.148.167] + +2025-01-11T14:15:49.1968925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.26] + +2025-01-11T14:15:49.4344805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.113.22] + +2025-01-11T14:15:49.7107410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.116.4] + +2025-01-11T14:15:53.7876080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.74, 2620:1ec:bdf::67] + +2025-01-11T14:15:54.5767394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.135.6.15] + +2025-01-11T14:15:55.6407705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.160, 20.190.144.166] + +2025-01-11T14:16:00.9432905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-11T14:16:35.7808259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.166, 20.190.148.167] + +2025-01-11T14:16:36.0624537+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::24, 2603:1047:1:168::1b, 2603:1047:1:168::2f] + +2025-01-11T14:16:38.0904400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-11T14:16:42.4558275+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::67, 13.107.246.73] + +2025-01-11T14:16:43.5345249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.40, 2620:1ec:bdf::67] + +2025-01-11T14:16:44.8471506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.143.38.2] + +2025-01-11T14:16:47.1821470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.67] + +2025-01-11T14:16:54.1408741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.10] + +2025-01-11T14:16:58.3578909+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.112.5] + +2025-01-11T14:17:02.0089386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::69, 2620:1ec:bdf::67] + +2025-01-11T14:17:04.9378882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.166, 20.190.148.164] + +2025-01-11T14:17:15.2677461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.4] + +2025-01-11T14:17:25.6371352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.40, 2620:1ec:bdf::65] + +2025-01-11T14:17:25.9029917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-11T14:17:30.5419511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.2, 20.143.38.0] + +2025-01-11T14:17:35.8497142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-01-11T14:17:47.0341444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::67, 13.107.246.73] + +2025-01-11T14:17:53.4548044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.36] + +2025-01-11T14:17:57.7810674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.113.25] + +2025-01-11T14:18:16.1457478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.36, 13.107.246.64] + +2025-01-11T14:18:16.7310433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::67, 2620:1ec:bdf::46] + +2025-01-11T14:18:35.0342359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::73, 13.107.246.36] + +2025-01-11T14:18:35.1961940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::67, 2620:1ec:bdf::46, 13.107.246.44] + +2025-01-11T14:18:35.4932542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.52.2] + +2025-01-11T14:18:40.5931906+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.114.5] + +2025-01-11T14:18:47.9537301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-11T14:18:49.3524205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.160, 20.190.148.164] + +2025-01-11T14:18:56.3433807+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:19:08.5769653+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 23.55.179.207] + +2025-01-11T14:19:08.8885600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.112, 23.55.179.206] + +2025-01-11T14:19:14.3409247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-11T14:19:14.3417625+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-11T14:19:14.8354187+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 20.26.156.215] + +2025-01-11T14:19:17.5390170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 23.48.5.14] + +2025-01-11T14:19:18.4990192+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.167, 20.190.144.160] + +2025-01-11T14:19:27.4157912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:190e] + +2025-01-11T14:19:28.5600326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T14:19:29.6164381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T14:19:30.2700463+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::46, 13.107.246.44] + +2025-01-11T14:19:31.3362375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 23.55.179.205] + +2025-01-11T14:19:36.0955088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-11T14:19:42.3895394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-01-11T14:19:44.1916378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::73, 13.107.246.64] + +2025-01-11T14:20:23.5337878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.44, 2620:1ec:bdf::73] + +2025-01-11T14:20:40.5526317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.112.5] + +2025-01-11T14:20:40.9303488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-01-11T14:20:41.7703352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::40, 2620:1ec:bdf::71, 2620:1ec:bdf::73] + +2025-01-11T14:20:57.3838862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.112.26] + +2025-01-11T14:20:57.9513876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.112.22] + +2025-01-11T14:20:58.1779388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-01-11T14:21:04.0531901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 52.109.120.46] + +2025-01-11T14:21:05.3620898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.44, 2620:1ec:bdf::73] + +2025-01-11T14:21:13.8537216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.167, 20.190.144.165] + +2025-01-11T14:21:40.3628850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 23.62.212.150] + +2025-01-11T14:21:40.9810745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.79, 23.62.212.155] + +2025-01-11T14:21:41.7072107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.163, 20.190.144.165, 20.190.148.164] + +2025-01-11T14:21:47.8801896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-11T14:21:51.3798295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-11T14:21:52.5068390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-11T14:21:52.5085143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-01-11T14:21:53.7747795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.163, 20.190.148.167] + +2025-01-11T14:21:54.0771693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::25, 2603:1047:1:168::1f, 2603:1047:1:168::12] + +2025-01-11T14:21:58.2621120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-11T14:22:07.1886283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.166, 20.190.144.163] + +2025-01-11T14:22:07.4804542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 2603:1047:1:168::25, 2603:1047:1:168::1f] + +2025-01-11T14:22:32.6725887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::45, 2620:1ec:bdf::74] + +2025-01-11T14:22:35.3645433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.2] + +2025-01-11T14:22:39.2801827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-01-11T14:22:56.8757958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.113.6] + +2025-01-11T14:23:02.2968709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.112.25] + +2025-01-11T14:23:15.9411180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.162, 20.190.148.166] + +2025-01-11T14:23:22.2886296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 2603:1047:1:168::26, 2603:1047:1:168::1c] + +2025-01-11T14:23:24.1094402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::45, 2620:1ec:bdf::74] + +2025-01-11T14:23:24.3395472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::45, 2620:1ec:bdf::74] + +2025-01-11T14:23:26.3766529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.138, 20.190.148.162] + +2025-01-11T14:23:26.3788465+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 2603:1047:1:168::26, 20.190.144.138] + +2025-01-11T14:23:35.5654735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::71, 2620:1ec:bdf::45] + +2025-01-11T14:23:57.8556093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.55.179.205] + +2025-01-11T14:24:02.1599814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::71, 2620:1ec:bdf::74] + +2025-01-11T14:24:18.4764391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-11T14:24:18.7236337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-11T14:24:20.3426963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.47, 13.107.246.73, 2620:1ec:bdf::45] + +2025-01-11T14:24:39.1271447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.25.14] + +2025-01-11T14:24:40.2560388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-11T14:24:40.8404740+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.121.10] + +2025-01-11T14:24:41.3656632+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 185.199.111.133] + +2025-01-11T14:24:47.9590505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-11T14:24:58.8067838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.113.6] + +2025-01-11T14:24:59.5313109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::71, 2620:1ec:bdf::45] + +2025-01-11T14:25:07.4866498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.5] + +2025-01-11T14:25:14.1146222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.28.1] + +2025-01-11T14:26:06.5018258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26] + +2025-01-11T14:26:06.7539720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-01-11T14:26:07.4865348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.113.4] + +2025-01-11T14:26:10.3995579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8002::154, 2606:50c0:8000::154] + +2025-01-11T14:26:16.7704837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.2] + +2025-01-11T14:26:40.9333803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.112, 23.62.212.144] + +2025-01-11T14:26:51.7562464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.45] + +2025-01-11T14:26:51.7576085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.47, 13.107.246.73, 13.107.246.41] + +2025-01-11T14:27:09.8541358+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::71, 13.107.246.35] + +2025-01-11T14:27:11.2474565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.45, 2620:1ec:bdf::73] + +2025-01-11T14:27:38.7225365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.35, 13.107.246.45] + +2025-01-11T14:27:39.9552682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::46, 13.107.246.45] + +2025-01-11T14:27:41.7472859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.2, 13.105.28.1] + +2025-01-11T14:27:46.3172432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.36, 20.190.141.32, 20.190.141.35] + +2025-01-11T14:27:49.2452165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.5] + +2025-01-11T14:27:58.9776776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.132, 20.190.166.67, 20.190.166.66] + +2025-01-11T14:28:06.2096590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-11T14:28:09.8817419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-01-11T14:28:15.4038853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.51, 13.107.246.35] + +2025-01-11T14:28:16.8843496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.18, 20.143.38.2] + +2025-01-11T14:28:25.8708984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.35, 13.107.246.51] + +2025-01-11T14:28:25.8780137+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.47, 13.107.246.41, 13.107.246.71] + +2025-01-11T14:28:55.1512956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 13.107.246.51, 2620:1ec:bdf::46] + +2025-01-11T14:29:02.6267904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.83, 23.62.212.97] + +2025-01-11T14:29:04.2415631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.144, 23.62.212.79] + +2025-01-11T14:29:06.2780727+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:29:09.7520091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.47, 13.107.246.41, 13.107.246.73] + +2025-01-11T14:29:17.9561296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1406::1, 2603:1046:1401::1] + +2025-01-11T14:29:55.3074488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-11T14:29:59.1038160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-01-11T14:29:59.2412706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T14:29:59.8615849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-11T14:30:02.0350352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.114.10] + +2025-01-11T14:30:03.5743699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T14:30:34.4968031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::46, 13.107.246.36] + +2025-01-11T14:30:36.0309602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.18, 20.143.38.0] + +2025-01-11T14:30:46.2917548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-01-11T14:30:46.9342544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.47, 13.107.246.73, 13.107.246.41] + +2025-01-11T14:30:55.3729830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.113.10] + +2025-01-11T14:31:07.1748785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.25] + +2025-01-11T14:31:07.8426339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.116.3] + +2025-01-11T14:31:09.0862128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.112.21] + +2025-01-11T14:31:09.5661261+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.41, 13.107.246.65] + +2025-01-11T14:31:12.1272862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.5] + +2025-01-11T14:31:15.5720565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.73, 2620:1ec:bdf::46] + +2025-01-11T14:31:28.2918559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.113.4] + +2025-01-11T14:31:41.4350602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.155, 23.62.212.144] + +2025-01-11T14:31:50.1276018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.114.10] + +2025-01-11T14:31:56.0966020+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-01-11T14:31:56.0973029+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-01-11T14:31:57.5217858+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.github.com/repos/Fndroid/clash_for_windows_pkg/releases/latest responded 404 in 670.6807 ms + +2025-01-11T14:32:01.2624225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.62.212.83] + +2025-01-11T14:32:41.2256543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.45] + +2025-01-11T14:32:41.2903827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.36, 13.107.246.45] + +2025-01-11T14:32:41.3645344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.73, 13.107.246.41] + +2025-01-11T14:32:43.6887904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.143.38.0, 20.143.38.2] + +2025-01-11T14:32:43.8769717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.32, 20.190.141.36, 20.190.141.38] + +2025-01-11T14:32:45.1708708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.74] + +2025-01-11T14:32:53.2850511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.3] + +2025-01-11T14:32:56.9186271+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:33:00.4853695+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:33:22.0372068+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:33:22.3331084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.83, 23.62.212.97, 23.55.179.205] + +2025-01-11T14:33:30.4527212+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:33:30.7370000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 23.55.179.206] + +2025-01-11T14:33:32.5884518+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:33:32.8470648+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.67, 20.190.166.132, 20.190.166.66] + +2025-01-11T14:33:53.0359108+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T14:33:56.2327827+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:33:57.5204985+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T14:33:57.5221732+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-11T14:33:57.5391330+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-11T14:33:57.5414704+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-01-11T14:33:57.9481271+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 396.9208 ms + +2025-01-11T14:33:57.9501671+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 397.3838 ms + +2025-01-11T14:33:57.9501617+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 396.6267 ms + +2025-01-11T14:33:57.9895896+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 438.4193 ms + +2025-01-11T14:33:59.0680391+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:33:59.9795141+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 107.4899 ms + +2025-01-11T14:34:00.6259265+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:34:02.9733886+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:34:05.6835695+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 97.583 ms + +2025-01-11T14:34:05.7127390+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 100.6709 ms + +2025-01-11T14:34:07.6078716+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 100.4424 ms + +2025-01-11T14:34:20.0751473+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 104.2772 ms + +2025-01-11T14:34:23.0334723+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/Default.json responded 404 in 1278.6176 ms + +2025-01-11T14:34:24.2383036+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:34:26.0613539+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 113.1371 ms + +2025-01-11T14:34:26.2072242+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 101.5146 ms + +2025-01-11T14:34:29.2901023+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:34:31.0819003+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unexpected end of stream + +2025-01-11T14:34:54.2774427+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:34:54.5137453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.114.25] + +2025-01-11T14:35:23.7617819+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:35:23.8938900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-01-11T14:35:28.1742552+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:35:28.3908820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.114.3] + +2025-01-11T14:35:54.1806452+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:35:54.4169060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.113.10] + +2025-01-11T14:36:16.1998836+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:36:16.4511175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.5] + +2025-01-11T14:36:18.6781460+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:36:18.9192373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-11T14:36:40.6857891+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:36:40.8288822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-01-11T14:37:02.7199529+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:37:02.7917250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.44, 13.107.246.40] + +2025-01-11T14:37:06.6920280+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:37:06.9449250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::69, 13.107.246.44] + +2025-01-11T14:37:07.9432929+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:37:08.3887366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.18, 20.135.6.11] + +2025-01-11T14:37:30.1139940+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:37:30.3695750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.59, 13.107.246.41] + +2025-01-11T14:37:53.9215480+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:38:00.3134213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-11T14:38:04.4386054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 23.62.212.83, 23.55.179.205] + +2025-01-11T14:38:13.1776121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 23.55.179.21] + +2025-01-11T14:38:15.9088076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.35, 20.190.141.38, 20.190.141.36] + +2025-01-11T14:38:19.3524243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-11T14:38:20.3260654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-11T14:38:25.8440110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-11T14:38:26.6952400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-01-11T14:38:27.9476899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 2606:4700::6811:180e] + +2025-01-11T14:38:28.3553184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T14:38:29.4153774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.112.25] + +2025-01-11T14:38:31.9830771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.5] + +2025-01-11T14:38:35.3704157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.9] + +2025-01-11T14:38:42.2524877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.143.38.0, 20.135.6.11] + +2025-01-11T14:38:43.2844696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.59, 13.107.246.65, 2620:1ec:bdf::44] + +2025-01-11T14:38:45.2743640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.132, 20.190.166.67, 20.190.166.66] + +2025-01-11T14:39:07.0864134+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:39:09.3621896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.59, 13.107.246.65, 13.107.246.69] + +2025-01-11T14:39:09.9282425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-11T14:39:18.0110613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.6] + +2025-01-11T14:39:20.1569103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.59, 13.107.246.69, 2620:1ec:bdf::44] + +2025-01-11T14:39:35.9703119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.162, 20.190.144.136] + +2025-01-11T14:39:42.1075741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::19, 2603:1047:1:168::1a, 20.190.148.166] + +2025-01-11T14:39:54.7941653+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.26, 140.82.114.26] + +2025-01-11T14:40:06.9931615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.40, 2620:1ec:bdf::66] + +2025-01-11T14:40:06.9984348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.143.38.0, 20.135.6.15] + +2025-01-11T14:40:33.9972286+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-11T14:40:35.5923023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.112.3] + +2025-01-11T14:40:44.8123672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.113.10] + +2025-01-11T14:41:03.1868905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.44, 13.107.246.40] + +2025-01-11T14:41:04.9850559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::69, 13.107.246.55] + +2025-01-11T14:41:05.5483304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-11T14:41:17.2518011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 20.26.156.210] + +2025-01-11T14:41:17.2532755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.40, 2620:1ec:bdf::66] + +2025-01-11T14:41:43.0108155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-11T14:41:44.1498169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8000::154] + +2025-01-11T14:41:45.2602496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.143.38.0, 20.135.6.2] + +2025-01-11T14:42:04.5732729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.40, 2620:1ec:bdf::73] + +2025-01-11T14:42:04.6354242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.45, 2620:1ec:bdf::46] + +2025-01-11T14:42:07.5030897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.45, 2620:1ec:bdf::69] + +2025-01-11T14:42:10.1153682+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-01-11T14:42:10.1172804+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T14:42:10.4727208+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 336.759 ms + +2025-01-11T14:42:10.5455090+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.8578 ms + +2025-01-11T14:42:24.0207655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.3] + +2025-01-11T14:42:31.1130660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-01-11T14:42:31.2447202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.69, 2620:1ec:bdf::71] + +2025-01-11T14:42:40.4605006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.45, 2620:1ec:bdf::46] + +2025-01-11T14:42:47.8777698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.162, 20.190.144.139] + +2025-01-11T14:42:49.6309010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.116.9] + +2025-01-11T14:42:55.0566873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::46, 2620:1ec:bdf::63] + +2025-01-11T14:42:56.0216838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.69, 2620:1ec:bdf::70] + +2025-01-11T14:42:56.0714921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.2, 20.135.6.15] + +2025-01-11T14:42:57.8479990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::73, 13.107.246.73] + +2025-01-11T14:43:02.3588799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-01-11T14:43:06.0078820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.83, 23.62.212.97, 23.55.179.12] + +2025-01-11T14:43:08.0509236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::44, 13.107.246.44] + +2025-01-11T14:43:08.2729566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::46, 2620:1ec:bdf::44] + +2025-01-11T14:43:13.5510788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.83, 23.62.212.97, 23.48.5.14] + +2025-01-11T14:43:15.3437755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 2600:140b:1a00:19::17dc:44af, 2600:140b:1a00:19::17dc:44aa] + +2025-01-11T14:43:15.6227507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.164, 20.190.144.161] + +2025-01-11T14:43:15.7113872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.161, 2603:1047:1:168::19] + +2025-01-11T14:43:17.4759660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::45, 13.107.246.46] + +2025-01-11T14:43:25.4211270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-11T14:43:30.8513813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-11T14:43:32.9211719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-11T14:43:33.3441431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.113.25] + +2025-01-11T14:43:34.1809767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.26.156.210, 140.82.114.5] + +2025-01-11T14:43:35.8882525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.163, 20.190.148.167] + +2025-01-11T14:43:42.1385766+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 140.82.116.9, 140.82.121.9] + +2025-01-11T14:43:42.8668192+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.112.22] + +2025-01-11T14:43:43.9015670+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.60, 13.107.246.44] + +2025-01-11T14:43:43.9787770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::44, 2620:1ec:bdf::63] + +2025-01-11T14:43:48.1203028+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.25] + +2025-01-11T14:43:49.8839305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.148.164, 20.190.144.161] + +2025-01-11T14:44:02.2019366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.60, 13.107.246.42] + +2025-01-11T14:44:05.2634943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::44, 13.107.246.55] + +2025-01-11T14:44:08.3393157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::44, 13.107.246.38] + +2025-01-11T14:44:45.3071046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.4] + +2025-01-11T14:44:49.9635288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 140.82.116.9, 140.82.113.9] + +2025-01-11T14:44:55.2537219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.112.26] + +2025-01-11T14:45:01.6812894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.164, 20.190.144.161] + +2025-01-11T14:45:09.0253376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.45, 2620:1ec:bdf::44] + +2025-01-11T14:45:10.2330659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.83, 23.62.212.97, 2600:140b:10::173d:fa08] + +2025-01-11T14:45:10.6465744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 2600:140b:10::173d:fa08, 2600:140b:1a00:19::17dc:44af] + +2025-01-11T14:45:36.6145742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 20.26.156.210] + +2025-01-11T14:46:01.3027124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 140.82.116.9, 140.82.121.9] + +2025-01-11T14:46:01.3071021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.112.6] + +2025-01-11T14:46:03.3758157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.42, 13.107.246.44] + +2025-01-11T14:46:17.8538468+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.5] + +2025-01-11T14:46:21.0883183+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-01-11T14:46:42.4449214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T14:46:42.4546486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T14:47:11.2090543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1406::1, 2603:1046:1401::1, 52.109.120.46] + +2025-01-11T14:47:11.8514134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::73, 13.107.246.73] + +2025-01-11T14:47:12.4192738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::73, 13.107.246.73] + +2025-01-11T14:47:12.4203184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.46, 2620:1ec:bdf::73] + +2025-01-11T14:47:32.5577989+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::73, 13.107.246.73] + +2025-01-11T14:50:53.4010296+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T14:50:59.2425000+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:50:59.4846497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-01-11T14:51:21.3297454+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:51:22.0752269+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:51:27.5549019+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:51:32.7812013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-01-11T14:51:54.4502518+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:52:16.2530089+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:52:16.8313118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 104.17.24.14] + +2025-01-11T14:52:44.1246725+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:52:45.2564113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-11T14:53:07.1144953+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:53:08.4491344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-01-11T14:53:36.2082766+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:53:36.7287878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.121.10] + +2025-01-11T14:53:58.5436442+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:53:58.9900287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-11T14:53:59.9793685+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:54:00.4385502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.112.3] + +2025-01-11T14:54:22.0929164+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:54:22.5639389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.112.25] + +2025-01-11T14:54:24.6049672+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:54:25.0440757+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-11T14:54:25.7625258+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:54:27.0807120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-01-11T14:54:44.4298392+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2403::] + +2025-01-11T14:55:04.3081337+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T14:55:04.5812523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.57, 2620:1ec:bdf::46] + +2025-01-11T14:55:26.2900570+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:55:48.4059057+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:55:48.6450060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 13.107.246.46, 2620:1ec:bdf::45] + +2025-01-11T14:56:10.4263119+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:56:10.7252814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.63, 13.107.246.73] + +2025-01-11T14:56:32.3747203+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:56:37.5561596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 40.90.133.102] + +2025-01-11T14:56:42.4535898+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:56:42.9044264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1406::7] + +2025-01-11T14:56:46.5267216+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:56:46.9603228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-01-11T14:57:08.6757212+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T14:57:10.0515094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.83, 23.62.212.97, 23.48.5.14] + +2025-01-11T14:58:49.9356191+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T14:58:51.3126293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.55.179.6, 23.55.179.21] + +2025-01-11T14:58:59.2824008+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.87, 40.126.35.84, 40.126.35.64] + +2025-01-11T14:59:05.1570591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.20, 2603:1047:1:168::28, 2603:1047:1:168::1c] + +2025-01-11T14:59:19.5442079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-01-11T14:59:33.1902592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 104.17.25.14] + +2025-01-11T14:59:34.9415601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T14:59:45.6609340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10] + +2025-01-11T14:59:46.7977052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.113.3] + +2025-01-11T14:59:48.9373247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.25] + +2025-01-11T14:59:50.3455351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.21] + +2025-01-11T14:59:51.4862198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1406::1, 2603:1046:1401::1, 52.109.120.46] + +2025-01-11T14:59:53.3856635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-01-11T14:59:54.0180040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.73, 2620:1ec:bdf::69] + +2025-01-11T14:59:55.0329648+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 40.90.130.204, 20.135.4.170] + +2025-01-11T14:59:55.7651463+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.45, 2620:1ec:bdf::60] + +2025-01-11T14:59:56.5043403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::53, 2620:1ec:bdf::61] + +2025-01-11T15:00:02.7920969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 52.109.44.112] + +2025-01-11T15:00:03.9823639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.13] + +2025-01-11T15:00:05.4784119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.83, 23.62.212.97, 23.199.47.149] + +2025-01-11T15:00:14.0589664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.199.47.149, 23.199.47.133] + +2025-01-11T15:00:20.3394631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.10] + +2025-01-11T15:00:21.7275690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.57, 2620:1ec:bdf::60] + +2025-01-11T15:00:22.0888678+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 13.107.246.44, 13.107.246.74] + +2025-01-11T15:00:23.4216138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-01-11T15:00:23.6077436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.72.90.68, 23.72.90.76] + +2025-01-11T15:00:30.1259612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-01-11T15:00:38.8311025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-11T15:00:49.7921672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.74, 2620:1ec:bdf::53] + +2025-01-11T15:00:49.8631992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::69, 13.107.246.73] + +2025-01-11T15:00:49.9273258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.57, 2620:1ec:bdf::60, 2620:1ec:bdf::73] + +2025-01-11T15:00:56.4932439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.74.50, 40.90.130.204] + +2025-01-11T15:00:56.6680290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::73, 2620:1ec:bdf::69] + +2025-01-11T15:01:01.0969147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.32, 20.190.141.35, 20.190.141.34] + +2025-01-11T15:01:11.4221252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.44, 13.107.246.74] + +2025-01-11T15:01:33.3292049+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:01:38.6022764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.6] + +2025-01-11T15:02:37.9871292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::73, 2620:1ec:bdf::44] + +2025-01-11T15:02:47.4006159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.13] + +2025-01-11T15:02:49.3174400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 2600:140b:2c00:77::172e:9b85, 23.72.90.68] + +2025-01-11T15:03:07.9141838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.83, 23.62.212.97, 2600:1406:4200:3::1748:5a91] + +2025-01-11T15:03:13.2909644+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->127.0.0.1 + +2025-01-11T15:03:13.2932405+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->::1 + +2025-01-11T15:03:16.5003426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.167, 20.190.148.164] + +2025-01-11T15:03:34.5099752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.112.9] + +2025-01-11T15:03:38.7749199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 2603:1046:1406::5] + +2025-01-11T15:03:58.4483505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 2600:140b:2c00:77::172e:9b85] + +2025-01-11T15:03:58.8862036+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.167, 20.190.144.163] + +2025-01-11T15:04:01.2972641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3] + +2025-01-11T15:04:05.6987195+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T15:04:05.7029733+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-01-11T15:04:06.0489305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-01-11T15:04:06.1886793+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 470.9137 ms + +2025-01-11T15:04:06.1963345+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 460.3745 ms + +2025-01-11T15:04:13.6521259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.167, 20.190.144.161] + +2025-01-11T15:04:16.1633940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-01-11T15:04:16.2283616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-11T15:04:21.2438887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902] + +2025-01-11T15:04:21.2465228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-01-11T15:04:32.7817490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-01-11T15:04:35.5818591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.21, 140.82.114.21] + +2025-01-11T15:04:41.1538262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8002::154] + +2025-01-11T15:04:46.7034884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 13.105.74.50] + +2025-01-11T15:04:51.2794178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.73, 2620:1ec:bdf::71] + +2025-01-11T15:04:57.2910005+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-11T15:04:57.2939712+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:04:57.3057948+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-11T15:04:57.3074958+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:04:57.3215731+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-01-11T15:04:57.3228774+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-11T15:04:57.5377612+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 197.3147 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T15:04:58.9331543+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 1607.6089 ms + +2025-01-11T15:04:59.0492220+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-01-11T15:04:59.0510130+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:04:59.2269503+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 1689.4698 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T15:05:15.0598446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.114.5] + +2025-01-11T15:05:16.6513843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T15:05:17.7998843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-11T15:05:18.5469782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-01-11T15:05:19.2668406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.26] + +2025-01-11T15:05:20.5363386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-01-11T15:05:23.5018973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.74, 2620:1ec:bdf::73] + +2025-01-11T15:05:23.7719520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 2603:1046:1404::1] + +2025-01-11T15:05:30.7016164+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.113.3] + +2025-01-11T15:05:31.0277244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-11T15:05:31.0305959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.74, 13.107.246.44] + +2025-01-11T15:05:31.5873483+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.52.169] + +2025-01-11T15:05:31.7643528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 13.107.246.73] + +2025-01-11T15:05:31.7653200+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 2620:1ec:bdf::44] + +2025-01-11T15:05:40.9479874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.113.25] + +2025-01-11T15:05:53.3882327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::71] + +2025-01-11T15:05:53.4525649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 2620:1ec:bdf::65] + +2025-01-11T15:05:53.4542831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 2620:1ec:bdf::71] + +2025-01-11T15:06:02.3939241+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@8.8.8.8:53->你的主机中的软件中止了一个已建立的连接。 + +2025-01-11T15:06:05.5973449+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T15:06:06.4618400+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 835.5997 ms + +2025-01-11T15:06:06.5754080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 2603:1047:1:168::2c, 2603:1047:1:168::1b] + +2025-01-11T15:06:11.5514136+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->127.0.0.1 + +2025-01-11T15:06:18.9034146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.135.6.7] + +2025-01-11T15:06:37.1059805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.111, 23.62.212.83, 23.62.212.76] + +2025-01-11T15:06:39.9381012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-11T15:06:43.9767856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-01-11T15:06:55.6831571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::65, 13.107.246.73] + +2025-01-11T15:07:00.1554605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.114.26] + +2025-01-11T15:07:44.8286064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.116.9] + +2025-01-11T15:07:45.3842322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.44] + +2025-01-11T15:07:45.7158310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.36, 13.107.246.74, 2620:1ec:bdf::65] + +2025-01-11T15:07:45.7781595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 13.107.246.74, 2620:1ec:bdf::65] + +2025-01-11T15:07:49.2866245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-01-11T15:07:51.3904290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 2603:1046:1406::2, 52.109.52.0] + +2025-01-11T15:07:52.0937318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 2.16.168.100] + +2025-01-11T15:08:06.7099193+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 52.109.44.112] + +2025-01-11T15:08:20.6980386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.164, 20.190.148.162] + +2025-01-11T15:08:20.9634799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 20.190.148.164, 2603:1047:1:168::2c] + +2025-01-11T15:08:37.6238367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.74, 13.107.246.73] + +2025-01-11T15:08:39.0446040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 2603:1046:1406::5] + +2025-01-11T15:09:10.1006780+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.167, 20.190.148.164] + +2025-01-11T15:09:14.6183077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.166, 20.190.148.165] + +2025-01-11T15:09:17.7129374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.148.165, 20.190.144.160] + +2025-01-11T15:09:19.1307005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[] + +2025-01-11T15:09:19.3684453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18] + +2025-01-11T15:09:19.3784319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18] + +2025-01-11T15:09:19.3794874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18] + +2025-01-11T15:09:21.0029659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.166, 20.190.148.165] + +2025-01-11T15:09:21.6888523+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T15:09:22.0443543+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 323.4954 ms + +2025-01-11T15:09:22.1172807+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.6419 ms + +2025-01-11T15:09:23.1436952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2] + +2025-01-11T15:09:32.4633816+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.5385 ms + +2025-01-11T15:09:32.5317199+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.497 ms + +2025-01-11T15:09:35.8299633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:190e] + +2025-01-11T15:09:36.9126405+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8000::154, 185.199.111.133, 185.199.109.133] + +2025-01-11T15:09:43.0565526+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.3435 ms + +2025-01-11T15:09:43.1209041+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.4686 ms + +2025-01-11T15:09:51.2895514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T15:09:53.7371562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8000::154, 185.199.111.133] + +2025-01-11T15:09:54.5167710+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.57, 13.107.246.40, 13.107.246.74] + +2025-01-11T15:09:55.7906978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 13.107.246.53, 13.107.246.74] + +2025-01-11T15:09:56.2987460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 20.135.6.9] + +2025-01-11T15:10:02.8372674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.0, 52.109.44.108] + +2025-01-11T15:10:08.9599960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.113.3] + +2025-01-11T15:10:17.5529857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-01-11T15:10:19.2592507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-01-11T15:10:20.3256879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.25] + +2025-01-11T15:10:21.5939906+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1036:2405::1, 52.109.89.117] + +2025-01-11T15:10:21.5987074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T15:10:24.4156490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.36, 13.107.246.74, 13.107.246.44] + +2025-01-11T15:10:24.4172319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.40] + +2025-01-11T15:10:24.4184885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.64, 13.107.246.53] + +2025-01-11T15:10:25.2815700+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.56.130] + +2025-01-11T15:10:31.7971497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.113.3] + +2025-01-11T15:10:32.0256810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-11T15:10:32.3924427+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 52.109.56.129] + +2025-01-11T15:10:36.4857332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.246.64] + +2025-01-11T15:10:47.5647850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-01-11T15:10:55.7901804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 13.107.246.74, 13.107.246.57] + +2025-01-11T15:10:55.7912548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.246.73] + +2025-01-11T15:11:16.0508711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.40] + +2025-01-11T15:11:20.7007107+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->127.0.0.1 + +2025-01-11T15:11:21.1085806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 20.135.6.2] + +2025-01-11T15:11:25.6316113+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:11:25.6393460+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:11:25.6571146+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-11T15:11:25.8791553+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 204.368 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T15:11:26.0484988+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 392.0735 ms + +2025-01-11T15:11:26.1524986+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:11:26.5454079+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 666.356 ms + +2025-01-11T15:11:26.5594301+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T15:11:26.7847053+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 204.3487 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T15:11:27.1043196+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 319.6954 ms + +2025-01-11T15:11:34.0211863+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:11:34.6658978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.166, 20.190.144.162] + +2025-01-11T15:11:40.3049469+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-11T15:11:40.3164015+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-01-11T15:11:41.4658887+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/ip7z/7zip/releases/download/24.09/7z2409-x64.exe responded 302 in 582.9028 ms + +2025-01-11T15:11:41.4757518+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +objects.githubusercontent.com->127.0.0.1 + +2025-01-11T15:11:41.4896026+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +objects.githubusercontent.com->127.0.0.1 + +2025-01-11T15:11:42.1164677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.76, 23.62.212.111, 23.62.212.83] + +2025-01-11T15:11:43.8658493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T15:12:02.2390615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.112.26] + +2025-01-11T15:12:14.8826249+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://objects.githubusercontent.com/github-production-release-asset-2e65be/466446150/1645817e-3677-4207-93ff-e62de7e147be responded 200 in 33017.0336 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T15:12:46.2102650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.73] + +2025-01-11T15:12:56.7245582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.52.0] + +2025-01-11T15:12:57.7171388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.7] + +2025-01-11T15:13:03.2232899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.112.174] + +2025-01-11T15:13:15.3785665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.76, 23.62.212.111, 23.62.212.97] + +2025-01-11T15:13:26.0661570+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.166, 20.190.148.164] + +2025-01-11T15:13:29.4917583+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-01-11T15:13:38.6714918+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.44] + +2025-01-11T15:13:38.9398090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.2] + +2025-01-11T15:14:22.1763795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.162, 20.190.148.164] + +2025-01-11T15:14:22.7635213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.164, 20.190.144.138] + +2025-01-11T15:14:33.2464028+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T15:14:33.6555349+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 377.3873 ms + +2025-01-11T15:14:33.7264941+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.0373 ms + +2025-01-11T15:14:52.4743455+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.0108 ms + +2025-01-11T15:14:52.5405888+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.2085 ms + +2025-01-11T15:14:53.4853839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-11T15:14:54.7795263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T15:14:54.7821869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T15:15:03.6980735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T15:15:11.3771979+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.9142 ms + +2025-01-11T15:15:11.4436353+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.6612 ms + +2025-01-11T15:15:12.1306374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.116.9] + +2025-01-11T15:15:27.7237637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-01-11T15:15:28.5503422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.73] + +2025-01-11T15:15:29.0217442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.26] + +2025-01-11T15:15:29.7084316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.112.22, 140.82.114.22] + +2025-01-11T15:15:29.7100745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.64] + +2025-01-11T15:15:34.3248538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.4] + +2025-01-11T15:15:34.5580997+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.114.9] + +2025-01-11T15:15:35.3456046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-01-11T15:15:37.5413395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.45] + +2025-01-11T15:15:45.1141218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.113.25] + +2025-01-11T15:15:56.9147330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.40] + +2025-01-11T15:15:56.9191069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.46] + +2025-01-11T15:15:57.1937847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.64, 13.107.246.45] + +2025-01-11T15:16:11.8600019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 13.105.74.50] + +2025-01-11T15:16:18.0983898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.45] + +2025-01-11T15:16:19.8308954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.162, 20.190.148.164] + +2025-01-11T15:16:23.1947753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.9] + +2025-01-11T15:16:25.6189057+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->127.0.0.1 + +2025-01-11T15:16:39.3716870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 13.105.74.50] + +2025-01-11T15:16:39.4924338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.164, 20.190.148.163] + +2025-01-11T15:16:39.4943078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.164, 20.190.144.166] + +2025-01-11T15:16:52.0643981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.50, 13.105.28.1] + +2025-01-11T15:16:52.8924211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.97, 184.27.185.94, 184.27.185.84] + +2025-01-11T15:17:00.4719171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.8.88] + +2025-01-11T15:17:12.0287360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.74.50] + +2025-01-11T15:17:12.1914675+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 366.6828 ms + +2025-01-11T15:17:12.2136426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 23.219.78.80] + +2025-01-11T15:17:12.2597053+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.2819 ms + +2025-01-11T15:17:14.5528890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.6] + +2025-01-11T15:17:45.2418211+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:17:45.2503731+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:17:45.2662794+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-11T15:17:45.4802400+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 197.6836 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T15:17:45.7533711+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 486.2935 ms + +2025-01-11T15:17:45.8781441+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:17:46.4677573+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 988.174 ms + +2025-01-11T15:17:46.4757360+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T15:17:46.7036427+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 200.3815 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T15:17:46.7166674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.44.108] + +2025-01-11T15:17:47.1569530+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 453.9004 ms + +2025-01-11T15:17:47.9531579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.74, 13.107.246.45] + +2025-01-11T15:17:53.5879737+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:17:53.6933047+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 97.5868 ms + +2025-01-11T15:17:53.7834595+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:17:53.8072017+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 198.7323 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T15:17:54.0547016+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 245.7998 ms + +2025-01-11T15:17:54.2872707+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 209.3697 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T15:17:54.5840462+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 295.4016 ms + +2025-01-11T15:18:16.2857747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.83, 23.62.212.97, 184.27.185.94] + +2025-01-11T15:18:16.5322823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 23.199.47.133] + +2025-01-11T15:18:23.0045035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.163, 20.190.148.166] + +2025-01-11T15:18:23.4406551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.166, 20.190.144.164] + +2025-01-11T15:18:56.6669641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.6] + +2025-01-11T15:18:58.2476072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 23.55.236.141] + +2025-01-11T15:19:06.8350555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 23.219.78.47] + +2025-01-11T15:19:22.0523815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.6] + +2025-01-11T15:19:22.2789003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.10] + +2025-01-11T15:19:25.0777828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.13, 52.109.124.4] + +2025-01-11T15:19:30.3885081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 184.27.185.93] + +2025-01-11T15:19:30.6615843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.7] + +2025-01-11T15:19:31.2561320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.161, 20.190.144.164] + +2025-01-11T15:19:31.6639414+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.161, 20.190.148.162] + +2025-01-11T15:19:52.3945016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-11T15:19:52.3979226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-11T15:19:52.4002048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-01-11T15:19:55.7037877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T15:19:55.7093178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T15:19:55.9753612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T15:19:57.1814981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.45] + +2025-01-11T15:19:57.9996960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.45] + +2025-01-11T15:20:01.5817745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.74.50] + +2025-01-11T15:20:11.9427933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.3] + +2025-01-11T15:20:16.3418279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.74, 13.107.246.43] + +2025-01-11T15:20:21.2706499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-01-11T15:20:23.8299844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.67, 20.190.166.132, 20.190.166.66] + +2025-01-11T15:20:28.8668170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-01-11T15:20:34.8740593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.112.26] + +2025-01-11T15:20:35.2846787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-01-11T15:20:35.3506853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.43, 13.107.246.71] + +2025-01-11T15:20:35.3515919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.46, 13.107.246.45] + +2025-01-11T15:20:35.8889103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.40, 13.107.246.45] + +2025-01-11T15:20:39.6935050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 20.233.83.150] + +2025-01-11T15:20:40.1997103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.45, 13.107.246.74] + +2025-01-11T15:20:45.6284725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.112.25] + +2025-01-11T15:20:59.9273438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.83, 23.62.212.97] + +2025-01-11T15:21:03.3444389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.43, 13.107.246.73] + +2025-01-11T15:21:03.6387252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.45] + +2025-01-11T15:21:03.9230108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.40] + +2025-01-11T15:21:04.3243564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.112, 23.62.212.144] + +2025-01-11T15:21:29.8993975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.28.1] + +2025-01-11T15:21:34.4415037+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:21:34.4446800+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->127.0.0.1 + +2025-01-11T15:21:44.7115852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.161, 20.190.144.162] + +2025-01-11T15:21:50.6610109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-01-11T15:22:08.6786738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.74.50] + +2025-01-11T15:22:09.8005290+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T15:22:10.1546083+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 337.3266 ms + +2025-01-11T15:22:10.2449825+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.0374 ms + +2025-01-11T15:22:12.5073255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-01-11T15:22:15.9685478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.113.26] + +2025-01-11T15:22:46.5861185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.12.13] + +2025-01-11T15:23:11.7053052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.97, 23.62.212.83] + +2025-01-11T15:23:39.3245614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-01-11T15:23:40.1673058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.53, 13.107.246.73] + +2025-01-11T15:23:44.8663597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.116.9] + +2025-01-11T15:23:48.6911401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.7] + +2025-01-11T15:23:55.1998226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.42] + +2025-01-11T15:24:04.8738445+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:24:08.8293099+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:24:08.8364068+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:24:08.8463256+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-11T15:24:09.0597761+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 193.0776 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T15:24:09.2190624+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 367.8118 ms + +2025-01-11T15:24:09.3217478+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:24:09.6769515+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 616.7314 ms + +2025-01-11T15:24:09.6905210+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T15:24:09.9294756+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 206.1539 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T15:24:10.3175844+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 388.3414 ms + +2025-01-11T15:24:17.4344400+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:24:17.5542754+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 111.8348 ms + +2025-01-11T15:24:17.6468995+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 200 in 196.5744 ms + +2025-01-11T15:24:17.6633186+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:24:17.9019425+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 250.5056 ms + +2025-01-11T15:24:18.1239423+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 404 in 188.3442 ms + +2025-01-11T15:24:18.3627543+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 235.9436 ms + +2025-01-11T15:24:20.4628593+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:24:30.0398458+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:24:51.3585180+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:24:53.9677570+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:24:54.0603996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.124.13] + +2025-01-11T15:24:54.8812592+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:24:55.1520461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.7, 40.90.130.204] + +2025-01-11T15:25:18.7348696+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:25:20.1822521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.155, 23.62.212.144] + +2025-01-11T15:25:41.5104794+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:26:03.4880232+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:26:09.1605074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.67, 20.190.166.68, 20.190.166.132] + +2025-01-11T15:26:16.0862622+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->127.0.0.1 + +2025-01-11T15:26:16.4665217+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/v2.1/federationProvider responded 200 in 371.1982 ms + +2025-01-11T15:26:16.8030260+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T15:26:19.8445612+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 3012.2822 ms + +2025-01-11T15:26:21.0604411+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 937.3961 ms + +2025-01-11T15:26:40.1280462+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:26:40.6575474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.144.136, 20.190.148.164] + +2025-01-11T15:27:03.4399601+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:27:15.2822597+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->127.0.0.1 + +2025-01-11T15:27:19.0447732+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://clientnotification-userprodscus1-1.servicebus.windows.net/$servicebus/websocket responded 101 in 1268.6626 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T15:27:25.3257959+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:27:27.1183655+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:27:29.3964092+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:27:52.7106026+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T15:27:53.0239994+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:27:53.1301551+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 403.3228 ms + +2025-01-11T15:27:53.2072399+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.8254 ms + +2025-01-11T15:28:05.3225211+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.8146 ms + +2025-01-11T15:28:05.3926745+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.4372 ms + +2025-01-11T15:28:20.2178934+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T15:28:46.5521551+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:28:49.9767651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.12.13] + +2025-01-11T15:28:50.7654899+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:28:51.0964027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-11T15:28:59.2023311+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:28:59.3764949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-11T15:29:13.5050460+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:29:13.5187501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-11T15:29:17.1714827+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:29:18.6783192+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-01-11T15:29:21.4889085+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:29:26.1515590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-01-11T15:29:36.0744001+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:29:36.4459197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 20.233.83.150] + +2025-01-11T15:29:39.9848343+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T15:29:40.3539233+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 357.5144 ms + +2025-01-11T15:29:40.4250873+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.3686 ms + +2025-01-11T15:29:58.3385463+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:29:58.7533252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-01-11T15:30:07.3495330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.113.25] + +2025-01-11T15:30:08.8515808+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:30:09.2692097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-01-11T15:30:12.2943136+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:30:13.3190454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.42] + +2025-01-11T15:30:15.7451622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.5] + +2025-01-11T15:30:19.6606547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.43, 13.107.246.73] + +2025-01-11T15:30:27.2467742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.46] + +2025-01-11T15:30:28.5945357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.124.191] + +2025-01-11T15:30:30.9694741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.5, 20.135.6.11] + +2025-01-11T15:30:32.4164465+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.62.212.97] + +2025-01-11T15:30:37.5572844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.155, 23.62.212.144] + +2025-01-11T15:30:47.3465660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.136, 20.190.144.162] + +2025-01-11T15:31:03.1918916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.89.117] + +2025-01-11T15:31:07.3580178+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:31:07.6261886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.113.22] + +2025-01-11T15:31:11.8252600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.68, 20.190.166.67, 20.190.166.131] + +2025-01-11T15:31:11.9462426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 20.190.141.36, 20.190.141.39] + +2025-01-11T15:31:24.2866396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.116.4, 20.205.243.166, 140.82.116.3] + +2025-01-11T15:31:24.5835652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.5] + +2025-01-11T15:31:25.1701444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.44.108] + +2025-01-11T15:31:25.1726862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.5, 40.90.133.102] + +2025-01-11T15:31:37.0781525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.5, 20.135.6.15] + +2025-01-11T15:31:40.5502721+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:31:41.0032212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.113.9] + +2025-01-11T15:32:16.1570826+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.6] + +2025-01-11T15:32:17.1615648+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.71] + +2025-01-11T15:32:24.5034376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.165, 20.190.148.166] + +2025-01-11T15:32:25.8013851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.162, 20.190.144.161] + +2025-01-11T15:32:28.8081025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-01-11T15:32:46.6624664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.35, 20.190.141.38, 20.190.141.36] + +2025-01-11T15:33:58.7395138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133] + +2025-01-11T15:33:58.7416125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133] + +2025-01-11T15:34:06.0491621+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-11T15:34:06.2016406+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T15:34:06.4819693+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 399.8143 ms + +2025-01-11T15:34:06.6201460+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 398.517 ms + +2025-01-11T15:34:07.9360401+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 1710.4089 ms + +2025-01-11T15:34:14.7613503+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-01-11T15:34:20.5981669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.59] + +2025-01-11T15:34:24.4852884+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 720.634 ms + +2025-01-11T15:34:27.1484058+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 108.6794 ms + +2025-01-11T15:34:27.2956422+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 106.1197 ms + +2025-01-11T15:34:34.7695298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.44] + +2025-01-11T15:34:35.9420663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.52.0] + +2025-01-11T15:34:36.5790759+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.56.130] + +2025-01-11T15:34:39.9581756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.166, 20.190.148.162] + +2025-01-11T15:34:46.8330194+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@8.8.8.8:53->Unexpected end of stream + +2025-01-11T15:34:46.8443221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133] + +2025-01-11T15:35:01.1682893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.113.9, 140.82.112.10] + +2025-01-11T15:35:18.0784833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.112.6, 20.205.243.168, 140.82.121.5] + +2025-01-11T15:35:24.0290260+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-11T15:35:24.4064443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-01-11T15:35:26.8699069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.59, 13.107.246.64] + +2025-01-11T15:35:28.2732017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-01-11T15:35:31.1835254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.114.26] + +2025-01-11T15:35:34.0305802+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@8.8.8.8:53->Unexpected end of stream + +2025-01-11T15:35:51.5666148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.21] + +2025-01-11T15:35:59.3646670+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.144, 23.62.212.155] + +2025-01-11T15:36:08.3457427+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.15, 13.105.74.50] + +2025-01-11T15:36:14.4588716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.169, 2.22.89.28, 2.22.89.40] + +2025-01-11T15:36:25.2384935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.144.160, 40.126.35.151] + +2025-01-11T15:36:33.6995761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.35, 20.190.141.37, 20.190.141.39] + +2025-01-11T15:36:47.9051701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.112.10, 140.82.113.9] + +2025-01-11T15:36:49.2084892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.112.6, 140.82.121.6, 20.205.243.168] + +2025-01-11T15:36:50.1174758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.71, 13.107.246.35] + +2025-01-11T15:36:51.0166955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.169, 96.7.129.71, 96.7.129.57] + +2025-01-11T15:36:56.6562899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.46, 13.107.246.44] + +2025-01-11T15:36:59.7632263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.64, 13.107.246.59] + +2025-01-11T15:37:20.0306493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.5, 20.135.6.15] + +2025-01-11T15:37:22.2498666+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T15:37:27.8708951+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 5589.2331 ms + +2025-01-11T15:37:28.4040138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.35, 13.107.246.74] + +2025-01-11T15:37:28.8595849+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 6371.4659 ms + +2025-01-11T15:37:29.1194342+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-11T15:37:29.1214590+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->127.0.0.1 + +2025-01-11T15:37:29.1448336+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-01-11T15:37:29.7858288+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 552.4749 ms + +2025-01-11T15:37:30.0666220+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 7785.2321 ms + +2025-01-11T15:37:30.0927124+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 623.9384 ms + +2025-01-11T15:37:30.2480104+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/locations/recent responded 200 in 609.1022 ms + +2025-01-11T15:37:30.3945133+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/docs/recent responded 200 in 626.547 ms + +2025-01-11T15:37:31.0117855+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1245.4574 ms + +2025-01-11T15:37:31.1974741+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/servicemanager/userconnected responded 200 in 2023.3766 ms + +2025-01-11T15:37:31.5068410+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1167.9649 ms + +2025-01-11T15:37:34.0593131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.64, 13.107.246.51] + +2025-01-11T15:37:34.5055712+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 2546.5849 ms + +2025-01-11T15:38:02.1421585+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@8.8.8.8:53->Unexpected end of stream + +2025-01-11T15:38:28.3025695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[96.7.129.71, 96.7.129.57, 2.22.89.28] + +2025-01-11T15:38:33.2052249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.59, 13.107.246.64] + +2025-01-11T15:39:44.0890707+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:40:13.8817989+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:40:16.2504266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-11T15:40:18.0213633+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:40:19.5513041+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:40:21.2366140+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-11T15:42:19.6117196+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T15:42:19.6418516+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-11T15:42:20.3944248+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 739.6944 ms + +2025-01-11T15:42:20.6253581+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 964.1154 ms + +2025-01-11T15:42:20.6335683+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 977.9503 ms + +2025-01-11T15:42:20.7586757+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 1103.7357 ms + +2025-01-11T15:42:22.5411662+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 167.4477 ms + +2025-01-11T15:42:22.5452704+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T15:42:24.8600906+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T15:42:25.4985597+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 2934.7462 ms + +2025-01-11T15:42:26.8134839+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1901.5104 ms + +2025-01-11T15:42:27.9435773+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 171.1101 ms + +2025-01-11T15:42:28.1631953+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 171.0627 ms + +2025-01-11T15:42:30.8898774+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 164.2203 ms + +2025-01-11T15:43:39.3771175+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:43:39.5832865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-11T15:43:40.6611228+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:43:41.0657897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10] + +2025-01-11T15:44:02.7045117+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:44:03.9945499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-01-11T15:44:09.3367042+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:44:09.5785547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.35, 13.107.246.40] + +2025-01-11T15:44:14.0309021+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-01-11T15:44:14.9315242+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 884.7112 ms + +2025-01-11T15:44:31.4049015+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:44:31.8384089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-11T15:44:53.9663173+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:44:54.4055870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.6.4] + +2025-01-11T15:45:04.2418612+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:45:04.6381198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6] + +2025-01-11T15:45:15.7565038+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T15:45:16.0969407+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 322.877 ms + +2025-01-11T15:45:16.1655810+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.3967 ms + +2025-01-11T15:45:26.2381785+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:45:26.6486070+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-01-11T15:45:30.0825146+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.5974 ms + +2025-01-11T15:45:30.1537942+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.7478 ms + +2025-01-11T15:45:46.7316641+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T15:45:47.1640070+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.8.36] + +2025-01-11T15:45:57.7381945+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:45:58.1645576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.212.62.79] + +2025-01-11T15:46:01.2970502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.114.26] + +2025-01-11T15:46:14.4615229+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:46:14.7073061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.47, 13.107.246.73] + +2025-01-11T15:47:38.7123880+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:47:38.9615939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.66, 13.107.246.73] + +2025-01-11T15:47:40.2146171+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:47:40.6436565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-01-11T15:48:01.4046772+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:48:01.8110854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.56.130, 52.109.112.174, 52.109.0.142] + +2025-01-11T15:48:02.9150819+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:48:03.3437612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 40.90.133.102, 40.90.130.207] + +2025-01-11T15:48:04.3816314+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:48:04.8343593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.208.31.133] + +2025-01-11T15:48:26.6039845+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:48:27.0689310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.144, 20.190.148.164, 20.190.148.167] + +2025-01-11T15:48:49.0227024+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:48:49.5084477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.139, 20.190.148.165] + +2025-01-11T15:48:51.5308609+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:48:53.0818413+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:49:15.3323318+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T15:49:20.3539718+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:49:21.2094137+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T15:49:33.3762252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-01-11T15:49:44.0429345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165] + +2025-01-11T15:49:49.0015604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6] + +2025-01-11T15:49:54.6086090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.4] + +2025-01-11T15:49:56.5295879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T15:50:02.0595020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.40] + +2025-01-11T15:50:06.9830413+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T15:50:08.6988174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T15:50:10.6455497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.112.25] + +2025-01-11T15:50:11.8694296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.56.130, 52.109.0.142] + +2025-01-11T15:50:13.4205970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-01-11T15:50:19.8071975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.28.47] + +2025-01-11T15:50:20.7657636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 40.90.130.207, 40.90.133.99] + +2025-01-11T15:50:26.6286091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.67, 13.107.246.74] + +2025-01-11T15:50:27.3415981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.74] + +2025-01-11T15:50:36.2400251+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.124.13] + +2025-01-11T15:50:42.3741280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 40.126.35.144, 20.190.148.167] + +2025-01-11T15:50:43.9290569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.137] + +2025-01-11T15:50:48.8519046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.21] + +2025-01-11T15:50:50.6816920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 40.90.133.97, 40.90.130.207] + +2025-01-11T15:50:51.4081899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.56.130] + +2025-01-11T15:51:04.5279915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.113.26] + +2025-01-11T15:51:07.3998492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.219.78.69, 23.219.78.75, 23.62.212.150] + +2025-01-11T15:51:29.2983236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.114.26] + +2025-01-11T15:51:55.4321965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 40.90.133.102, 40.90.133.97] + +2025-01-11T15:52:01.3767667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-01-11T15:52:02.5083336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.66] + +2025-01-11T15:52:21.6934520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-01-11T15:52:22.5484416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.49, 40.90.133.102] + +2025-01-11T15:52:27.5715835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.70, 13.107.246.73] + +2025-01-11T15:52:40.0836268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.246.66] + +2025-01-11T15:52:40.0854450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.40] + +2025-01-11T15:52:41.1784163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.219.78.69, 23.219.78.75, 23.41.4.198] + +2025-01-11T15:52:43.0691588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-01-11T15:52:44.3019839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.191, 52.109.124.4] + +2025-01-11T15:52:48.6290937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9] + +2025-01-11T15:53:04.0561394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.49, 40.90.133.97] + +2025-01-11T15:53:05.8104114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 23.208.31.133] + +2025-01-11T15:53:08.0676615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.5, 13.105.74.49] + +2025-01-11T15:53:13.6998133+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T15:53:13.7205594+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-11T15:53:14.1306819+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 395.936 ms + +2025-01-11T15:53:14.4405822+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 706.015 ms + +2025-01-11T15:53:14.4452126+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 710.0523 ms + +2025-01-11T15:53:14.4460602+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 709.3714 ms + +2025-01-11T15:53:20.6042654+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 184.7043 ms + +2025-01-11T15:53:23.0391304+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 170.8839 ms + +2025-01-11T15:53:23.5522596+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 184.1471 ms + +2025-01-11T15:53:28.4690463+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 1360.1495 ms + +2025-01-11T15:53:28.8872009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.165, 20.190.144.163] + +2025-01-11T15:53:29.1654781+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.164, 20.190.144.161] + +2025-01-11T15:53:31.5107259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.5] + +2025-01-11T15:53:37.5673012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-11T15:53:50.5461058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.165, 20.190.148.166] + +2025-01-11T15:53:53.6674875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.166, 20.190.144.161] + +2025-01-11T15:53:56.0980860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.165, 20.190.144.139] + +2025-01-11T15:54:08.5186427+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.112.3] + +2025-01-11T15:54:41.2146090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117] + +2025-01-11T15:54:52.3050048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.59, 13.107.246.67, 13.107.246.74] + +2025-01-11T15:54:52.8297419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.25] + +2025-01-11T15:54:54.1477804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-01-11T15:54:55.4387021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[193.246.48.42, 23.219.78.69, 23.219.78.75] + +2025-01-11T15:55:09.6438041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 20.26.156.216] + +2025-01-11T15:55:11.3740130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-11T15:55:11.8187221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-11T15:55:11.8199411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-01-11T15:55:12.2137089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.114.4] + +2025-01-11T15:55:13.6892674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.40, 13.107.246.35] + +2025-01-11T15:55:23.2169569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154] + +2025-01-11T15:55:27.2285301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.59, 13.107.246.74, 13.107.246.67] + +2025-01-11T15:55:27.6041849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.70, 13.107.246.44, 13.107.246.73] + +2025-01-11T15:55:28.1301430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 20.135.6.2] + +2025-01-11T15:55:42.3208596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.219.78.69, 193.246.48.42, 23.219.78.75] + +2025-01-11T15:55:42.4077006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.161, 20.190.144.165] + +2025-01-11T15:55:49.6575494+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.12.13] + +2025-01-11T15:55:50.3122117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.113.21] + +2025-01-11T15:56:18.0894525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.208.31.189] + +2025-01-11T15:56:23.7674578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 20.135.6.11] + +2025-01-11T15:56:28.6972916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.113.22] + +2025-01-11T15:56:48.9780542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.113.26] + +2025-01-11T15:57:37.9540726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.6] + +2025-01-11T15:57:40.3049599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.44.111, 52.109.56.129] + +2025-01-11T15:57:40.5244392+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.112.3] + +2025-01-11T15:57:50.3202207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.40] + +2025-01-11T15:57:51.0660493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.73, 13.107.246.40] + +2025-01-11T15:57:53.3707492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.44.108] + +2025-01-11T15:57:54.7121344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 13.105.28.1] + +2025-01-11T15:58:07.5424003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.77.37] + +2025-01-11T15:58:11.4697982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.59, 13.107.246.73, 13.107.246.74] + +2025-01-11T15:58:17.8530932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.205.214.13, 23.37.230.88] + +2025-01-11T15:58:18.2802329+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.0] + +2025-01-11T15:58:30.9463507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.166, 20.190.144.161] + +2025-01-11T15:58:31.0585932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.167, 20.190.144.137] + +2025-01-11T15:58:35.5642179+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.163, 20.190.148.166] + +2025-01-11T15:58:40.0308574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.113.21] + +2025-01-11T15:58:58.4028334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.148.167, 20.190.148.163] + +2025-01-11T15:58:58.5264073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.137, 20.190.144.163] + +2025-01-11T15:59:21.3989877+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:00:01.8872056+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:00:48.9345320+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T16:00:49.0835604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T16:00:50.1916949+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:00:50.1926113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T16:00:51.4139278+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:00:51.4154617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T16:00:57.6314271+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:00:58.1015039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-01-11T16:01:19.8644472+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:01:20.2335591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.116.5] + +2025-01-11T16:01:21.8005938+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:01:44.0305672+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:01:45.1164363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.59, 13.107.246.64] + +2025-01-11T16:01:46.1943854+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:01:46.6037336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.113.25] + +2025-01-11T16:01:55.7741936+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:01:56.1812543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-01-11T16:01:57.1679388+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:01:57.5584849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.3] + +2025-01-11T16:02:15.1815103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.40, 13.107.246.41] + +2025-01-11T16:02:36.8377203+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:02:37.1008976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.74, 13.107.246.35] + +2025-01-11T16:02:38.1629737+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:02:38.4389749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.13, 52.109.124.4] + +2025-01-11T16:03:00.3201330+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:04:06.6354100+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T16:04:07.0270104+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 383.0253 ms + +2025-01-11T16:04:08.0465481+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 94.3456 ms + +2025-01-11T16:04:27.2495401+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T16:04:27.7352069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 23.205.214.13] + +2025-01-11T16:04:35.7916189+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:04:58.4244908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.217.136.199] + +2025-01-11T16:04:59.5001964+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T16:04:59.5319594+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T16:04:59.5334990+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-11T16:04:59.7917908+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 223.8182 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T16:04:59.9927351+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 440.2624 ms + +2025-01-11T16:05:00.4062230+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 618.4959 ms + +2025-01-11T16:05:00.4616274+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T16:05:00.6881521+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 196.7204 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T16:05:00.9632508+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T16:05:01.0487474+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 357.8366 ms + +2025-01-11T16:05:21.3796310+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T16:05:26.5712813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.166, 20.190.144.136] + +2025-01-11T16:05:48.2839295+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:05:48.7220060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.144.160, 20.190.144.138] + +2025-01-11T16:05:52.3469670+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:05:54.1553283+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T16:05:54.3304866+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 163.3301 ms + +2025-01-11T16:05:54.3733010+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 200 in 194.2954 ms + +2025-01-11T16:05:54.4265433+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T16:05:54.6315600+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 252.8499 ms + +2025-01-11T16:05:54.8512218+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 209.0064 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T16:05:55.1291282+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 279.2805 ms + +2025-01-11T16:06:09.1292947+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:06:18.0640422+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:06:44.9764272+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:07:05.0031018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-01-11T16:07:09.0393899+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:07:10.3258092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-01-11T16:07:11.3865285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10] + +2025-01-11T16:07:12.1583410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T16:07:12.7286135+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T16:07:17.2915495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T16:07:18.5109543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.8.88] + +2025-01-11T16:07:19.6684363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.113.6] + +2025-01-11T16:07:29.8644945+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-11T16:07:30.9440975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.114.22] + +2025-01-11T16:07:32.1214557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.3] + +2025-01-11T16:07:32.9204679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.73, 13.107.246.42] + +2025-01-11T16:07:33.8207751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.35] + +2025-01-11T16:07:55.5524226+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:07:55.8051881+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.41] + +2025-01-11T16:07:58.5285149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.124.13] + +2025-01-11T16:07:59.4119416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 13.105.28.1] + +2025-01-11T16:08:01.3914054+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:08:03.3382750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.144.136, 20.190.144.160] + +2025-01-11T16:08:32.1898511+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:08:35.8545934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.63, 13.107.246.73] + +2025-01-11T16:08:37.1136531+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.113.3] + +2025-01-11T16:08:38.9601286+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.2] + +2025-01-11T16:08:47.9809965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-11T16:08:47.9895875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.44] + +2025-01-11T16:09:15.2119105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.114.10] + +2025-01-11T16:09:23.7299023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.6] + +2025-01-11T16:09:28.1895533+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:09:28.7177999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.21] + +2025-01-11T16:09:34.9263553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.205.214.13] + +2025-01-11T16:09:37.3100402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.69, 13.107.246.63] + +2025-01-11T16:09:38.4157206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.114.22] + +2025-01-11T16:09:39.3085162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-11T16:09:39.8640131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-11T16:09:40.8379775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.2, 13.105.74.50] + +2025-01-11T16:09:40.8477931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-01-11T16:09:40.8499330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.212.62.83] + +2025-01-11T16:10:03.8800821+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.212.62.79] + +2025-01-11T16:10:08.1947371+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:10:09.0063770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-11T16:10:11.0061677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.2, 20.135.6.11] + +2025-01-11T16:10:27.9745961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.164, 20.190.148.167] + +2025-01-11T16:10:28.0863678+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.148.165, 20.190.144.137] + +2025-01-11T16:10:49.3746558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.144.164, 20.190.148.166] + +2025-01-11T16:11:11.4418572+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:12:55.8400719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-11T16:12:59.1614770+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:12:59.3404828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-01-11T16:12:59.8826961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-01-11T16:13:04.7671067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.246.45] + +2025-01-11T16:13:34.1359576+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:13:34.5197175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.89.117] + +2025-01-11T16:15:23.5669987+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:15:24.0107240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-01-11T16:15:31.1578835+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-01-11T16:15:32.0803482+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 897.9887 ms + +2025-01-11T16:15:46.8393607+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:15:47.0652620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.63, 13.107.246.74] + +2025-01-11T16:16:10.1289970+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:16:10.3551224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.35, 13.107.246.74, 13.107.246.45] + +2025-01-11T16:16:31.1551379+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-01-11T16:16:41.8563793+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-11T16:16:42.3728715+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:16:42.4896750+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 612.8842 ms + +2025-01-11T16:16:42.7999931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-01-11T16:17:05.3802078+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:17:05.7916209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-01-11T16:17:27.5101141+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:17:27.9268805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-11T16:17:52.3851008+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T16:17:52.7412197+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 339.8331 ms + +2025-01-11T16:17:52.8133231+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.6975 ms + +2025-01-11T16:17:54.3274540+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:17:54.7463180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.44.108, 52.109.56.126] + +2025-01-11T16:18:16.9333201+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:18:19.3252704+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:18:19.7658555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.2, 40.90.130.192] + +2025-01-11T16:20:21.0055135+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:20:21.4449946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.212.62.83] + +2025-01-11T16:20:22.4683232+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:20:23.8185727+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.112, 23.62.212.79, 23.32.248.51] + +2025-01-11T16:20:47.1073707+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:20:47.5912163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 40.126.35.20, 20.190.148.163] + +2025-01-11T16:21:19.0985735+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:21:24.2830488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.166, 20.190.148.163] + +2025-01-11T16:21:29.3952199+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:21:51.3538079+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:21:53.5927637+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:21:54.3891426+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:21:57.7443529+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:22:04.2034952+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:22:10.4313055+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:22:12.9569115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T16:22:13.5801265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T16:22:35.2823000+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:22:35.6884995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9] + +2025-01-11T16:22:36.8666329+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117] + +2025-01-11T16:22:38.0490134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.5] + +2025-01-11T16:22:45.6511429+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:22:45.8403213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T16:22:46.7686845+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.35, 13.107.246.74, 13.107.246.52] + +2025-01-11T16:23:12.4209708+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:23:12.7263260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-11T16:23:34.4512657+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:23:34.8716422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 20.26.156.215] + +2025-01-11T16:23:35.7693349+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.61] + +2025-01-11T16:23:36.9242018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.113.26] + +2025-01-11T16:23:58.7136503+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:23:58.8806567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.52] + +2025-01-11T16:24:00.0217943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-01-11T16:24:01.1344709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.22] + +2025-01-11T16:24:02.3972792+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.44.108, 52.109.56.126] + +2025-01-11T16:24:08.5001337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.44.112, 52.109.20.47, 52.109.68.130] + +2025-01-11T16:24:09.6099591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.50, 40.90.128.21] + +2025-01-11T16:24:10.3952859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.112, 23.62.212.79] + +2025-01-11T16:24:13.8589721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.20, 40.126.35.80, 40.126.35.19] + +2025-01-11T16:24:27.2986123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-01-11T16:24:27.8748223+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:24:28.6775228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.44.112, 52.109.56.130, 52.109.20.47] + +2025-01-11T16:24:29.3842397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.3] + +2025-01-11T16:24:29.9637949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6] + +2025-01-11T16:24:51.6604559+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:25:00.8195469+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T16:25:01.4709979+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 626.6672 ms + +2025-01-11T16:26:03.4555231+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T16:26:10.4773623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.26] + +2025-01-11T16:26:11.8286098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-11T16:26:20.3097411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.219.78.69] + +2025-01-11T16:26:22.3561132+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.79, 23.62.212.112] + +2025-01-11T16:26:23.4731137+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.148.163, 20.190.148.164] + +2025-01-11T16:26:27.2049976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.19, 40.126.35.128, 40.126.35.129] + +2025-01-11T16:26:36.4865293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-01-11T16:26:37.4444763+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.112.5] + +2025-01-11T16:26:38.2133842+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.52] + +2025-01-11T16:26:39.0632676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-11T16:26:40.8879232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 13.107.246.74, 13.107.246.61] + +2025-01-11T16:26:50.1152999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.44.112, 52.109.56.130, 52.109.112.174] + +2025-01-11T16:27:11.2195418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.56.130] + +2025-01-11T16:27:12.6441708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-01-11T16:27:17.6626757+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T16:27:17.7859025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T16:27:18.2025495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T16:27:26.4941901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.1, 13.105.74.50] + +2025-01-11T16:27:26.8759101+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.166, 20.190.148.165] + +2025-01-11T16:27:28.3452301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T16:27:29.1961176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-11T16:27:39.6535746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.113.6, 140.82.112.5, 20.205.243.168] + +2025-01-11T16:27:46.9548768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.35, 13.107.246.61] + +2025-01-11T16:27:47.0185620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.52, 13.107.246.73] + +2025-01-11T16:28:08.6466700+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.25] + +2025-01-11T16:28:13.8646835+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T16:28:13.8746327+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T16:28:13.8809980+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-11T16:28:13.9373167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-01-11T16:28:14.0983284+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 198.7524 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T16:28:14.3149639+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 426.2125 ms + +2025-01-11T16:28:14.4792479+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T16:28:14.9040529+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 804.9808 ms + +2025-01-11T16:28:14.9140144+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T16:28:15.1498627+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 209.7827 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T16:28:15.4859461+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 335.263 ms + +2025-01-11T16:28:17.7293980+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-01-11T16:28:18.0756471+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-01-11T16:28:18.6157828+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js responded 502 in 190.9809 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T16:28:20.5798804+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:20.7817014+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 203.7692 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T16:28:20.7823499+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:20.8223706+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js responded 200 in 2205.2119 ms + +2025-01-11T16:28:21.6052091+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 822.8693 ms + +2025-01-11T16:28:21.6155711+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:21.7754711+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 159.566 ms + +2025-01-11T16:28:21.7801941+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:21.9426762+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 162.456 ms + +2025-01-11T16:28:21.9600150+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:22.1174974+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 157.4848 ms + +2025-01-11T16:28:22.1281445+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:22.2844145+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 156.1913 ms + +2025-01-11T16:28:22.2953582+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:22.4573236+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 162.0091 ms + +2025-01-11T16:28:22.4745360+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:22.6467762+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 172.3197 ms + +2025-01-11T16:28:22.6633016+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:22.8380356+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 174.7563 ms + +2025-01-11T16:28:22.8408251+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:23.0008424+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 159.9834 ms + +2025-01-11T16:28:23.0200313+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:23.1945796+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 174.5763 ms + +2025-01-11T16:28:23.2006072+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:23.3597677+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 159.1274 ms + +2025-01-11T16:28:23.3837254+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:23.5437655+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 160.0419 ms + +2025-01-11T16:28:23.5523831+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:23.7128284+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 160.5758 ms + +2025-01-11T16:28:23.7184010+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:23.8745996+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 156.1821 ms + +2025-01-11T16:28:23.8771460+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:24.0392675+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 162.0972 ms + +2025-01-11T16:28:24.0540300+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:24.2147911+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 160.6928 ms + +2025-01-11T16:28:24.2228769+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:24.3873405+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 164.4023 ms + +2025-01-11T16:28:24.3957001+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:24.5571443+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 161.4006 ms + +2025-01-11T16:28:24.5648650+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:24.7237457+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 158.9668 ms + +2025-01-11T16:28:24.7362267+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:24.8955233+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 159.3364 ms + +2025-01-11T16:28:24.9008929+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:25.0629344+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 162.0799 ms + +2025-01-11T16:28:25.0710929+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:25.2347774+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 163.669 ms + +2025-01-11T16:28:25.2462347+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:25.4048380+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 158.629 ms + +2025-01-11T16:28:25.4152947+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:25.5740672+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 158.7767 ms + +2025-01-11T16:28:25.5906549+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:25.7720498+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 181.3933 ms + +2025-01-11T16:28:25.7858250+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:25.9420538+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 156.2127 ms + +2025-01-11T16:28:25.9468295+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:26.1031125+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 156.2522 ms + +2025-01-11T16:28:26.1120510+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:26.2678547+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 155.7133 ms + +2025-01-11T16:28:26.2723865+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:26.4297516+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 157.3678 ms + +2025-01-11T16:28:26.4441711+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:26.6010257+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 156.8781 ms + +2025-01-11T16:28:26.6052531+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:26.7641945+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 158.9879 ms + +2025-01-11T16:28:26.7693787+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:26.9259414+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 156.5005 ms + +2025-01-11T16:28:26.9353651+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:27.0936425+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 158.2489 ms + +2025-01-11T16:28:27.1114700+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:27.2711545+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 159.6975 ms + +2025-01-11T16:28:27.2809616+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:27.4367089+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 155.889 ms + +2025-01-11T16:28:27.4469709+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:27.6095919+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 162.6362 ms + +2025-01-11T16:28:27.6151014+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:27.7773171+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 162.2552 ms + +2025-01-11T16:28:27.7872936+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:27.9488150+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 161.5384 ms + +2025-01-11T16:28:27.9535648+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:28.1075935+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 154.0068 ms + +2025-01-11T16:28:28.1186204+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:28.2794630+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 160.8398 ms + +2025-01-11T16:28:28.2942248+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-01-11T16:28:28.4629703+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 168.6209 ms + +2025-01-11T16:28:30.0126795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253] + +2025-01-11T16:28:37.0282776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.3] + +2025-01-11T16:28:38.1178013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.116.5, 140.82.113.6, 140.82.112.5] + +2025-01-11T16:28:38.8800079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.51] + +2025-01-11T16:28:39.5013132+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.10] + +2025-01-11T16:28:40.2443443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.52] + +2025-01-11T16:28:41.5118896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.113.26] + +2025-01-11T16:28:52.7827873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.35, 13.107.246.73] + +2025-01-11T16:28:57.3298097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.148.163, 20.190.144.137] + +2025-01-11T16:29:02.1166589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.113.22] + +2025-01-11T16:29:06.0716448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.21] + +2025-01-11T16:29:06.3495201+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.44.108] + +2025-01-11T16:29:10.8920735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.79, 23.62.212.155, 23.62.212.112] + +2025-01-11T16:29:44.4539308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-01-11T16:30:17.0203110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.124.13] + +2025-01-11T16:30:23.0398514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.212.62.96] + +2025-01-11T16:30:34.2943457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.67, 20.190.166.131] + +2025-01-11T16:30:41.0872530+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.116.5, 140.82.121.5, 140.82.113.6] + +2025-01-11T16:30:48.2662105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.35, 13.107.246.45] + +2025-01-11T16:31:13.5324004+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.26] + +2025-01-11T16:31:21.3612929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.212.62.83] + +2025-01-11T16:31:38.8182376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.51, 13.107.246.52] + +2025-01-11T16:31:40.0539323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.112.10] + +2025-01-11T16:31:54.7357856+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:32:14.7152905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-01-11T16:32:19.7260947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133] + +2025-01-11T16:32:20.3123361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-11T16:32:20.3166851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-11T16:32:32.7234101+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 40.126.35.84, 40.126.35.129] + +2025-01-11T16:32:34.3846896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-11T16:32:40.4624172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.5] + +2025-01-11T16:32:55.3902186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.121.10] + +2025-01-11T16:33:00.7736575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.73] + +2025-01-11T16:33:05.2290394+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T16:33:05.4187371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.52, 13.107.246.74] + +2025-01-11T16:33:05.9320409+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 679.5343 ms + +2025-01-11T16:33:10.5116544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.52, 13.107.246.71] + +2025-01-11T16:33:15.9463855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-01-11T16:33:16.7713946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.3] + +2025-01-11T16:33:17.2338247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.8.88] + +2025-01-11T16:33:19.0996615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.113.26] + +2025-01-11T16:33:31.4202617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24] + +2025-01-11T16:33:47.4078983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.113.6] + +2025-01-11T16:33:49.6389619+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.61, 13.107.246.45, 13.107.246.73] + +2025-01-11T16:33:50.2870129+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.73, 13.107.246.74] + +2025-01-11T16:34:04.5736125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.5] + +2025-01-11T16:34:07.0575359+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T16:34:07.5134999+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 439.6347 ms + +2025-01-11T16:34:07.5180194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-11T16:34:07.8179889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.124.13] + +2025-01-11T16:34:08.1748429+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 110.3441 ms + +2025-01-11T16:34:08.5083098+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-11T16:34:09.5458123+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 1006.4174 ms + +2025-01-11T16:34:10.8935952+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 122.4826 ms + +2025-01-11T16:34:10.9813692+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 13.105.74.50, 40.90.133.102] + +2025-01-11T16:34:15.4735341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 40.126.35.85, 40.126.35.84] + +2025-01-11T16:34:29.3719890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.44] + +2025-01-11T16:34:30.5758498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.1, 13.105.74.50] + +2025-01-11T16:34:32.1244480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 20.26.156.215] + +2025-01-11T16:34:32.8037569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.74] + +2025-01-11T16:34:32.8049354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.71, 13.107.246.73] + +2025-01-11T16:34:37.8157404+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/Default.json responded 404 in 1271.9638 ms + +2025-01-11T16:34:38.4516528+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 99.9229 ms + +2025-01-11T16:34:41.4086223+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 107.4115 ms + +2025-01-11T16:34:41.5325298+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 97.0089 ms + +2025-01-11T16:35:33.4694720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.0.138] + +2025-01-11T16:35:34.2172591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.124.4] + +2025-01-11T16:35:35.4107517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.15.196.176] + +2025-01-11T16:35:35.8081699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.131, 20.190.166.68, 20.190.166.66] + +2025-01-11T16:35:41.7423278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.44, 13.107.246.73] + +2025-01-11T16:35:41.7490228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.74] + +2025-01-11T16:35:44.2163002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.161] + +2025-01-11T16:36:05.7952841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.6] + +2025-01-11T16:36:06.5195227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.44, 13.107.246.52] + +2025-01-11T16:36:25.9839136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.219.78.69] + +2025-01-11T16:36:31.8957617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.164] + +2025-01-11T16:36:39.1449488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.44, 13.107.246.73] + +2025-01-11T16:36:44.2360693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.112.10] + +2025-01-11T16:36:44.8383607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.74] + +2025-01-11T16:37:16.7879033+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T16:37:16.7895927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T16:37:16.7907304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T16:37:29.4837174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.15, 13.105.28.1] + +2025-01-11T16:37:35.2642303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.164, 20.190.148.164] + +2025-01-11T16:37:43.6678410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T16:37:48.0985570+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T16:38:01.9813577+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T16:38:22.1900712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.26] + +2025-01-11T16:38:33.4815462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.44, 13.107.246.73] + +2025-01-11T16:38:40.6829855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.44, 13.107.246.73] + +2025-01-11T16:38:42.4312518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.45, 13.107.246.73] + +2025-01-11T16:38:57.4349056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.0.136] + +2025-01-11T16:39:16.6014506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.15, 20.135.6.7] + +2025-01-11T16:39:38.5527831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-01-11T16:39:40.1766743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.26.156.215, 140.82.116.4] + +2025-01-11T16:39:41.1111849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.121.10] + +2025-01-11T16:39:42.9794020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.112.25] + +2025-01-11T16:39:44.7720090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.51, 13.107.246.44] + +2025-01-11T16:39:45.4867790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.57, 13.107.246.45] + +2025-01-11T16:39:46.0229049+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.116.6] + +2025-01-11T16:39:46.5409553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.44, 13.107.246.45] + +2025-01-11T16:39:49.0095626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.0, 52.109.52.2] + +2025-01-11T16:39:51.9829957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.15, 20.135.6.7] + +2025-01-11T16:39:52.5831255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.131, 20.190.166.68, 20.190.141.36] + +2025-01-11T16:40:11.9578112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.52.84] + +2025-01-11T16:40:28.3471860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.15, 20.135.6.2] + +2025-01-11T16:40:36.7993403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.124.13] + +2025-01-11T16:40:36.9742505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.56.109.137] + +2025-01-11T16:40:37.3624776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.68, 20.190.166.67] + +2025-01-11T16:40:38.6604752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.44, 13.107.246.40] + +2025-01-11T16:40:38.6613466+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.6] + +2025-01-11T16:40:41.9979346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.45, 13.107.246.44] + +2025-01-11T16:40:42.0090049+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.40, 13.107.246.46] + +2025-01-11T16:40:42.2604823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.41, 13.107.246.57] + +2025-01-11T16:41:18.6396701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 104.85.248.91] + +2025-01-11T16:41:26.5330367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.212.62.79] + +2025-01-11T16:41:27.0183234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.162, 20.190.148.164] + +2025-01-11T16:41:43.4453608+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 20.26.156.215] + +2025-01-11T16:41:45.7819741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.5] + +2025-01-11T16:41:55.2291304+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:42:00.6655132+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.44, 13.107.246.73] + +2025-01-11T16:42:00.7398460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.57, 13.107.246.41] + +2025-01-11T16:42:11.3744834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.28.47] + +2025-01-11T16:42:20.4015572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T16:42:20.8338669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T16:42:20.8349987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T16:42:22.6693778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.52.0] + +2025-01-11T16:42:22.6727519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.36, 20.190.141.34, 20.190.141.35] + +2025-01-11T16:42:32.7583001+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.45, 13.107.246.44] + +2025-01-11T16:42:50.7822005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.41, 13.107.246.45] + +2025-01-11T16:42:52.6310097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 104.85.248.73] + +2025-01-11T16:42:54.5184623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T16:42:54.5225677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T16:42:54.5280042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T16:42:54.8414546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.116.4] + +2025-01-11T16:43:12.2570633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.212.62.79] + +2025-01-11T16:43:22.3162036+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.167, 20.190.148.162] + +2025-01-11T16:43:23.8400776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.112.26] + +2025-01-11T16:43:34.4559352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.41, 13.107.246.52] + +2025-01-11T16:43:34.4570806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.74, 13.107.246.40] + +2025-01-11T16:43:34.4581120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.41, 13.107.246.74] + +2025-01-11T16:43:37.0732244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.45] + +2025-01-11T16:43:43.9713255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.3] + +2025-01-11T16:43:46.0701721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-01-11T16:43:46.2560076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.6] + +2025-01-11T16:43:46.5279018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.38, 13.107.246.65, 13.107.246.74] + +2025-01-11T16:43:50.7255260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.52, 13.107.246.74] + +2025-01-11T16:44:03.0939212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.0.138] + +2025-01-11T16:44:15.3686965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 104.85.248.91, 104.85.248.73] + +2025-01-11T16:44:32.5307257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.114.9] + +2025-01-11T16:44:36.9329785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253] + +2025-01-11T16:44:38.3914827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-01-11T16:44:43.1470141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-01-11T16:44:43.5584652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-01-11T16:44:43.7714754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.10] + +2025-01-11T16:44:44.5872912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.113.26] + +2025-01-11T16:44:44.8218852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-01-11T16:44:44.8858217+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.73] + +2025-01-11T16:44:52.1894295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.41, 13.107.246.74] + +2025-01-11T16:44:52.8484490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.15, 20.135.6.11] + +2025-01-11T16:44:53.0880770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.33, 20.190.141.32, 20.190.141.35] + +2025-01-11T16:45:09.9528283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.38, 13.107.246.65, 13.107.246.40] + +2025-01-11T16:45:12.6875452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-01-11T16:45:13.3683056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.15, 20.135.6.2] + +2025-01-11T16:45:29.3369467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.2, 20.135.6.15] + +2025-01-11T16:45:38.9315651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.15.196.176, 104.85.248.91] + +2025-01-11T16:45:42.1204382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.44, 13.107.246.52] + +2025-01-11T16:45:45.7016100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.112.4] + +2025-01-11T16:45:47.1273237+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.38, 13.107.246.65, 13.107.246.44] + +2025-01-11T16:45:49.4925233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.162, 20.190.148.164] + +2025-01-11T16:46:05.9857820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.52, 13.107.246.74] + +2025-01-11T16:46:05.9924405+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.114.5] + +2025-01-11T16:46:08.5978058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.38, 13.107.246.65] + +2025-01-11T16:46:12.2914251+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 104.85.248.73] + +2025-01-11T16:46:14.6675472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 104.85.248.73, 23.15.196.176] + +2025-01-11T16:46:44.1729883+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:47:05.2129622+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:47:26.5875460+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:47:27.9868908+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:47:53.0747011+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:47:54.2071626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T16:47:56.2951659+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:47:56.5972594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T16:48:17.6380393+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:48:17.8171836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T16:49:02.4144423+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T16:49:03.0422794+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 595.4594 ms + +2025-01-11T16:50:04.2967710+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:50:05.4288322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-01-11T16:50:35.0428896+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:50:35.2708224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.74] + +2025-01-11T16:50:39.2915094+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:50:39.6984942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.112.4] + +2025-01-11T16:51:03.2038419+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:51:43.5080278+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:51:52.3338380+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:51:53.7332712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.112.25] + +2025-01-11T16:54:05.0316189+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:54:05.4544058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.22] + +2025-01-11T16:54:43.5113269+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:54:43.7364917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.66, 13.107.246.73] + +2025-01-11T16:54:49.7615207+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:54:50.2293286+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.6.4] + +2025-01-11T16:55:12.1325113+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:55:44.9580448+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:55:45.1816633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.74, 13.107.246.44] + +2025-01-11T16:55:47.0557110+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:55:47.4862349+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.52.2, 52.109.44.108] + +2025-01-11T16:55:48.8681057+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:55:54.0625629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.112.174] + +2025-01-11T16:56:17.8529647+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:56:19.1453035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 184.27.185.71] + +2025-01-11T16:56:20.0983184+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:56:20.5064911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 40.90.130.207, 40.90.130.204] + +2025-01-11T16:56:22.6610211+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:56:23.0819341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 184.27.185.84] + +2025-01-11T16:56:41.3265655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.139, 20.190.144.161] + +2025-01-11T16:56:42.6604493+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:56:43.0948066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.139, 20.190.144.161] + +2025-01-11T16:57:05.8148541+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:57:42.1169970+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:57:43.3781615+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:57:44.2842940+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:58:05.3273478+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:58:06.6527181+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:58:07.7552765+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:58:12.9539999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[] + +2025-01-11T16:58:34.7439834+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:58:39.9486226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[] + +2025-01-11T16:58:41.6527856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.89.117] + +2025-01-11T16:59:14.1552485+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:59:15.4724948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-11T16:59:16.3614869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.74, 13.107.246.73] + +2025-01-11T16:59:38.0286254+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T16:59:38.2092610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-11T16:59:39.8751776+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T16:59:40.0609115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-11T16:59:40.8855022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.74, 13.107.246.41] + +2025-01-11T16:59:41.8903824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-11T16:59:46.9995956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-01-11T16:59:47.9818608+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-11T16:59:49.0992406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-01-11T16:59:56.6295514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.67] + +2025-01-11T16:59:57.8764694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.89.19] + +2025-01-11T17:00:00.3399504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.44.112, 52.109.112.174, 52.109.68.130] + +2025-01-11T17:00:01.4159047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.22] + +2025-01-11T17:00:02.5543447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.26.156.215, 140.82.121.3] + +2025-01-11T17:00:03.5786374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.56.126, 52.109.32.11] + +2025-01-11T17:00:11.2663351+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:00:50.8545911+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:00:51.2327927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.67, 13.107.246.74] + +2025-01-11T17:00:53.3719243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.74.50, 40.90.130.207] + +2025-01-11T17:01:05.1396996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.74, 13.107.246.73] + +2025-01-11T17:01:11.8722150+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:01:11.8734441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3] + +2025-01-11T17:01:33.1780803+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:01:33.1867459+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9] + +2025-01-11T17:01:33.8144030+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.8.88] + +2025-01-11T17:01:34.1078306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-01-11T17:01:36.3798609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.44.112, 52.109.56.130, 52.109.112.174] + +2025-01-11T17:01:43.5589627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[] + +2025-01-11T17:01:49.0588892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 13.105.74.50] + +2025-01-11T17:01:54.5068805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 78.154.186.136, 78.154.186.144] + +2025-01-11T17:01:55.2610641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.161, 20.190.144.139] + +2025-01-11T17:01:55.6989121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.161, 20.190.144.139] + +2025-01-11T17:02:07.8579841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.3] + +2025-01-11T17:02:08.5429538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.121.9] + +2025-01-11T17:02:29.9494157+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:02:38.2580070+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:02:38.3186136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.69, 13.107.246.74] + +2025-01-11T17:02:53.5845675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.65, 13.107.246.74] + +2025-01-11T17:03:14.9174142+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:03:14.9187266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.114.26] + +2025-01-11T17:03:20.1799958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.112.21] + +2025-01-11T17:03:22.9027888+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-01-11T17:03:25.2280956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.161, 20.190.144.165] + +2025-01-11T17:03:26.2401954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.161, 20.190.144.165] + +2025-01-11T17:04:01.1628223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-11T17:04:07.5434793+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T17:04:11.2464051+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:04:11.2474542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.22] + +2025-01-11T17:04:12.4800131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.74, 13.107.246.73] + +2025-01-11T17:04:14.4749492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.165, 20.190.144.161] + +2025-01-11T17:04:18.5717779+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 11012.2329 ms + +2025-01-11T17:04:18.8261805+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 10640.3422 ms + +2025-01-11T17:04:21.1175661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14] + +2025-01-11T17:04:40.9324421+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133] + +2025-01-11T17:04:42.0829663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133] + +2025-01-11T17:04:42.3251945+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133] + +2025-01-11T17:04:43.4580671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-01-11T17:05:04.7839157+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:05:05.0510114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.71] + +2025-01-11T17:05:05.7410191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.112.21] + +2025-01-11T17:05:49.9561943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-01-11T17:06:11.7796573+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:06:12.2304480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-01-11T17:06:27.9201507+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:06:28.1550714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.41, 13.107.246.45] + +2025-01-11T17:06:37.4054955+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:06:59.4826156+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:07:21.6698976+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:07:22.1562199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 13.105.74.49] + +2025-01-11T17:07:43.7085711+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:07:44.1831783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.144.165, 40.126.35.81] + +2025-01-11T17:07:50.0076403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.165, 40.126.35.81] + +2025-01-11T17:08:16.6724810+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:08:18.0094062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 184.27.185.71] + +2025-01-11T17:08:40.1816111+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:08:41.4280057+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:08:43.4924200+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:08:44.0207925+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:09:05.0563738+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:09:06.4342267+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:09:13.5940833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.5] + +2025-01-11T17:09:21.6259160+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:09:22.9245983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 184.27.185.94] + +2025-01-11T17:09:25.0518833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.114.10] + +2025-01-11T17:09:26.1795238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.26] + +2025-01-11T17:09:27.4175786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.246.71] + +2025-01-11T17:09:37.0135821+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.8.88] + +2025-01-11T17:09:38.0594365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.8.36] + +2025-01-11T17:09:38.8024081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.246.45] + +2025-01-11T17:09:40.1379663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.56.130] + +2025-01-11T17:09:45.0768828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.112.22, 140.82.114.21] + +2025-01-11T17:09:46.0879481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.41, 13.107.246.74] + +2025-01-11T17:09:47.4502444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.2] + +2025-01-11T17:09:48.3624070+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.135.6.5] + +2025-01-11T17:09:49.3344461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.165, 40.126.35.81] + +2025-01-11T17:09:53.9981896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 20.190.144.160, 40.126.35.81] + +2025-01-11T17:10:16.7462801+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:10:17.0936440+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24] + +2025-01-11T17:10:35.7512650+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:10:37.3337017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-01-11T17:10:45.1283745+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:10:46.2532213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T17:11:07.2968259+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:11:07.4860308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T17:11:08.0456155+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:11:08.0565854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T17:11:09.5001705+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:11:10.6180915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-01-11T17:11:10.8852654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.4] + +2025-01-11T17:11:19.9045758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.35] + +2025-01-11T17:11:20.6900534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.71, 13.107.246.40] + +2025-01-11T17:11:21.0405422+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:11:27.7774661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.66, 13.107.246.74] + +2025-01-11T17:11:28.4741594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.22, 140.82.113.21] + +2025-01-11T17:11:34.1761737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.5, 20.135.6.15] + +2025-01-11T17:11:55.5103620+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:11:55.6395979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 20.190.144.160, 20.190.148.165] + +2025-01-11T17:12:07.5603322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.3] + +2025-01-11T17:12:08.1666377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.112.5] + +2025-01-11T17:13:46.7822759+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T17:13:54.1768436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.45] + +2025-01-11T17:13:55.1127441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.113.26] + +2025-01-11T17:13:56.4700650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.71, 13.107.246.45] + +2025-01-11T17:13:58.1356104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.71] + +2025-01-11T17:13:59.3621845+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.56.130] + +2025-01-11T17:14:06.3800458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.15, 13.105.74.49] + +2025-01-11T17:14:07.2663591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.166, 20.190.148.163] + +2025-01-11T17:14:12.1217581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.160, 20.190.148.163] + +2025-01-11T17:14:25.9873173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 20.87.245.0] + +2025-01-11T17:14:31.1583015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.9] + +2025-01-11T17:14:33.4261194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.35] + +2025-01-11T17:14:34.1022726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.26] + +2025-01-11T17:14:34.6651707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.41] + +2025-01-11T17:14:36.6073618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 184.27.185.84] + +2025-01-11T17:14:36.8935438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.44.108, 52.109.56.126] + +2025-01-11T17:14:36.8953282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.148.163, 20.190.144.165] + +2025-01-11T17:14:36.8982793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.160, 20.190.144.136] + +2025-01-11T17:14:39.3738150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.10] + +2025-01-11T17:14:41.7734191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.69] + +2025-01-11T17:14:42.7896398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-01-11T17:14:44.2364377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.69] + +2025-01-11T17:14:44.7159791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-01-11T17:14:45.9555079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.114.22] + +2025-01-11T17:14:47.0424323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.73] + +2025-01-11T17:14:47.0439750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.73] + +2025-01-11T17:14:49.7417596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.148.165, 20.190.148.163] + +2025-01-11T17:14:49.7435177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.160, 20.190.148.165] + +2025-01-11T17:15:17.3069605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253] + +2025-01-11T17:15:38.9415523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-01-11T17:15:51.6123645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-11T17:15:51.6136058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-11T17:15:51.6149159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-01-11T17:15:54.3453567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.53] + +2025-01-11T17:16:03.5472224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.64] + +2025-01-11T17:16:08.5092604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.44.108] + +2025-01-11T17:16:17.4455228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-01-11T17:16:24.8483051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.246.45] + +2025-01-11T17:16:34.5374460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.114.10] + +2025-01-11T17:17:22.6416677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.150, 40.126.35.145, 40.126.35.87] + +2025-01-11T17:17:55.8130186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.35] + +2025-01-11T17:18:45.0091311+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:18:56.7720603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.25] + +2025-01-11T17:18:56.8351841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.35, 13.107.246.53] + +2025-01-11T17:18:57.0845618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.74, 13.107.246.45] + +2025-01-11T17:18:57.0871934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.64, 13.107.246.51] + +2025-01-11T17:19:01.2848029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 184.27.185.71] + +2025-01-11T17:19:12.6931720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.150, 40.126.35.19, 40.126.35.145] + +2025-01-11T17:19:15.9647120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.144.136, 20.190.144.160] + +2025-01-11T17:19:20.4023305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.52.0] + +2025-01-11T17:19:29.6888420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-01-11T17:19:29.7837515+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T17:19:30.4626590+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 640.252 ms + +2025-01-11T17:19:33.2431385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.5] + +2025-01-11T17:19:35.2177129+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.114.26, 140.82.112.25] + +2025-01-11T17:19:36.1605272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 184.27.185.84] + +2025-01-11T17:19:38.0565215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 184.27.185.94] + +2025-01-11T17:19:39.3282330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.89.19] + +2025-01-11T17:19:41.7543969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.45, 13.107.246.74] + +2025-01-11T17:19:47.2266576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.69, 13.107.246.45] + +2025-01-11T17:19:47.2291057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.64] + +2025-01-11T17:19:48.4457423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.35] + +2025-01-11T17:19:50.6064346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.144.136, 20.190.144.160] + +2025-01-11T17:20:06.7473056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.69] + +2025-01-11T17:20:07.1185093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.46] + +2025-01-11T17:20:20.9998388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24] + +2025-01-11T17:20:24.2970748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.124.191] + +2025-01-11T17:20:53.1071797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133] + +2025-01-11T17:20:53.2207446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T17:20:53.2236032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T17:20:54.7918245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.44, 13.107.246.73] + +2025-01-11T17:20:57.8013774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T17:21:15.7358307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.191, 52.109.124.4] + +2025-01-11T17:21:19.3775111+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-01-11T17:21:19.6466559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.5] + +2025-01-11T17:21:21.4198920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-01-11T17:21:21.4218280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.45] + +2025-01-11T17:21:32.5213283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.35] + +2025-01-11T17:21:33.0121583+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-11T17:21:33.4705108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.46, 13.107.246.51] + +2025-01-11T17:21:33.8308538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 13.105.74.49, 40.90.130.207] + +2025-01-11T17:21:36.6975839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 40.90.130.207, 40.90.133.97] + +2025-01-11T17:21:42.6951528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.9, 40.90.130.207] + +2025-01-11T17:22:19.3780704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-11T17:22:37.7145256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.15, 20.135.6.9] + +2025-01-11T17:23:09.4756072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.74] + +2025-01-11T17:23:09.5369054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.73, 13.107.246.46] + +2025-01-11T17:24:00.2347650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.45] + +2025-01-11T17:24:00.3501927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.74] + +2025-01-11T17:24:01.0405547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.52.84] + +2025-01-11T17:24:05.2108164+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 2.16.168.100] + +2025-01-11T17:24:09.3252856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 184.27.185.93] + +2025-01-11T17:24:14.4925406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.160, 20.190.144.162] + +2025-01-11T17:24:14.7611855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.144.160, 20.190.144.162] + +2025-01-11T17:24:42.3150066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24, 172.64.80.1] + +2025-01-11T17:24:49.1616068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-01-11T17:24:58.5369681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-01-11T17:25:00.9076833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.5] + +2025-01-11T17:25:01.9255495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.26] + +2025-01-11T17:25:02.4842597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.73] + +2025-01-11T17:25:02.7669983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.74, 13.107.246.35] + +2025-01-11T17:25:03.0490563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.46, 13.107.246.57] + +2025-01-11T17:25:03.8317608+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-01-11T17:25:15.0848629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 104.85.248.88] + +2025-01-11T17:25:15.7626928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.160, 20.190.144.165] + +2025-01-11T17:25:16.3143961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.148.165, 20.190.144.160] + +2025-01-11T17:25:19.1943242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.57, 13.107.246.74] + +2025-01-11T17:25:21.9000018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 172.64.80.1] + +2025-01-11T17:25:46.7126853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.6.4] + +2025-01-11T17:25:50.6951817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-01-11T17:25:55.6996099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-01-11T17:25:56.8222447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-11T17:25:56.8258504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-11T17:25:57.9953375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.35, 13.107.246.55] + +2025-01-11T17:25:59.7147104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.136, 20.190.148.165] + +2025-01-11T17:26:01.5389614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-01-11T17:26:05.4194120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.64, 13.107.246.57] + +2025-01-11T17:26:19.8601563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.219.78.75] + +2025-01-11T17:26:22.8235088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-01-11T17:26:34.3458295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.22] + +2025-01-11T17:26:37.9542919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.11, 20.135.6.9] + +2025-01-11T17:26:40.0865784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-01-11T17:26:42.0107915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.136, 20.190.144.160] + +2025-01-11T17:26:59.1859897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.114.4] + +2025-01-11T17:27:05.4340138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.9] + +2025-01-11T17:27:06.6262317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.35] + +2025-01-11T17:27:15.8734642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.136, 20.190.144.165] + +2025-01-11T17:27:49.4417796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.5] + +2025-01-11T17:27:49.9281848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.9, 20.135.6.11] + +2025-01-11T17:28:13.5525451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.51] + +2025-01-11T17:28:18.6108100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.57, 13.107.246.74] + +2025-01-11T17:28:20.1558645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.15, 20.135.6.9] + +2025-01-11T17:28:20.9237597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.55.236.134] + +2025-01-11T17:28:27.8733822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.77.37] + +2025-01-11T17:28:40.0788126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.136, 20.190.144.160] + +2025-01-11T17:28:47.4006551+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:29:02.6449674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.113.26] + +2025-01-11T17:29:02.7196086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.51] + +2025-01-11T17:29:02.7212027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.35] + +2025-01-11T17:29:03.2024923+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.57] + +2025-01-11T17:29:19.7783000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 184.27.185.71] + +2025-01-11T17:29:20.4141375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.139, 20.190.144.136] + +2025-01-11T17:29:23.7272700+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.51] + +2025-01-11T17:29:51.9015666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.89.19] + +2025-01-11T17:29:52.8007246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 20.135.6.15] + +2025-01-11T17:29:56.5209318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.55] + +2025-01-11T17:30:02.6164914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.45] + +2025-01-11T17:30:02.8584514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-01-11T17:30:03.0875696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.21] + +2025-01-11T17:30:03.3865798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.45] + +2025-01-11T17:30:03.4036357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.40] + +2025-01-11T17:30:13.0246806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 184.27.185.94] + +2025-01-11T17:30:22.6379681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.164, 20.190.144.136] + +2025-01-11T17:30:22.8858503+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.162, 20.190.144.160] + +2025-01-11T17:30:30.7554490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.220.70.73] + +2025-01-11T17:30:31.2187116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.13, 52.109.124.4] + +2025-01-11T17:30:42.4652589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.5] + +2025-01-11T17:30:53.4710426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-01-11T17:30:58.4881194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133] + +2025-01-11T17:30:58.6262393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-11T17:30:58.9607014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-11T17:30:59.4239073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-11T17:31:00.6408802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.136, 20.190.148.164] + +2025-01-11T17:31:01.9508451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-01-11T17:31:13.4020923+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 20.135.6.9] + +2025-01-11T17:31:14.9839141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.116.10] + +2025-01-11T17:31:15.4354166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.3] + +2025-01-11T17:31:17.1860939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.124.191] + +2025-01-11T17:31:24.6375403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-01-11T17:31:33.9550566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-01-11T17:31:49.9871191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 40.126.35.150, 40.126.35.144] + +2025-01-11T17:32:00.6492524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.55, 13.107.246.74, 13.107.246.73] + +2025-01-11T17:32:23.9868208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.76.243] + +2025-01-11T17:32:31.0412317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-11T17:32:43.6592905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 20.135.6.11] + +2025-01-11T17:32:48.0599196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-11T17:32:51.0559294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.114.5] + +2025-01-11T17:32:53.2881889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.45] + +2025-01-11T17:33:12.9894423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 20.143.38.2] + +2025-01-11T17:33:14.0651372+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.143.38.2, 20.135.6.11] + +2025-01-11T17:33:21.3893188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.44] + +2025-01-11T17:33:23.1484100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.148.167, 20.190.144.136] + +2025-01-11T17:33:29.1077413+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.73] + +2025-01-11T17:33:30.8567205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.45.176.98, 23.62.212.144] + +2025-01-11T17:33:38.4703340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.162, 20.190.144.139] + +2025-01-11T17:33:41.0579509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.5] + +2025-01-11T17:33:41.1427607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.162, 20.190.144.164] + +2025-01-11T17:33:51.8676103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.45.176.104, 23.45.176.98] + +2025-01-11T17:34:02.0005941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.162, 20.190.144.139] + +2025-01-11T17:34:05.6285471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.41, 13.107.246.73] + +2025-01-11T17:34:05.9840741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.45.176.98] + +2025-01-11T17:34:06.2201512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.143.38.2, 13.105.74.49] + +2025-01-11T17:34:07.1416765+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-11T17:34:07.6083711+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 412.2981 ms + +2025-01-11T17:34:07.8903347+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 112.3934 ms + +2025-01-11T17:34:09.4073996+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 103.9871 ms + +2025-01-11T17:34:10.0940866+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 100.8773 ms + +2025-01-11T17:34:11.3936725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.57] + +2025-01-11T17:34:18.5797124+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T17:34:18.9910430+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 405.2184 ms + +2025-01-11T17:34:19.0902499+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 235.0193 ms + +2025-01-11T17:34:23.8657690+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 105.0835 ms + +2025-01-11T17:34:25.3133937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.2] + +2025-01-11T17:34:26.7601808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.164, 20.190.148.165] + +2025-01-11T17:34:44.5181538+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 101.7834 ms + +2025-01-11T17:34:45.6230004+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.167, 20.190.148.164] + +2025-01-11T17:34:55.6454033+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 99.0391 ms + +2025-01-11T17:34:55.7780220+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 99.471 ms + +2025-01-11T17:34:59.2988205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-01-11T17:35:00.9048889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 13.105.74.49, 20.135.6.7] + +2025-01-11T17:35:04.7741198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.112.25] + +2025-01-11T17:35:05.2826362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-01-11T17:35:05.5149875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.6] + +2025-01-11T17:35:13.9406831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.45.176.104, 23.62.212.150] + +2025-01-11T17:35:28.5836577+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.163, 20.190.144.138] + +2025-01-11T17:35:28.8049375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.164, 20.190.148.165] + +2025-01-11T17:35:30.5682689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24, 172.64.80.1] + +2025-01-11T17:35:36.1131621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.70, 13.107.246.73] + +2025-01-11T17:35:37.3705775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-01-11T17:35:52.5747259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.164, 20.190.144.163] + +2025-01-11T17:35:59.6425519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T17:36:00.0706478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T17:36:00.0723061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-01-11T17:36:01.8404773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.114.26] + +2025-01-11T17:36:02.8636042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.144.163, 20.190.148.165] + +2025-01-11T17:36:30.0212734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-01-11T17:36:30.2315602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.70, 13.107.246.41] + +2025-01-11T17:36:37.6808763+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.43] + +2025-01-11T17:36:45.9632326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.112.22] + +2025-01-11T17:36:46.8761267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.2, 20.135.6.15, 13.105.74.49] + +2025-01-11T17:36:54.0956750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.114.22] + +2025-01-11T17:37:04.4474545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.43, 13.107.246.73] + +2025-01-11T17:37:07.5065400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.114.4] + +2025-01-11T17:37:12.9151443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-01-11T17:38:15.3950234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.43, 13.107.246.51] + +2025-01-11T17:38:24.0445343+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.163] + +2025-01-11T17:38:31.4125169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.220.70.80] + +2025-01-11T17:38:39.2764061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.43, 13.107.246.67] + +2025-01-11T17:38:42.3337110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.70, 13.107.246.55] + +2025-01-11T17:38:43.9063146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.138, 20.190.148.162] + +2025-01-11T17:38:48.4477281+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:38:55.8091394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.3] + +2025-01-11T17:39:27.7034935+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:39:48.7564969+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:39:52.5053873+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:40:14.0038899+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:40:14.2439297+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-11T17:41:13.4401384+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:41:18.6336282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.114.3, 140.82.112.3, 140.82.121.4] + +2025-01-11T17:41:40.2606713+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:41:40.6634228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.113.10] + +2025-01-11T17:41:42.7010225+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:42:04.8580163+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:42:05.2622611+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.113.26] + +2025-01-11T17:42:10.3651062+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:42:32.4321320+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T17:42:32.6572576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.57, 13.107.246.55, 13.107.246.67] + +2025-01-11T17:44:22.7895694+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:44:23.0635468+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.60, 13.107.246.45] + +2025-01-11T17:44:27.5484604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.70, 13.107.246.42] + +2025-01-11T17:44:28.7595365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.2] + +2025-01-11T17:44:29.8949276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.2, 20.135.6.15] + +2025-01-11T17:44:33.8393858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 184.27.185.94] + +2025-01-11T17:44:35.5137019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 184.27.185.93] + +2025-01-11T17:44:41.9566834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.165, 20.190.144.137] + +2025-01-11T17:44:47.8029425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.144.160, 20.190.144.138] + +2025-01-11T17:45:16.2988062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-01-11T17:45:22.4447815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T17:45:23.7959607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T17:45:24.5064352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-01-11T17:45:26.3411915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.121.4, 140.82.121.3, 140.82.113.3] + +2025-01-11T17:45:27.2158292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.113.10] + +2025-01-11T17:45:29.5478564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-11T17:45:34.5425243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.113.5] + +2025-01-11T17:45:41.8022181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.55, 13.107.246.74, 13.107.246.44] + +2025-01-11T17:45:46.6927928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24] + +2025-01-11T17:46:15.5401823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.121.3, 140.82.121.4, 140.82.113.3] + +2025-01-11T17:46:19.5697775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-11T17:46:21.7136385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.138, 20.190.148.165] + +2025-01-11T17:46:45.8525350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.77.37] + +2025-01-11T17:46:46.8754240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.55, 13.107.246.74] + +2025-01-11T17:46:51.9406002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.43, 13.107.246.67] + +2025-01-11T17:46:54.9191794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.138, 20.190.144.136] + +2025-01-11T17:47:08.0441241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.112.26] + +2025-01-11T17:47:15.4901151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24, 172.64.80.1] + +2025-01-11T17:47:19.9560093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.77.37] + +2025-01-11T17:47:31.5699035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-01-11T17:47:41.8681260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.70, 13.107.246.74] + +2025-01-11T17:47:42.1518741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.44.108, 52.109.56.126] + +2025-01-11T17:47:46.1051750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.45] + +2025-01-11T17:47:51.6549994+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.116.5] + +2025-01-11T17:48:21.4457696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.112.21] + +2025-01-11T17:48:22.9274834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.2] + +2025-01-11T17:48:33.4506508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-01-11T17:48:49.3081806+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:49:10.8208335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.8.36] + +2025-01-11T17:49:11.1356559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.44.108, 52.109.56.126, 52.109.8.44] + +2025-01-11T17:49:11.6880910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.5] + +2025-01-11T17:49:11.9819554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.62.46.117] + +2025-01-11T17:49:12.5742109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.62.46.120] + +2025-01-11T17:49:12.5797171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.137, 20.190.148.166] + +2025-01-11T17:49:25.3947467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.74] + +2025-01-11T17:49:25.6923275+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.70] + +2025-01-11T17:49:38.3745229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.161, 20.190.144.164] + +2025-01-11T17:49:38.6458740+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.144.137, 20.190.148.162] + +2025-01-11T17:49:42.0318754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-11T17:49:46.7370492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.136, 20.190.144.160] + +2025-01-11T17:49:52.2165073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.160, 20.190.148.167] + +2025-01-11T17:49:54.0593881+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-11T17:50:14.5876905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 172.64.80.1] + +2025-01-11T17:50:14.7157278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-01-11T17:50:24.0857399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-11T17:50:24.0872874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-11T17:50:24.0878510+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-01-11T17:50:28.2146686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.3] + +2025-01-11T17:50:29.2657587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.25] + +2025-01-11T17:50:30.7947435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-11T17:50:42.2369951+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.246.55] + +2025-01-11T17:50:49.8718937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.73, 13.107.246.74] + +2025-01-11T17:51:29.9438040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-01-11T17:51:41.1655136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.5] + +2025-01-11T17:51:47.0452073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.113.10] + +2025-01-11T17:51:47.1097284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.55] + +2025-01-11T17:52:22.2823184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.114.26] + +2025-01-11T17:52:33.6143306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.44.108, 52.109.56.126, 52.109.68.87] + +2025-01-11T17:52:38.1403382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.44.108] + +2025-01-11T17:52:42.1740571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.55] + +2025-01-11T17:52:42.1752305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.45] + +2025-01-11T17:52:42.2425268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.45] + +2025-01-11T17:53:31.6894995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.8.88] + +2025-01-11T17:53:45.5592282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.62.46.117] + +2025-01-11T17:54:24.9482665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.67] + +2025-01-11T17:54:26.1999481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.73] + +2025-01-11T17:54:26.4893390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.73] + +2025-01-11T17:54:46.1454486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.0] + +2025-01-11T17:54:48.8652633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 23.62.46.117] + +2025-01-11T17:54:49.4389414+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.148.167, 20.190.148.166] + +2025-01-11T17:54:49.8693739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.164, 20.190.148.167] + +2025-01-11T17:54:52.3977152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.2] + +2025-01-11T17:54:54.1549853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.41] + +2025-01-11T17:55:06.3696616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.116.6] + +2025-01-11T17:55:17.5607364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-01-11T17:55:22.0970381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-01-11T17:55:25.1901559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T17:55:25.4831114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T17:55:25.7614446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T17:55:30.0830507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.25] + +2025-01-11T17:55:34.9458840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.112.21, 140.82.114.21] + +2025-01-11T17:56:44.3828589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.3] + +2025-01-11T17:56:51.9126155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.124.13] + +2025-01-11T17:57:23.9716884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.114.26] + +2025-01-11T17:57:44.0691654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.0.138] + +2025-01-11T17:57:44.4094808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.67, 13.107.246.46] + +2025-01-11T17:57:44.6876990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.67, 13.107.246.74] + +2025-01-11T17:57:45.3757551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.64, 13.107.246.41] + +2025-01-11T17:57:45.9107082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.13, 52.109.124.4] + +2025-01-11T17:58:10.9233849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-01-11T17:58:21.9021097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.21] + +2025-01-11T17:58:32.0706349+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.0.136] + +2025-01-11T17:58:46.7276618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.67, 13.107.246.74] + +2025-01-11T17:58:46.9105383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.62.46.120] + +2025-01-11T17:58:47.1388854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 23.67.33.135] + +2025-01-11T17:58:48.7849404+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 23.62.46.119] + +2025-01-11T17:58:50.1863941+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T17:58:55.7761287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.206.188.215] + +2025-01-11T17:58:55.7773766+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 23.67.33.135] + +2025-01-11T17:58:55.7784107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.2, 20.135.6.5] + +2025-01-11T17:59:33.6880330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-01-11T17:59:39.0347404+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 23.206.188.206] + +2025-01-11T17:59:40.9339027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.148.166, 20.190.144.160] + +2025-01-11T17:59:42.2309317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-11T17:59:42.2323399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.113.6] + +2025-01-11T17:59:47.1318791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 184.28.98.116] + +2025-01-11T17:59:47.6548886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 20.135.6.5, 40.90.130.207] + +2025-01-11T17:59:48.2628534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.148.167, 20.190.148.166] + +2025-01-11T17:59:58.1266907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 86.121.249.25] + +2025-01-11T17:59:58.8474550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 184.28.98.116] + +2025-01-11T17:59:59.2709303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.2, 40.90.130.207] + +2025-01-11T17:59:59.7125680+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.137, 20.190.148.162] + +2025-01-11T18:00:00.3781325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.162, 20.190.144.137] + +2025-01-11T18:00:01.8611239+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.246.73] + +2025-01-11T18:00:02.9043633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.64, 13.107.246.74] + +2025-01-11T18:00:09.5657218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.5] + +2025-01-11T18:00:18.7314904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-01-11T18:00:20.7766856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.15.196.160] + +2025-01-11T18:00:21.4632384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.138, 20.190.144.162] + +2025-01-11T18:00:31.0489151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T18:00:31.0534307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T18:00:31.0543592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-01-11T18:00:32.3601687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-11T18:00:43.7062074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.114.22] + +2025-01-11T18:00:44.3755077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.73] + +2025-01-11T18:00:57.3834188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.2, 13.105.74.50] + +2025-01-11T18:01:04.4138353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.148.165, 20.190.144.166] + +2025-01-11T18:01:05.7285869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.62.46.120] + +2025-01-11T18:01:06.0267286+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.62.46.119] + +2025-01-11T18:01:10.5445012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.59, 13.107.246.45, 13.107.246.67] + +2025-01-11T18:01:12.5846106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.114.21] + +2025-01-11T18:02:03.3811632+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.112.3] + +2025-01-11T18:02:08.3719083+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.59, 13.107.246.45, 13.107.246.74] + +2025-01-11T18:02:10.6922151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.5] + +2025-01-11T18:02:10.8305903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.67, 13.107.246.74] + +2025-01-11T18:02:19.6680730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.32, 20.190.141.37, 20.190.141.34] + +2025-01-11T18:02:21.8458021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253] + +2025-01-11T18:02:27.6688803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.44.111, 52.109.56.129] + +2025-01-11T18:02:27.8906792+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.26] + +2025-01-11T18:02:41.5464975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.113.9] + +2025-01-11T18:02:50.8871097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.59, 13.107.246.45, 13.107.246.73] + +2025-01-11T18:02:51.8631725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.41, 13.107.246.66] + +2025-01-11T18:02:52.5632644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.67, 13.107.246.53] + +2025-01-11T18:02:54.0850747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.124.13] + +2025-01-11T18:03:00.8216011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.139, 20.190.144.162] + +2025-01-11T18:03:05.3719664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.51, 13.107.246.41] + +2025-01-11T18:03:20.1200114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.11, 20.135.6.2] + +2025-01-11T18:03:31.8609065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 20.135.6.11] + +2025-01-11T18:03:33.3116346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.0.138] + +2025-01-11T18:03:40.0611213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.10] + +2025-01-11T18:03:49.1252017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.67, 13.107.246.65] + +2025-01-11T18:03:49.9168995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 184.28.98.116] + +2025-01-11T18:03:59.1875136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.9] + +2025-01-11T18:04:11.1395204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.67, 13.107.246.46] + +2025-01-11T18:04:19.0061829+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T18:04:19.4181854+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 403.6994 ms + +2025-01-11T18:04:19.4998913+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 395.9498 ms + +2025-01-11T18:04:24.6432385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.32, 20.190.141.36, 20.190.141.37] + +2025-01-11T18:04:38.0077464+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:04:38.6237363+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:04:39.5577542+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:04:40.9013923+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:04:40.9031000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.45, 13.107.246.46] + +2025-01-11T18:04:42.0770852+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:05:03.6604926+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:05:25.5183587+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:05:25.8824045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.206.188.206] + +2025-01-11T18:05:33.9287416+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:05:35.2037917+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:05:35.6430467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.62.46.120] + +2025-01-11T18:05:49.0398183+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.162, 20.190.144.139] + +2025-01-11T18:06:10.3839263+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:06:30.8879939+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unexpected end of stream + +2025-01-11T18:06:52.9482679+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:07:06.4013377+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:07:28.2540884+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:07:33.4295050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[] + +2025-01-11T18:07:34.3936504+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:07:39.6178203+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:07:45.2425913+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:07:45.8131000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-01-11T18:08:03.5429094+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:08:08.7307567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T18:08:11.5642765+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:08:11.7329749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T18:08:33.5042590+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:08:33.6792613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T18:08:35.4744384+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:08:36.7627366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-01-11T18:08:37.8662235+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:08:38.2808835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.89.117] + +2025-01-11T18:08:39.3092710+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:08:39.5525686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.45] + +2025-01-11T18:08:40.7711016+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:09:02.9165955+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:09:03.3276022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.112.21] + +2025-01-11T18:09:25.0308798+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:09:25.4828039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.3] + +2025-01-11T18:09:47.2203982+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:09:50.6085149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.44] + +2025-01-11T18:09:51.7902980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-11T18:09:52.7236640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.53, 13.107.246.74] + +2025-01-11T18:09:55.2069722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.124.13] + +2025-01-11T18:09:56.2088899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.62.46.119] + +2025-01-11T18:10:01.3321516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.50, 20.135.6.11] + +2025-01-11T18:10:02.1957327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.220.70.94] + +2025-01-11T18:10:02.8288581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.32, 20.190.141.35, 20.190.141.34] + +2025-01-11T18:10:03.8269611+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.166, 20.190.148.165] + +2025-01-11T18:10:05.4142157+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:10:27.0749942+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:10:35.6542926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.12.13] + +2025-01-11T18:10:37.9357751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.113.3] + +2025-01-11T18:10:38.2792920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.41] + +2025-01-11T18:10:39.9872647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 23.62.46.119] + +2025-01-11T18:10:43.5668550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.46] + +2025-01-11T18:11:06.3765187+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:11:06.8045202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.138, 20.190.144.136] + +2025-01-11T18:11:09.8964148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.51] + +2025-01-11T18:11:10.1725811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.246.67] + +2025-01-11T18:11:22.1876633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 81.198.165.32] + +2025-01-11T18:11:22.1897293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.74.49] + +2025-01-11T18:11:23.7008407+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.2] + +2025-01-11T18:11:52.9344907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.6] + +2025-01-11T18:12:09.4219276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.246.36] + +2025-01-11T18:12:53.9866704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2] + +2025-01-11T18:12:55.4856674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24] + +2025-01-11T18:12:56.7869871+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.89.117] + +2025-01-11T18:12:59.4559544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.11] + +2025-01-11T18:13:01.0255917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.51, 13.107.246.74] + +2025-01-11T18:13:04.3139131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T18:13:04.3179235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T18:13:04.3194674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T18:13:05.7649431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T18:13:05.7668041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T18:13:05.7682185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T18:13:11.1314937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.45, 13.107.246.51] + +2025-01-11T18:13:38.0612216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-01-11T18:13:39.0708359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.114.9] + +2025-01-11T18:13:40.4345715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.36, 13.107.246.74] + +2025-01-11T18:13:40.4979439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.52] + +2025-01-11T18:13:42.5172388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-01-11T18:13:46.0742852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.32.75.145] + +2025-01-11T18:13:53.9825303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.114.5] + +2025-01-11T18:13:54.2001582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.46, 13.107.246.36] + +2025-01-11T18:13:59.7101802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.3] + +2025-01-11T18:13:59.8824402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.135.6.2] + +2025-01-11T18:14:06.2431936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-01-11T18:14:16.9476473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.45] + +2025-01-11T18:14:19.3618266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.11] + +2025-01-11T18:14:20.6764824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-01-11T18:14:25.8193161+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.112.3] + +2025-01-11T18:14:29.2168853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.163, 20.190.144.166] + +2025-01-11T18:14:30.2212063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.10] + +2025-01-11T18:14:30.2230515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-01-11T18:14:54.7001857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.9] + +2025-01-11T18:14:58.2863474+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:14:58.7337423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.114.5] + +2025-01-11T18:15:00.6505931+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:15:08.6775325+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:15:08.9250581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.66] + +2025-01-11T18:15:30.6868333+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:15:30.9122917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.36, 13.107.246.74] + +2025-01-11T18:15:31.2677837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.41] + +2025-01-11T18:16:02.5161828+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:16:02.9328168+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.124.13] + +2025-01-11T18:16:03.7279603+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:16:11.6290652+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:16:12.0675784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.2] + +2025-01-11T18:16:15.4684866+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:16:15.8123960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.45.176.104, 23.45.176.98] + +2025-01-11T18:16:37.6211401+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T18:16:38.0553340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.45.176.98, 23.45.176.99] + +2025-01-11T18:16:43.9816460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.163, 20.190.144.136] + +2025-01-11T18:17:05.4067404+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:17:05.8538357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.138, 20.190.144.161] + +2025-01-11T18:17:29.3906260+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:17:31.7476420+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:17:34.0966357+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:17:57.0006421+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T18:17:58.0321094+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:17:59.4517540+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:18:01.0552121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-01-11T18:18:07.6715983+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:18:13.9122203+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.71] + +2025-01-11T18:18:15.0071953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.61, 13.107.246.74] + +2025-01-11T18:18:18.8468172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.10] + +2025-01-11T18:18:23.6667741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.40, 13.107.246.45] + +2025-01-11T18:18:41.5011941+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:19:02.6913955+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:19:04.2240716+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:19:04.5383444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-01-11T18:19:10.0270250+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:19:37.3777679+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T18:19:37.7830215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.113.22] + +2025-01-11T18:19:42.4451246+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:19:42.8397883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-01-11T18:20:04.4454424+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:20:04.7150766+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.45, 13.107.246.74] + +2025-01-11T18:20:06.9145610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.163, 20.190.144.162] + +2025-01-11T18:20:14.9418680+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:20:19.3183945+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.112.6] + +2025-01-11T18:20:20.2158460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.45, 13.107.246.74] + +2025-01-11T18:20:23.8869333+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:20:24.3078947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-01-11T18:20:45.7079278+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:20:49.3241458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.61, 13.107.246.74, 13.107.246.60] + +2025-01-11T18:20:57.0703296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.5] + +2025-01-11T18:21:01.2367208+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:21:06.2950085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.191, 52.109.124.4] + +2025-01-11T18:21:11.4876786+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:21:16.6631830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.45.176.98] + +2025-01-11T18:21:38.9872924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.61, 13.107.246.74] + +2025-01-11T18:21:40.3414044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 23.45.176.99] + +2025-01-11T18:21:40.6216595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.162, 20.190.144.165] + +2025-01-11T18:21:40.7387807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.136, 20.190.144.138] + +2025-01-11T18:21:42.3667965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-01-11T18:21:43.2963465+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.161, 20.190.148.167] + +2025-01-11T18:21:46.7612844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-01-11T18:22:06.7476585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.136, 20.190.148.163] + +2025-01-11T18:22:09.8734403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.163, 20.190.148.162] + +2025-01-11T18:22:37.5680178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-01-11T18:23:03.1674851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253] + +2025-01-11T18:23:04.0003211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-01-11T18:23:14.1518229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T18:23:19.1614240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-01-11T18:23:19.1640007+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-01-11T18:23:19.3851872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.114.10] + +2025-01-11T18:23:20.0951912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.44, 13.107.246.71] + +2025-01-11T18:23:21.4636114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.40, 13.107.246.74] + +2025-01-11T18:23:21.7940711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.71, 13.107.246.74] + +2025-01-11T18:23:24.2181793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-01-11T18:23:24.5854643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.42] + +2025-01-11T18:23:47.8494647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-01-11T18:24:13.1164296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.5] + +2025-01-11T18:24:14.3524473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.28.18] + +2025-01-11T18:24:18.4705374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.42, 13.107.246.67] + +2025-01-11T18:24:21.3581471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.136, 20.190.148.163] + +2025-01-11T18:24:32.9110931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.10] + +2025-01-11T18:24:39.8961668+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-01-11T18:24:40.4708368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.5] + +2025-01-11T18:24:44.8795884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 20.26.156.215] + +2025-01-11T18:24:45.1259934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-01-11T18:24:47.7700290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-01-11T18:25:44.5574563+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:25:44.9458926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.6] + +2025-01-11T18:25:45.4702719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.74, 13.107.246.42] + +2025-01-11T18:26:07.0779949+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:26:07.3154864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.71] + +2025-01-11T18:26:33.0017042+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:26:35.4433042+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:26:35.6702524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.64] + +2025-01-11T18:26:57.3975475+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:27:20.3374446+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:27:20.7513482+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.124.191] + +2025-01-11T18:28:19.4828619+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:28:21.2383990+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:28:22.6313428+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:28:23.9689497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.45.176.104, 23.45.176.98] + +2025-01-11T18:28:25.0903855+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:28:30.2649718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.144.138, 20.190.144.137] + +2025-01-11T18:28:34.0137883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.138, 20.190.144.136] + +2025-01-11T18:30:39.3123659+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:30:40.5702419+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:30:49.3300114+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:31:10.3963155+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:31:18.3367749+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:31:40.2570085+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:31:40.5668403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T18:31:49.4468869+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:32:11.5150019+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:32:13.0621993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-01-11T18:32:25.8919295+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:32:26.0617717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T18:32:27.0616300+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:32:27.2363225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T18:32:52.6713329+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:32:52.9595765+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-01-11T18:33:14.7503671+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:33:15.1786771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.4] + +2025-01-11T18:33:16.3087595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.26.156.210, 140.82.121.5] + +2025-01-11T18:33:17.3980206+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:33:17.6374759+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.42, 13.107.246.66] + +2025-01-11T18:33:18.5932614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.65] + +2025-01-11T18:33:40.3161699+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:33:40.7342565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.112.25] + +2025-01-11T18:34:06.4530772+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:34:06.8629294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.113.10] + +2025-01-11T18:34:09.4506102+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-01-11T18:34:09.9303163+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 445.0202 ms + +2025-01-11T18:34:19.4280420+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-01-11T18:34:19.8870145+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 441.5711 ms + +2025-01-11T18:34:19.9391437+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 409.9515 ms + +2025-01-11T18:34:23.4229042+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 112.2688 ms + +2025-01-11T18:34:28.6667092+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:34:29.0906360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.77.37] + +2025-01-11T18:34:30.3547246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.56.129, 52.109.0.140, 52.109.16.112] + +2025-01-11T18:34:32.3862693+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:34:34.8156037+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-01-11T18:34:36.7386283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.46, 13.107.246.74] + +2025-01-11T18:34:45.9986623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-01-11T18:34:47.4315673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.44.108, 52.109.56.126] + +2025-01-11T18:34:47.7931198+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 95.8716 ms + +2025-01-11T18:34:48.4891860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 40.90.130.204, 40.90.133.102] + +2025-01-11T18:34:50.5465020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.56.109.142] + +2025-01-11T18:34:51.5747309+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.56.109.137] + +2025-01-11T18:34:53.8450365+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/Default.json responded 404 in 1623.1254 ms + +2025-01-11T18:34:56.7370160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.144.139, 20.190.144.137] + +2025-01-11T18:35:07.2398586+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 89.4171 ms + +2025-01-11T18:35:07.3718491+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 88.8079 ms + +2025-01-11T18:35:18.4280602+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:35:18.8337362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.139, 20.190.148.167] + +2025-01-11T18:35:30.3241414+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:35:47.8810704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.113.4] + +2025-01-11T18:35:47.8828992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.77.37] + +2025-01-11T18:35:50.8017663+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:35:50.8027062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-01-11T18:35:57.0249258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.44] + +2025-01-11T18:35:58.5886455+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.10] + +2025-01-11T18:35:59.3432782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-01-11T18:36:00.0171810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.73] + +2025-01-11T18:36:00.9572711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.25] + +2025-01-11T18:36:01.2414316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.74, 13.107.246.73] + +2025-01-11T18:36:01.7899178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.56.130, 52.109.112.174] + +2025-01-11T18:36:02.6104167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 40.90.133.102, 20.135.4.166] + +2025-01-11T18:36:02.8801198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.206.188.207] + +2025-01-11T18:36:03.1726738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.206.188.206] + +2025-01-11T18:36:03.1784059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.161, 20.190.144.165] + +2025-01-11T18:36:31.2943909+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:36:32.5804532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.16.112] + +2025-01-11T18:36:32.8653399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-01-11T18:36:41.5988926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[] + +2025-01-11T18:36:42.2581531+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.77.37] + +2025-01-11T18:36:48.5064177+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:36:53.5360180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T18:36:53.5472219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T18:36:53.5557440+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-01-11T18:36:54.8451607+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:36:54.9068471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.61, 13.107.253.65] + +2025-01-11T18:37:21.7914036+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:37:22.9566473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.49, 13.105.74.50, 20.135.4.166] + +2025-01-11T18:37:27.8361692+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.37.230.75] + +2025-01-11T18:37:29.5483713+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.139, 20.190.144.137] + +2025-01-11T18:37:32.8031014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24] + +2025-01-11T18:37:34.2849635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-11T18:37:36.2248942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.26] + +2025-01-11T18:37:58.0691524+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:38:09.5065052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.61] + +2025-01-11T18:38:11.0206350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.61] + +2025-01-11T18:38:12.4447496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-01-11T18:38:15.7476680+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 20.26.156.215] + +2025-01-11T18:38:16.9925385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-01-11T18:38:18.8571611+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.73, 13.107.246.74] + +2025-01-11T18:38:19.0385825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.61, 13.107.246.74] + +2025-01-11T18:38:19.0400847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.61, 13.107.246.74] + +2025-01-11T18:38:22.2827681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.112.25] + +2025-01-11T18:38:22.8999054+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:38:25.3963822+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:38:25.7476940+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:38:29.0951186+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:38:29.0966862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.166, 20.190.148.163] + +2025-01-11T18:38:30.7538493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-01-11T18:38:33.4687180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.28.47] + +2025-01-11T18:38:38.0532737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.49, 13.105.74.50, 40.90.133.102] + +2025-01-11T18:38:41.1433240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-01-11T18:39:07.5003693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.9] + +2025-01-11T18:39:11.8774908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.59, 13.107.246.61] + +2025-01-11T18:39:36.0086624+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.113.22] + +2025-01-11T18:39:48.6719870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 13.105.74.49, 40.90.133.102] + +2025-01-11T18:39:50.9112480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.150, 23.62.212.146, 23.206.188.215] + +2025-01-11T18:39:50.9121991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.206.188.206] + +2025-01-11T18:39:52.2003186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.44.108] + +2025-01-11T18:39:52.5979387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.206.188.207] + +2025-01-11T18:40:01.6274065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.163, 20.190.144.163] + +2025-01-11T18:40:02.0412319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.148.163, 20.190.144.163] + +2025-01-11T18:40:24.3661565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-01-11T18:40:50.7328755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.74.50, 13.105.74.49] + +2025-01-11T18:40:51.6761665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.161, 20.190.148.163] + +2025-01-11T18:40:53.5747603+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:40:58.3819638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.124.13] + +2025-01-11T18:41:02.6687492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.114.26, 140.82.113.26] + +2025-01-11T18:41:09.2224178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.74.50, 20.135.6.2] + +2025-01-11T18:41:16.2633502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 13.105.74.50] + +2025-01-11T18:41:37.6430589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.10] + +2025-01-11T18:41:46.6086271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.89.117] + +2025-01-11T18:41:48.3413422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2] + +2025-01-11T18:41:50.1144945+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T18:41:50.1163903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T18:41:50.1285631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-01-11T18:41:54.8418418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.5] + +2025-01-11T18:41:56.7546186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.61] + +2025-01-11T18:41:57.0179958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.59, 13.107.246.74] + +2025-01-11T18:42:28.0681959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.116.4] + +2025-01-11T18:42:30.2274721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.9] + +2025-01-11T18:42:30.3129424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.163, 20.190.144.163] + +2025-01-11T18:42:30.5971751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.144.163, 20.190.148.162] + +2025-01-11T18:42:34.7220774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253] + +2025-01-11T18:42:37.8871946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.67, 13.107.246.74] + +2025-01-11T18:43:12.7579843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-01-11T18:43:14.3545969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-01-11T18:43:14.5696610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.59, 13.107.246.42] + +2025-01-11T18:43:18.3224540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-01-11T18:43:18.3234656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.57] + +2025-01-11T18:43:19.4033850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.57] + +2025-01-11T18:43:19.6660597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.59, 13.107.246.73] + +2025-01-11T18:43:20.0209193+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.41, 13.107.246.67] + +2025-01-11T18:43:40.5461608+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.144.163, 20.190.144.138] + +2025-01-11T18:43:51.0442058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.114.25] + +2025-01-11T18:43:54.6963270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.116.10] + +2025-01-11T18:44:12.6310080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.59, 13.107.246.74, 13.107.246.73] + +2025-01-11T18:44:37.6641629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-01-11T18:44:50.3044646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.124.191] + +2025-01-11T18:44:53.2108675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.62.212.146, 23.62.212.150, 23.206.188.206] + +2025-01-11T18:44:53.4421329+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.62.212.155, 23.206.188.206] + +2025-01-11T18:44:58.8702876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.37, 20.190.141.39, 20.190.141.32] + +2025-01-11T18:45:08.9509878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.45.176.104, 23.62.212.146, 23.62.212.150] + +2025-01-11T18:45:09.5217246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.144, 23.45.176.99, 23.62.212.155] + +2025-01-11T18:45:10.0557396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.144.138, 20.190.144.163] + +2025-01-11T18:45:24.8364595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.116.3] + +2025-01-11T18:45:43.8099108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.6] + +2025-01-11T18:45:53.3026214+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:46:14.3616996+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:46:14.7040027+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:46:24.3358637+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:46:43.8149895+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T18:46:45.0980605+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:47:10.5648602+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:47:12.4442643+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:47:14.2271248+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:47:14.2887189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.59, 13.107.246.61, 13.107.246.74] + +2025-01-11T18:47:35.9459296+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:47:41.4046250+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:47:41.6281808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-01-11T18:47:49.7851879+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T18:47:49.7966577+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:47:50.2198985+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 422.4499 ms + +2025-01-11T18:47:50.5879687+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 365.0288 ms + +2025-01-11T18:47:54.8099270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.56.129, 52.109.28.47, 52.109.89.19] + +2025-01-11T18:48:05.4800454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.246.41] + +2025-01-11T18:48:07.6499670+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:48:12.1239575+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:48:12.3655034+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-01-11T18:48:19.2323754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.5] + +2025-01-11T18:48:20.1404450+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:48:23.4023615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.163, 20.190.148.164] + +2025-01-11T18:48:27.6220761+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:48:31.8473692+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:49:05.6977121+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:49:27.5191751+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:49:31.1205988+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 324.6064 ms + +2025-01-11T18:49:31.1841500+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.9493 ms + +2025-01-11T18:49:37.1259564+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:49:39.4183264+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:49:39.7456365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24] + +2025-01-11T18:50:06.2302253+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:50:06.7793293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-01-11T18:50:08.1912141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.56.129, 52.109.89.19, 52.109.28.47] + +2025-01-11T18:50:09.7127050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T18:50:10.3570257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T18:50:10.7440113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-01-11T18:50:11.2465814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-01-11T18:50:12.3985240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.0.138] + +2025-01-11T18:50:35.3286210+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T18:50:35.7712941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-01-11T18:50:40.7927439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.116.4] + +2025-01-11T18:50:41.8619171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.113.9] + +2025-01-11T18:50:47.8344853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.69, 13.107.246.73] + +2025-01-11T18:50:48.6917246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.42, 13.107.246.67, 13.107.246.71] + +2025-01-11T18:50:49.8670561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.113.26] + +2025-01-11T18:50:50.9578051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.21] + +2025-01-11T18:51:02.8406839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.67, 13.107.246.71] + +2025-01-11T18:51:05.2239582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.124.13] + +2025-01-11T18:51:26.0757228+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-01-11T18:51:34.6361424+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:51:35.0687262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.45.176.98, 23.62.212.150, 23.45.176.104] + +2025-01-11T18:51:36.1065034+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:51:36.6196155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.45.176.98, 23.62.212.155, 23.62.212.144] + +2025-01-11T18:51:37.2322749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.148.164, 20.190.144.166] + +2025-01-11T18:51:38.3815445+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:51:38.8212079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.39, 20.190.141.33, 20.190.141.37] + +2025-01-11T18:51:46.5567426+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:51:50.2738960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.9] + +2025-01-11T18:51:52.3704420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 20.135.6.9] + +2025-01-11T18:52:10.2954937+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:52:14.9303610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.42, 13.107.246.71, 13.107.246.67] + +2025-01-11T18:52:15.2006338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.71, 13.107.246.67] + +2025-01-11T18:52:17.2815896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.114.5] + +2025-01-11T18:52:19.4719026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-01-11T18:52:33.3208957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.67, 13.107.246.73] + +2025-01-11T18:52:37.6320364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 4.208.26.197] + +2025-01-11T18:52:37.8706706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-01-11T18:52:55.7152667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.56.129, 52.109.0.140, 52.109.89.19] + +2025-01-11T18:53:01.4818190+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.67, 13.107.246.59] + +2025-01-11T18:53:01.7617584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 13.105.28.1] + +2025-01-11T18:53:11.2836335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 20.135.6.2] + +2025-01-11T18:53:11.5776083+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.139, 20.190.144.164] + +2025-01-11T18:53:13.2672400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-01-11T18:53:14.0077259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.124.191] + +2025-01-11T18:53:20.3088746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 13.105.28.1] + +2025-01-11T18:53:21.8875073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.167, 20.190.144.139] + +2025-01-11T18:54:12.9002746+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-01-11T18:54:13.2352039+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 322.7756 ms + +2025-01-11T18:54:13.2997591+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.4464 ms + +2025-01-11T18:54:18.9802340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 4.208.26.197, 140.82.121.3] + +2025-01-11T18:54:20.0916084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.44.111, 52.109.56.129] + +2025-01-11T18:54:37.9716452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.59, 13.107.246.73] + +2025-01-11T18:54:39.5589296+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.3911 ms + +2025-01-11T18:54:39.6266497+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.913 ms + +2025-01-11T18:54:40.9197756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253] + +2025-01-11T18:54:41.8119096+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 4.208.26.197] + +2025-01-11T18:54:42.6433012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.5, 20.135.6.2] + +2025-01-11T18:54:44.7470354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.69, 13.107.246.59] + +2025-01-11T18:54:49.4352535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.42, 13.107.246.71, 13.107.246.51] + +2025-01-11T18:54:57.4175878+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.7593 ms + +2025-01-11T18:54:57.4845404+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.2373 ms + +2025-01-11T18:55:06.7764585+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T18:55:06.8033287+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T18:55:06.8086036+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-01-11T18:55:07.0283718+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 206.7944 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T18:55:08.1411622+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 1112.8031 ms + +2025-01-11T18:55:08.1516331+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T18:55:08.3770582+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 209.6803 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-01-11T18:55:08.9434020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.42, 13.107.246.69, 13.107.246.59] + +2025-01-11T18:55:09.1181452+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 741.0524 ms + +2025-01-11T18:55:10.1433347+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 3330.4575 ms + +2025-01-11T18:55:10.2227952+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T18:55:14.8653626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-01-11T18:55:16.0116416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T18:55:16.1827565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T18:55:16.1852576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-01-11T18:55:16.8881792+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T18:55:17.0025702+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 106.1706 ms + +2025-01-11T18:55:17.0828469+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-01-11T18:55:17.1071531+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 195.4286 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T18:55:17.3925585+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 280.3737 ms + +2025-01-11T18:55:17.6133290+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 203.6284 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-01-11T18:55:17.8570141+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 244.9106 ms + +2025-01-11T18:55:21.2107949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154] + +2025-01-11T18:55:27.7538868+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.59, 13.107.246.73] + +2025-01-11T18:55:29.4438607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.212.62.96] + +2025-01-11T18:55:31.4743910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.2, 13.105.74.50] + +2025-01-11T18:55:32.9121518+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.2066 ms + +2025-01-11T18:55:32.9765028+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.1934 ms + +2025-01-11T18:55:38.6746794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.45.176.98, 23.45.176.104, 184.27.185.94] + +2025-01-11T18:55:40.4416362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.62.212.155, 23.62.212.144, 23.220.70.80] + +2025-01-11T18:55:43.2302321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.112.10] + +2025-01-11T18:55:43.7939111+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.5, 20.135.6.2, 40.90.133.102] + +2025-01-11T18:55:43.7990756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[184.27.185.94, 23.206.188.215, 23.212.62.79] + +2025-01-11T18:55:43.8024372+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.80, 23.220.70.73, 23.212.62.96] + +2025-01-11T18:55:43.8053849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.148.166, 20.190.148.167] + +2025-01-11T18:55:43.8075540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.139, 20.190.144.165] + +2025-01-11T18:55:45.1658229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-01-11T18:55:48.2733086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.59, 13.107.246.41] + +2025-01-11T18:55:49.3530904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.42, 13.107.246.45, 13.107.246.59] + +2025-01-11T18:57:12.9260052+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:57:34.2963723+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-01-11T18:57:39.7111419+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 310.7224 ms + +2025-01-11T18:57:39.7759353+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.5909 ms + +2025-01-11T18:57:42.9062634+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:57:44.6641407+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-01-11T18:57:45.2123447+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 520.6598 ms + +2025-01-11T18:57:45.3522169+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 641.4318 ms + +2025-01-11T18:57:45.3944414+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-01-11T18:57:45.8367270+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 268.2624 ms + +2025-01-11T18:57:46.9185898+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-01-11T18:57:47.2056756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.4] + diff --git a/logs/log20250228.txt b/logs/log20250228.txt new file mode 100644 index 0000000..88809a0 --- /dev/null +++ b/logs/log20250228.txt @@ -0,0 +1,11374 @@ +2025-02-28T15:45:41.6527756+08:00 [INF] +FastGithub.HttpServer +已监听https://localhost:443,https反向代理服务启动完成 + +2025-02-28T15:45:41.7116058+08:00 [INF] +FastGithub.HttpServer +已监听http://localhost:81,http反向代理服务启动完成 + +2025-02-28T15:45:41.7134393+08:00 [INF] +FastGithub.HttpServer +已监听ssh://localhost:22,github的ssh反向代理服务启动完成 + +2025-02-28T15:45:41.7155059+08:00 [INF] +FastGithub.HttpServer +已监听git://localhost:9418,github的git反向代理服务启动完成 + +2025-02-28T15:45:41.7573087+08:00 [INF] +FastGithub.AppHostedService +FastGithub启动完成,当前版本为v2.1.4,访问 https://github.com/dotnetcore/fastgithub 关注新版本 + +2025-02-28T15:45:41.8142128+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +127.0.0.1:80 <=> 127.0.0.1:81 + +2025-02-28T15:45:41.8171150+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +::1:80 <=> ::1:81 + +2025-02-28T15:45:57.2143552+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-02-28T15:45:57.2185526+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-02-28T15:45:59.8755660+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-02-28T15:45:59.8784737+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->127.0.0.1 + +2025-02-28T15:45:59.9637795+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->127.0.0.1 + +2025-02-28T15:45:59.9653058+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +user-images.githubusercontent.com->127.0.0.1 + +2025-02-28T15:46:00.1095707+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/ responded 200 in 1893.0231 ms + +2025-02-28T15:46:01.6022929+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-primitives-d9abecd14f1e.css responded 200 in 1106.4571 ms + +2025-02-28T15:46:01.6025952+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/light-7aa84bb7e11e.css responded 200 in 1108.4242 ms + +2025-02-28T15:46:01.6271230+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dashboard-0de2bd46c6d8.css responded 200 in 1129.7139 ms + +2025-02-28T15:46:01.6390166+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/notifications-global-01e85cd1be94.js responded 200 in 1140.8159 ms + +2025-02-28T15:46:01.6393337+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_ajax-error_ts-app_assets_modules_github_behaviors_include-87a4ae-97019968d380.js responded 200 in 1141.5367 ms + +2025-02-28T15:46:01.6730173+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es_pickBy_js-733b80864e6e.js responded 200 in 1174.3957 ms + +2025-02-28T15:46:01.7382537+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_emotion_is-prop-valid_dist_emotion-is-prop-valid_esm_js-node_modules_emo-62da9f-2df2f32ec596.js responded 200 in 1239.2064 ms + +2025-02-28T15:46:01.7611910+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_arianotify-polyfill_ariaNotify-polyfill_js-node_modules_github_mi-3abb8f-d7e6bc799724.js responded 200 in 1261.8815 ms + +2025-02-28T15:46:01.8023115+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/environment-f04cb2a9fc8c.js responded 200 in 1302.0882 ms + +2025-02-28T15:46:01.8932485+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_selector-observer_dist_index_esm_js-f690fd9ae3d5.js responded 200 in 1392.7364 ms + +2025-02-28T15:46:01.9124421+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es__Stack_js-node_modules_lodash-es__Uint8Array_js-node_modules_l-4faaa6-4a736fde5c2f.js responded 200 in 1414.3069 ms + +2025-02-28T15:46:01.9474997+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_github_catalyst_lib_index_-280e4f-f7d6cfa05e86.js responded 200 in 1449.1962 ms + +2025-02-28T15:46:01.9477382+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es__baseIsEqual_js-8929eb9718d5.js responded 200 in 1449.3518 ms + +2025-02-28T15:46:01.9823713+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_delegated-events_dist_in-e6ca0f-ca6ea108172d.js responded 200 in 1483.8601 ms + +2025-02-28T15:46:02.0275320+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-93aded0ee8a1.css responded 200 in 1530.2263 ms + +2025-02-28T15:46:02.0875232+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/8255800 responded 200 in 1287.5986 ms + +2025-02-28T15:46:02.1447765+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dark-f65db3e8d171.css responded 200 in 1647.6807 ms + +2025-02-28T15:46:02.1667025+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_delegated-events_dist_index_js-node_modules_github_catalyst_lib_index_js-f6223d90c7ba.js responded 200 in 1668.7841 ms + +2025-02-28T15:46:02.1882198+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/discussions-dae9ae1a46a6.css responded 200 in 1690.5133 ms + +2025-02-28T15:46:02.2029559+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_text-expander-element_dist_index_js-78748950cb0c.js responded 200 in 1701.7828 ms + +2025-02-28T15:46:02.2143013+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/28429 responded 200 in 1414.2427 ms + +2025-02-28T15:46:02.2518408+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_oddbird_popover-polyfill_dist_popover_js-9da652f58479.js responded 200 in 1752.5053 ms + +2025-02-28T15:46:02.2637340+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_auto-complete-element_dist_index_js-node_modules_github_catalyst_-8e9f78-a74b4e0a8a6b.js responded 200 in 1762.7231 ms + +2025-02-28T15:46:02.2760088+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_morphdom_dist_morphdom-e-7c534c-a4a1922eb55f.js responded 200 in 1774.1048 ms + +2025-02-28T15:46:02.3070517+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/element-registry-7adbcd7746ed.js responded 200 in 1805.5051 ms + +2025-02-28T15:46:02.3325506+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dashboard-264fbf7a6bc1.js responded 200 in 1833.7647 ms + +2025-02-28T15:46:02.3325506+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/52594 responded 200 in 1532.4341 ms + +2025-02-28T15:46:02.3453792+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_updatable-content_updatable-content_ts-a1563f62660e.js responded 200 in 1843.1955 ms + +2025-02-28T15:46:02.3454629+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-8bed0685a4b5.css responded 200 in 1848.2949 ms + +2025-02-28T15:46:02.3456429+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lit-html_lit-html_js-be8cb88f481b.js responded 200 in 1844.014 ms + +2025-02-28T15:46:02.3524518+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_braintree_browser-detection_dist_browser-detection_js-node_modules_githu-bb80ec-72267f4e3ff9.js responded 200 in 1850.7198 ms + +2025-02-28T15:46:02.3804618+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-react-9a5713772ca5.js responded 200 in 1881.7123 ms + +2025-02-28T15:46:02.4048179+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_oddbird_popover-polyfill_dist_popover-fn_js-55fea94174bf.js responded 200 in 1902.1848 ms + +2025-02-28T15:46:02.4440272+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_markdown-toolbar-element_dist_index_js-ceef33f593fa.js responded 200 in 1942.6656 ms + +2025-02-28T15:46:02.4442978+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_color-convert_index_js-e3180fe3bcb3.js responded 200 in 1942.335 ms + +2025-02-28T15:46:02.4733841+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/octicons-react-611691cca2f6.js responded 200 in 1974.233 ms + +2025-02-28T15:46:02.4824964+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_primer_behaviors_dist_esm_index_mjs-0dbb79f97f8f.js responded 200 in 1981.6542 ms + +2025-02-28T15:46:02.4825253+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_ui-commands_ui-commands_ts-97496b0f52ba.js responded 200 in 1979.7088 ms + +2025-02-28T15:46:02.5242587+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/wp-runtime-58154cbb77d3.js responded 200 in 2024.2393 ms + +2025-02-28T15:46:02.5422864+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/mona-loading-dark-7701a7b97370.gif responded 200 in 2032.3075 ms + +2025-02-28T15:46:02.6789291+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 1878.7352 ms + +2025-02-28T15:46:02.6849731+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_task-list_ts-app_assets_modules_github_sso_ts-ui_packages-900dde-035d0557f18e.js responded 200 in 2182.4849 ms + +2025-02-28T15:46:02.7045893+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/keyboard-shortcuts-dialog-ac448fe050d6.js responded 200 in 2201.8236 ms + +2025-02-28T15:46:02.7228122+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_file-attachment-element_dist_index_js-node_modules_primer_view-co-c44a69-8094ee2ecc5e.js responded 200 in 2221.5055 ms + +2025-02-28T15:46:02.7744303+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_turbo_dist_turbo_es2017-esm_js-e3cbe28f1638.js responded 200 in 2272.5774 ms + +2025-02-28T15:46:02.7842267+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_sticky-scroll-into-view_ts-3e000c5d31a9.js responded 200 in 2281.7776 ms + +2025-02-28T15:46:02.7964552+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_quote-selection_dist_index_js-node_modules_github_session-resume_-69cfcc-bc42a18e77d5.js responded 200 in 2294.1707 ms + +2025-02-28T15:46:02.8536722+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/behaviors-8ac983183615.js responded 200 in 2355.6679 ms + +2025-02-28T15:46:02.8933460+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/github-15d4b28ab680.css responded 200 in 2395.8357 ms + +2025-02-28T15:46:02.9122258+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-react.537b921c5dbbcf916ea9.module.css responded 200 in 2414.6191 ms + +2025-02-28T15:46:02.9772217+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/github-elements-c5fd390b3ba0.js responded 200 in 2475.5898 ms + +2025-02-28T15:46:03.0032555+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-core-369961650aac.js responded 200 in 2504.0478 ms + +2025-02-28T15:46:03.0926403+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_relative-time-element_dist_index_js-f6da4b3fa34c.js responded 200 in 2591.6171 ms + +2025-02-28T15:46:03.4432534+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/mona-loading-dark-static-8b35171e5d6c.svg responded 200 in 2932.9785 ms + +2025-02-28T15:46:03.7660549+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-lib-f1bca44e0926.js responded 200 in 3267.1803 ms + +2025-02-28T15:46:04.2019761+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_stacktrace-parser_dist_s-e7dcdd-f7cc96ebae76.js responded 200 in 3699.2026 ms + +2025-02-28T15:46:05.2272485+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_commenting_edit_ts-app_assets_modules_github_behaviors_ht-83c235-e429cff6ceb1.js responded 200 in 4724.7145 ms + +2025-02-28T15:46:05.3872008+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_delegated-events_dist_inde-893f9f-6cf3320416b8.js responded 200 in 4885.0425 ms + +2025-02-28T15:46:07.4434332+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_failbot_failbot_ts-4600dbf2d60a.js responded 200 in 6943.017 ms + +2025-02-28T15:46:08.3025534+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_filter-input-element_dist_index_js-node_modules_github_remote-inp-b5f1d7-a1760ffda83d.js responded 200 in 7801.4225 ms + +2025-02-28T15:46:08.6167825+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_site-header-logged-in-user-menu-element_element-entry_ts-90869089e515.js responded 200 in 123.0845 ms + +2025-02-28T15:46:08.6167825+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_react-partial-anchor-element_element-entry_ts-4fea8fb23f5c.js responded 200 in 123.19 ms + +2025-02-28T15:46:08.6234407+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-02-28T15:46:08.6396681+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_site_header_deferred-side-panel-element_ts-7afdd44c66a7.js responded 200 in 150.4368 ms + +2025-02-28T15:46:08.6542661+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_ghcc-consent-element_element-entry_ts-04338159da93.js responded 200 in 161.4916 ms + +2025-02-28T15:46:08.6587520+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_site_header_notification-indicator-element_ts-f158e4f0717b.js responded 200 in 169.1667 ms + +2025-02-28T15:46:08.7434690+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_github_combobox-nav_dist-b7767a-9ad7d4eda3d9.js responded 200 in 256.9354 ms + +2025-02-28T15:46:08.7590762+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_dashboard_loading-context-element_ts-05c9973fa5db.js responded 200 in 273.5238 ms + +2025-02-28T15:46:08.7590762+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-node_modules_github_mini-throttle_dist_decorators_js-ui_packages_copilot-dashboard-entrypoint-7c7052-b375572ca49f.js responded 200 in 267.3615 ms + +2025-02-28T15:46:08.7635643+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-markdown-rendering-f6845e8f5d6b.css responded 200 in 129.232 ms + +2025-02-28T15:46:08.7822260+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-create-menu-7510a0ee7657.js responded 200 in 140.6529 ms + +2025-02-28T15:46:08.8032893+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_hydro-analytics_hydro-analytics_ts-ui_packages_jump-to-element_model_ts-880f27a93f7b.js responded 200 in 315.2395 ms + +2025-02-28T15:46:08.8076389+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_dompurify_dist_purify_es_mjs-dd1d3ea6a436.js responded 200 in 173.4173 ms + +2025-02-28T15:46:08.8079902+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_decorators_js-node_modules_accname_dist_access-b37425-35bd8d94d981.js responded 200 in 168.2017 ms + +2025-02-28T15:46:08.8750069+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-node_modules_scroll-anchoring_dist_scroll-anchoring_esm_js-app_components_notifications_notif-ab7b66-4d32396883fc.js responded 200 in 389.3352 ms + +2025-02-28T15:46:08.8898835+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_test-id-props_test-id-props_ts-ui_packages_copilot-markdown_MarkdownRenderer_tsx--cd0d45-16709ea47eec.js responded 200 in 249.0495 ms + +2025-02-28T15:46:08.8936803+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_cookie-consent-link-element_element-entry_ts-8ca582ddd98a.js responded 200 in 403.6587 ms + +2025-02-28T15:46:08.9031183+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_tanstack_query-core_build_modern_queryObserver_js-node_modules_tanstack_-defd52-843b41414e0e.js responded 200 in 264.7799 ms + +2025-02-28T15:46:08.9101840+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_hydro-analytics_hydro-analytics_ts-ui_packages_query-builder-element_element-entry_ts-37a12a0ee62c.js responded 200 in 416.8143 ms + +2025-02-28T15:46:08.9197198+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_item-picker_constants_labels_ts-ui_packages_item-picker_constants_values_ts-ui_pa-163a9a-5949c2b63962.js responded 200 in 279.7445 ms + +2025-02-28T15:46:08.9329304+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_react-markdown_lib_index_js-2816acae350e.js responded 200 in 293.8413 ms + +2025-02-28T15:46:08.9428915+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_micromark-util-sanitize-uri_index_js-node_modules_remark-parse_lib_index-b69642-163efad98dc5.js responded 200 in 304.5736 ms + +2025-02-28T15:46:08.9428833+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_item-picker_components_RepositoryPicker_tsx-fed97f53635f.js responded 200 in 302.7873 ms + +2025-02-28T15:46:09.0130405+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_github_combobox-nav_dist-5f477b-eeb221e8a5a3.js responded 200 in 520.12 ms + +2025-02-28T15:46:09.0588486+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-user-nav-drawer-487d63bb6986.js responded 200 in 417.2717 ms + +2025-02-28T15:46:09.1033319+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_remark-gfm_lib_index_js-bfb9e2c9eabe.js responded 200 in 464.8948 ms + +2025-02-28T15:46:09.1427410+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_webauthn-get-element_element-entry_ts-c4e5a9b4f95a.js responded 200 in 649.2631 ms + +2025-02-28T15:46:09.1528993+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/ajax_context_list responded 200 in 622.8222 ms + +2025-02-28T15:46:09.1723512+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_primer_experimental_select-panel-element_ts-dbc875e76b97.js responded 200 in 686.3104 ms + +2025-02-28T15:46:09.1788706+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/recent-activity responded 200 in 648.7567 ms + +2025-02-28T15:46:09.1855537+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/conduit/filter responded 200 in 655.3727 ms + +2025-02-28T15:46:09.2073723+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/recent-activity responded 200 in 677.268 ms + +2025-02-28T15:46:09.2225384+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/ajax_context_list responded 200 in 692.474 ms + +2025-02-28T15:46:09.2512376+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/changelog responded 200 in 642.9983 ms + +2025-02-28T15:46:09.2744322+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/my_top_repositories responded 200 in 744.4041 ms + +2025-02-28T15:46:09.3466189+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/my_top_repositories responded 200 in 816.5236 ms + +2025-02-28T15:46:09.3528659+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_paths_index_ts-093817da643b.js responded 200 in 865.1976 ms + +2025-02-28T15:46:09.3808910+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_blob-anchor_ts-ui_packages_code-nav_code-nav_ts-ui_packages_filter--8253c1-91468a3354f9.js responded 200 in 892.9987 ms + +2025-02-28T15:46:09.4235845+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-user-nav-drawer.830d6c10c9fea7fc134e.module.css responded 200 in 783.8943 ms + +2025-02-28T15:46:09.4759170+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 200 in 834.3209 ms + +2025-02-28T15:46:09.5024333+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-vendors-node_modules_consent-banner_dist_consent-banner_js-362ca569b596.js responded 200 in 821.2551 ms + +2025-02-28T15:46:09.5752478+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_primer_experimental_toggle-switch-element_ts-670c71d392c6.js responded 200 in 1089.0319 ms + +2025-02-28T15:46:09.6224119+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_utils_copilot-chat-hooks_ts-ui_packages_issue-viewer_utils_queries_ts-7ebea5440118.js responded 200 in 982.1954 ms + +2025-02-28T15:46:09.6225947+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 200 in 941.4338 ms + +2025-02-28T15:46:09.6682300+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 387.3637 ms + +2025-02-28T15:46:09.7740310+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_search_custom-scopes-element_ts-abc100eaa2cb.js responded 200 in 1287.8376 ms + +2025-02-28T15:46:09.7905366+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_promise-with-resolvers-polyfill_promise-with-resolvers-polyfill_ts-ui_packages_re-8d43b0-ae8dde838777.js responded 200 in 1149.5055 ms + +2025-02-28T15:46:10.0846584+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_react-relay_index_js-3e4c69718bad.js responded 200 in 1447.0141 ms + +2025-02-28T15:46:10.1537973+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/conduit/for_you_feed responded 200 in 1623.6692 ms + +2025-02-28T15:46:10.3355270+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_combobox-nav_dist_index_js-node_modules_github_hotkey_dist_index_-2c4211-a3b6ffd98cc6.js responded 200 in 1695.6775 ms + +2025-02-28T15:46:10.3455114+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/22787138 responded 200 in 115.8886 ms + +2025-02-28T15:46:10.3525225+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_reactions_reactions-menu-element_ts-ec54f775ebd2.js responded 200 in 113.5736 ms + +2025-02-28T15:46:10.3642911+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/151674099 responded 200 in 135.044 ms + +2025-02-28T15:46:10.4637053+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/13776314 responded 200 in 234.1524 ms + +2025-02-28T15:46:10.5168390+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/22218312 responded 200 in 287.032 ms + +2025-02-28T15:46:10.5830916+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/25507 responded 200 in 352.8352 ms + +2025-02-28T15:46:10.6656371+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/5741620 responded 200 in 435.0335 ms + +2025-02-28T15:46:10.6937517+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/41712985 responded 200 in 462.9073 ms + +2025-02-28T15:46:10.7040958+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_search_qbsearch-input-element_ts-fa4fbd63fabe.js responded 200 in 2215.0305 ms + +2025-02-28T15:46:10.7464073+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/862951 responded 200 in 516.2091 ms + +2025-02-28T15:46:10.7658053+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-chat.d7f49ad1dd17a94912af.module.css responded 200 in 2131.8177 ms + +2025-02-28T15:46:10.8643389+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_query-builder-element_query-builder-element_ts-763c74a29685.js responded 200 in 2376.5386 ms + +2025-02-28T15:46:10.8727020+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/315367 responded 200 in 641.3853 ms + +2025-02-28T15:46:11.0169277+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/1071317 responded 200 in 785.9584 ms + +2025-02-28T15:46:11.0478823+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/4221191 responded 200 in 817.5886 ms + +2025-02-28T15:46:11.1229759+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/26290929 responded 200 in 892.2452 ms + +2025-02-28T15:46:11.3625456+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/42201 responded 200 in 1133.2747 ms + +2025-02-28T15:46:11.6038598+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/1132745 responded 200 in 1372.8386 ms + +2025-02-28T15:46:11.6395609+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/628926 responded 200 in 1408.6003 ms + +2025-02-28T15:46:11.6480602+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/14606 responded 200 in 1417.2066 ms + +2025-02-28T15:46:11.9185003+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/20921671 responded 200 in 1687.9357 ms + +2025-02-28T15:46:11.9836521+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_utils_copilot-local-storage_ts-ui_packages_hydro-analytics_hydro-ana-74ad7c-1b23916286df.js responded 200 in 3492.2567 ms + +2025-02-28T15:46:12.1553782+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/309799 responded 200 in 1924.4734 ms + +2025-02-28T15:46:12.9001082+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 12100.7047 ms + +2025-02-28T15:46:15.5485741+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-copilot-menu-df5724dc8c23.js responded 200 in 6907.5653 ms + +2025-02-28T15:46:16.6791678+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/193483667 responded 200 in 7520.4941 ms + +2025-02-28T15:46:33.8647104+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T15:46:35.2504226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T15:46:47.2967232+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_tanstack_react-query_build_modern_useQuery_js-node_modules_hast-util-fin-d142e3-fe0e76a2e3fe.js responded 200 in 38656.9431 ms + +2025-02-28T15:46:50.3532469+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-02-28T15:46:52.2268589+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 1268.3061 ms + +2025-02-28T15:46:53.5941462+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-chat-8a807900b6c3.js responded 200 in 44953.2799 ms + +2025-02-28T15:46:53.7245236+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-02-28T15:46:54.3181116+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 570.146 ms + +2025-02-28T15:46:55.2054042+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1124.8902 ms + +2025-02-28T15:46:55.2148026+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1134.2926 ms + +2025-02-28T15:47:06.5484065+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T15:47:07.1650343+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.55.236.72, 23.55.236.74, 203.69.138.217] + +2025-02-28T15:47:45.5757750+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T15:47:46.0554016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.162, 20.190.144.161] + +2025-02-28T15:47:47.6859415+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T15:47:48.3464333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-02-28T15:48:10.1605045+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T15:48:10.4561259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.64, 13.107.253.49] + +2025-02-28T15:48:18.8071500+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T15:48:19.0965033+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18] + +2025-02-28T15:48:54.6781631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.35, 20.190.141.36, 20.190.141.34] + +2025-02-28T15:48:58.4186214+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T15:48:58.6287953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T15:49:20.5229594+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T15:49:20.7113432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T15:49:21.9492737+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T15:49:22.2191947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.31] + +2025-02-28T15:51:50.2843704+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T15:51:50.7935529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.56.129, 52.109.28.47] + +2025-02-28T15:51:54.0139622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.26.156.215] + +2025-02-28T15:51:55.2136833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +clientnotification-userprodscus1-1.servicebus.windows.net:443->[40.84.185.67] + +2025-02-28T15:51:56.0373770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18] + +2025-02-28T15:51:57.2744108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10] + +2025-02-28T15:51:58.5141436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 40.90.133.99, 13.104.158.180] + +2025-02-28T15:52:01.1739573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.56.126, 52.109.28.50] + +2025-02-28T15:52:02.6750222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.21] + +2025-02-28T15:52:03.1951696+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T15:52:08.4007452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2] + +2025-02-28T15:52:09.5842025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25] + +2025-02-28T15:52:15.4680631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168] + +2025-02-28T15:52:20.6181118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18] + +2025-02-28T15:52:22.0048991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.74] + +2025-02-28T15:52:23.1550936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46] + +2025-02-28T15:52:28.4574410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.63.243.99, 23.63.243.96, 23.211.176.20] + +2025-02-28T15:52:34.3812556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-02-28T15:52:35.7453564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.111.227.28] + +2025-02-28T15:52:39.9159436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.28.47] + +2025-02-28T15:52:40.7551254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.64, 13.107.246.38] + +2025-02-28T15:52:41.5455763+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.73, 13.107.246.74] + +2025-02-28T15:52:42.3656743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-02-28T15:52:48.3892178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T15:52:48.7664299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T15:52:49.1383769+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T15:52:50.6162400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.63.242.90, 23.63.243.80, 23.37.230.88] + +2025-02-28T15:52:53.5059064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.166, 20.190.148.162] + +2025-02-28T15:52:58.8360059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.15, 40.90.133.99] + +2025-02-28T15:53:06.6668478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.25] + +2025-02-28T15:53:11.5072906+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 13.107.246.74, 13.107.253.49] + +2025-02-28T15:53:11.5087740+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.73, 13.107.246.31] + +2025-02-28T15:53:52.9282840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 20.26.156.215] + +2025-02-28T15:53:55.7580622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.39, 20.190.141.34, 20.190.141.36] + +2025-02-28T15:53:59.8580780+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.74.50, 20.135.6.15] + +2025-02-28T15:54:02.3086248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-02-28T15:54:13.5586195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5] + +2025-02-28T15:54:22.4888472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.44, 13.107.246.74] + +2025-02-28T15:54:22.5594018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.31, 13.107.246.73, 13.107.246.69] + +2025-02-28T15:54:29.3993905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-02-28T15:54:30.3190319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 13.105.74.50] + +2025-02-28T15:54:30.7993316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.169, 23.208.31.143, 23.63.243.99] + +2025-02-28T15:54:34.2096530+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.25] + +2025-02-28T15:54:34.5599382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.163, 20.190.144.165] + +2025-02-28T15:54:52.1897869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.38, 13.107.246.74] + +2025-02-28T15:55:02.8108053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 140.82.121.10] + +2025-02-28T15:55:05.2303152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 20.135.6.7] + +2025-02-28T15:56:30.0229338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.6.4] + +2025-02-28T15:56:52.9546768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-02-28T15:57:10.6145926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-02-28T15:57:10.8747056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.25, 140.82.113.26] + +2025-02-28T15:57:11.7649331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-02-28T15:57:17.3155795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.163, 40.126.35.84] + +2025-02-28T15:57:29.1954744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.44] + +2025-02-28T15:57:37.9650895+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154] + +2025-02-28T15:57:43.4355488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 20.135.6.9] + +2025-02-28T15:57:45.6257942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-02-28T15:57:48.5560720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-02-28T15:57:48.5600519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-02-28T15:57:48.5629049+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-02-28T15:57:51.2265622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.37.230.82, 23.63.243.80, 23.63.242.90] + +2025-02-28T15:57:54.4475315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.148.163] + +2025-02-28T15:57:56.8264529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-02-28T15:57:57.0660069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.67, 13.107.246.38] + +2025-02-28T15:57:58.1762099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.148.165, 20.190.148.167] + +2025-02-28T15:58:00.2764657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-02-28T15:58:01.2465893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 20.135.6.15] + +2025-02-28T15:58:08.1362926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.113.26] + +2025-02-28T15:58:12.2470235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.74] + +2025-02-28T15:58:12.2514006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.31, 13.107.246.73, 13.107.246.74] + +2025-02-28T15:58:12.6773999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.74, 13.107.246.67] + +2025-02-28T15:58:15.0567524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.113.5] + +2025-02-28T15:58:18.9577387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.73, 13.107.246.74] + +2025-02-28T15:58:20.6899934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.161, 20.190.148.165] + +2025-02-28T15:58:46.4882294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.77.37, 52.109.6.4] + +2025-02-28T15:58:49.3688069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.113.22] + +2025-02-28T15:58:58.8184009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.166, 20.190.144.160] + +2025-02-28T15:59:06.3186679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.2] + +2025-02-28T15:59:12.3389048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-02-28T15:59:19.9397114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.112.26] + +2025-02-28T15:59:21.0901283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.211.178.11, 23.211.178.234, 23.37.230.82] + +2025-02-28T15:59:24.3098109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-02-28T15:59:24.9301269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.66] + +2025-02-28T15:59:24.9338999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.253.45] + +2025-02-28T15:59:25.3303599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.74, 13.107.246.67] + +2025-02-28T15:59:31.0397416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.143, 23.208.31.169, 23.63.243.99] + +2025-02-28T15:59:31.2694526+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 20.135.6.9] + +2025-02-28T15:59:33.1107906+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.161, 20.190.148.165] + +2025-02-28T15:59:34.5498258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.114.26] + +2025-02-28T15:59:53.1903891+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.253.45, 13.107.246.69] + +2025-02-28T15:59:54.5602422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.38] + +2025-02-28T15:59:58.1100829+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.4] + +2025-02-28T16:00:01.6425739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.240, 23.58.144.235, 23.211.178.11] + +2025-02-28T16:00:02.3306939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.242, 23.58.144.235, 23.208.31.143] + +2025-02-28T16:00:20.6110533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.28.1] + +2025-02-28T16:00:21.3512528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.160, 20.190.144.161] + +2025-02-28T16:00:44.4427280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.77.37, 52.109.89.117] + +2025-02-28T16:01:05.3031225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-02-28T16:01:58.7844972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-02-28T16:02:00.6501989+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.164, 20.190.144.166] + +2025-02-28T16:02:05.0248838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.240, 23.58.144.235, 23.197.49.170] + +2025-02-28T16:02:06.8374922+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:02:10.8850224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.22] + +2025-02-28T16:02:13.8461125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.44.108] + +2025-02-28T16:02:40.1358601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-02-28T16:02:42.0580299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.66, 13.107.246.73] + +2025-02-28T16:02:43.6561410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.52.84] + +2025-02-28T16:02:44.1063182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.9] + +2025-02-28T16:02:45.6983887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.148.164, 20.190.144.166] + +2025-02-28T16:02:54.2564537+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-02-28T16:02:55.3369457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.253.67, 13.107.253.45] + +2025-02-28T16:02:56.6571178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.253.49] + +2025-02-28T16:02:58.9165088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.166, 20.190.144.160] + +2025-02-28T16:02:59.1986684+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.166, 20.190.144.160] + +2025-02-28T16:03:01.1666299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-02-28T16:03:02.3167775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T16:03:02.3204744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T16:03:02.3230504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T16:03:02.7772272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-02-28T16:03:03.8365898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.253.49, 13.107.246.67] + +2025-02-28T16:03:04.4173412+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.15] + +2025-02-28T16:03:13.9471719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.253.67, 13.107.246.74, 13.107.253.45] + +2025-02-28T16:03:14.2493142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.246.40] + +2025-02-28T16:03:46.7783233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.77.37] + +2025-02-28T16:03:50.8288555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.112.22] + +2025-02-28T16:03:55.4390689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.113.4] + +2025-02-28T16:03:59.0986724+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.165, 20.190.148.162] + +2025-02-28T16:03:59.3798546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.136, 20.190.144.138] + +2025-02-28T16:04:13.4587708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 20.26.156.216] + +2025-02-28T16:04:21.8592069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.114.25] + +2025-02-28T16:04:25.5396304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.66] + +2025-02-28T16:04:25.5426834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.253.67, 13.107.246.74] + +2025-02-28T16:04:25.5448728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.74] + +2025-02-28T16:04:31.7102757+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.242, 23.58.144.235, 23.208.31.169] + +2025-02-28T16:04:35.5401695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.25] + +2025-02-28T16:04:48.8825638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.10] + +2025-02-28T16:04:49.9901947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.253.44] + +2025-02-28T16:04:54.4509341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.11] + +2025-02-28T16:04:58.5610205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.73, 13.107.246.67] + +2025-02-28T16:05:01.4214349+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.3] + +2025-02-28T16:05:01.8709862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.235, 23.58.144.240, 23.197.49.170] + +2025-02-28T16:05:01.8745826+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.235, 23.58.144.242, 23.208.31.169] + +2025-02-28T16:05:08.2120741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.7] + +2025-02-28T16:05:24.4316642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.7, 20.135.6.11] + +2025-02-28T16:05:29.3314949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.166, 20.190.144.165] + +2025-02-28T16:05:37.5222040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.114.25] + +2025-02-28T16:05:40.2318267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.235, 23.58.144.242, 23.206.188.215] + +2025-02-28T16:05:47.4211020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 13.105.28.1] + +2025-02-28T16:05:52.3429131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.74] + +2025-02-28T16:05:57.2324172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-02-28T16:06:00.2124749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.253.67] + +2025-02-28T16:06:12.1833999+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1203290.5302 ms + +2025-02-28T16:06:12.3121391+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-02-28T16:07:00.5648333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.1, 40.90.130.207] + +2025-02-28T16:07:00.7352581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.235, 23.58.144.242, 23.197.49.201] + +2025-02-28T16:07:00.9764003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.165, 20.190.148.162] + +2025-02-28T16:07:01.2175587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.136, 20.190.144.165] + +2025-02-28T16:07:08.0551196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.235, 23.58.144.240, 23.197.49.187] + +2025-02-28T16:07:11.2154025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.114.21] + +2025-02-28T16:07:12.7255177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.112.26] + +2025-02-28T16:07:33.2470417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.1, 20.135.1.1] + +2025-02-28T16:07:47.2581133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-02-28T16:07:48.5464519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.67] + +2025-02-28T16:07:49.6868432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 13.107.246.44, 13.107.246.73] + +2025-02-28T16:07:50.7763204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-02-28T16:07:51.3563894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.1, 40.90.133.99] + +2025-02-28T16:07:52.8990530+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.165, 20.190.148.162] + +2025-02-28T16:07:59.7166107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-02-28T16:08:00.4395703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.8.88] + +2025-02-28T16:08:01.7971873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.74] + +2025-02-28T16:08:05.2666783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.165, 20.190.144.164] + +2025-02-28T16:08:05.5383637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.148.165, 20.190.144.164] + +2025-02-28T16:08:07.5073177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-02-28T16:08:07.6469029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T16:08:07.6497433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T16:08:07.6521039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T16:08:07.7208310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.44, 13.107.246.73] + +2025-02-28T16:08:12.7331250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-02-28T16:08:15.9273374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.4] + +2025-02-28T16:08:16.5981009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.112.21, 140.82.114.22] + +2025-02-28T16:08:51.2992084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.112.22, 140.82.114.22] + +2025-02-28T16:08:55.5097865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.165, 20.190.148.162] + +2025-02-28T16:09:09.4791344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.44.108] + +2025-02-28T16:09:16.0997944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.166, 20.190.148.167] + +2025-02-28T16:09:19.3795585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.166, 20.190.148.166] + +2025-02-28T16:09:23.3497376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.113.26] + +2025-02-28T16:09:25.1006605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.235, 23.58.144.242, 23.211.178.227] + +2025-02-28T16:09:26.4792910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.73, 13.107.246.44] + +2025-02-28T16:09:27.7211235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.53, 13.107.246.74] + +2025-02-28T16:09:27.7253761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.76, 13.107.246.44] + +2025-02-28T16:09:34.9995406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.114.26] + +2025-02-28T16:09:51.5807984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18] + +2025-02-28T16:09:58.6604530+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.57, 13.107.246.53] + +2025-02-28T16:09:58.6631873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.235, 23.58.144.242, 23.197.49.201] + +2025-02-28T16:10:08.6311273+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.57, 13.107.246.51] + +2025-02-28T16:10:10.7717877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.242, 23.58.144.235, 23.197.49.201] + +2025-02-28T16:10:11.2212797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.240, 23.58.144.235, 23.197.49.187] + +2025-02-28T16:10:24.8917088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.28.1] + +2025-02-28T16:10:28.7516906+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.124.191] + +2025-02-28T16:10:30.3926522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.139, 20.190.144.166] + +2025-02-28T16:10:46.9425817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.9] + +2025-02-28T16:10:55.0330047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.197.49.187, 23.197.49.170, 2.16.168.102] + +2025-02-28T16:10:56.1435493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.197.49.201, 23.197.49.186, 23.63.243.99] + +2025-02-28T16:11:01.3324391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.57, 13.107.246.53] + +2025-02-28T16:11:16.3635217+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.11] + +2025-02-28T16:11:17.8338656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.166, 23.197.49.187, 23.197.49.170] + +2025-02-28T16:11:18.2434236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.54.155.171, 23.54.155.166, 23.197.49.201] + +2025-02-28T16:11:24.6934691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.114.9] + +2025-02-28T16:11:50.2243453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.112.22, 140.82.114.21] + +2025-02-28T16:12:03.0852391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.25, 140.82.113.26] + +2025-02-28T16:12:04.2472173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.54.155.171, 23.54.155.166, 23.197.49.186] + +2025-02-28T16:12:04.3350304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.139, 20.190.144.166] + +2025-02-28T16:12:04.3393758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.166, 20.190.144.139] + +2025-02-28T16:12:07.5658446+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:12:13.3554639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.112.22] + +2025-02-28T16:12:13.5860198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.25, 140.82.112.25] + +2025-02-28T16:12:20.5356542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.166, 23.197.49.170, 23.197.49.187] + +2025-02-28T16:12:26.7676553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.76, 13.107.246.74] + +2025-02-28T16:12:45.9465367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-02-28T16:12:46.8371248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-02-28T16:12:56.1068453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.69] + +2025-02-28T16:12:57.5572549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.52.84] + +2025-02-28T16:13:02.2970797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-02-28T16:13:03.4773391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.8.36] + +2025-02-28T16:13:12.9569182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T16:13:13.4073849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T16:13:13.4081109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T16:13:13.4771007+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.67] + +2025-02-28T16:13:15.8775346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.166, 2.16.168.102, 23.206.188.206] + +2025-02-28T16:13:18.5478885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.44] + +2025-02-28T16:13:19.5384291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-02-28T16:13:19.7791582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.57, 13.107.246.74] + +2025-02-28T16:13:22.9288447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18] + +2025-02-28T16:13:27.3294105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-02-28T16:13:32.6578345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.166, 104.85.248.91, 2.16.168.102] + +2025-02-28T16:13:32.6628799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.54.155.171, 23.54.155.166, 23.206.188.215] + +2025-02-28T16:13:44.0801166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.166, 20.190.148.167] + +2025-02-28T16:13:53.2188394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.21] + +2025-02-28T16:13:57.8587319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.46] + +2025-02-28T16:14:10.6198481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.124.13] + +2025-02-28T16:14:27.1161542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.148.166, 20.190.148.167] + +2025-02-28T16:14:27.2299995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.166, 20.190.148.167] + +2025-02-28T16:14:30.9398191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.67] + +2025-02-28T16:14:33.4021987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.46, 13.107.246.69] + +2025-02-28T16:14:34.3009281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.57, 13.107.246.74, 13.107.246.53] + +2025-02-28T16:14:36.7401350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.114.25] + +2025-02-28T16:14:38.6202857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.112.25] + +2025-02-28T16:15:25.9442088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.136, 20.190.148.166] + +2025-02-28T16:15:28.1323178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.41, 13.107.246.44] + +2025-02-28T16:15:30.0421550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-02-28T16:15:32.3624194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.167, 20.190.144.166] + +2025-02-28T16:15:32.3666269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.136, 20.190.148.167] + +2025-02-28T16:15:46.8529551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.89.117] + +2025-02-28T16:15:49.0829433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.9] + +2025-02-28T16:15:54.7649184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.8.88] + +2025-02-28T16:16:00.6263974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.46, 13.107.246.45] + +2025-02-28T16:16:00.9850425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.77] + +2025-02-28T16:16:02.9329439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.74, 13.107.246.77] + +2025-02-28T16:16:18.0538980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.166, 23.54.155.180, 104.85.248.91] + +2025-02-28T16:16:20.1635558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.54.155.166, 23.54.155.171, 23.206.188.215] + +2025-02-28T16:16:25.5240927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.0.138] + +2025-02-28T16:16:27.1651128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.46, 13.107.246.69] + +2025-02-28T16:16:29.5344462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.9, 20.135.6.11] + +2025-02-28T16:16:40.4243990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.9] + +2025-02-28T16:16:47.4930054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.9] + +2025-02-28T16:16:51.7558331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.113.22] + +2025-02-28T16:17:05.0251605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.166, 20.190.148.166] + +2025-02-28T16:17:05.0291642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.148.167, 20.190.144.166] + +2025-02-28T16:17:07.0055397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.114.25] + +2025-02-28T16:17:07.0094956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.41, 13.107.246.67] + +2025-02-28T16:17:15.4958690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-02-28T16:17:15.7263218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.26] + +2025-02-28T16:17:26.9366963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.114.3] + +2025-02-28T16:17:28.8163916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.166, 20.190.148.163] + +2025-02-28T16:17:31.2074686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.114.10] + +2025-02-28T16:17:31.3785072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.41, 13.107.246.46] + +2025-02-28T16:17:36.1666013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.2] + +2025-02-28T16:17:48.6464786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-02-28T16:17:50.8072756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.113.5] + +2025-02-28T16:17:50.8113388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.77, 13.107.246.73] + +2025-02-28T16:17:56.4870501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-02-28T16:17:57.9673867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-02-28T16:18:03.5873239+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.54.155.166, 23.54.155.171, 23.63.243.99] + +2025-02-28T16:18:10.1876524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.74, 13.107.246.46] + +2025-02-28T16:18:13.7578813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-02-28T16:18:13.9076345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T16:18:13.9106423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T16:18:13.9130849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T16:18:18.7090755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.148.167, 20.190.148.166] + +2025-02-28T16:18:18.9778544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.136, 20.190.144.164] + +2025-02-28T16:18:20.2299794+08:00 [ERR] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 727904.9425 ms +System.IO.IOException: Cannot access a closed stream. + at System.Net.Http.HttpConnection.RawConnectionStream.WriteAsync(ReadOnlyMemory`1 , CancellationToken ) + at Yarp.ReverseProxy.Forwarder.StreamCopier.CopyAsync(Boolean isRequest, Stream input, Stream output, IClock clock, ActivityCancellationTokenSource activityToken, CancellationToken cancellation) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext , ContextCallback , Object ) + at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AsyncStateMachineBox`1.MoveNext(Thread ) + at System.Threading.Tasks.AwaitTaskContinuation.RunOrScheduleAction(IAsyncStateMachineBox , Boolean ) + at System.Threading.Tasks.Task.RunContinuations(Object ) + at System.Threading.Tasks.Task`1.TrySetResult(TResult ) + at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetExistingTaskResult(Task`1 , TResult ) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestStream.ReadAsyncInternal(Memory`1 destination, CancellationToken cancellationToken) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext , ContextCallback , Object ) + at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AsyncStateMachineBox`1.MoveNext(Thread ) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1UpgradeMessageBody.ReadAsyncInternalAwaited(ValueTask`1 readTask, CancellationToken cancellationToken) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext , ContextCallback , Object ) + at System.Threading.Tasks.AwaitTaskContinuation.RunOrScheduleAction(IAsyncStateMachineBox , Boolean ) + at System.Threading.Tasks.Task.RunContinuations(Object ) + at System.IO.Pipelines.StreamPipeReader.g__Core|36_0(StreamPipeReader , CancellationTokenSource , CancellationToken ) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext , ContextCallback , Object ) + at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AsyncStateMachineBox`1.MoveNext(Thread ) + at System.Threading.Tasks.AwaitTaskContinuation.RunOrScheduleAction(IAsyncStateMachineBox , Boolean ) + at System.Threading.Tasks.Task.RunContinuations(Object ) + at System.Threading.Tasks.Task`1.TrySetResult(TResult ) + at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.SetExistingTaskResult(Task`1 , TResult ) + at System.Net.Security.SslStream.ReadAsyncInternal[TIOAdapter](TIOAdapter , Memory`1 ) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext , ContextCallback , Object ) + at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AsyncStateMachineBox`1.MoveNext(Thread ) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.DuplexPipeStream.ReadAsyncInternal(Memory`1 destination, CancellationToken cancellationToken) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext , ContextCallback , Object ) + at System.Threading.Tasks.AwaitTaskContinuation.RunOrScheduleAction(IAsyncStateMachineBox , Boolean ) + at System.Threading.Tasks.Task.RunContinuations(Object ) + at System.IO.Pipelines.StreamPipeReader.g__Core|36_0(StreamPipeReader , CancellationTokenSource , CancellationToken ) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext , ContextCallback , Object ) + at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AsyncStateMachineBox`1.MoveNext(Thread ) + at System.Threading.Tasks.AwaitTaskContinuation.RunOrScheduleAction(IAsyncStateMachineBox , Boolean ) + at System.Threading.Tasks.Task.RunContinuations(Object ) + at System.Threading.Tasks.Task`1.TrySetResult(TResult ) + at FastGithub.FlowAnalyze.FlowAnalyzeStream.ReadAsync(Memory`1 destination, CancellationToken cancellationToken) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext , ContextCallback , Object ) + at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.AsyncStateMachineBox`1.MoveNext(Thread ) + at FastGithub.FlowAnalyze.DuplexPipeStreamExtensions.DuplexPipeStream.ReadAsyncInternal(Memory`1 destination, CancellationToken cancellationToken) + at System.Threading.ExecutionContext.RunInternal(ExecutionContext , ContextCallback , Object ) + at System.Threading.ThreadPoolWorkQueue.Dispatch() + at System.Threading.PortableThreadPool.WorkerThread.WorkerThreadStart() +--- End of stack trace from previous location --- + at Yarp.ReverseProxy.Forwarder.StreamCopier.CopyAsync(Boolean isRequest, Stream input, Stream output, IClock clock, ActivityCancellationTokenSource activityToken, CancellationToken cancellation) + +2025-02-28T16:18:20.4569248+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-02-28T16:18:21.8777513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.46, 13.107.246.74] + +2025-02-28T16:18:22.6685671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.46, 13.107.246.74] + +2025-02-28T16:18:23.4446999+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 2969.4723 ms + +2025-02-28T16:18:23.4506569+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-02-28T16:18:24.0996039+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/_alive responded 200 in 632.8595 ms + +2025-02-28T16:18:24.4709259+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_alive responded 200 in 363.1841 ms + +2025-02-28T16:18:26.9180584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 13.107.43.18] + +2025-02-28T16:18:27.2791686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.52.0, 52.109.124.191] + +2025-02-28T16:18:29.6686123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.77, 13.107.246.44] + +2025-02-28T16:18:33.9492259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.166, 23.54.155.180, 23.63.242.90] + +2025-02-28T16:18:58.5090786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.77] + +2025-02-28T16:18:58.5114360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.74, 13.107.246.73] + +2025-02-28T16:19:29.4509249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.160, 20.190.144.139] + +2025-02-28T16:19:29.7403764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.160, 20.190.144.139] + +2025-02-28T16:19:31.7204814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.116.10] + +2025-02-28T16:19:32.3703614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.73] + +2025-02-28T16:19:33.2675879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.77] + +2025-02-28T16:19:34.2703927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.7] + +2025-02-28T16:19:35.9311464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-02-28T16:19:37.9004296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.114.26] + +2025-02-28T16:19:52.8111611+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 13.107.42.18] + +2025-02-28T16:20:02.0977169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.69, 13.107.246.74] + +2025-02-28T16:20:03.3033662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.160, 20.190.148.167] + +2025-02-28T16:20:30.9726267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.77] + +2025-02-28T16:20:31.7427426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.52.0] + +2025-02-28T16:20:34.3439808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.160, 20.190.148.166] + +2025-02-28T16:20:44.6526293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.28.16] + +2025-02-28T16:21:03.0443920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.74, 13.107.246.73] + +2025-02-28T16:21:19.3539167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 40.79.207.82, 13.105.28.18] + +2025-02-28T16:21:19.4545505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.180, 23.54.155.166, 23.63.242.90] + +2025-02-28T16:21:20.8740972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.54.155.171, 23.54.155.166, 23.63.243.99] + +2025-02-28T16:21:22.8400563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.51] + +2025-02-28T16:21:28.0159133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.45] + +2025-02-28T16:21:47.9460655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18] + +2025-02-28T16:21:49.2952433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 20.233.83.145] + +2025-02-28T16:21:52.5754646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.7] + +2025-02-28T16:21:54.8651016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-02-28T16:21:55.8153698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.114.5] + +2025-02-28T16:22:07.7865075+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:22:08.2362474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.26] + +2025-02-28T16:22:08.5861490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.8.88] + +2025-02-28T16:22:15.8166627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.113.21] + +2025-02-28T16:22:41.0564889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.63.242.90, 23.63.243.80, 2.16.168.100] + +2025-02-28T16:22:41.0576586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.63.243.99, 2.16.168.111, 23.206.188.215] + +2025-02-28T16:22:54.2078052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-02-28T16:22:56.2778720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.5] + +2025-02-28T16:22:57.6985808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.63.243.99, 23.206.188.215, 23.206.188.206] + +2025-02-28T16:23:00.6079792+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.188.206, 23.63.243.99, 23.206.188.215] + +2025-02-28T16:23:00.7774212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2.16.168.100, 23.206.188.206, 23.63.242.90] + +2025-02-28T16:23:04.6802378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.63.242.90, 23.63.243.80] + +2025-02-28T16:23:05.1376764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.188.215, 23.206.188.206, 23.63.243.99] + +2025-02-28T16:23:11.0380450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-02-28T16:23:14.6278867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-02-28T16:23:19.6588539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T16:23:20.0797566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T16:23:20.0833707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T16:23:22.4687741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.45] + +2025-02-28T16:23:22.4723470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.77, 13.107.246.44] + +2025-02-28T16:23:22.4754238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.73, 13.107.246.53] + +2025-02-28T16:23:24.4580706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.206.188.207, 23.63.243.80] + +2025-02-28T16:23:27.5783724+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.148.166, 20.190.148.167] + +2025-02-28T16:23:29.7904407+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.114.9] + +2025-02-28T16:23:30.0186889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.6] + +2025-02-28T16:23:30.0222410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.51] + +2025-02-28T16:23:30.4483688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.77] + +2025-02-28T16:23:34.5799268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 104.85.248.91, 23.206.188.207] + +2025-02-28T16:23:35.5897232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.206.188.207, 23.63.243.80] + +2025-02-28T16:23:47.4399511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.45] + +2025-02-28T16:23:48.1809885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.69, 13.107.246.73] + +2025-02-28T16:23:56.1096203+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.139, 20.190.148.163] + +2025-02-28T16:24:02.7099388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.73, 13.107.246.67] + +2025-02-28T16:24:03.1399871+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.253.49, 13.107.246.73] + +2025-02-28T16:24:03.1459898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.69, 13.107.246.46] + +2025-02-28T16:24:16.2102833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.220.70.80, 23.206.188.206] + +2025-02-28T16:24:30.3710047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.165, 20.190.144.162] + +2025-02-28T16:24:30.4905320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.137, 20.190.144.138] + +2025-02-28T16:24:34.0003618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.114.9] + +2025-02-28T16:24:34.7122085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-02-28T16:24:36.3909147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-02-28T16:24:39.2813511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.26] + +2025-02-28T16:24:39.5109680+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.7] + +2025-02-28T16:24:41.5708939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.25, 140.82.112.26] + +2025-02-28T16:24:44.5919859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.253.49, 13.107.246.77] + +2025-02-28T16:25:02.0917163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.97, 23.67.33.71, 23.206.188.215] + +2025-02-28T16:25:10.8417057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.46, 13.107.246.73] + +2025-02-28T16:25:10.8446946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.69, 13.107.246.51] + +2025-02-28T16:25:11.8558558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.51, 13.107.253.49] + +2025-02-28T16:25:24.4763281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.138, 20.190.144.160] + +2025-02-28T16:25:26.7935550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-02-28T16:25:35.4526872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.51, 13.107.246.66] + +2025-02-28T16:25:44.1053523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.15] + +2025-02-28T16:26:19.8059855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.7] + +2025-02-28T16:26:21.1773287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.77.37] + +2025-02-28T16:26:26.8444954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.44, 13.107.246.69] + +2025-02-28T16:26:28.6398359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.51, 13.107.246.46] + +2025-02-28T16:26:32.7944800+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.0.138] + +2025-02-28T16:26:36.0350801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.124.191] + +2025-02-28T16:26:50.6062201+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.116.3] + +2025-02-28T16:26:55.8658542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.113.22] + +2025-02-28T16:27:11.8860698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.144.162, 20.190.148.163] + +2025-02-28T16:27:11.8917210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.160, 40.126.35.21] + +2025-02-28T16:27:16.6364818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-02-28T16:27:16.8664592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.25, 140.82.114.25] + +2025-02-28T16:27:29.0176344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.8.36] + +2025-02-28T16:27:29.5774371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.160, 20.190.148.165] + +2025-02-28T16:27:36.1602250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 20.233.83.145] + +2025-02-28T16:27:50.6271752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.51, 13.107.246.65] + +2025-02-28T16:28:00.5082061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-02-28T16:28:01.4389209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.44.111, 52.109.56.129] + +2025-02-28T16:28:01.8572729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.114.5] + +2025-02-28T16:28:01.8580778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.69, 13.107.246.51] + +2025-02-28T16:28:03.3386050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.97, 23.67.33.71, 23.63.243.99] + +2025-02-28T16:28:12.6187105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.97, 23.67.33.71, 23.206.188.215] + +2025-02-28T16:28:15.2382234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.51, 13.107.246.66] + +2025-02-28T16:28:19.1888612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T16:28:19.1929867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T16:28:19.1955944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T16:28:20.1407147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.220.70.80, 23.63.243.80] + +2025-02-28T16:28:21.2789273+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T16:28:21.2830812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T16:28:21.2858321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T16:28:26.2290339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.220.70.80, 23.63.242.90] + +2025-02-28T16:28:26.4589781+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.144.137, 20.190.144.160] + +2025-02-28T16:28:27.4757573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.66, 13.107.253.49] + +2025-02-28T16:28:31.2293495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.253.49, 13.107.246.40] + +2025-02-28T16:28:31.2337307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.66, 13.107.246.53] + +2025-02-28T16:29:04.3304318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.40, 13.107.246.74] + +2025-02-28T16:29:16.5904417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.80, 23.63.242.90, 23.63.243.80] + +2025-02-28T16:29:22.1907653+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.144.137, 40.126.35.19] + +2025-02-28T16:29:29.1531066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.144.137, 20.190.144.160] + +2025-02-28T16:29:32.7210672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.166] + +2025-02-28T16:29:32.9806407+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.136] + +2025-02-28T16:29:34.8313778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.9] + +2025-02-28T16:29:36.3217898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-02-28T16:29:42.9316648+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.28.1] + +2025-02-28T16:29:45.6810801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.114.25] + +2025-02-28T16:29:50.9617343+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.116.10] + +2025-02-28T16:29:51.2924077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.6] + +2025-02-28T16:29:51.6012661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.45, 13.107.246.51] + +2025-02-28T16:29:56.2337880+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.40, 13.107.246.73] + +2025-02-28T16:30:08.2540646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.71, 23.67.33.97, 23.206.188.215] + +2025-02-28T16:30:12.1823214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.45, 13.107.246.65] + +2025-02-28T16:30:12.1830214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.53, 13.107.246.73] + +2025-02-28T16:30:32.3538543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.89.117] + +2025-02-28T16:30:37.8330848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.73, 13.107.246.66] + +2025-02-28T16:30:37.8359928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.67] + +2025-02-28T16:31:06.0243270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.66] + +2025-02-28T16:31:27.8546832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.65, 13.107.246.45] + +2025-02-28T16:31:29.8051266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.9] + +2025-02-28T16:31:49.6057987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.114.9] + +2025-02-28T16:31:50.5354154+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.73, 13.107.246.71] + +2025-02-28T16:31:51.7560768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.124.191] + +2025-02-28T16:32:00.7161542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-02-28T16:32:15.5563600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.114.25] + +2025-02-28T16:32:19.9967330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.138] + +2025-02-28T16:32:21.9294449+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:32:23.0582698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.114.21] + +2025-02-28T16:32:23.2873537+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.26] + +2025-02-28T16:32:51.7078600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.77, 13.107.246.45] + +2025-02-28T16:33:05.2180959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-02-28T16:33:06.5483909+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 20.233.83.150] + +2025-02-28T16:33:08.2390363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.52.84] + +2025-02-28T16:33:08.7706772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.71, 23.67.33.97, 23.206.188.206] + +2025-02-28T16:33:16.0585775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-02-28T16:33:18.4190447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.71, 23.212.62.79, 23.67.33.97] + +2025-02-28T16:33:20.4681065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-02-28T16:33:20.6187698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T16:33:20.6229215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T16:33:20.6256805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T16:33:23.7992074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.74] + +2025-02-28T16:33:25.8490326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.80, 23.206.229.72, 23.37.230.82] + +2025-02-28T16:33:26.1802340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.136, 40.126.35.21] + +2025-02-28T16:33:32.7288927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.66] + +2025-02-28T16:33:33.0899214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.44, 13.107.246.73] + +2025-02-28T16:33:34.3492553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.80, 23.206.229.77, 23.206.229.72] + +2025-02-28T16:33:40.6007555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-02-28T16:33:42.6291968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 23.220.70.112, 23.67.33.71] + +2025-02-28T16:33:55.4599545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.80, 23.206.188.206, 23.206.229.77] + +2025-02-28T16:34:06.9302099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.6] + +2025-02-28T16:34:12.6807579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.114.4] + +2025-02-28T16:34:18.7518304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.1, 20.135.6.7] + +2025-02-28T16:34:19.2352065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.220.70.80, 23.206.188.206] + +2025-02-28T16:34:27.3730618+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 962891.4441 ms + +2025-02-28T16:34:27.5051985+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-02-28T16:34:31.2917141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.148.166, 20.190.148.162] + +2025-02-28T16:34:38.1214369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.77.37] + +2025-02-28T16:34:38.7812752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.44, 13.107.246.71] + +2025-02-28T16:34:38.7835466+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.66, 13.107.246.74] + +2025-02-28T16:34:40.2922924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.160, 20.190.144.139] + +2025-02-28T16:34:40.6013383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.160, 20.190.144.139] + +2025-02-28T16:34:51.5243973+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:34:56.0617787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.26] + +2025-02-28T16:34:57.5221475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.1, 20.135.6.9] + +2025-02-28T16:35:09.9319831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.57, 13.107.246.77] + +2025-02-28T16:35:10.1619785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 13.107.246.44, 13.107.246.66] + +2025-02-28T16:35:12.5224274+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.57, 13.107.246.51] + +2025-02-28T16:35:12.5235367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 13.107.246.44, 13.107.246.51] + +2025-02-28T16:35:39.9332824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.66, 13.107.246.44] + +2025-02-28T16:35:39.9352258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 13.107.246.66, 13.107.246.44] + +2025-02-28T16:35:47.3780623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 13.107.246.66, 13.107.246.51] + +2025-02-28T16:35:56.4340328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.206.229.77, 23.206.229.72] + +2025-02-28T16:36:00.7919944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-02-28T16:36:11.4841815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.2, 13.105.28.1] + +2025-02-28T16:36:12.9741326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-02-28T16:36:53.8887089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.124.13] + +2025-02-28T16:37:01.6243475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 23.220.70.112, 23.212.62.79] + +2025-02-28T16:37:11.7983666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.57, 13.107.246.66] + +2025-02-28T16:37:21.7467907+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:39:09.8013536+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:39:34.0053763+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:39:55.7021487+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:40:12.4931547+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:40:15.3987168+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:40:16.5529977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T16:40:38.3855719+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:40:38.6135328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T16:41:17.6999489+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:41:17.7027346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T16:41:43.6543317+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T16:41:44.0861430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-02-28T16:41:45.0866864+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:41:46.2375221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-02-28T16:42:08.0577146+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:42:30.0294128+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:42:30.4773336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-02-28T16:42:33.1376422+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:42:33.6577411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.114.4] + +2025-02-28T16:43:01.1715804+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:43:01.6489719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.112.9] + +2025-02-28T16:43:02.7805086+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:43:03.2309983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.21] + +2025-02-28T16:43:25.0078487+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:43:25.4598230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.25] + +2025-02-28T16:43:44.7297855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.66] + +2025-02-28T16:43:56.2320459+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:43:57.5299348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.74] + +2025-02-28T16:44:19.3584584+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:44:19.8206909+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.0, 52.109.44.108, 52.109.56.126] + +2025-02-28T16:44:23.9916249+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:44:24.2609966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.46, 13.107.246.76] + +2025-02-28T16:44:46.1045686+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:44:46.5623482+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-02-28T16:45:12.1856131+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:45:12.6729263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.2, 20.135.6.9] + +2025-02-28T16:45:33.7472800+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T16:45:38.9406768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.206.188.207, 92.122.166.36] + +2025-02-28T16:45:46.6148771+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:45:47.4139559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 23.212.62.83, 23.212.62.79] + +2025-02-28T16:45:48.4336485+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:45:53.6555022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.136, 20.190.148.166] + +2025-02-28T16:46:06.0564713+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:46:06.5346215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.148.167, 20.190.144.139] + +2025-02-28T16:46:11.2753079+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:46:38.2623998+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:46:39.7054375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-02-28T16:46:41.8055267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T16:46:46.1860389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T16:46:46.6874136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T16:46:47.3789080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.44, 13.107.246.73] + +2025-02-28T16:46:48.5764357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.5] + +2025-02-28T16:46:55.6263573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-02-28T16:46:56.6466480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.114.3] + +2025-02-28T16:46:57.6966445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.112.9] + +2025-02-28T16:46:58.7163755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.0.140, 52.109.16.112] + +2025-02-28T16:46:59.5167857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.0] + +2025-02-28T16:47:07.5767582+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:47:12.9672696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 13.105.74.49] + +2025-02-28T16:47:13.2896167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.212.62.83, 23.212.62.79, 23.206.188.206] + +2025-02-28T16:47:13.6976519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.165, 20.190.144.136] + +2025-02-28T16:47:16.0604143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-02-28T16:47:16.4865362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.6.4] + +2025-02-28T16:47:16.4877643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.44, 13.107.246.74] + +2025-02-28T16:47:16.4886276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.112.26] + +2025-02-28T16:47:16.4893591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.66, 13.107.246.74] + +2025-02-28T16:47:16.4901525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.44.108] + +2025-02-28T16:47:16.4918429+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 13.105.74.49, 13.105.28.32] + +2025-02-28T16:47:16.8300578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.112.174, 52.109.28.48] + +2025-02-28T16:47:17.4370332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.206.188.207, 23.220.246.30] + +2025-02-28T16:47:17.4384327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.188.206, 23.206.188.215, 84.53.175.41] + +2025-02-28T16:47:21.7090838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.56.130, 52.109.112.174] + +2025-02-28T16:47:43.7668106+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T16:47:47.1281810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-02-28T16:47:47.5481191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.3] + +2025-02-28T16:47:48.2580808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.25] + +2025-02-28T16:47:48.8379493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 13.105.74.49, 40.90.130.197] + +2025-02-28T16:47:50.1291330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.188.206, 23.206.188.215, 23.220.206.21] + +2025-02-28T16:47:54.8878166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.0.138] + +2025-02-28T16:48:04.3008014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-02-28T16:48:06.4185255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 13.105.74.49, 40.90.130.207] + +2025-02-28T16:48:14.2592806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 20.135.6.9, 13.105.74.49] + +2025-02-28T16:48:26.4694790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.112.26] + +2025-02-28T16:48:45.2605643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.46, 13.107.246.44] + +2025-02-28T16:48:45.3305408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.74, 13.107.246.40] + +2025-02-28T16:48:45.4097701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.73, 13.107.246.74] + +2025-02-28T16:48:57.2500443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-02-28T16:49:02.1528098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.121.9] + +2025-02-28T16:49:03.0108106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.44] + +2025-02-28T16:49:23.5109970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.2] + +2025-02-28T16:49:24.6008941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.74, 13.107.253.70] + +2025-02-28T16:49:31.1417179+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.73, 13.107.246.74] + +2025-02-28T16:49:33.9418809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.114.25] + +2025-02-28T16:49:36.4014887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.139, 20.190.144.165] + +2025-02-28T16:49:51.3019702+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.209.84.14, 23.206.188.206, 23.206.188.215] + +2025-02-28T16:49:52.1428558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.66, 20.190.166.132, 20.190.166.131] + +2025-02-28T16:50:13.6756647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.49, 20.135.6.9, 20.135.6.2] + +2025-02-28T16:50:14.4589134+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-02-28T16:50:14.4604088+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-02-28T16:50:15.0646688+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 586.2564 ms + +2025-02-28T16:50:15.1732159+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 694.7728 ms + +2025-02-28T16:50:19.2651865+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-02-28T16:50:19.7809866+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/rustdesk/rustdesk/releases/latest responded 302 in 484.805 ms + +2025-02-28T16:50:20.6364547+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/rustdesk/rustdesk/releases/tag/1.3.8 responded 200 in 842.9074 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-02-28T16:50:23.9849508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.144.139, 20.190.144.165] + +2025-02-28T16:50:37.0138671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.207, 23.206.188.206, 23.220.246.30] + +2025-02-28T16:50:44.3765211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.124.141, 52.109.56.130] + +2025-02-28T16:50:49.5347660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-02-28T16:50:51.0942216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.49, 20.135.6.9] + +2025-02-28T16:50:51.8544203+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.136, 20.190.148.167] + +2025-02-28T16:51:02.7252721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.35.111.40, 23.35.111.26, 23.209.84.14] + +2025-02-28T16:51:14.0055314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.51, 13.107.246.73] + +2025-02-28T16:51:18.3274712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.164, 20.190.144.137] + +2025-02-28T16:51:26.4875245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.5] + +2025-02-28T16:51:30.4126172+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1022887.938 ms + +2025-02-28T16:51:30.5822673+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-02-28T16:51:33.5716732+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 2964.5626 ms + +2025-02-28T16:51:33.5788981+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-02-28T16:51:34.7288029+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/_alive responded 200 in 1123.9025 ms + +2025-02-28T16:51:35.1165591+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_alive responded 200 in 372.5476 ms + +2025-02-28T16:51:40.1171047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-02-28T16:51:43.4470587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T16:51:43.4498667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T16:51:43.4511693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T16:51:46.9700178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.6.4] + +2025-02-28T16:51:52.1872694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.57] + +2025-02-28T16:51:56.9466153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-02-28T16:52:02.2995790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-02-28T16:52:14.9773178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 13.105.74.49] + +2025-02-28T16:52:15.0667393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.164, 20.190.144.161] + +2025-02-28T16:52:18.2971858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.207, 23.206.188.206, 184.28.41.77] + +2025-02-28T16:52:31.5481864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.114.3] + +2025-02-28T16:52:51.4785606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.124.141, 52.109.44.112] + +2025-02-28T16:52:56.1981102+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-02-28T16:52:58.1982611+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.60, 13.107.246.74] + +2025-02-28T16:53:06.9443674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-02-28T16:53:27.3501848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.114.26] + +2025-02-28T16:53:32.3698388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.207, 23.206.188.206, 23.202.34.243] + +2025-02-28T16:53:45.7501012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.66] + +2025-02-28T16:53:46.0503713+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.51, 13.107.246.73] + +2025-02-28T16:53:46.0514641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.60] + +2025-02-28T16:54:02.2407073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.89.117] + +2025-02-28T16:54:11.4323025+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 606.4948 ms + +2025-02-28T16:54:11.8009701+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 970.3953 ms + +2025-02-28T16:54:53.2025411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.68, 20.190.166.67, 20.190.166.132] + +2025-02-28T16:54:59.0521789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.253.72] + +2025-02-28T16:55:14.9828106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.2] + +2025-02-28T16:55:18.6437916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.246.73] + +2025-02-28T16:55:36.7439136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.202.34.243, 23.206.188.207] + +2025-02-28T16:55:50.0814160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-02-28T16:55:54.1547615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.114.5] + +2025-02-28T16:55:55.6749883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.2] + +2025-02-28T16:56:00.9546735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.35.111.25, 23.206.188.206, 23.202.34.243] + +2025-02-28T16:56:08.8647279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.209.84.14, 23.206.188.215, 23.206.188.206] + +2025-02-28T16:56:09.3458921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.35.111.25, 23.35.111.72, 23.206.188.206] + +2025-02-28T16:56:13.7856323+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T16:56:14.0954686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.66] + +2025-02-28T16:56:19.2853555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.144.138, 20.190.144.136] + +2025-02-28T16:56:31.9056873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.114.10] + +2025-02-28T16:56:42.6863546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-02-28T16:56:46.2683366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-02-28T16:56:46.2728576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-02-28T16:56:46.2756367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-02-28T16:56:57.1965027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-02-28T16:57:10.0823365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-02-28T16:57:10.7566247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.114.4] + +2025-02-28T16:57:18.6975657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.2] + +2025-02-28T16:57:25.5193771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.9] + +2025-02-28T16:57:31.9170562+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +g.live.com->127.0.0.1 + +2025-02-28T16:57:33.4877916+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/odclientsettings/ProdV2 responded 302 in 1251.415 ms + +2025-02-28T16:57:34.5780502+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/odclientsettings/ProdV2 responded 302 in 216.1679 ms + +2025-02-28T16:57:35.6779185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4] + +2025-02-28T16:57:59.4385189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-02-28T16:58:08.7996318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.112.22] + +2025-02-28T16:58:27.6596237+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.26] + +2025-02-28T16:58:48.9908914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.69, 13.107.246.66] + +2025-02-28T16:58:48.9944761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.73, 13.107.246.74] + +2025-02-28T16:58:48.9976483+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.253.72, 13.107.246.57, 13.107.246.73] + +2025-02-28T16:59:00.1615409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.10] + +2025-02-28T16:59:15.3117960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.4] + +2025-02-28T16:59:15.7415545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.0.138] + +2025-02-28T16:59:16.6610250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.6] + +2025-02-28T16:59:36.1324079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-02-28T16:59:40.1042582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.220.70.80, 23.35.111.25] + +2025-02-28T16:59:48.9719298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.44.112, 52.109.56.130, 52.109.52.84] + +2025-02-28T16:59:57.2726761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.209.84.5, 23.209.84.14, 23.206.188.215] + +2025-02-28T17:00:00.7244339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.131, 20.190.166.66, 20.190.166.132] + +2025-02-28T17:00:02.9333602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.57, 13.107.246.73, 13.107.246.44] + +2025-02-28T17:00:15.8330660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.49, 20.135.6.9] + +2025-02-28T17:00:20.8443934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.66, 13.107.246.73] + +2025-02-28T17:00:23.3332478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.49, 13.105.74.50] + +2025-02-28T17:00:23.3366369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.144.136, 20.190.144.166] + +2025-02-28T17:00:50.8250045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.209.84.5, 23.209.84.14, 23.206.188.206] + +2025-02-28T17:00:57.7846591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.166, 20.190.144.165] + +2025-02-28T17:00:59.7445919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.5] + +2025-02-28T17:01:00.6261913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.57, 13.107.246.73, 13.107.246.53] + +2025-02-28T17:01:02.3163825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.220.70.80, 23.35.111.72] + +2025-02-28T17:01:08.8650436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.35.111.26, 23.209.84.5, 23.209.84.14] + +2025-02-28T17:01:10.0053811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.35.111.40, 23.35.111.26, 23.209.84.5] + +2025-02-28T17:01:10.1361892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.35.111.72, 23.220.70.80] + +2025-02-28T17:01:23.2055767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.44.111, 52.109.56.129] + +2025-02-28T17:01:24.8061752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 40.126.35.151, 20.190.144.166] + +2025-02-28T17:01:47.8163577+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-02-28T17:01:53.0161680+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T17:01:53.0173166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T17:01:53.0185206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T17:01:57.2465634+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.53, 13.107.246.44] + +2025-02-28T17:01:58.6274693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.162, 20.190.148.167] + +2025-02-28T17:02:00.5464371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-02-28T17:02:00.9005631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.89.117] + +2025-02-28T17:02:17.6900864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-02-28T17:02:19.4676832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-02-28T17:02:22.1074087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.148.166, 40.126.35.151] + +2025-02-28T17:02:27.1889206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.220.70.80, 23.206.188.206] + +2025-02-28T17:02:37.7980501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.209.84.5, 23.209.84.14, 23.206.188.206] + +2025-02-28T17:02:43.5486328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.6] + +2025-02-28T17:03:05.7264103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.44.111, 52.109.56.129, 52.109.20.39] + +2025-02-28T17:03:06.5187914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.53, 13.107.246.60] + +2025-02-28T17:03:12.1892341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.113.22] + +2025-02-28T17:03:13.7599663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.161, 20.190.148.166] + +2025-02-28T17:03:14.7638558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.73, 13.107.246.53] + +2025-02-28T17:03:19.2893275+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 13.107.246.66, 13.107.246.73] + +2025-02-28T17:03:19.2924103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.73, 13.107.246.53] + +2025-02-28T17:03:29.3202017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.8.88] + +2025-02-28T17:03:29.9803752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.26, 140.82.114.25] + +2025-02-28T17:04:09.5409285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.89.117] + +2025-02-28T17:04:10.0719076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.66] + +2025-02-28T17:04:10.0762111+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.64] + +2025-02-28T17:04:10.0798045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.64] + +2025-02-28T17:04:10.7610110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.49, 13.105.74.50, 20.135.6.9] + +2025-02-28T17:04:13.2051758+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-02-28T17:04:14.0833156+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 682.2374 ms + +2025-02-28T17:04:14.8232680+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 437.4293 ms + +2025-02-28T17:04:15.8909617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.85.248.88, 104.85.248.73, 23.209.84.5] + +2025-02-28T17:04:20.8941685+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.3] + +2025-02-28T17:04:20.8954477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.112.9] + +2025-02-28T17:04:36.7123625+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.167, 20.190.148.163] + +2025-02-28T17:04:38.2419067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.114.25] + +2025-02-28T17:04:38.3124163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.73] + +2025-02-28T17:04:38.8531691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.73] + +2025-02-28T17:04:40.7727021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 86.120.38.137, 23.220.246.30] + +2025-02-28T17:04:44.7226176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.114.9] + +2025-02-28T17:04:52.3625100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-02-28T17:04:58.0291796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.114.5] + +2025-02-28T17:04:58.8336320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.85.248.88, 104.85.248.73, 23.206.188.206] + +2025-02-28T17:05:03.9031703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-02-28T17:05:13.9163284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.161, 20.190.148.163] + +2025-02-28T17:05:16.8336256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 13.105.74.50, 13.105.74.49] + +2025-02-28T17:05:18.1842331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 13.105.74.49, 20.135.6.7] + +2025-02-28T17:05:20.5134233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.6] + +2025-02-28T17:05:21.1440376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.114.4] + +2025-02-28T17:05:23.0739618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.66] + +2025-02-28T17:05:37.6359084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.85.248.88, 104.85.248.73, 23.41.4.198] + +2025-02-28T17:05:38.6497918+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.112.22] + +2025-02-28T17:05:38.9838873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.207, 23.206.188.206, 86.120.38.137] + +2025-02-28T17:05:46.9846665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.207, 23.206.188.206, 23.41.4.218] + +2025-02-28T17:05:52.5549827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.85.248.88, 104.85.248.73, 23.206.188.215] + +2025-02-28T17:05:53.8451555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.163, 40.126.35.151] + +2025-02-28T17:06:10.8261319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.151, 20.190.148.163, 20.190.144.165] + +2025-02-28T17:06:11.1056330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.161, 20.190.148.165] + +2025-02-28T17:06:16.5074702+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:06:16.5755541+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.53] + +2025-02-28T17:06:16.5778711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.73] + +2025-02-28T17:06:16.5803902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.53] + +2025-02-28T17:06:25.1256189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.161, 20.190.148.162] + +2025-02-28T17:06:27.6753367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.165, 40.126.35.144] + +2025-02-28T17:06:27.7676704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.148.162, 20.190.148.164] + +2025-02-28T17:06:39.8966327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.112.9] + +2025-02-28T17:06:44.9677720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.165, 20.190.144.160] + +2025-02-28T17:06:54.5469157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T17:06:54.5516720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T17:06:54.5543747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T17:07:04.6856889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-02-28T17:07:14.2075753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-02-28T17:07:26.4414416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.56.126, 52.109.20.15] + +2025-02-28T17:07:27.1083247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.144.160, 20.190.148.163] + +2025-02-28T17:07:27.5381233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.148.164, 20.190.148.165] + +2025-02-28T17:07:32.2175970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.44.111, 52.109.56.129, 52.109.0.140] + +2025-02-28T17:07:34.4881858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.74.50, 13.105.74.49] + +2025-02-28T17:07:47.6493325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.9, 13.105.74.50] + +2025-02-28T17:07:52.4426877+08:00 [ERR] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 977305.4308 ms +System.IO.IOException: Unable to read data from the transport connection: 你的主机中的软件中止了一个已建立的连接。. + ---> System.Net.Sockets.SocketException (10053): 你的主机中的软件中止了一个已建立的连接。 + --- End of inner exception stack trace --- + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 ) + at System.Net.Security.SslStream.EnsureFullTlsFrameAsync[TIOAdapter](TIOAdapter ) + at System.Net.Security.SslStream.ReadAsyncInternal[TIOAdapter](TIOAdapter , Memory`1 ) + at System.Net.Http.HttpConnection.ReadAsync(Memory`1 ) + at System.Net.Http.HttpConnection.RawConnectionStream.ReadAsync(Memory`1 , CancellationToken ) + at Yarp.ReverseProxy.Forwarder.StreamCopier.CopyAsync(Boolean isRequest, Stream input, Stream output, IClock clock, ActivityCancellationTokenSource activityToken, CancellationToken cancellation) + +2025-02-28T17:07:56.6703230+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-02-28T17:07:56.8869066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.113.22] + +2025-02-28T17:08:06.2659599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.44.111, 52.109.56.129] + +2025-02-28T17:08:06.3852529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.44.112, 52.109.52.84, 52.109.56.130] + +2025-02-28T17:08:06.8711555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.9] + +2025-02-28T17:08:17.4138987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.113.22] + +2025-02-28T17:08:19.1066237+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.151, 23.67.33.149, 104.85.248.88] + +2025-02-28T17:08:21.9994596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.51, 13.107.246.74] + +2025-02-28T17:08:32.4844095+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.8.88] + +2025-02-28T17:08:32.9963302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.112.26] + +2025-02-28T17:08:50.8727501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.114.22] + +2025-02-28T17:09:00.5315414+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.52.84] + +2025-02-28T17:09:09.0520280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.113.4] + +2025-02-28T17:09:10.9019215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.73, 13.107.246.74] + +2025-02-28T17:09:11.1894458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.51, 13.107.246.73] + +2025-02-28T17:09:11.1904776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.73, 13.107.246.74] + +2025-02-28T17:09:16.3334295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.151, 104.85.248.73, 104.85.248.88] + +2025-02-28T17:09:21.3951421+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.114.4] + +2025-02-28T17:09:25.6951778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.51, 13.107.246.73] + +2025-02-28T17:09:26.1545794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.44, 13.107.246.51] + +2025-02-28T17:09:39.0999582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.44, 13.107.246.51] + +2025-02-28T17:09:39.3945416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.64, 13.107.246.44] + +2025-02-28T17:09:41.2432119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.73, 13.107.246.76] + +2025-02-28T17:09:41.4254260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.206.188.207, 23.220.70.80] + +2025-02-28T17:09:46.0029809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.114.9] + +2025-02-28T17:09:46.7175972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.44.108] + +2025-02-28T17:09:53.5357520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-02-28T17:10:14.2932971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.165, 20.190.144.160] + +2025-02-28T17:10:16.1965707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-02-28T17:10:39.0833085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.151, 104.85.248.73, 23.206.188.206] + +2025-02-28T17:10:39.4103494+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.206.188.206, 23.206.188.207] + +2025-02-28T17:10:44.9611588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.73, 13.107.246.67] + +2025-02-28T17:10:45.5589002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.148.162, 20.190.148.164] + +2025-02-28T17:10:45.5598579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.160] + +2025-02-28T17:10:47.2864882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 23.206.188.206, 23.41.4.218] + +2025-02-28T17:10:53.6432045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.64, 13.107.246.51] + +2025-02-28T17:10:54.8715545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.151, 23.206.188.215, 104.85.248.73] + +2025-02-28T17:10:57.6262937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.160, 20.190.148.165] + +2025-02-28T17:10:57.7487253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 20.190.144.160, 20.190.148.165] + +2025-02-28T17:11:17.4003689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-02-28T17:11:17.6389775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.6] + +2025-02-28T17:11:24.4102627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.51, 13.107.246.73] + +2025-02-28T17:11:26.0585267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.114.5] + +2025-02-28T17:11:26.7032716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.165, 20.190.144.160] + +2025-02-28T17:11:26.9870778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.165, 20.190.144.164] + +2025-02-28T17:11:28.6066267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.114.4] + +2025-02-28T17:11:30.1553321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.41.4.218, 23.206.188.207] + +2025-02-28T17:11:38.4728315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.51, 13.107.246.73] + +2025-02-28T17:11:45.6175220+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.112.9] + +2025-02-28T17:11:47.0802200+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.40, 13.107.246.73] + +2025-02-28T17:11:51.0305884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-02-28T17:11:53.3000074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.41.4.218, 23.53.122.200] + +2025-02-28T17:11:56.1142626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T17:11:56.1177229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T17:11:56.1203144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T17:12:04.1279869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-02-28T17:12:24.4718889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-02-28T17:12:24.6847620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.112.6] + +2025-02-28T17:12:26.7471202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.62, 13.107.246.51, 13.107.246.40] + +2025-02-28T17:13:19.2814730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.114.9] + +2025-02-28T17:13:19.5032658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.112.21] + +2025-02-28T17:13:20.1995545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.151, 23.67.33.149, 23.206.188.215] + +2025-02-28T17:13:23.4493017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-02-28T17:13:45.1247609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-02-28T17:13:47.4722213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.0] + +2025-02-28T17:13:50.3007804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.73, 13.107.246.76] + +2025-02-28T17:13:50.5323489+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.112.9] + +2025-02-28T17:13:52.7707917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.113.21] + +2025-02-28T17:13:54.2489855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.56.109.135, 23.41.4.218] + +2025-02-28T17:14:12.4649478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.51] + +2025-02-28T17:14:12.4682979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.74, 13.107.246.73] + +2025-02-28T17:14:12.4697344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.62, 13.107.246.74, 13.107.246.73] + +2025-02-28T17:14:17.9397314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.151, 23.67.33.149, 104.85.248.73] + +2025-02-28T17:14:22.8724535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.113.4] + +2025-02-28T17:14:40.3187290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.26] + +2025-02-28T17:14:41.6659639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.76, 13.107.246.74, 13.107.246.73] + +2025-02-28T17:14:48.4560885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 13.107.246.74, 13.107.246.68] + +2025-02-28T17:15:00.8816265+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-02-28T17:15:00.8965199+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-02-28T17:15:01.4927583+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 592.6492 ms + +2025-02-28T17:15:01.5904215+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 673.9746 ms + +2025-02-28T17:15:03.9272238+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 427245.6983 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-02-28T17:15:04.1168325+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 502 in 105.0943 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-02-28T17:15:05.2334150+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-02-28T17:15:05.9722721+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 671.8592 ms + +2025-02-28T17:15:06.3399075+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 651.1369 ms + +2025-02-28T17:15:11.5528123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.165, 20.190.148.167] + +2025-02-28T17:15:28.0976472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.77.37] + +2025-02-28T17:15:30.8529394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.3] + +2025-02-28T17:15:31.9007254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.114.5] + +2025-02-28T17:15:34.7327167+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +edge-consumer-static.azureedge.net->127.0.0.1 + +2025-02-28T17:15:35.2637982+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://edge-consumer-static.azureedge.net/mouse-gesture/config.json responded 200 in 326.0964 ms + +2025-02-28T17:15:39.5017389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.56.109.135, 23.41.4.218, 23.53.122.200] + +2025-02-28T17:15:42.6695048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.164, 20.190.144.160] + +2025-02-28T17:15:46.5114942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.89.117] + +2025-02-28T17:15:48.4986541+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.56.109.135, 23.41.4.206, 23.53.122.200] + +2025-02-28T17:15:58.3300597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.167, 20.190.144.161] + +2025-02-28T17:15:58.4341042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.164, 20.190.144.138] + +2025-02-28T17:16:10.1850321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.151, 23.67.33.149, 23.206.188.215] + +2025-02-28T17:16:11.6132391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.138, 20.190.144.161] + +2025-02-28T17:16:16.8656241+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:16:27.0399133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.161, 20.190.144.166] + +2025-02-28T17:16:27.3599226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.138, 20.190.144.161] + +2025-02-28T17:16:48.9893971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 13.107.246.62, 13.107.246.74] + +2025-02-28T17:16:53.3343423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-02-28T17:16:53.8391669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.64, 13.107.246.74] + +2025-02-28T17:16:54.9113249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.56.109.135, 23.41.4.206, 23.206.188.206] + +2025-02-28T17:17:01.2470274+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T17:17:01.2484938+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T17:17:01.2497416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T17:17:01.8799872+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-02-28T17:17:02.3996195+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 648.5413 ms + +2025-02-28T17:17:02.4095152+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 631.3179 ms + +2025-02-28T17:17:02.5382526+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 605.3518 ms + +2025-02-28T17:17:02.8620340+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 489.5095 ms + +2025-02-28T17:17:03.1597271+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 300.4137 ms + +2025-02-28T17:17:03.2844807+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 303.2586 ms + +2025-02-28T17:17:03.4800289+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-02-28T17:17:03.4879029+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->127.0.0.1 + +2025-02-28T17:17:03.8638112+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 309.6979 ms + +2025-02-28T17:17:04.1098599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-02-28T17:17:04.3265015+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 851.0014 ms + +2025-02-28T17:17:04.3285912+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/locations/recent responded 200 in 629.7713 ms + +2025-02-28T17:17:04.3643102+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 609.5335 ms + +2025-02-28T17:17:04.6372667+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/docs/recent responded 200 in 427.3338 ms + +2025-02-28T17:17:04.9774930+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 644.0367 ms + +2025-02-28T17:17:05.0636464+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 286.1382 ms + +2025-02-28T17:17:05.1515209+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/servicemanager/userconnected responded 200 in 1492.1472 ms + +2025-02-28T17:17:05.3846018+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/servicemanager/catalog responded 200 in 199.6579 ms + +2025-02-28T17:17:12.9884191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.51] + +2025-02-28T17:17:22.5252508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.40, 13.107.246.62] + +2025-02-28T17:17:30.1464081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-02-28T17:17:32.3223420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.40, 13.107.246.74] + +2025-02-28T17:17:33.9135291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.161, 20.190.144.138] + +2025-02-28T17:17:47.0250023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.52, 13.107.246.40] + +2025-02-28T17:17:47.0264676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.56.109.135, 23.206.188.206, 23.53.122.200] + +2025-02-28T17:18:01.1683351+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:18:01.9308673+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:18:04.6123084+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:18:07.9597189+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:18:38.2121437+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:18:39.7471304+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:19:01.0698852+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:19:01.4537681+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:19:02.2896729+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:19:05.8742555+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:19:12.5015506+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:19:33.7010757+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:19:51.7594422+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:20:13.3679020+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:20:13.7565589+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-02-28T17:20:14.3432814+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 534.5902 ms + +2025-02-28T17:20:14.5916408+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:20:15.0081199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.113.3] + +2025-02-28T17:20:16.7393858+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 275.3742 ms + +2025-02-28T17:20:21.4006847+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:20:21.8540924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.10] + +2025-02-28T17:20:23.1712247+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:20:23.3016011+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 404.2054 ms + +2025-02-28T17:20:26.2600768+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:20:26.6572523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-02-28T17:20:48.4125034+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:21:11.2775420+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:21:33.6399782+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:21:33.9120887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.51, 13.107.246.73] + +2025-02-28T17:21:55.6585560+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:21:55.9136559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.68] + +2025-02-28T17:21:59.9597104+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:22:00.1969257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.67, 13.107.246.73] + +2025-02-28T17:22:26.1683421+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:22:34.1282669+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:22:34.5552732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.0, 52.109.52.2] + +2025-02-28T17:22:56.2324640+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:22:56.6821788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.11] + +2025-02-28T17:22:58.7923815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.135, 23.67.33.143, 23.206.188.206] + +2025-02-28T17:23:00.0357778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.188.215, 23.206.188.206, 23.64.12.162] + +2025-02-28T17:23:01.2387893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.167, 20.190.144.160] + +2025-02-28T17:23:02.3309666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.163, 20.190.148.167, 20.190.144.138] + +2025-02-28T17:23:17.7700996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-02-28T17:23:19.3642561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T17:23:20.0275819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T17:23:20.3739409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T17:23:20.8940142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-02-28T17:23:22.4283142+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:23:33.2621615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.3] + +2025-02-28T17:23:35.6963342+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.114.6] + +2025-02-28T17:23:36.0491334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.73, 13.107.246.74] + +2025-02-28T17:23:38.6499452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.73, 13.107.246.74] + +2025-02-28T17:23:41.1522068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.166, 20.190.148.167] + +2025-02-28T17:23:56.9149722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.51, 13.107.246.73] + +2025-02-28T17:24:30.7858171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.143.38.0] + +2025-02-28T17:24:38.7637910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.77, 13.107.246.73] + +2025-02-28T17:24:39.2134291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.35, 13.107.246.73, 13.107.246.74] + +2025-02-28T17:25:15.0953783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-02-28T17:25:15.3755034+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.73, 13.107.246.74] + +2025-02-28T17:25:26.8085048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 4.225.11.201] + +2025-02-28T17:25:27.3220285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.21] + +2025-02-28T17:25:37.5253218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.114.6] + +2025-02-28T17:25:48.7592139+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.0, 52.109.52.2, 52.109.56.126] + +2025-02-28T17:25:50.8842999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.25] + +2025-02-28T17:26:06.9629986+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.188.215, 23.41.4.201, 23.206.188.206] + +2025-02-28T17:26:12.9027156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-02-28T17:26:17.6841119+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:26:29.9304421+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.0] + +2025-02-28T17:26:34.4685796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.74, 13.107.246.73] + +2025-02-28T17:26:34.5401431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.51] + +2025-02-28T17:26:34.5413605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.35, 13.107.246.73] + +2025-02-28T17:26:38.5351480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.5] + +2025-02-28T17:26:56.5196383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.73] + +2025-02-28T17:26:56.5845285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.35] + +2025-02-28T17:27:08.1855929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-02-28T17:27:36.0304143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-02-28T17:27:43.9334326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.11] + +2025-02-28T17:27:45.2518833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.6.4] + +2025-02-28T17:27:47.8405928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.8.36] + +2025-02-28T17:27:55.0960365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-02-28T17:27:57.1236214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.35, 13.107.246.40] + +2025-02-28T17:27:57.8530876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.143, 23.67.33.135, 23.206.188.207] + +2025-02-28T17:27:59.2868597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.74, 13.107.246.44] + +2025-02-28T17:27:59.6016626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.188.215, 23.206.188.206, 23.41.4.201] + +2025-02-28T17:28:08.0944328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.167, 20.190.144.161] + +2025-02-28T17:28:13.4754939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.144.162, 20.190.144.161] + +2025-02-28T17:28:22.5897575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-02-28T17:28:27.6224808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T17:28:27.9255808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T17:28:27.9289548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T17:28:29.0443277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-02-28T17:28:31.4545911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.46.229.139, 23.46.229.201, 23.67.33.143] + +2025-02-28T17:28:34.0081947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.46.229.139, 23.46.229.160, 23.206.188.206] + +2025-02-28T17:29:42.5404786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.71] + +2025-02-28T17:29:42.9379928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.35, 13.107.246.74, 13.107.246.40] + +2025-02-28T17:29:45.2446017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.71, 13.107.246.73] + +2025-02-28T17:29:52.3824057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.12.13] + +2025-02-28T17:30:15.1999613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-02-28T17:30:23.0073065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-02-28T17:30:28.5266823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-02-28T17:30:39.5579124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-02-28T17:30:40.1612962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.5] + +2025-02-28T17:30:43.2060320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.121.9] + +2025-02-28T17:30:45.2053525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.35, 13.107.246.74, 13.107.246.36] + +2025-02-28T17:30:50.4116306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.5] + +2025-02-28T17:30:51.6572742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.25] + +2025-02-28T17:31:22.1400918+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:31:44.8673797+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:34:50.9871501+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-02-28T17:34:51.1569080+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-02-28T17:34:51.6462187+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 622.111 ms + +2025-02-28T17:34:51.8819818+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 698.436 ms + +2025-02-28T17:35:10.6139309+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-02-28T17:35:11.5058792+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 878.3636 ms + +2025-02-28T17:37:07.8044861+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 689.3377 ms + +2025-02-28T17:37:08.3644758+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 262.7132 ms + +2025-02-28T17:45:36.6052265+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-02-28T17:45:37.5243672+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 904.9494 ms + +2025-02-28T17:47:21.6476396+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@8.8.8.8:53->Unable to read data from the transport connection: 你的主机中的软件中止了一个已建立的连接。. + +2025-02-28T17:47:21.6540409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[] + +2025-02-28T17:47:21.6578174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[] + +2025-02-28T17:47:21.6603368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[] + +2025-02-28T17:47:21.6625841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[] + +2025-02-28T17:47:21.6647896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[] + +2025-02-28T17:47:21.6665988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[] + +2025-02-28T17:47:21.6706586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[] + +2025-02-28T17:47:21.6736946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[] + +2025-02-28T17:47:21.6760166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[] + +2025-02-28T17:47:21.6780588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[] + +2025-02-28T17:47:21.6796889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[] + +2025-02-28T17:47:21.6813584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[] + +2025-02-28T17:47:21.6832075+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[] + +2025-02-28T17:47:21.6849744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[] + +2025-02-28T17:47:21.6864791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[] + +2025-02-28T17:47:21.6882958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[] + +2025-02-28T17:47:21.6901566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[] + +2025-02-28T17:47:21.6920261+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[] + +2025-02-28T17:47:21.6939636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[] + +2025-02-28T17:47:21.6962376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[] + +2025-02-28T17:47:21.6981419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[] + +2025-02-28T17:47:21.6999414+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[] + +2025-02-28T17:47:21.7020402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[] + +2025-02-28T17:47:21.7046232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[] + +2025-02-28T17:47:22.7856717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175] + +2025-02-28T17:47:22.7886470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +clientnotification-userprodscus1-1.servicebus.windows.net:443->[] + +2025-02-28T17:47:22.7906835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[] + +2025-02-28T17:47:24.9303085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902] + +2025-02-28T17:48:24.0234428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-02-28T17:48:24.6785123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:49::17ce:e5a5, 2600:1406:5e00:49::17ce:e5ac, 23.216.155.98] + +2025-02-28T17:48:25.3536399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.177.146, 20.190.147.3, 20.190.177.148] + +2025-02-28T17:48:26.1926123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 104.17.24.14] + +2025-02-28T17:48:26.7024924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.36, 2620:1ec:bdf::60] + +2025-02-28T17:48:27.3469057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.190.129, 20.190.190.131, 20.190.190.193] + +2025-02-28T17:48:27.8116476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-02-28T17:48:29.3397867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8003::154, 185.199.110.133] + +2025-02-28T17:48:29.7827053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::63] + +2025-02-28T17:48:30.3530220+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1036:2400::12, 52.109.68.129] + +2025-02-28T17:48:36.4118088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.26.156.215] + +2025-02-28T17:48:37.0268687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +clientnotification-userprodscus1-1.servicebus.windows.net:443->[40.84.185.67] + +2025-02-28T17:48:37.5301217+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T17:48:38.1214611+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.112.9] + +2025-02-28T17:48:38.7486424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11] + +2025-02-28T17:48:39.4113961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.32.11, 2603:1026:2400::] + +2025-02-28T17:48:39.9734122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21] + +2025-02-28T17:48:40.5790739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25] + +2025-02-28T17:48:41.2441836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.113.5] + +2025-02-28T17:48:41.6375109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T17:48:42.1223312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.77, 2620:1ec:29:1::70] + +2025-02-28T17:48:46.7545663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.0.138, 2603:1036:2404::2] + +2025-02-28T17:48:47.3710288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.213.53.139, 23.213.53.141, 2a02:26f0:fd00:3::213:7591] + +2025-02-28T17:48:48.9107341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-02-28T17:48:49.5907039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1036:2403:1::1b, 52.109.76.144] + +2025-02-28T17:48:50.0518169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-02-28T17:48:50.5997366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-02-28T17:49:31.5129265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[20.22.207.36] + +2025-02-28T17:49:39.0143788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.112.9, 140.82.113.10] + +2025-02-28T17:49:41.4934018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.113.5, 140.82.121.6] + +2025-02-28T17:50:16.4349295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22] + +2025-02-28T17:50:19.9925415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.135.2, 20.190.135.3, 20.190.135.16] + +2025-02-28T17:50:26.0820352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:49::17ce:e5a5, 2600:1406:5e00:49::17ce:e5ac, 2600:1402:b800:17::1731:5c8] + +2025-02-28T17:50:31.9832181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.36, 2620:1ec:bdf::60] + +2025-02-28T17:50:32.4101862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.71, 13.107.246.77] + +2025-02-28T17:50:33.1194984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1036:2400::12, 2603:1036:2405::5, 52.109.68.129] + +2025-02-28T17:50:37.1751043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.113.4, 20.26.156.215] + +2025-02-28T17:50:39.7156052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.66.144] + +2025-02-28T17:50:40.3997746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.56.126, 2603:1036:2403::13, 52.109.32.11] + +2025-02-28T17:50:42.0006912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26] + +2025-02-28T17:50:42.9384865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::77, 13.107.246.77] + +2025-02-28T17:50:47.5060752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.0.138, 2603:1036:2404::2, 52.109.89.117] + +2025-02-28T17:50:48.1850975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.213.53.139, 23.213.53.141, 184.28.41.85] + +2025-02-28T17:50:50.2467902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1036:2403:1::1b, 2603:1026:2400::3, 52.109.76.144] + +2025-02-28T17:51:17.8110418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-02-28T17:51:32.0000061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[20.22.207.36, 13.74.129.92] + +2025-02-28T17:51:33.4353603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1036:2400::12, 2603:1036:2406::12, 2603:1036:2405::5] + +2025-02-28T17:51:44.1020674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.112.9, 140.82.113.10, 140.82.121.10] + +2025-02-28T17:51:45.8052883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.113.5, 140.82.121.6, 20.26.156.210] + +2025-02-28T17:51:50.4716334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1036:2403:1::1b, 2603:1036:2406::26, 2603:1026:2400::3] + +2025-02-28T17:51:56.8833720+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +g.live.com->127.0.0.1 + +2025-02-28T17:51:56.8855364+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +g.live.com->::1 + +2025-02-28T17:51:58.0129787+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/odclientsettings/ProdV2 responded 302 in 1080.3315 ms + +2025-02-28T17:51:59.1362738+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/odclientsettings/ProdV2 responded 302 in 266.6834 ms + +2025-02-28T17:52:00.5329345+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/1rewlive5skydrive/ODSUProductionV2 responded 302 in 266.713 ms + +2025-02-28T17:52:00.9925872+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/1rewlive5skydrive/ODSUProductionV2 responded 302 in 266.3857 ms + +2025-02-28T17:52:02.8861119+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-02-28T17:52:02.8869394+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-02-28T17:52:03.7689135+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 861.9641 ms + +2025-02-28T17:52:08.0367001+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/odclientsettings/ProdV2 responded 302 in 265.6795 ms + +2025-02-28T17:52:08.4957500+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/odclientsettings/ProdV2 responded 302 in 266.5358 ms + +2025-02-28T17:52:26.7790150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 20.26.156.215] + +2025-02-28T17:52:27.9367761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.1, 40.90.130.197] + +2025-02-28T17:52:28.0428987+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:52:33.9060308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.112.26] + +2025-02-28T17:52:34.6370546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.113.10] + +2025-02-28T17:52:35.3346075+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-02-28T17:52:35.9434419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-02-28T17:52:38.6467960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.66, 2620:1ec:bdf::52] + +2025-02-28T17:52:38.7773267+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-02-28T17:52:38.7788184+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-02-28T17:52:39.2221188+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 316.9781 ms + +2025-02-28T17:52:39.5771690+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 351.1764 ms + +2025-02-28T17:52:40.4598929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.71, 2620:1ec:bdf::73] + +2025-02-28T17:52:41.6232381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 2603:1046:1404::1, 52.109.52.0] + +2025-02-28T17:52:42.0879030+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::73, 2620:1ec:bdf::77] + +2025-02-28T17:52:43.1958546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 2603:1046:1406::7] + +2025-02-28T17:52:44.1594178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1036:2400::12] + +2025-02-28T17:52:44.7647839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.0.138] + +2025-02-28T17:52:50.7046190+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:18::6007:81bc, 2600:1406:5e00:49::17ce:e5a5] + +2025-02-28T17:52:51.8947439+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 308.3399 ms + +2025-02-28T17:52:51.9640836+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.1282 ms + +2025-02-28T17:52:53.6892091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:bc00:a::172d:ad92, 2600:1406:bc00:a::172d:ad99, 23.206.188.215] + +2025-02-28T17:52:54.3270198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.160, 20.190.148.167] + +2025-02-28T17:52:55.4921517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 2603:1047:1:168::28, 2603:1047:1:168::20] + +2025-02-28T17:52:58.6538222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.112.4] + +2025-02-28T17:52:59.3248136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.26, 140.82.112.25] + +2025-02-28T17:52:59.8876272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.74.50, 13.105.28.1] + +2025-02-28T17:53:01.1079379+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.51, 13.107.246.40] + +2025-02-28T17:53:01.4451994+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-02-28T17:53:02.0836580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 52.109.52.84] + +2025-02-28T17:53:02.2134528+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.3277 ms + +2025-02-28T17:53:02.2785743+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.9375 ms + +2025-02-28T17:53:02.7520837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-02-28T17:53:28.5108522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T17:53:28.9169469+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 104.17.24.14] + +2025-02-28T17:53:29.0347715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T17:53:31.0938937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T17:53:31.4567227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::45, 13.107.246.71] + +2025-02-28T17:53:31.4594471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.51, 13.107.246.77] + +2025-02-28T17:53:32.8151886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:18::6007:81bc, 2600:1406:5e00:49::17ce:e5ac] + +2025-02-28T17:53:38.3981588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.163, 20.190.144.160, 20.190.148.162] + +2025-02-28T17:53:45.3517151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-02-28T17:53:46.6085430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.10] + +2025-02-28T17:53:47.1206495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.113.21] + +2025-02-28T17:53:47.3324303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.26] + +2025-02-28T17:53:48.2762981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.112.6] + +2025-02-28T17:53:53.2942475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154] + +2025-02-28T17:54:04.1942326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.113.22] + +2025-02-28T17:54:39.5783903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.45, 2620:1ec:bdf::74] + +2025-02-28T17:54:42.7223601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.113.10] + +2025-02-28T17:54:48.4925599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-02-28T17:54:54.0628479+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4486, 2600:1406:bc00:a::172d:ad92, 2600:1406:bc00:a::172d:ad99] + +2025-02-28T17:55:00.7073416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.113.4] + +2025-02-28T17:55:17.2062930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.114.21] + +2025-02-28T17:55:22.8850053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 52.109.120.46] + +2025-02-28T17:55:23.5503100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.163, 20.190.148.163, 20.190.144.160] + +2025-02-28T17:55:32.1319337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.45, 2620:1ec:bdf::41] + +2025-02-28T17:55:33.5320864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::73, 2620:1ec:bdf::40] + +2025-02-28T17:55:35.3921546+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 387.7561 ms + +2025-02-28T17:55:35.4641836+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.5984 ms + +2025-02-28T17:55:49.2971231+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.6] + +2025-02-28T17:56:44.0095562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::73, 13.107.246.38] + +2025-02-28T17:56:49.8132507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.80, 2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:18::6007:81bc] + +2025-02-28T17:57:02.0013810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-02-28T17:57:14.0112566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1404::5] + +2025-02-28T17:57:29.4984883+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:57:47.4548399+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:58:08.7370057+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:58:16.5262794+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:58:42.9397615+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:58:43.1900499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T17:58:46.5379957+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:59:07.9559825+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:59:08.0869789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-02-28T17:59:13.1671778+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:59:13.1703721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-02-28T17:59:18.2097235+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:59:23.1443382+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:59:23.7795156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-02-28T17:59:28.8352500+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:59:29.2847970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.114.21] + +2025-02-28T17:59:30.3822206+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T17:59:52.5687987+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T17:59:52.9726582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-02-28T18:00:14.7050119+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:00:15.1171104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.113.5] + +2025-02-28T18:00:36.5231041+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:00:36.6684769+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-02-28T18:00:58.4807181+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:00:58.8795518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.112.10] + +2025-02-28T18:01:07.8201952+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:01:30.0364996+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:01:30.2799919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.62, 13.107.246.74, 13.107.246.66] + +2025-02-28T18:01:52.0007093+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:01:52.4489969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-02-28T18:01:53.9025218+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:01:59.0930373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 13.105.74.50] + +2025-02-28T18:02:00.1083759+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:02:00.5826607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::40, 13.107.246.73] + +2025-02-28T18:02:01.5871887+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:02:01.8388275+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.40, 2620:1ec:bdf::77] + +2025-02-28T18:02:03.1139177+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:02:03.5992972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.4] + +2025-02-28T18:02:20.4583862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T18:03:01.5245161+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:03:03.0296152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.76, 2600:1406:bc00:18::6007:81bc, 2600:1406:bc00:18::6007:81d1] + +2025-02-28T18:03:24.8352866+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:03:25.4569195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4495, 2600:1406:bc00:a::172d:ad92, 2600:1406:bc00:a::172d:ad99] + +2025-02-28T18:03:32.4746383+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:03:37.6803636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.164, 20.190.144.160] + +2025-02-28T18:04:07.5228386+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:04:12.7198151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2e, 20.190.144.137, 20.190.148.163] + +2025-02-28T18:04:23.6079610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-02-28T18:04:24.4744797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T18:04:32.5882102+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:04:37.7892208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-02-28T18:04:40.6671743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-02-28T18:04:41.7974086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-02-28T18:04:43.8033436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-02-28T18:04:45.1032366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-02-28T18:04:46.0048982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-02-28T18:04:51.1479690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-02-28T18:04:57.2162093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-02-28T18:04:58.3118446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.113.25] + +2025-02-28T18:04:59.3062661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.112.6] + +2025-02-28T18:05:00.1277247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-02-28T18:05:02.7850120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.28.1] + +2025-02-28T18:05:03.5605644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 13.107.246.62] + +2025-02-28T18:05:04.3264950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.57, 13.107.246.74] + +2025-02-28T18:05:05.0911726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.74, 2620:1ec:bdf::35] + +2025-02-28T18:05:26.9035513+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:05:31.2927441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.133, 20.190.166.67] + +2025-02-28T18:05:49.2185879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.6] + +2025-02-28T18:05:59.4299864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.113.9] + +2025-02-28T18:06:03.8453268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::35, 2620:1ec:bdf::51] + +2025-02-28T18:06:05.1617577+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.112.26] + +2025-02-28T18:06:30.9137349+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 13.107.246.45] + +2025-02-28T18:06:46.1986957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 13.107.246.62] + +2025-02-28T18:06:46.4856329+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-02-28T18:06:48.5432752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-02-28T18:06:50.0153013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:bc00:a::172d:ad92, 2600:1406:bc00:a::172d:ad99, 2600:1406:5e00:49::17ce:e5a5] + +2025-02-28T18:06:53.7147181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-02-28T18:07:02.8914833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.113.4] + +2025-02-28T18:07:09.6314822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.38, 2620:1ec:bdf::71] + +2025-02-28T18:07:10.7207398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 13.107.246.53, 2620:1ec:bdf::44] + +2025-02-28T18:07:15.8783211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.74, 2620:1ec:bdf::57] + +2025-02-28T18:07:24.0746852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.114.26] + +2025-02-28T18:07:24.0772245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-02-28T18:07:24.3736155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 40.90.133.102] + +2025-02-28T18:07:24.3777799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::71, 13.107.246.57] + +2025-02-28T18:07:24.9887760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:49::17ce:e5ac, 2600:1406:5e00:49::17ce:e5a5, 23.206.188.206] + +2025-02-28T18:07:24.9921503+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:5e00:49::17ce:e5a5, 23.206.188.206, 2600:1406:5e00:49::17ce:e5b1] + +2025-02-28T18:07:26.3092855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10] + +2025-02-28T18:07:26.3100957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.4] + +2025-02-28T18:07:58.3347200+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:08:13.4270707+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:08:17.5644128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.113.3] + +2025-02-28T18:08:17.8488477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.113.25] + +2025-02-28T18:08:19.4164269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.74.49] + +2025-02-28T18:08:21.7553660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:49::17ce:e5ac, 2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:18::6007:81bc] + +2025-02-28T18:08:29.0395651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:5e00:49::17ce:e5b1, 2600:1406:bc00:18::6007:81b6, 2600:1406:bc00:18::6007:81d1] + +2025-02-28T18:08:34.3243355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.164, 20.190.148.167] + +2025-02-28T18:08:45.5933126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-02-28T18:09:03.5283790+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.6] + +2025-02-28T18:09:12.4120755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.11] + +2025-02-28T18:09:15.9899306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.74, 13.107.246.51] + +2025-02-28T18:09:25.3284932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-02-28T18:09:25.3906769+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T18:09:25.3949940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T18:09:30.2311520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.4] + +2025-02-28T18:09:36.7356737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-02-28T18:09:56.5677443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T18:09:57.5027500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 104.17.25.14] + +2025-02-28T18:09:57.5045481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T18:10:02.7608803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-02-28T18:10:03.2096594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-02-28T18:10:03.9226040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.112.26] + +2025-02-28T18:10:03.9238180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8000::154] + +2025-02-28T18:10:05.3910393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 13.107.246.38] + +2025-02-28T18:10:05.7571458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.57, 13.107.246.74] + +2025-02-28T18:10:06.0635928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::51, 13.107.246.74] + +2025-02-28T18:10:36.6069269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.67, 20.190.166.132, 20.190.166.133] + +2025-02-28T18:10:41.1599221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-02-28T18:10:56.4993355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.112.3] + +2025-02-28T18:11:04.2369023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.10] + +2025-02-28T18:11:10.1542899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-02-28T18:11:11.1506172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.67, 13.107.246.57] + +2025-02-28T18:11:31.0910381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::51, 13.107.246.51] + +2025-02-28T18:11:37.2579499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.139, 20.190.148.164] + +2025-02-28T18:12:01.3035320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.28.18] + +2025-02-28T18:12:02.0553473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.57, 13.107.246.51] + +2025-02-28T18:12:07.3467726+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->::1 + +2025-02-28T18:12:07.3476766+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn.azureedge.net->127.0.0.1 + +2025-02-28T18:12:07.7127094+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 355.526 ms + +2025-02-28T18:12:07.7853322+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.8099 ms + +2025-02-28T18:12:10.2869414+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 2620:1ec:bdf::76] + +2025-02-28T18:12:11.9560053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 13.107.246.52] + +2025-02-28T18:12:16.9790874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 2603:1046:1404::1, 52.109.124.4] + +2025-02-28T18:12:22.7852055+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.51, 13.107.246.66] + +2025-02-28T18:12:58.3724784+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.0418 ms + +2025-02-28T18:12:58.4409271+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.9515 ms + +2025-02-28T18:13:05.2338912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.114.9] + +2025-02-28T18:13:05.8223748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.112.6] + +2025-02-28T18:13:19.3037084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::51, 13.107.246.51] + +2025-02-28T18:13:24.3748714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81d1, 2600:1406:5e00:49::17ce:e5b1, 2600:1406:bc00:18::6007:81b6] + +2025-02-28T18:13:24.5485865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:18::6007:81bc, 2600:1406:5e00:49::17ce:e5ac] + +2025-02-28T18:13:29.9485121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:18::6007:81b6, 2600:1406:5e00:49::17ce:e5b1] + +2025-02-28T18:13:30.3338618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.164, 20.190.148.167] + +2025-02-28T18:13:35.9486304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.162, 20.190.148.164] + +2025-02-28T18:14:12.3713504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.57, 2620:1ec:bdf::74] + +2025-02-28T18:14:12.3734577+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::51, 13.107.246.66] + +2025-02-28T18:14:14.6126835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.74.49] + +2025-02-28T18:14:24.5048195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-02-28T18:14:25.6771738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:ac00::1743:4beb, 2600:140b:ac00::1743:4bca, 2600:1406:bc00:18::6007:81d1] + +2025-02-28T18:14:27.2625510+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:ac00::1743:4b9a, 2600:140b:ac00::1743:4bd3, 2600:1406:bc00:18::6007:81d1] + +2025-02-28T18:14:28.9456235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-02-28T18:14:36.3166013+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:15:12.1628101+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T18:15:14.2973705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 104.17.24.14] + +2025-02-28T18:15:14.2982565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T18:15:16.4517649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-02-28T18:15:17.8021194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.112.22] + +2025-02-28T18:15:19.4259355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.112.4] + +2025-02-28T18:15:20.4950421+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.113.25] + +2025-02-28T18:15:22.3133947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8001::154, 185.199.110.133, 185.199.108.133] + +2025-02-28T18:15:22.7315293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.74] + +2025-02-28T18:15:24.6021846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::76, 13.107.246.41] + +2025-02-28T18:15:25.2343445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.74.49, 13.105.74.50] + +2025-02-28T18:15:25.7775873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.71, 13.107.246.74] + +2025-02-28T18:15:32.3490316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.3] + +2025-02-28T18:15:39.3600512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.68, 20.190.166.132] + +2025-02-28T18:15:41.6007084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.113.5] + +2025-02-28T18:15:54.1078068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.148.165, 20.190.144.161] + +2025-02-28T18:16:06.2920883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.9] + +2025-02-28T18:16:13.6287399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-02-28T18:16:14.5988990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::76, 2620:1ec:bdf::74] + +2025-02-28T18:16:14.6791501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::71] + +2025-02-28T18:16:22.5681680+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-02-28T18:16:34.2604361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::76, 2620:1ec:bdf::57] + +2025-02-28T18:16:34.2647984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.57, 2620:1ec:bdf::59] + +2025-02-28T18:16:34.3556950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::57, 2620:1ec:bdf::73] + +2025-02-28T18:16:47.6283498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 13.107.42.18] + +2025-02-28T18:17:03.6880506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::59, 13.107.253.70] + +2025-02-28T18:17:04.5876280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1036:2406::12] + +2025-02-28T18:17:05.3066272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.49, 13.105.74.50, 20.135.6.9] + +2025-02-28T18:17:05.5044448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 13.107.253.70, 2620:1ec:bdf::73] + +2025-02-28T18:17:11.6657436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::73, 13.107.246.73] + +2025-02-28T18:17:11.7419150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::57, 2620:1ec:bdf::73] + +2025-02-28T18:17:12.3303902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::73, 13.107.246.73] + +2025-02-28T18:17:12.4965400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.191] + +2025-02-28T18:17:15.5694060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::73, 13.107.246.73] + +2025-02-28T18:17:24.6285322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.112.174] + +2025-02-28T18:17:28.7940027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 2620:1ec:bdf::57, 2620:1ec:bdf::73] + +2025-02-28T18:17:29.6263591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.49, 20.135.6.7, 13.105.74.50] + +2025-02-28T18:17:47.9115679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.112, 23.220.70.94, 2600:140b:ac00::1743:4b9a] + +2025-02-28T18:18:06.5428298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-02-28T18:18:26.6820063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 13.105.74.49, 13.105.74.50] + +2025-02-28T18:18:28.8006476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:ac00::1743:4beb, 2600:140b:ac00::1743:4bca, 104.85.248.91] + +2025-02-28T18:18:42.7914204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.19, 20.190.144.165, 20.190.144.162] + +2025-02-28T18:18:43.3151289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.19, 40.126.35.145, 2603:1047:1:168::11] + +2025-02-28T18:18:47.8519212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 2603:1046:1404::1, 52.109.124.4] + +2025-02-28T18:18:48.6678542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:ac00::1743:4beb, 2600:140b:ac00::1743:4bca, 104.85.248.73] + +2025-02-28T18:18:54.7755420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::19, 2603:1047:1:168::20, 40.126.35.19] + +2025-02-28T18:19:06.2163787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::57, 2620:1ec:bdf::73] + +2025-02-28T18:19:12.8393486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::69, 13.107.246.51] + +2025-02-28T18:19:12.8413917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::69, 13.107.246.51] + +2025-02-28T18:19:13.4427059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 40.126.35.19, 20.190.144.166] + +2025-02-28T18:19:13.7143048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::27, 20.190.144.165, 2603:1047:1:168::19] + +2025-02-28T18:19:15.2956289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.7, 13.105.74.49] + +2025-02-28T18:19:17.1519086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::69, 2620:1ec:bdf::57] + +2025-02-28T18:19:26.4218334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.66, 2620:1ec:bdf::69] + +2025-02-28T18:19:34.3456391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:ac00::1743:4beb, 104.85.248.73, 104.85.248.91] + +2025-02-28T18:19:36.6869527+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-02-28T18:19:37.0558019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 13.107.43.18] + +2025-02-28T18:19:39.7388744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 2603:1046:1404::1, 52.109.44.108] + +2025-02-28T18:19:48.6470206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 2603:1046:1404::1, 52.109.124.4] + +2025-02-28T18:20:03.9964215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-02-28T18:20:11.9228373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T18:20:11.9237796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T18:20:12.4374657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-02-28T18:20:14.9256281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-02-28T18:20:14.9267011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-02-28T18:20:15.5169711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-02-28T18:20:23.6471449+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-02-28T18:20:23.8782474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.113.5] + +2025-02-28T18:20:24.3010661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.112.3] + +2025-02-28T18:20:25.0026640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.22] + +2025-02-28T18:20:25.7306690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.26] + +2025-02-28T18:20:26.4433222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1036:2400::12] + +2025-02-28T18:20:26.8574511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.77, 13.107.246.67, 2620:1ec:bdf::44] + +2025-02-28T18:20:26.9276735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.57, 2620:1ec:bdf::51] + +2025-02-28T18:20:27.2045447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.74.50, 20.135.6.7] + +2025-02-28T18:20:36.0384209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1036:2405::7] + +2025-02-28T18:20:39.9755919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 40.126.35.128, 20.190.144.166] + +2025-02-28T18:20:42.5055900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.6] + +2025-02-28T18:20:43.4496024+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::71, 2620:1ec:bdf::69] + +2025-02-28T18:20:46.9367663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-02-28T18:21:02.2834715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:ac00::1743:4beb, 104.85.248.91, 104.85.248.73] + +2025-02-28T18:21:08.8300884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::71, 2620:1ec:bdf::73] + +2025-02-28T18:21:16.3514990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.57, 13.107.246.41] + +2025-02-28T18:21:16.4249830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 13.107.246.44, 2620:1ec:bdf::71] + +2025-02-28T18:21:27.0739971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.57, 2620:1ec:bdf::67] + +2025-02-28T18:21:27.8633942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.112.174] + +2025-02-28T18:21:48.9556068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.43.18, 2620:1ec:21::18, 13.107.42.18] + +2025-02-28T18:22:01.8264106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-02-28T18:22:03.8234487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1036:2400::12, 2603:1036:2406::12] + +2025-02-28T18:22:05.9743739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 2603:1046:1400::7] + +2025-02-28T18:22:06.8673296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.0.142] + +2025-02-28T18:22:12.1919164+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 13.107.246.38, 13.107.246.44] + +2025-02-28T18:22:12.2623258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.77, 13.107.246.38, 13.107.246.67] + +2025-02-28T18:22:15.0154246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.191] + +2025-02-28T18:22:22.8284200+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.112.4] + +2025-02-28T18:22:25.1469495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T18:22:35.9065427+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::66, 13.107.246.57] + +2025-02-28T18:22:36.1475172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 13.107.246.38, 13.107.246.68] + +2025-02-28T18:22:37.1148365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.74.50, 13.105.74.49] + +2025-02-28T18:22:38.7518560+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.128, 20.190.144.166, 20.190.144.164] + +2025-02-28T18:22:44.5078747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-02-28T18:22:44.7798974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.116.10] + +2025-02-28T18:22:50.3267280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 2600:140b:ac00::1743:4b9a, 2600:140b:ac00::1743:4bd3] + +2025-02-28T18:23:06.9076150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.113.5] + +2025-02-28T18:23:21.7971981+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:23:42.8475055+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:23:51.1967880+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:23:52.1063229+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:23:53.1456700+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:23:53.2083249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.40, 2620:1ec:bdf::66] + +2025-02-28T18:23:54.8494021+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:23:55.0740803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.11, 13.105.74.49] + +2025-02-28T18:24:16.7240191+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:24:42.5488131+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:24:52.0901018+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:25:05.3878222+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:25:07.9504600+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:25:13.1382050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.204.139.146, 23.204.139.138, 23.220.70.94] + +2025-02-28T18:25:35.5676188+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:25:37.9300590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:ac00::1743:4beb, 2600:140b:ac00::1743:4bca, 2600:1406:bc00:18::6007:81bc] + +2025-02-28T18:25:59.4545434+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:26:02.7548271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.162, 20.190.148.162] + +2025-02-28T18:26:12.2931184+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:26:12.8247093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.160, 20.190.144.136] + +2025-02-28T18:26:48.7707005+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:26:49.3712433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-02-28T18:27:11.4638216+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:27:12.1770591+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:27:36.0253701+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:27:42.4472663+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:27:42.7190653+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.43.18, 13.107.42.18] + +2025-02-28T18:28:04.6485238+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:28:05.7724429+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-02-28T18:28:27.5084948+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:28:28.1369335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 104.17.25.14] + +2025-02-28T18:28:31.0024583+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-02-28T18:28:33.9906848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-02-28T18:28:35.0743018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-02-28T18:28:38.4651497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-02-28T18:28:42.5507146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8002::154, 185.199.111.133] + +2025-02-28T18:28:43.7746893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-02-28T18:28:44.9873177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-02-28T18:28:45.8494772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.46, 13.107.246.57] + +2025-02-28T18:28:46.9944406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.7, 20.135.6.15] + +2025-02-28T18:28:48.2081133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.67, 13.107.246.38] + +2025-02-28T18:28:49.2058853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.68, 13.107.246.77, 2620:1ec:bdf::73] + +2025-02-28T18:28:50.4325939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-02-28T18:28:52.6542983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-02-28T18:28:54.4818311+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.204.139.146, 23.204.139.138, 2600:1406:bc00:a::172d:ad92] + +2025-02-28T18:28:55.6428180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81bc, 2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:a::172d:ad87] + +2025-02-28T18:28:56.6063760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.167, 20.190.144.160] + +2025-02-28T18:28:57.2546608+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.136, 20.190.144.162] + +2025-02-28T18:29:00.4783120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T18:29:01.2892069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.15, 20.135.6.9] + +2025-02-28T18:29:01.3543240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.40, 13.107.246.57] + +2025-02-28T18:29:16.8417310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6] + +2025-02-28T18:29:19.2562584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-02-28T18:30:04.3391105+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@8.8.8.8:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T18:30:04.3416966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::73, 13.107.246.73] + +2025-02-28T18:30:25.7725272+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:30:46.7949226+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:30:51.9924949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:bc00:d::1742:34e, 2600:1406:bc00:a::172d:ad92, 2600:1406:bc00:d::1742:354] + +2025-02-28T18:30:58.5286175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:a::172d:ad9a, 2600:1406:bc00:18::6007:81bc] + +2025-02-28T18:31:08.4123236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.138, 20.190.148.164] + +2025-02-28T18:31:28.2188352+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@8.8.8.8:53->Unexpected end of stream + +2025-02-28T18:31:33.4362464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.148.162, 20.190.144.162] + +2025-02-28T18:31:56.9536679+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:31:57.8243885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T18:31:59.1564595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-02-28T18:31:59.7913787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T18:32:02.0589167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.22.207.36] + +2025-02-28T18:32:27.7026026+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:32:29.1436732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.3] + +2025-02-28T18:32:29.8533030+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-02-28T18:32:32.6121456+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2403::] + +2025-02-28T18:32:55.0605333+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:32:55.3371016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.9, 20.135.6.11] + +2025-02-28T18:33:00.2123337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.51, 2620:1ec:bdf::73] + +2025-02-28T18:33:01.7331821+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::73, 13.107.246.73] + +2025-02-28T18:33:23.3144115+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:33:23.3850850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.38, 2620:1ec:bdf::73] + +2025-02-28T18:33:42.4759586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:a::172d:ad9a, 2600:1406:bc00:d::1742:351, 2600:1406:bc00:d::1742:346] + +2025-02-28T18:33:49.1279964+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@8.8.8.8:53->Unexpected end of stream + +2025-02-28T18:33:49.4224606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.162, 20.190.148.167] + +2025-02-28T18:33:51.9805308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T18:33:57.1810093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902] + +2025-02-28T18:33:57.3848576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T18:34:04.1416607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T18:34:25.5550233+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:34:30.7583011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-02-28T18:34:38.7749487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-02-28T18:34:39.9612417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-02-28T18:34:57.3346715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.112.26] + +2025-02-28T18:35:05.4807275+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-02-28T18:35:11.0859977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.10] + +2025-02-28T18:35:12.1662329+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-02-28T18:35:12.9857298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 20.135.6.9, 40.90.133.102] + +2025-02-28T18:35:14.6842895+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-02-28T18:35:43.9842547+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:35:54.0875065+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@8.8.8.8:53->Unexpected end of stream + +2025-02-28T18:36:19.9673743+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:36:20.2382120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-02-28T18:36:21.0964977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T18:36:21.6936401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-02-28T18:36:26.3896810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::74, 2620:1ec:bdf::62] + +2025-02-28T18:36:47.7735001+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:36:52.9642598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-02-28T18:37:02.6127772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:bc00:d::1742:34e, 2600:1406:bc00:a::172d:ad99, 2600:1406:bc00:a::172d:ad92] + +2025-02-28T18:37:16.3555311+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:d::1742:346, 2600:1406:bc00:a::172d:ad87, 2600:1406:bc00:d::1742:351] + +2025-02-28T18:37:22.2398314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.164, 20.190.148.165] + +2025-02-28T18:37:43.4330640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.144.160, 2603:1047:1:168::18] + +2025-02-28T18:38:01.0078599+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:38:01.9925858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-02-28T18:38:10.2048185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.9] + +2025-02-28T18:38:12.8335548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.112.22] + +2025-02-28T18:38:19.2861121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-02-28T18:38:20.0832870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 2620:1ec:bdf::74, 2620:1ec:bdf::76] + +2025-02-28T18:38:22.1912334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::74, 2620:1ec:bdf::40] + +2025-02-28T18:38:28.3886418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::74, 13.107.246.63] + +2025-02-28T18:38:52.6016680+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:38:54.4242145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 23.220.70.112, 2600:1406:bc00:d::1742:34e] + +2025-02-28T18:39:02.1201175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T18:39:02.1211533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T18:39:02.9263506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 2606:50c0:8002::154] + +2025-02-28T18:39:05.3757500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-02-28T18:39:05.7242836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T18:39:05.7272553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T18:39:06.3261712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-02-28T18:39:08.3468115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 2603:1046:1406::7] + +2025-02-28T18:39:19.4069749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.44.112, 2603:1036:2403:1::1b] + +2025-02-28T18:39:19.4115227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:d::1742:346, 2600:1406:bc00:d::1742:351, 2600:1404:cc00:11::b81c:2999] + +2025-02-28T18:39:19.4139377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.165, 20.190.144.160] + +2025-02-28T18:39:19.4161038+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 20.190.148.167, 20.190.144.162] + +2025-02-28T18:39:20.4293643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.113.10] + +2025-02-28T18:39:20.7001684+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 40.90.133.102, 20.135.4.163] + +2025-02-28T18:39:32.1168188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 104.17.24.14] + +2025-02-28T18:39:40.2270621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.113.22] + +2025-02-28T18:39:57.8480425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.113.25] + +2025-02-28T18:40:06.8655333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-02-28T18:40:11.1497310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-02-28T18:40:13.3563573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-02-28T18:40:14.4795160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.113.22] + +2025-02-28T18:40:17.0106553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 40.90.133.102, 40.90.130.207] + +2025-02-28T18:40:25.2840811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.44.112, 2603:1046:1400::4] + +2025-02-28T18:40:26.8766723+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.44.112] + +2025-02-28T18:40:30.0582481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-02-28T18:40:40.4759659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T18:40:45.2610441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 2603:1036:2400::b] + +2025-02-28T18:40:51.1523318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.148.165, 20.190.144.166] + +2025-02-28T18:40:53.2899148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:d::1742:346, 2600:1406:bc00:d::1742:351, 2600:140e:6::b81a:5b0f] + +2025-02-28T18:41:12.4841131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.5] + +2025-02-28T18:41:16.5322152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:d::1742:346, 2600:1406:bc00:d::1742:351, 2600:1409:9800:31::17d5:2293] + +2025-02-28T18:41:22.7765854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::76, 13.107.246.35, 2620:1ec:bdf::35] + +2025-02-28T18:41:22.8410149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.63, 2620:1ec:bdf::51] + +2025-02-28T18:41:22.9081311+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::40, 2620:1ec:bdf::51] + +2025-02-28T18:41:28.1921080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::51, 13.107.246.74] + +2025-02-28T18:41:48.5201022+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:41:48.5212816+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:41:48.5254387+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:41:48.5269981+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:41:48.5296653+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->::1 + +2025-02-28T18:41:48.5313248+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-02-28T18:41:49.0683487+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 364.3192 ms + +2025-02-28T18:41:49.0744014+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 205.8364 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-02-28T18:41:49.2684765+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:41:49.2697960+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:41:49.8315297+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 758.3083 ms + +2025-02-28T18:41:49.8351716+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-02-28T18:41:49.8358679+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-02-28T18:41:50.0651051+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 210.7335 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-02-28T18:41:50.3775373+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 312.6624 ms + +2025-02-28T18:42:04.3078627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 23.220.70.112, 23.205.119.20] + +2025-02-28T18:42:12.5389217+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.10] + +2025-02-28T18:42:13.0719889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:d::1742:351, 2600:1406:bc00:d::1742:346, 2600:1409:9800:31::17d5:2293] + +2025-02-28T18:42:17.5006543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.205.119.60, 2600:1406:bc00:d::1742:351, 2600:1406:bc00:d::1742:346] + +2025-02-28T18:42:17.7940878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.164, 20.190.144.139] + +2025-02-28T18:42:18.0829470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.148.165, 20.190.144.163] + +2025-02-28T18:42:31.0170760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.112.3] + +2025-02-28T18:42:59.8312348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 2620:1ec:bdf::35, 13.107.246.74] + +2025-02-28T18:43:01.4194382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 2620:1ec:bdf::35, 2620:1ec:bdf::74] + +2025-02-28T18:43:01.4233872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::40, 13.107.246.74] + +2025-02-28T18:43:02.8046267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-02-28T18:43:12.4162617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-02-28T18:43:23.8927091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.74, 2620:1ec:bdf::74] + +2025-02-28T18:43:24.2039381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.63, 13.107.246.74, 2620:1ec:bdf::74] + +2025-02-28T18:43:28.8275720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-02-28T18:43:28.8966149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::66] + +2025-02-28T18:43:41.9820996+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:43:42.5863628+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:43:44.2512318+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:43:46.0327607+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:43:55.3641434+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +edgeassetservice.azureedge.net->::1 + +2025-02-28T18:43:55.3674379+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +edgeassetservice.azureedge.net->127.0.0.1 + +2025-02-28T18:44:08.1178981+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:44:08.1191975+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:44:08.3385982+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 206.0195 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-02-28T18:44:08.4993801+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 375.9563 ms + +2025-02-28T18:44:08.6630717+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:44:08.6643766+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:44:09.1035308+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 763.0802 ms + +2025-02-28T18:44:09.3187551+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 201.6525 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-02-28T18:44:09.6264984+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 307.6798 ms + +2025-02-28T18:44:16.0000101+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:44:16.0008697+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:44:16.1703771+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 167.1044 ms + +2025-02-28T18:44:16.2104895+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 202.6879 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-02-28T18:44:16.3689154+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:44:16.3704103+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:44:16.5033412+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 292.0344 ms + +2025-02-28T18:44:16.7218265+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 204.9554 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-02-28T18:44:17.0108898+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 289.8721 ms + +2025-02-28T18:44:19.5032594+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://edgeassetservice.azureedge.net/assets/onnx.product.desktop.zh/3.1.0/asset responded 200 in 23816.6243 ms + +2025-02-28T18:45:00.7858353+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:45:19.0789838+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:45:19.0801272+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:45:19.2044343+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 116.4709 ms + +2025-02-28T18:45:19.3088302+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 198.676 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-02-28T18:45:19.3793181+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:45:19.3808551+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:45:20.4193889+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 1110.8278 ms + +2025-02-28T18:45:20.6442648+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 214.4768 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-02-28T18:45:21.1750062+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 531.5888 ms + +2025-02-28T18:45:23.1273066+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:45:23.1285254+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:45:23.2307217+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 100.3293 ms + +2025-02-28T18:45:23.3369001+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 201.8362 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-02-28T18:45:23.4208959+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-02-28T18:45:23.4219233+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-02-28T18:45:24.2695513+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 931.2897 ms + +2025-02-28T18:45:24.4858885+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 212.698 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-02-28T18:45:25.0272426+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 542.2852 ms + +2025-02-28T18:45:27.1572571+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T18:45:27.3901054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.51, 2620:1ec:bdf::74] + +2025-02-28T18:45:43.5079276+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-02-28T18:45:43.5100867+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-02-28T18:45:44.3347304+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent/docs responded 200 in 797.3219 ms + +2025-02-28T18:45:52.4050870+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:46:04.6349848+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:46:26.2994815+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:46:26.6352239+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T18:46:33.6000280+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:46:38.8878422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-02-28T18:48:01.5895519+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:48:01.8161559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T18:48:21.7367416+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:48:22.0684820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T18:48:44.3642676+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:48:47.9043520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T18:48:49.9675168+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.113.3, 140.82.121.3, 140.82.112.3] + +2025-02-28T18:48:52.8610503+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-02-28T18:48:53.9353426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.5] + +2025-02-28T18:48:56.1902519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-02-28T18:49:01.3666454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.112.26] + +2025-02-28T18:49:05.8508977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-02-28T18:49:07.9759348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T18:49:09.2267926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-02-28T18:49:10.1100399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::73, 2620:1ec:bdf::35] + +2025-02-28T18:49:11.0383365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::40, 2620:1ec:bdf::73, 13.107.246.69] + +2025-02-28T18:49:13.1354142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::73, 13.107.246.44] + +2025-02-28T18:49:18.2090633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.205.119.50, 23.220.70.112, 2600:1406:bc00:d::1742:354] + +2025-02-28T18:49:19.4476568+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.205.119.55, 23.205.119.60, 23.205.119.10] + +2025-02-28T18:49:23.6008215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.164, 20.190.148.163] + +2025-02-28T18:49:24.7783095+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 2603:1047:1:168::28, 20.190.148.163] + +2025-02-28T18:49:37.2799278+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:49:43.4449907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.74, 13.107.246.51] + +2025-02-28T18:49:46.7252235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.164, 20.190.148.167] + +2025-02-28T18:50:12.3658617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.113.3, 140.82.121.3, 20.205.243.166] + +2025-02-28T18:50:12.7875159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.138, 2603:1047:1:168::28] + +2025-02-28T18:50:13.8076599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.102, 40.90.130.207, 20.135.1.1] + +2025-02-28T18:50:18.8594123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1026:2405::1] + +2025-02-28T18:50:19.3866553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 40.90.133.102, 40.90.130.207] + +2025-02-28T18:50:19.3878515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.44, 13.107.246.74] + +2025-02-28T18:50:29.1220312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.44, 13.107.246.74] + +2025-02-28T18:51:02.0261817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 40.90.133.102] + +2025-02-28T18:51:03.3055148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.205.119.50, 2600:1406:bc00:d::1742:354, 2600:1406:bc00:d::1742:34e] + +2025-02-28T18:51:06.3953458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.89.117] + +2025-02-28T18:51:09.5622308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-02-28T18:51:13.2253185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.114.25] + +2025-02-28T18:51:15.1032411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::35, 13.107.246.44] + +2025-02-28T18:51:18.7192809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::73, 13.107.246.69] + +2025-02-28T18:51:32.1994476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.205.119.50, 2600:140b:2c00:32::1730:a76b, 2600:1406:bc00:d::1742:354] + +2025-02-28T18:51:46.6422853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.167, 20.190.148.163] + +2025-02-28T18:51:48.5691573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-02-28T18:52:06.9987118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.10] + +2025-02-28T18:52:17.3439400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.138, 20.190.144.161] + +2025-02-28T18:52:26.9604642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::35, 13.107.246.74] + +2025-02-28T18:52:50.2700774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.113.3, 140.82.121.3, 140.82.112.3] + +2025-02-28T18:53:12.4576272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 40.90.130.207] + +2025-02-28T18:53:15.0816396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 20.26.156.210] + +2025-02-28T18:53:18.2637655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.205.119.50, 23.220.70.112, 2600:140b:2c00:32::1730:a76b] + +2025-02-28T18:53:20.6991243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.205.119.55, 2600:140b:1a00:19::17dc:44aa, 23.205.119.60] + +2025-02-28T18:53:25.8553730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8001::154, 2606:50c0:8000::154, 2606:50c0:8003::154] + +2025-02-28T18:53:26.7522698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.135.6.7] + +2025-02-28T18:53:42.1200895+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::35, 13.107.246.74, 13.107.246.73] + +2025-02-28T18:53:42.1225852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::73, 13.107.246.74] + +2025-02-28T18:53:42.1235709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.74, 13.107.246.73] + +2025-02-28T18:53:42.1243543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.52.0] + +2025-02-28T18:53:45.0989897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44aa, 23.205.119.60, 2600:140b:1a00:19::17dc:44af] + +2025-02-28T18:53:46.5702862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-02-28T18:53:50.2322708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.160, 20.190.148.165] + +2025-02-28T18:53:52.1248739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-02-28T18:53:52.8904340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.112.3] + +2025-02-28T18:53:54.0145639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-02-28T18:53:57.6780072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.114.21] + +2025-02-28T18:54:03.4234983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.114.25] + +2025-02-28T18:54:06.0864589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.0.138] + +2025-02-28T18:54:07.9295497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.116.10] + +2025-02-28T18:54:08.0702326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8003::154, 2606:50c0:8001::154, 2606:50c0:8000::154] + +2025-02-28T18:54:15.9653175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::74, 13.107.246.74] + +2025-02-28T18:54:16.6766528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-02-28T18:54:16.9139622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::35, 13.107.246.38] + +2025-02-28T18:54:17.3392855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.63, 2620:1ec:bdf::74, 13.107.246.74] + +2025-02-28T18:54:18.4314228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::73] + +2025-02-28T18:54:19.2180207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.44.112] + +2025-02-28T18:54:20.8659786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.205.119.20, 23.220.70.94, 2600:140b:2c00:32::1730:a76b] + +2025-02-28T18:54:21.1735085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.165, 20.190.148.166] + +2025-02-28T18:54:21.2961535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.148.164, 20.190.144.161] + +2025-02-28T18:54:27.1590811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.167, 20.190.148.165] + +2025-02-28T18:54:27.4552569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 2603:1047:1:168::27, 20.190.144.138] + +2025-02-28T18:54:33.0068897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-02-28T18:54:33.0076344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T18:54:33.0086950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T18:54:47.9614110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.166, 20.190.148.167] + +2025-02-28T18:54:47.9624631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.166, 2603:1047:1:168::27] + +2025-02-28T18:55:04.1484929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.112.6] + +2025-02-28T18:55:15.1412364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 2603:1046:1404::1] + +2025-02-28T18:55:15.2298748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.166, 20.190.148.164] + +2025-02-28T18:55:22.3105638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.2, 20.135.6.11] + +2025-02-28T18:55:50.0825991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::74, 13.107.246.74] + +2025-02-28T18:55:56.9487557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.3] + +2025-02-28T18:56:08.9869915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.205.119.20, 23.220.70.94, 2600:140b:2c00:32::1730:a74e] + +2025-02-28T18:56:09.2879056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44aa, 23.205.119.60, 2600:140b:2c00:32::1730:a74e] + +2025-02-28T18:56:14.2452512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.112.25] + +2025-02-28T18:56:15.8909973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::64, 13.107.246.63] + +2025-02-28T18:56:29.1791372+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T18:56:29.1802926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T18:56:36.7529957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-02-28T18:56:48.8888234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 13.107.246.66, 2620:1ec:bdf::74] + +2025-02-28T18:56:49.7864444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.166, 20.190.144.138] + +2025-02-28T18:57:03.8419522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2403::] + +2025-02-28T18:57:06.5634256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.5] + +2025-02-28T18:57:20.2615306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::76, 2620:1ec:bdf::74] + +2025-02-28T18:57:51.0018752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 13.107.246.36, 13.107.246.66] + +2025-02-28T18:57:57.5361151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.113.4] + +2025-02-28T18:58:01.9743965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.2] + +2025-02-28T18:58:16.2903514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::35, 2620:1ec:bdf::76] + +2025-02-28T18:58:19.3558522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.46, 2620:1ec:bdf::64] + +2025-02-28T18:58:22.7269589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.205.119.60, 2600:140b:1a00:19::17dc:44af, 2600:140b:2c00:32::1730:a74e] + +2025-02-28T18:58:31.3260181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T18:58:32.0238767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-02-28T18:58:32.8697562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.7] + +2025-02-28T18:58:40.6182226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-02-28T18:58:47.8989689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-02-28T18:59:11.6311091+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:59:15.0196639+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:59:21.6057769+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:59:42.6437943+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T18:59:43.5535352+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:59:43.9472997+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T18:59:44.6670994+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:00:05.8804066+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:00:33.5560808+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:00:38.5625809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-02-28T19:01:00.3761165+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:01:00.7790509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.6] + +2025-02-28T19:01:02.4071086+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:01:28.5547999+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:01:29.8509053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 140.82.116.10, 140.82.113.10] + +2025-02-28T19:01:30.9498575+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:01:31.3614925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.112.22] + +2025-02-28T19:01:53.0314761+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:01:53.4463367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.112.26] + +2025-02-28T19:02:15.1246705+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:02:16.4650838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8000::154, 2606:50c0:8003::154, 185.199.108.133] + +2025-02-28T19:02:21.5989834+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:02:23.3140891+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:02:23.8474696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-02-28T19:02:35.5864631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.51] + +2025-02-28T19:02:53.6810134+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:02:53.9291707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-02-28T19:03:04.8630818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.38, 13.107.246.73, 2620:1ec:bdf::73] + +2025-02-28T19:03:05.8841379+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:03:06.1372562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.73, 2620:1ec:bdf::73] + +2025-02-28T19:03:32.6779650+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:03:33.9932962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.191] + +2025-02-28T19:03:55.6486153+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:03:56.1274474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.2] + +2025-02-28T19:04:08.1686918+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T19:04:10.4535425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.112, 23.205.119.50, 184.28.98.90] + +2025-02-28T19:04:13.6174148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44aa, 2600:140b:1a00:19::17dc:44af, 23.205.119.60] + +2025-02-28T19:04:21.7108962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.138, 20.190.144.164] + +2025-02-28T19:04:27.5933181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.138, 20.190.144.164] + +2025-02-28T19:04:34.7025615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-02-28T19:04:36.1088406+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:04:47.7526728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T19:04:48.0775639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T19:04:49.5750613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.24.14] + +2025-02-28T19:04:54.7438884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.22.207.36] + +2025-02-28T19:05:01.6616314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-02-28T19:05:02.5850895+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.113.3] + +2025-02-28T19:05:07.6036442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.113.10, 140.82.121.9, 140.82.114.9] + +2025-02-28T19:05:09.9044909+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.77] + +2025-02-28T19:05:16.2122864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::57, 2620:1ec:bdf::74] + +2025-02-28T19:05:18.0878497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-02-28T19:05:19.3610363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.205.119.50, 184.28.98.90, 2600:1405:b000::1725:e62a] + +2025-02-28T19:05:21.1319774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44aa, 2600:140b:1a00:19::17dc:44af, 2600:1406:bc00:d::1742:351] + +2025-02-28T19:05:24.0657112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.77, 2620:1ec:bdf::74] + +2025-02-28T19:05:24.0694230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-02-28T19:05:24.9027361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:d::1742:351, 2600:1406:bc00:d::1742:346, 2.16.168.102] + +2025-02-28T19:05:34.5997973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-02-28T19:05:36.9157674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::74, 13.107.246.74] + +2025-02-28T19:05:39.3840637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-02-28T19:05:49.6970108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-02-28T19:05:51.7274174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.9] + +2025-02-28T19:05:52.7313831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.4] + +2025-02-28T19:05:56.0237930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.138, 2603:1047:1:168::28] + +2025-02-28T19:06:28.0368805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 13.105.74.50] + +2025-02-28T19:06:36.0450698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.114.9] + +2025-02-28T19:06:36.4723574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.22] + +2025-02-28T19:07:01.1301650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.26] + +2025-02-28T19:07:02.5171901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.15] + +2025-02-28T19:07:10.3257493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.113.4] + +2025-02-28T19:07:11.2190679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.113.10] + +2025-02-28T19:07:20.9850722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8002::154] + +2025-02-28T19:07:26.7348975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:d::1742:351, 2600:1406:bc00:d::1742:346, 23.216.55.183] + +2025-02-28T19:07:31.1983190+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-02-28T19:07:32.0074157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 2603:1047:1:168::28, 2603:1047:1:168::26] + +2025-02-28T19:07:35.0040297+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::38, 13.107.246.46] + +2025-02-28T19:07:35.0832264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::77, 13.107.246.40] + +2025-02-28T19:07:35.1600122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.66, 13.107.246.36] + +2025-02-28T19:07:35.2239166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.70, 2620:1ec:bdf::36] + +2025-02-28T19:07:36.9902068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::38, 2620:1ec:bdf::41] + +2025-02-28T19:07:37.0562590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.62, 2620:1ec:bdf::77] + +2025-02-28T19:07:37.0574477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.69, 13.107.246.66] + +2025-02-28T19:07:37.0583088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::41, 13.107.246.70] + +2025-02-28T19:07:48.5172078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 23.205.119.50, 184.28.98.90] + +2025-02-28T19:07:54.0210148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.36, 2620:1ec:bdf::41, 13.107.246.69] + +2025-02-28T19:07:56.1385266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-02-28T19:08:04.9269620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::73, 2620:1ec:bdf::40] + +2025-02-28T19:08:06.3327689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::41, 13.107.246.46] + +2025-02-28T19:08:11.5970058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.4] + +2025-02-28T19:08:12.3849678+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.15, 13.105.74.50] + +2025-02-28T19:08:18.0044282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.112, 23.206.250.88, 23.205.119.50] + +2025-02-28T19:08:18.3567833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:d::1742:351, 2600:1406:bc00:d::1742:346, 2a02:26f0:2780:5e::210:a864] + +2025-02-28T19:08:22.6396035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::41, 13.107.246.52] + +2025-02-28T19:08:31.8767058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:14::1737:27a9, 2600:1413:5000:14::1737:2785, 23.220.70.112] + +2025-02-28T19:08:32.6381332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1413:5000:14::1737:279f, 2600:1413:5000:14::1737:2791, 2600:1406:bc00:d::1742:351] + +2025-02-28T19:08:47.7077617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-02-28T19:08:49.8813321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.112.6] + +2025-02-28T19:08:50.1942310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::77, 13.107.246.40] + +2025-02-28T19:08:50.4988603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.69, 2620:1ec:bdf::35] + +2025-02-28T19:08:50.5013784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::41, 2620:1ec:bdf::36] + +2025-02-28T19:08:50.5035402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 13.105.74.50, 20.135.6.9] + +2025-02-28T19:08:50.8771155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1413:5000:14::1737:279f, 2600:1413:5000:14::1737:2791, 2a02:26f0:2780:5e::210:a864] + +2025-02-28T19:08:50.8798679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.163, 20.190.144.160] + +2025-02-28T19:08:56.6324810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.15, 13.105.74.50] + +2025-02-28T19:09:00.2756889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.114.6] + +2025-02-28T19:09:31.8578309+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T19:09:37.0339569+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:09:37.1004650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.57, 2620:1ec:bdf::77] + +2025-02-28T19:09:43.0868555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.69, 13.107.246.40] + +2025-02-28T19:10:20.9292093+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:10:23.2670448+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:12:47.8356569+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T19:12:49.2083103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1413:5000:14::1737:279f, 2600:1413:5000:14::1737:2791, 2600:1406:3a00:1f::173e:2e75] + +2025-02-28T19:13:11.0053524+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:13:14.3101410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:14::1737:27a9, 2600:1413:5000:14::1737:2785, 23.220.70.94] + +2025-02-28T19:13:19.8441876+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:13:25.0208515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.160, 20.190.148.165] + +2025-02-28T19:13:46.9292431+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:13:50.2147941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::20, 2603:1047:1:168::27, 20.190.148.166] + +2025-02-28T19:13:53.4865900+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:14:16.0162472+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:14:16.3010006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-02-28T19:14:18.4697028+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:14:18.7138702+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T19:14:19.4543299+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:14:24.6868155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-02-28T19:14:46.4628561+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:14:46.6323594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T19:14:47.8772756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-02-28T19:15:07.4600892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-02-28T19:15:59.8920470+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T19:16:00.4510720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:190e, 104.17.24.14] + +2025-02-28T19:16:04.2394868+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:16:04.4163707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-02-28T19:16:26.2564547+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:16:26.4117474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-02-28T19:16:48.1888982+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:17:15.2340553+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:17:32.8654954+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:17:33.2884217+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.114.6] + +2025-02-28T19:17:55.1368090+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:17:55.5315918+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-02-28T19:18:16.6317289+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T19:18:17.0627572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-02-28T19:18:38.7553413+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:18:40.0755900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8002::154, 185.199.108.133] + +2025-02-28T19:18:41.0375044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.51, 13.107.246.40] + +2025-02-28T19:18:50.2453642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2404::2] + +2025-02-28T19:18:51.2038635+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:18:51.4461017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 13.107.253.44, 2620:1ec:29:1::70] + +2025-02-28T19:18:52.8420212+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:18:53.2958346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-02-28T19:19:04.8166925+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:19:05.0902466+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.69, 2620:1ec:bdf::53] + +2025-02-28T19:19:06.0613328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::53, 13.107.246.73] + +2025-02-28T19:19:27.7855409+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:19:31.3053426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.102, 20.135.1.1, 13.105.66.144] + +2025-02-28T19:19:34.6299004+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 2603:1046:1406::2] + +2025-02-28T19:19:39.9077579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:4e00:8::17dc:4bd5, 184.28.98.96, 184.28.98.76] + +2025-02-28T19:19:41.0891729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:3a00:1f::173e:2e75, 2600:1406:4e00:8::17dc:4bcb, 2600:1406:3a00:1f::173e:2e77] + +2025-02-28T19:19:45.3160600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.163, 20.190.144.138] + +2025-02-28T19:19:46.4994493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.33, 20.190.141.32, 20.190.141.37] + +2025-02-28T19:19:50.6960853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-02-28T19:19:52.4302893+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:20:01.0401035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4] + +2025-02-28T19:20:01.9373022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.5] + +2025-02-28T19:20:03.6820520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.3] + +2025-02-28T19:20:05.4930941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.114.9] + +2025-02-28T19:20:06.5319079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.113.25] + +2025-02-28T19:20:06.8585257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.253.44, 2620:1ec:29:1::70, 2620:1ec:bdf::74] + +2025-02-28T19:20:11.0579357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-02-28T19:20:11.0593398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.77.37] + +2025-02-28T19:20:11.3388930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::69, 2620:1ec:bdf::74] + +2025-02-28T19:20:12.4657554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-02-28T19:20:12.7731683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::41, 2620:1ec:bdf::74] + +2025-02-28T19:20:13.3019560+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.73, 2620:1ec:bdf::57] + +2025-02-28T19:20:13.6295869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-02-28T19:20:17.9148921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-02-28T19:20:17.9173884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-02-28T19:20:21.9459921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.102, 13.105.66.144, 20.135.4.170] + +2025-02-28T19:20:21.9476599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::57, 2620:1ec:bdf::38] + +2025-02-28T19:20:24.8478023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-02-28T19:20:25.8540215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:4e00:8::17dc:4bcb, 184.28.98.116, 184.28.98.92] + +2025-02-28T19:20:31.4972207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-02-28T19:20:42.1635615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.44, 2620:1ec:29:1::70] + +2025-02-28T19:20:46.8228117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2403::] + +2025-02-28T19:20:51.9097886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.253.44, 2620:1ec:29:1::70] + +2025-02-28T19:20:58.4396211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.38, 2620:1ec:29:1::44] + +2025-02-28T19:21:00.9721448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.114.25] + +2025-02-28T19:21:01.3924682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 104.17.24.14] + +2025-02-28T19:21:02.0546299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.60, 13.107.246.69] + +2025-02-28T19:21:07.3866441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.102, 40.90.142.224, 13.105.66.144] + +2025-02-28T19:21:27.6217867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-02-28T19:21:29.2496585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.21] + +2025-02-28T19:21:36.1810808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::57, 13.107.246.45] + +2025-02-28T19:21:45.0955547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.37.230.96, 2600:1406:4e00:8::17dc:4bd5, 23.37.230.75] + +2025-02-28T19:21:52.9694391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-02-28T19:21:57.5100319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 40.90.133.102, 40.90.142.224] + +2025-02-28T19:22:04.8212122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.113.10] + +2025-02-28T19:22:07.8984195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:4e00:8::17dc:4bcb, 2600:140b:f400::17c5:3122, 2600:140b:f400::17c5:311a] + +2025-02-28T19:22:08.5036515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:f400::17c5:3139, 23.37.230.96, 2600:1406:4e00:8::17dc:4bd5] + +2025-02-28T19:22:15.4912443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.69, 2620:1ec:bdf::57] + +2025-02-28T19:22:38.0525955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 40.90.133.102, 40.90.130.197] + +2025-02-28T19:22:44.2433517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.44, 2620:1ec:bdf::60] + +2025-02-28T19:22:53.4631929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::44, 13.107.253.44] + +2025-02-28T19:22:58.5844646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.44.111] + +2025-02-28T19:23:00.2979804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.114.22] + +2025-02-28T19:23:17.5941782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.112.25] + +2025-02-28T19:23:17.9335350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-02-28T19:23:40.9893327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-02-28T19:23:41.3708882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::40, 2620:1ec:bdf::66, 13.107.246.74] + +2025-02-28T19:23:43.8566184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.46] + +2025-02-28T19:23:43.8604213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::46] + +2025-02-28T19:23:43.9299758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::74] + +2025-02-28T19:24:02.0998785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.73] + +2025-02-28T19:24:02.4818117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.74, 2620:1ec:bdf::74] + +2025-02-28T19:24:03.5012635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.50, 40.90.133.102] + +2025-02-28T19:24:11.1377839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-02-28T19:24:11.9456864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-02-28T19:24:15.2867610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.74.50] + +2025-02-28T19:24:17.2612916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.74, 2620:1ec:bdf::53] + +2025-02-28T19:24:37.3335691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.2] + +2025-02-28T19:24:38.5605282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:f400::17c5:3139, 184.28.98.90, 184.28.98.76] + +2025-02-28T19:24:39.8412692+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-02-28T19:24:44.6246547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[184.28.98.90, 2600:1406:5e00:49::17ce:e5ac, 2600:1406:5e00:49::17ce:e5a5] + +2025-02-28T19:24:44.9014713+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.165, 20.190.144.160] + +2025-02-28T19:24:50.7601247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.35, 20.190.141.32, 20.190.141.37] + +2025-02-28T19:24:52.2856550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-02-28T19:24:52.3547860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T19:24:52.3567471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T19:24:56.0842488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.74, 2620:1ec:bdf::74] + +2025-02-28T19:24:56.5031553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1404::4, 52.109.124.29, 2603:1046:1406::5] + +2025-02-28T19:25:05.6473420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::40, 2620:1ec:bdf::38, 2620:1ec:bdf::66] + +2025-02-28T19:25:12.9458305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-02-28T19:25:16.1944340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-02-28T19:25:17.3239038+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-02-28T19:25:17.3258334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-02-28T19:25:18.6304644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-02-28T19:25:42.3055390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.51] + +2025-02-28T19:26:06.8850616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.25.14] + +2025-02-28T19:26:08.1010927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-02-28T19:26:09.0001178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::66, 13.107.246.74] + +2025-02-28T19:26:17.6704262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::66, 13.107.246.74] + +2025-02-28T19:26:31.8689120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-02-28T19:26:33.5790642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.74.49] + +2025-02-28T19:26:36.2813664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::66, 13.107.246.45] + +2025-02-28T19:26:36.2822999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::66, 13.107.246.45] + +2025-02-28T19:26:54.0975707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.116.4, 140.82.121.4, 20.217.135.5] + +2025-02-28T19:26:56.9563883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.74, 2620:1ec:bdf::40] + +2025-02-28T19:27:06.4634797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-02-28T19:27:09.2298608+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:f400::17c5:311a, 184.28.98.90, 2600:1406:5e00:49::17ce:e5ac] + +2025-02-28T19:27:19.2933123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.74, 2620:1ec:bdf::74] + +2025-02-28T19:27:19.2948155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::46, 13.107.246.74] + +2025-02-28T19:27:19.2957967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::38, 2620:1ec:bdf::66] + +2025-02-28T19:28:10.4723352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.116.4, 140.82.121.4, 140.82.121.3] + +2025-02-28T19:28:11.1505677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.114.22] + +2025-02-28T19:28:18.1329339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.25] + +2025-02-28T19:28:18.9908967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::77, 2620:1ec:bdf::38] + +2025-02-28T19:28:31.0281988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.7] + +2025-02-28T19:28:41.9388308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.51, 13.107.246.38] + +2025-02-28T19:28:41.9403829+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::46, 2620:1ec:bdf::40] + +2025-02-28T19:28:42.4748006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.45, 2620:1ec:bdf::40] + +2025-02-28T19:28:46.4202798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-02-28T19:28:47.0616235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.38, 2620:1ec:bdf::73] + +2025-02-28T19:28:50.7052580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4486, 2600:140b:1a00:19::17dc:4495, 2600:140b:f400::17c5:3139] + +2025-02-28T19:29:04.2176820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::77, 13.107.246.45] + +2025-02-28T19:29:04.2194679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::40, 2620:1ec:bdf::66] + +2025-02-28T19:29:11.5357634+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.114.10] + +2025-02-28T19:29:12.1787767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::46, 2620:1ec:bdf::77] + +2025-02-28T19:29:12.1798867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.73, 2620:1ec:bdf::46] + +2025-02-28T19:29:12.5377924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.45] + +2025-02-28T19:29:13.5511470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::46, 2620:1ec:bdf::73] + +2025-02-28T19:29:17.6259491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-02-28T19:29:17.8158396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::46, 2620:1ec:bdf::77] + +2025-02-28T19:29:44.4558891+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:30:05.5031704+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:30:05.5699403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::46, 2620:1ec:bdf::73] + +2025-02-28T19:30:16.5235396+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:30:33.5143694+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:30:39.1053431+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:30:40.4653410+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:30:40.9820747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4486, 2600:140b:1a00:19::17dc:4495, 2600:1406:bc00:d::1742:354] + +2025-02-28T19:30:49.1156470+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:30:49.6269025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:f400::17c5:311a, 2600:1406:bc00:d::1742:346, 2600:1406:5e00:49::17ce:e5a5] + +2025-02-28T19:30:50.9386901+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:30:56.1357187+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.163, 20.190.144.138] + +2025-02-28T19:30:57.0272934+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:31:02.2302431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.36, 20.190.141.32, 20.190.141.34] + +2025-02-28T19:31:25.0390107+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:31:46.8625002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-02-28T19:31:51.3744571+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:31:51.6364971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T19:31:52.2123488+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:32:00.4630232+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:32:16.6307440+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T19:32:26.8656710+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:32:32.2883713+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:32:37.4756848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-02-28T19:32:45.8591029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T19:32:47.8529509+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unexpected end of stream + +2025-02-28T19:32:48.3802365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-02-28T19:32:59.0935012+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:32:59.0972245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T19:33:01.1515178+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:33:01.6678575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-02-28T19:33:11.1621840+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:33:33.4561375+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:33:33.8698836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.114.21] + +2025-02-28T19:33:45.9400967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.112.26] + +2025-02-28T19:34:21.3198250+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T19:34:21.7908016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.5] + +2025-02-28T19:34:43.1795936+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:34:48.4039445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8000::154, 185.199.109.133] + +2025-02-28T19:35:09.1782401+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:35:11.7091386+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:35:12.9621261+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::46, 2620:1ec:bdf::77] + +2025-02-28T19:35:13.9671038+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::77, 2620:1ec:bdf::45, 2620:1ec:bdf::73] + +2025-02-28T19:35:19.0472596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::46, 13.107.246.76] + +2025-02-28T19:35:30.5925072+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:35:31.0344303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.0] + +2025-02-28T19:35:36.3060915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-02-28T19:35:52.7341459+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:35:52.9858823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::40, 2620:1ec:bdf::73] + +2025-02-28T19:35:59.5554110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 52.109.124.191] + +2025-02-28T19:36:07.0400750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4495, 2600:140b:2c00:4::1727:a02d, 2600:140b:2c00:4::1727:a025] + +2025-02-28T19:36:10.1003645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2c00:4::1727:a025, 2600:140b:2c00:4::1727:a030, 23.67.33.135] + +2025-02-28T19:36:18.2494994+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.136, 40.126.35.85] + +2025-02-28T19:36:26.2696449+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::c, 2603:1047:1:a0::a, 2603:1047:1:a0::13] + +2025-02-28T19:36:50.1286225+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:36:50.3869614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-02-28T19:37:39.2466384+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:37:39.4985523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T19:37:40.6866522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-02-28T19:37:50.4696118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-02-28T19:37:51.2558752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-02-28T19:38:12.9934194+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:38:13.5554576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-02-28T19:38:14.7473734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-02-28T19:38:19.9386855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 20.217.135.5] + +2025-02-28T19:38:21.3335677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.10] + +2025-02-28T19:38:22.1831632+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.113.6] + +2025-02-28T19:38:27.6080569+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:38:27.6107622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.114.26] + +2025-02-28T19:38:28.3034213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-02-28T19:38:29.7273182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-02-28T19:38:31.4415717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::40, 2620:1ec:bdf::73, 13.107.246.44] + +2025-02-28T19:38:32.8034786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.76, 13.107.246.40] + +2025-02-28T19:38:38.6581059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 2603:1046:1404::1] + +2025-02-28T19:38:43.6547280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T19:38:53.9926881+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T19:38:59.3679019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-02-28T19:39:00.6920936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.25] + +2025-02-28T19:39:01.3875745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.22] + +2025-02-28T19:39:02.9810366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.76, 2620:1ec:bdf::73] + +2025-02-28T19:39:15.9992056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.3] + +2025-02-28T19:39:16.4252364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::77, 2620:1ec:bdf::40] + +2025-02-28T19:39:20.7977807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.10] + +2025-02-28T19:39:23.8402403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.114.5] + +2025-02-28T19:39:36.7031714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-02-28T19:39:36.7042500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 13.105.74.50] + +2025-02-28T19:39:36.7050670+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::40, 2620:1ec:bdf::73] + +2025-02-28T19:39:37.7208244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::73, 2620:1ec:bdf::44] + +2025-02-28T19:39:59.6338719+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:40:08.0465985+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 2606:50c0:8003::154] + +2025-02-28T19:40:12.0099076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::40, 2620:1ec:bdf::69] + +2025-02-28T19:40:12.0872729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.76, 2620:1ec:bdf::73, 2620:1ec:bdf::69] + +2025-02-28T19:40:12.0890126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::45, 13.107.246.74] + +2025-02-28T19:40:12.0904859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::40, 13.107.246.44] + +2025-02-28T19:40:17.3231949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.51, 13.107.246.74] + +2025-02-28T19:40:20.6861690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::69, 2620:1ec:bdf::40] + +2025-02-28T19:40:22.3041760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.114.5] + +2025-02-28T19:40:27.7580822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.26] + +2025-02-28T19:40:37.8873688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.76, 2620:1ec:bdf::41, 2620:1ec:bdf::73] + +2025-02-28T19:40:38.2122437+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::73, 2620:1ec:bdf::45] + +2025-02-28T19:40:38.9172808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-02-28T19:40:39.9499270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 52.109.124.191] + +2025-02-28T19:40:40.2622489+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1406::7] + +2025-02-28T19:40:40.2647882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:2c00:4::1727:a02d, 2600:140b:2c00:4::1727:a025, 2600:1406:bc00:d::1742:354] + +2025-02-28T19:41:04.1799693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.74, 2620:1ec:bdf::53] + +2025-02-28T19:41:05.7129327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.2] + +2025-02-28T19:41:06.5288011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 52.109.52.84] + +2025-02-28T19:41:07.0296422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:2c00:4::1727:a02d, 2600:140b:2c00:4::1727:a025, 2600:1406:bc00:18::6007:81d1] + +2025-02-28T19:41:07.0308356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.86, 40.126.35.134, 40.126.35.150] + +2025-02-28T19:41:09.0494587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::73, 13.107.246.67] + +2025-02-28T19:41:09.6918426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2c00:4::1727:a025, 23.67.33.143, 23.67.33.135] + +2025-02-28T19:41:15.4710924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.150, 40.126.35.21, 40.126.35.144] + +2025-02-28T19:41:18.8131173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.166, 20.190.148.165] + +2025-02-28T19:41:21.9438337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.114.10] + +2025-02-28T19:41:25.1689379+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.166, 40.126.35.150] + +2025-02-28T19:41:28.2819966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::10, 2603:1047:1:a0::a, 2603:1047:1:a0::11] + +2025-02-28T19:41:51.3329230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-02-28T19:41:52.4822489+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:41:58.8730638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T19:42:04.1905063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.15, 20.135.6.7] + +2025-02-28T19:43:02.7978050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-02-28T19:43:02.9193033+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T19:43:03.2859950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T19:43:08.6721048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T19:43:09.4979250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::69, 13.107.246.74] + +2025-02-28T19:43:10.7311686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::51, 2620:1ec:bdf::73] + +2025-02-28T19:43:16.2120295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.25.14] + +2025-02-28T19:43:23.5261043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-02-28T19:43:43.4346665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92, 20.22.207.36] + +2025-02-28T19:43:53.6491439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.132, 20.190.166.133] + +2025-02-28T19:44:03.8230693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-02-28T19:44:04.2525649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.113.25] + +2025-02-28T19:44:04.6699894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-02-28T19:44:11.0896384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.45, 2620:1ec:bdf::51] + +2025-02-28T19:44:22.8455803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-02-28T19:45:05.0398756+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:45:05.3674543+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:45:26.4103469+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:45:27.2653924+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:45:46.8751194+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:45:47.1657127+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-02-28T19:46:08.6240294+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:46:29.8893591+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:46:32.0162663+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:46:36.7563337+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:46:36.9897388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.10] + +2025-02-28T19:46:59.7898256+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:47:00.0758933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-02-28T19:47:00.9920551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.112.26] + +2025-02-28T19:47:27.0598132+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:47:48.8372040+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:48:11.6729184+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:48:12.8192732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8001::154] + +2025-02-28T19:50:14.2082537+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:50:14.5113883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::74, 2620:1ec:bdf::40] + +2025-02-28T19:50:19.7943749+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:50:23.3218070+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:50:23.5710304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.64, 13.107.246.51, 2620:1ec:bdf::66] + +2025-02-28T19:50:45.3287087+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:50:45.5881562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::41, 13.107.246.51] + +2025-02-28T19:52:46.9768580+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:52:47.2255395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.67, 2620:1ec:bdf::74] + +2025-02-28T19:53:00.6167016+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:53:01.1091023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-02-28T19:53:25.2448431+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:53:30.4619144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-02-28T19:54:44.0208211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 40.90.130.199] + +2025-02-28T19:54:45.5535050+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:54:50.7526971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.151, 2600:1406:bc00:a::172d:ad92, 2600:1406:bc00:a::172d:ad99] + +2025-02-28T19:54:55.0917000+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->127.0.0.1 + +2025-02-28T19:54:55.0927117+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->::1 + +2025-02-28T19:54:55.6376941+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/v2.1/federationProvider responded 200 in 516.8709 ms + +2025-02-28T19:54:58.4906952+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +canary.officeapps.live.com->127.0.0.1 + +2025-02-28T19:54:58.4917553+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +canary.officeapps.live.com->::1 + +2025-02-28T19:54:59.9575244+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://canary.officeapps.live.com//apc//trans.gif responded 200 in 1331.403 ms + +2025-02-28T19:55:00.0609808+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://canary.officeapps.live.com//apc//trans.gif responded 200 in 101.6964 ms + +2025-02-28T19:55:13.5052875+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T19:55:14.8633113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:a::172d:ad9a, 2600:1406:bc00:a::172d:ad87, 23.212.62.96] + +2025-02-28T19:55:24.8524401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.162, 20.190.148.167] + +2025-02-28T19:55:28.9606360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 40.126.35.19, 40.126.35.64] + +2025-02-28T19:55:30.7482622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.8.12] + +2025-02-28T19:55:33.3099552+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-02-28T19:55:34.7265836+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T19:55:39.9007108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-02-28T19:55:42.5671359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-02-28T19:55:43.6161021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-02-28T19:55:45.5670395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-02-28T19:55:46.5773575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-02-28T19:55:47.7647814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-02-28T19:55:48.6450844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-02-28T19:55:49.8014681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.113.9] + +2025-02-28T19:55:54.8877750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.112.26] + +2025-02-28T19:55:57.6659969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 140.82.116.4, 20.205.243.166] + +2025-02-28T19:55:58.7389786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.112.22] + +2025-02-28T19:56:03.9592644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2405::1] + +2025-02-28T19:56:06.0074147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-02-28T19:56:10.9357206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::61] + +2025-02-28T19:56:11.6211399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 40.90.130.199, 40.90.130.197] + +2025-02-28T19:56:13.8408328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::44, 13.107.246.73] + +2025-02-28T19:56:16.0487966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 2603:1046:1406::7] + +2025-02-28T19:56:17.0775629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.52.2, 2603:1046:1406::2] + +2025-02-28T19:56:18.1180738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.51] + +2025-02-28T19:56:18.9616087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.51] + +2025-02-28T19:56:21.2783788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:bc00:a::172d:ad92, 2600:1406:bc00:a::172d:ad99, 23.212.62.79] + +2025-02-28T19:56:21.7051365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.163, 20.190.144.137, 20.190.144.162] + +2025-02-28T19:56:32.8783065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9] + +2025-02-28T19:56:37.0779478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.49, 40.90.130.199] + +2025-02-28T19:56:38.0904185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166] + +2025-02-28T19:56:40.6637080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.80, 2600:140b:2::1720:f81b, 2600:1406:bc00:a::172d:ad9a] + +2025-02-28T19:56:41.1295968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:2::1720:f81b, 2600:140b:2::1720:f80a, 2600:1406:bc00:a::172d:ad92] + +2025-02-28T19:56:57.6084924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 140.82.113.4, 20.205.243.166] + +2025-02-28T19:57:01.4640022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.26, 140.82.114.25] + +2025-02-28T19:57:03.9611899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-02-28T19:57:06.8761291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22] + +2025-02-28T19:57:11.7090645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.51, 13.107.246.74] + +2025-02-28T19:57:13.2868474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.49, 40.90.133.102] + +2025-02-28T19:57:24.7710441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-02-28T19:57:39.0244398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 13.105.74.49] + +2025-02-28T19:57:44.3034265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-02-28T19:57:44.9887148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-02-28T19:57:51.4760371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.67, 13.107.246.73] + +2025-02-28T19:57:53.7921233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.113.9] + +2025-02-28T19:58:00.9338607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.112.26] + +2025-02-28T19:58:03.6053738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.21, 140.82.112.22] + +2025-02-28T19:58:13.4643585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::44, 13.107.246.41] + +2025-02-28T19:58:13.9914043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::66, 13.107.246.51] + +2025-02-28T19:58:17.7090260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.21, 140.82.113.21] + +2025-02-28T19:58:18.6134103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.52.2] + +2025-02-28T19:58:24.2337159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.67, 13.107.246.41] + +2025-02-28T19:58:24.8452518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.41, 13.107.246.73] + +2025-02-28T19:58:30.2609875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.136, 20.190.144.166] + +2025-02-28T19:58:43.1944238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-02-28T19:58:51.7096089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.143, 23.208.31.169, 2600:140b:2::1720:f81b] + +2025-02-28T19:58:58.1603438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 140.82.113.4, 140.82.121.3] + +2025-02-28T19:59:14.0984932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.0] + +2025-02-28T19:59:22.4144921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.80, 2600:140b:2::1720:f81b, 2.16.168.102] + +2025-02-28T19:59:46.2084446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.80, 2600:140b:2::1720:f81b, 2a02:26f0:2780:5d::210:a8cd] + +2025-02-28T20:00:18.1974507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.80, 2600:140b:2::1720:f81b, 2001:438:fffd:13::d0b9:731b] + +2025-02-28T20:00:36.7737258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-02-28T20:00:37.2692632+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.163, 20.190.144.136] + +2025-02-28T20:00:46.0770325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-02-28T20:00:46.3215465+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T20:00:51.5326078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-02-28T20:00:51.7090846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T20:00:55.0352885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T20:00:56.1188534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-02-28T20:00:56.3056438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-02-28T20:01:01.3088718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-02-28T20:01:02.0194573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.112.21] + +2025-02-28T20:01:04.2160147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8003::154, 185.199.108.133] + +2025-02-28T20:01:09.0552094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.74] + +2025-02-28T20:01:09.6546492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.73, 2620:1ec:bdf::73] + +2025-02-28T20:01:21.3822351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.113.4] + +2025-02-28T20:01:21.9316602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.114.21] + +2025-02-28T20:01:23.7885549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::57, 2620:1ec:bdf::73] + +2025-02-28T20:01:24.9437821+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-02-28T20:01:25.5548582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::61, 13.107.246.51, 13.107.246.67] + +2025-02-28T20:01:26.5381770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::74, 13.107.246.74] + +2025-02-28T20:01:26.6047060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::73, 13.107.246.41] + +2025-02-28T20:01:29.0343199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.136, 20.190.144.163] + +2025-02-28T20:01:38.8793293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.162, 20.190.144.163] + +2025-02-28T20:01:46.4903634+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.113.25] + +2025-02-28T20:02:02.8039499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::1720:f82a, 2600:140b:2::1720:f81b, 23.206.250.65] + +2025-02-28T20:02:04.9316451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-02-28T20:02:13.8332743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T20:02:25.3072659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-02-28T20:02:27.7813375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.67, 2620:1ec:bdf::73] + +2025-02-28T20:02:54.8684503+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.113.9] + +2025-02-28T20:02:56.1353081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::61, 13.107.246.51, 2620:1ec:bdf::73] + +2025-02-28T20:02:56.3249772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::73, 13.107.246.67] + +2025-02-28T20:03:03.8346387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 2603:1046:1406::2] + +2025-02-28T20:03:05.3287826+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.21, 140.82.112.22] + +2025-02-28T20:03:19.4913440+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 2603:1046:1406::2, 52.109.52.2] + +2025-02-28T20:03:32.2285137+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::61, 13.107.246.51, 2620:1ec:bdf::57] + +2025-02-28T20:03:32.6005436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::64, 2620:1ec:bdf::73] + +2025-02-28T20:03:33.5142598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 52.109.52.84] + +2025-02-28T20:03:35.9013295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.166, 20.190.144.136] + +2025-02-28T20:03:55.6208908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.169, 23.208.31.143, 2600:140b:2::1720:f81b] + +2025-02-28T20:04:01.3375520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::1720:f822, 2600:140b:2::1720:f82a, 2600:140b:2::1720:f81b] + +2025-02-28T20:04:05.8093665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.10] + +2025-02-28T20:04:24.1770181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::53, 2620:1ec:bdf::57] + +2025-02-28T20:04:30.5025265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 13.105.74.50] + +2025-02-28T20:04:48.1168186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.124.191] + +2025-02-28T20:05:21.5238588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 2603:1047:1:168::1c, 2603:1047:1:168::1f] + +2025-02-28T20:05:48.5693166+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:06:18.0341476+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:06:19.2603859+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:06:19.4967712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T20:06:19.7632969+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:06:21.1012425+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:06:27.1970849+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:06:27.3809539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T20:06:35.8703138+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:06:57.7726183+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:07:02.9600630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-02-28T20:07:03.6339946+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:07:04.9306964+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T20:07:25.9312706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-02-28T20:07:31.1709378+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:07:31.1743537+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T20:07:52.9300931+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:07:54.2419574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.121.6, 140.82.114.5, 140.82.121.5] + +2025-02-28T20:07:55.3540844+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:07:55.7798958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.4] + +2025-02-28T20:08:17.5444693+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:08:17.9639980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.9] + +2025-02-28T20:08:23.4985621+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:08:23.8975893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-02-28T20:08:27.0008330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.113.26] + +2025-02-28T20:08:29.3554707+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:08:31.7437476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T20:08:57.5231938+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:10:17.3585500+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:10:17.6114503+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.41, 2620:1ec:bdf::73] + +2025-02-28T20:10:39.3276618+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:11:01.6958051+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:11:01.9682581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::38, 2620:1ec:bdf::73] + +2025-02-28T20:11:03.6323494+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:11:03.8825103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::73, 13.107.246.76] + +2025-02-28T20:12:11.5394500+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:12:12.7842777+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.52, 2620:1ec:bdf::40] + +2025-02-28T20:12:33.5758432+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T20:12:34.8644768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-02-28T20:12:41.4257232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-02-28T20:12:43.4112878+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:12:43.8810938+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 20.135.6.11, 20.135.6.9] + +2025-02-28T20:13:09.8484063+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:13:10.1413187+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-02-28T20:13:16.0324253+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:13:16.5650578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:2::17ce:fa58, 2600:140b:2::17ce:fa53, 23.206.250.83] + +2025-02-28T20:13:41.4056058+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:13:42.7244409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::17ce:fa50, 2600:140b:2::17ce:fa41, 23.206.250.65] + +2025-02-28T20:13:50.7634307+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:13:54.0543746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.160, 20.190.148.165] + +2025-02-28T20:14:05.3023205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 2603:1047:1:168::24, 2603:1047:1:168::1f] + +2025-02-28T20:14:08.3402096+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-02-28T20:14:09.2446569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T20:14:15.7367639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-02-28T20:14:18.5440153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-02-28T20:14:24.3841727+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T20:14:35.0926123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.25.14] + +2025-02-28T20:14:35.6477485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-02-28T20:14:36.7481935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.112.10] + +2025-02-28T20:14:38.2121398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-02-28T20:14:43.6596578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.6] + +2025-02-28T20:14:44.7761015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.113.22] + +2025-02-28T20:15:07.6969805+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:15:08.1274106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.112.26] + +2025-02-28T20:15:08.6628194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8003::154] + +2025-02-28T20:15:09.5759041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.2, 20.135.6.11] + +2025-02-28T20:15:15.4286589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.8.88, 52.109.89.117] + +2025-02-28T20:15:21.3063366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 13.107.246.76, 2620:1ec:bdf::57] + +2025-02-28T20:15:22.4214152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:29:1::41, 2620:1ec:bdf::44] + +2025-02-28T20:15:27.3652265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::60, 2620:1ec:bdf::51] + +2025-02-28T20:15:32.4097975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 2603:1046:1400::7] + +2025-02-28T20:15:33.2235586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::40, 13.107.246.66] + +2025-02-28T20:15:34.2711522+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:15:35.4124729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-02-28T20:15:36.2874060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 2603:1046:1400::4] + +2025-02-28T20:15:38.0001868+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::1720:f82a, 2600:140b:2::1720:f81b, 2600:140b:2::17ce:fa50] + +2025-02-28T20:15:38.9804492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:2::1720:f80a, 2600:140b:2::17ce:fa58, 2600:140b:2::1720:f81b] + +2025-02-28T20:15:38.9828754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.85, 40.126.35.134, 40.126.35.144] + +2025-02-28T20:15:39.4167746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.144.160, 20.190.148.165] + +2025-02-28T20:15:42.4523222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9] + +2025-02-28T20:15:42.7584191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.112.4] + +2025-02-28T20:15:43.2740846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-02-28T20:15:45.0051902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.113.26] + +2025-02-28T20:15:45.0064795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.8.88, 2603:1026:2405::1] + +2025-02-28T20:15:45.8890773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-02-28T20:15:45.8901362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.2, 20.135.6.9] + +2025-02-28T20:15:46.2047152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::51, 13.107.246.53] + +2025-02-28T20:15:46.5240759+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.76, 13.107.246.73, 2620:1ec:bdf::73] + +2025-02-28T20:15:46.5277122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:29:1::41, 2620:1ec:bdf::44, 13.107.246.53] + +2025-02-28T20:15:48.5646512+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:16:10.6099015+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:16:12.3854268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.114.25] + +2025-02-28T20:16:14.0622401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 2620:1ec:29:1::41] + +2025-02-28T20:16:14.3358253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.53, 2620:1ec:bdf::51] + +2025-02-28T20:16:14.8729912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.76] + +2025-02-28T20:16:20.6316616+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:16:20.9825897+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:16:21.0868739+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:16:23.4645017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::65, 2620:1ec:bdf::44] + +2025-02-28T20:16:24.1573200+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-02-28T20:16:25.7825941+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:16:48.5497437+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:16:51.2707780+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:16:51.2747736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-02-28T20:16:53.2592491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.114.5] + +2025-02-28T20:16:57.2518956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.45, 13.107.246.73] + +2025-02-28T20:17:07.5836158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-02-28T20:17:23.2696366+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:17:44.9712796+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:17:46.5785254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.0.136, 52.109.8.88] + +2025-02-28T20:17:48.0128271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.9] + +2025-02-28T20:17:53.7122361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 13.107.246.53, 2620:1ec:bdf::65] + +2025-02-28T20:17:55.3354335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.66, 2620:1ec:bdf::40] + +2025-02-28T20:17:58.5457557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T20:18:04.4968028+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-02-28T20:18:11.2693317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::1720:f82a, 2600:140b:2::1720:f81b, 2600:140b:2::1720:f822] + +2025-02-28T20:20:57.6624999+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T20:20:58.6307935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T20:20:59.7134475+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:21:00.2445085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 2606:4700::6811:190e] + +2025-02-28T20:21:00.9540962+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:21:00.9553965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T20:21:04.9797096+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:21:05.3980541+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.4] + +2025-02-28T20:21:27.0624505+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:21:27.5125128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.6] + +2025-02-28T20:21:29.2374882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-02-28T20:21:51.8985191+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:21:52.3158407+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.22] + +2025-02-28T20:21:53.4065278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.113.25] + +2025-02-28T20:22:07.9113045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.0.136] + +2025-02-28T20:22:53.4126872+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:22:53.7456545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-02-28T20:23:15.4627708+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:23:15.7114757+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::73, 13.107.246.41] + +2025-02-28T20:23:17.2675574+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:23:17.7225680+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-02-28T20:23:19.0710848+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:23:19.5320713+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.15] + +2025-02-28T20:23:28.0363810+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:23:28.2692810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::65, 13.107.246.51] + +2025-02-28T20:23:39.2509948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::74, 13.107.246.74] + +2025-02-28T20:24:01.0218648+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:24:01.2843637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::74, 13.107.246.74] + +2025-02-28T20:24:11.2659861+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-02-28T20:24:31.2718714+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-02-28T20:24:53.4400126+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:24:53.9376244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2001:438:fffd:13::d0b9:730a, 2600:140b:2::1720:f82a, 2600:140b:2::1720:f81b] + +2025-02-28T20:24:55.2025155+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:24:56.5011994+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4495, 2001:438:fffd:13::d0b9:7319, 2600:140b:1a00:19::17dc:4486] + +2025-02-28T20:25:02.7747560+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:25:06.0988824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.128, 40.126.35.20, 40.126.35.19] + +2025-02-28T20:25:14.1969568+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.144.162, 20.190.144.165] + +2025-02-28T20:25:17.6207012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-02-28T20:25:20.0010602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T20:25:26.8826852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-02-28T20:25:30.6452882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-02-28T20:25:31.5589320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.6] + +2025-02-28T20:25:53.7486453+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:26:16.8884442+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-02-28T20:26:21.1066856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T20:26:21.9370551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::57, 13.107.246.64] + +2025-02-28T20:26:22.6791733+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 13.107.246.44, 2620:1ec:bdf::73] + +2025-02-28T20:26:24.5966044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::67, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-02-28T20:26:25.6472480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.15] + +2025-02-28T20:26:26.4427990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.76, 2620:1ec:bdf::73, 2620:1ec:bdf::65] + +2025-02-28T20:26:34.5226391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 2603:1047:1:168::20, 2603:1047:1:168::11] + +2025-02-28T20:26:36.7591025+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-02-28T20:26:38.0496796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T20:26:38.9716174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 104.17.24.14] + +2025-02-28T20:26:39.2841764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.111.133] + +2025-02-28T20:26:40.2374855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-02-28T20:26:40.8495144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.8.12] + +2025-02-28T20:26:45.8818076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-02-28T20:26:46.5888099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-02-28T20:26:46.8779369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.21] + +2025-02-28T20:26:53.0830098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.113.22] + +2025-02-28T20:26:55.6144150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.113.25] + +2025-02-28T20:27:04.6413905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2001:438:fffd:13::d0b9:730a, 2600:140b:2::1720:f81b, 2001:438:fffd:13::d0b9:731b] + +2025-02-28T20:27:06.9679892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-02-28T20:27:07.6889953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.114.25] + +2025-02-28T20:27:09.1639383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.44.112] + +2025-02-28T20:27:41.1653934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T20:27:43.7186133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.136, 2603:1047:1:168::26] + +2025-02-28T20:27:46.1503191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-02-28T20:27:48.1988138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.89.117] + +2025-02-28T20:27:48.2001136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.15, 13.105.74.49] + +2025-02-28T20:27:49.2124653+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 13.107.246.41, 2620:1ec:bdf::74] + +2025-02-28T20:27:53.5574241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.76, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-02-28T20:28:04.6234122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.56.126, 2603:1046:1400::1] + +2025-02-28T20:28:08.9234353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2001:438:fffd:13::d0b9:7319, 23.220.70.112, 2001:438:fffd:13::d0b9:730a] + +2025-02-28T20:28:09.9532917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.112, 2600:1406:bc00:18::6007:81b6, 2600:1406:bc00:18::6007:81d1] + +2025-02-28T20:28:11.6036135+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81bc, 2600:1406:bc00:18::6007:81d1, 23.56.109.135] + +2025-02-28T20:28:13.0284988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.110.8.143] + +2025-02-28T20:28:13.0293194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.20, 40.126.35.19, 40.126.35.134] + +2025-02-28T20:28:17.1219104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.38, 13.107.246.73] + +2025-02-28T20:28:17.1891971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::67, 2620:1ec:bdf::51, 13.107.246.73] + +2025-02-28T20:28:17.2530182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.76, 13.107.246.53, 13.107.246.73] + +2025-02-28T20:28:17.2547601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.64, 13.107.246.73] + +2025-02-28T20:28:22.9538148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2405::1] + +2025-02-28T20:28:23.8798149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.38, 2620:1ec:bdf::51] + +2025-02-28T20:28:24.6380819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::67, 2620:1ec:bdf::51] + +2025-02-28T20:28:26.2033197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.64, 13.107.246.40] + +2025-02-28T20:28:34.9129714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9] + +2025-02-28T20:28:37.8073513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.57, 13.107.246.76, 13.107.246.53] + +2025-02-28T20:28:40.1979264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.167, 20.190.144.160] + +2025-02-28T20:28:42.9405450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.66, 2620:1ec:bdf::67] + +2025-02-28T20:28:43.2399118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::57, 13.107.246.64] + +2025-02-28T20:28:45.5382046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-02-28T20:29:08.8404338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.112, 23.2.13.137, 2600:1406:bc00:18::6007:81b6] + +2025-02-28T20:29:11.7987300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.56.126] + +2025-02-28T20:29:31.6524894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-02-28T20:29:32.2175374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.15, 20.135.6.2] + +2025-02-28T20:29:33.6067870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 52.109.52.84] + +2025-02-28T20:29:37.1345693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.112.9] + +2025-02-28T20:29:40.0131824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.57, 13.107.246.76, 2620:1ec:bdf::45] + +2025-02-28T20:29:40.2414017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::76, 2620:1ec:bdf::57] + +2025-02-28T20:29:55.5877709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.112, 23.2.13.137, 2600:1406:bc00:18::6007:81d1] + +2025-02-28T20:30:10.6913883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.136, 20.190.144.165] + +2025-02-28T20:30:16.0442945+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.167, 20.190.144.136] + +2025-02-28T20:30:19.4125303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 2603:1047:1:168::26, 20.190.144.163] + +2025-02-28T20:30:27.8162968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::44, 13.107.246.66] + +2025-02-28T20:30:36.3261427+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.4] + +2025-02-28T20:30:41.7177133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.52, 13.107.246.38] + +2025-02-28T20:30:48.2519482+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-02-28T20:30:56.6305324+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.15, 20.135.6.11] + +2025-02-28T20:31:23.1032244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T20:31:23.1050505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T20:31:23.1065191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-02-28T20:31:24.2183705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.52, 2620:1ec:bdf::41] + +2025-02-28T20:31:24.2908716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::76, 13.107.246.40] + +2025-02-28T20:31:26.5194994+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::44, 2620:1ec:bdf::67] + +2025-02-28T20:31:26.5833173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.57, 2620:1ec:bdf::45, 13.107.246.53] + +2025-02-28T20:31:32.8657479+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-02-28T20:31:38.2530384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 2603:1047:1:168::12, 2603:1047:1:168::11] + +2025-02-28T20:31:41.7619335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 2606:4700::6811:180e] + +2025-02-28T20:31:56.2633210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-02-28T20:31:57.6423858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.3] + +2025-02-28T20:31:57.8766045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-02-28T20:31:58.1217068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.113.25] + +2025-02-28T20:32:00.6377444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.57, 2620:1ec:bdf::44, 2620:1ec:bdf::45] + +2025-02-28T20:32:15.7371661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 2603:1036:2405::1, 52.109.77.37] + +2025-02-28T20:32:16.9161995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 23.220.70.112, 23.2.13.137] + +2025-02-28T20:32:30.1525999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.0.138, 2603:1036:2405::1] + +2025-02-28T20:32:35.5804712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::44, 13.107.246.41] + +2025-02-28T20:32:38.5034394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.52, 13.107.246.53] + +2025-02-28T20:32:44.0801018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.136, 20.190.144.166] + +2025-02-28T20:32:47.1729272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 2603:1047:1:168::11, 2603:1047:1:168::1d] + +2025-02-28T20:32:49.7865198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::67, 13.107.246.52] + +2025-02-28T20:32:51.2768733+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-02-28T20:32:52.5875285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 2603:1046:1406::7] + +2025-02-28T20:33:00.6266106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.113.6] + +2025-02-28T20:33:22.2970669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.52, 2620:1ec:bdf::51] + +2025-02-28T20:33:22.3639248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::44, 2620:1ec:bdf::67] + +2025-02-28T20:33:22.4275283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::76, 2620:1ec:bdf::69] + +2025-02-28T20:33:22.4284553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::45, 13.107.246.76] + +2025-02-28T20:33:24.4286397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.110.8.139] + +2025-02-28T20:33:33.3983641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.76, 2620:1ec:bdf::35] + +2025-02-28T20:33:33.6904912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::67, 2620:1ec:bdf::51] + +2025-02-28T20:33:33.7596980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::76, 2620:1ec:bdf::69, 13.107.246.74] + +2025-02-28T20:33:38.7957565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.76, 2620:1ec:bdf::44] + +2025-02-28T20:33:41.5979473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-02-28T20:33:44.2959892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.66, 2620:1ec:bdf::67] + +2025-02-28T20:33:45.0467492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.167, 20.190.144.136] + +2025-02-28T20:34:05.0354525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.132, 20.190.166.67, 20.190.166.68] + +2025-02-28T20:34:17.7388457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::76, 2620:1ec:bdf::69] + +2025-02-28T20:34:40.0831245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.66, 2620:1ec:bdf::40] + +2025-02-28T20:34:40.3712156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::69, 13.107.246.74] + +2025-02-28T20:34:40.4352488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.76, 2620:1ec:bdf::44, 13.107.246.74] + +2025-02-28T20:34:40.9802340+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-02-28T20:34:40.9815029+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->::1 + +2025-02-28T20:34:41.1364561+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-02-28T20:34:41.1388502+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-02-28T20:34:41.7559591+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 607.0041 ms + +2025-02-28T20:34:42.0914539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-02-28T20:34:42.3045983+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1299.8874 ms + +2025-02-28T20:34:43.8393894+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-02-28T20:34:43.8402390+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-02-28T20:34:44.4632906+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 594.6506 ms + +2025-02-28T20:34:44.7131641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-02-28T20:34:45.0228409+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 269.5446 ms + +2025-02-28T20:34:51.6146771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.15, 20.143.38.0] + +2025-02-28T20:34:58.9695563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:18::6007:81bc, 23.206.188.206] + +2025-02-28T20:35:00.2891963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 23.220.70.112, 2600:1406:bc00:18::6007:81d1] + +2025-02-28T20:35:06.4039663+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +edge-consumer-static.azureedge.net->::1 + +2025-02-28T20:35:06.4049242+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +edge-consumer-static.azureedge.net->127.0.0.1 + +2025-02-28T20:35:06.7858124+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://edge-consumer-static.azureedge.net/mouse-gesture/config.json responded 200 in 365.279 ms + +2025-02-28T20:35:07.1263125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 23.220.70.112, 23.206.250.83] + +2025-02-28T20:35:17.4930328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.161, 20.190.148.167] + +2025-02-28T20:35:19.1466679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.114.25] + diff --git a/logs/log20250309.txt b/logs/log20250309.txt new file mode 100644 index 0000000..1090588 --- /dev/null +++ b/logs/log20250309.txt @@ -0,0 +1,5412 @@ +2025-03-09T16:42:08.5077467+08:00 [INF] +FastGithub.HttpServer +已监听https://localhost:443,https反向代理服务启动完成 + +2025-03-09T16:42:08.5656136+08:00 [INF] +FastGithub.HttpServer +已监听http://localhost:81,http反向代理服务启动完成 + +2025-03-09T16:42:08.5670593+08:00 [INF] +FastGithub.HttpServer +已监听ssh://localhost:22,github的ssh反向代理服务启动完成 + +2025-03-09T16:42:08.5679397+08:00 [INF] +FastGithub.HttpServer +已监听git://localhost:9418,github的git反向代理服务启动完成 + +2025-03-09T16:42:08.6051939+08:00 [INF] +FastGithub.AppHostedService +FastGithub启动完成,当前版本为v2.1.4,访问 https://github.com/dotnetcore/fastgithub 关注新版本 + +2025-03-09T16:42:08.6468987+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +127.0.0.1:80 <=> 127.0.0.1:81 + +2025-03-09T16:42:08.6493590+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +::1:80 <=> ::1:81 + +2025-03-09T16:42:13.8026303+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +raw.githubusercontent.com->127.0.0.1 + +2025-03-09T16:42:22.3736255+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-09T16:42:22.3856746+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-09T16:42:25.5180447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T16:42:29.3443233+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/relays.md responded 200 in 15256.5629 ms + +2025-03-09T16:42:32.3131047+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-03-09T16:42:32.3151876+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->127.0.0.1 + +2025-03-09T16:42:32.3522384+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/ responded 200 in 9579.9 ms + +2025-03-09T16:42:32.4041272+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->127.0.0.1 + +2025-03-09T16:42:32.4220056+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +user-images.githubusercontent.com->127.0.0.1 + +2025-03-09T16:42:34.0905300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73] + +2025-03-09T16:42:42.6273059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18] + +2025-03-09T16:42:50.0112223+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/relays.md.minisig responded 200 in 20657.8666 ms + +2025-03-09T16:42:51.3733707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22] + +2025-03-09T16:42:52.4663648+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-09T16:42:54.0353093+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dashboard-0de2bd46c6d8.css responded 200 in 21549.8299 ms + +2025-03-09T16:42:54.2199454+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-93aded0ee8a1.css responded 200 in 21734.4515 ms + +2025-03-09T16:42:54.5299318+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dark-bd1cb5575fff.css responded 200 in 22044.5026 ms + +2025-03-09T16:42:54.5779639+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_arianotify-polyfill_ariaNotify-polyfill_js-node_modules_github_mi-3abb8f-d7e6bc799724.js responded 200 in 22091.8087 ms + +2025-03-09T16:42:54.5798389+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/environment-f04cb2a9fc8c.js responded 200 in 22093.7223 ms + +2025-03-09T16:42:54.6156112+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/discussions-dae9ae1a46a6.css responded 200 in 22130.0178 ms + +2025-03-09T16:42:54.6524857+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_markdown-toolbar-element_dist_index_js-ceef33f593fa.js responded 200 in 22166.1277 ms + +2025-03-09T16:42:54.7075276+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_selector-observer_dist_index_esm_js-f690fd9ae3d5.js responded 200 in 22221.4182 ms + +2025-03-09T16:42:54.7163399+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_primer_behaviors_dist_esm_index_mjs-0dbb79f97f8f.js responded 200 in 22230.1859 ms + +2025-03-09T16:42:54.7589791+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_color-convert_index_js-e3180fe3bcb3.js responded 200 in 22272.6543 ms + +2025-03-09T16:42:54.8547551+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_braintree_browser-detection_dist_browser-detection_js-node_modules_githu-bb80ec-72267f4e3ff9.js responded 200 in 22368.4874 ms + +2025-03-09T16:42:54.8631369+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_sticky-scroll-into-view_ts-3e000c5d31a9.js responded 200 in 22376.6375 ms + +2025-03-09T16:42:54.9265029+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_commenting_edit_ts-app_assets_modules_github_behaviors_ht-83c235-e429cff6ceb1.js responded 200 in 22439.7245 ms + +2025-03-09T16:42:54.9555617+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_quote-selection_dist_index_js-node_modules_github_session-resume_-69cfcc-bc42a18e77d5.js responded 200 in 22469.1127 ms + +2025-03-09T16:42:54.9980959+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lit-html_lit-html_js-be8cb88f481b.js responded 200 in 22511.6198 ms + +2025-03-09T16:42:55.0086869+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_auto-complete-element_dist_index_js-node_modules_github_catalyst_-8e9f78-a74b4e0a8a6b.js responded 200 in 22522.4776 ms + +2025-03-09T16:42:55.0609180+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_delegated-events_dist_inde-893f9f-6cf3320416b8.js responded 200 in 22574.5842 ms + +2025-03-09T16:42:55.0795847+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_filter-input-element_dist_index_js-node_modules_github_remote-inp-b5f1d7-a1760ffda83d.js responded 200 in 22593.3312 ms + +2025-03-09T16:42:55.0831925+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/1434675 responded 200 in 22398.96 ms + +2025-03-09T16:42:55.1002589+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_morphdom_dist_morphdom-e-7c534c-a4a1922eb55f.js responded 200 in 22613.8715 ms + +2025-03-09T16:42:55.1102565+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/github-15d4b28ab680.css responded 200 in 22624.7264 ms + +2025-03-09T16:42:55.2584421+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/github-elements-e73c59eabd5a.js responded 200 in 22771.9103 ms + +2025-03-09T16:42:55.3833875+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_relative-time-element_dist_index_js-f6da4b3fa34c.js responded 200 in 22897.2248 ms + +2025-03-09T16:42:55.3996348+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es__Stack_js-node_modules_lodash-es__Uint8Array_js-node_modules_l-4faaa6-4a736fde5c2f.js responded 200 in 22913.0785 ms + +2025-03-09T16:42:55.4147546+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_ajax-error_ts-app_assets_modules_github_behaviors_include-87a4ae-21948f72ce0b.js responded 200 in 22928.262 ms + +2025-03-09T16:42:55.4372084+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_delegated-events_dist_in-e6ca0f-ca6ea108172d.js responded 200 in 22950.6549 ms + +2025-03-09T16:42:55.5374609+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/wp-runtime-0153657236bf.js responded 200 in 23051.7878 ms + +2025-03-09T16:42:55.5594345+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/element-registry-ec1308f4ab2b.js responded 200 in 23073.1943 ms + +2025-03-09T16:42:55.5713122+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_stacktrace-parser_dist_s-e7dcdd-f7cc96ebae76.js responded 200 in 23084.65 ms + +2025-03-09T16:42:55.6805013+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_delegated-events_dist_index_js-node_modules_github_catalyst_lib_index_js-f6223d90c7ba.js responded 200 in 23193.8837 ms + +2025-03-09T16:42:55.6894798+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-primitives-225433424a87.css responded 200 in 23204.0856 ms + +2025-03-09T16:42:55.8170795+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dashboard-264fbf7a6bc1.js responded 200 in 23330.5282 ms + +2025-03-09T16:42:55.8232017+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_oddbird_popover-polyfill_dist_popover-fn_js-55fea94174bf.js responded 200 in 23336.5545 ms + +2025-03-09T16:42:55.9414044+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-lib-f1bca44e0926.js responded 200 in 23454.8182 ms + +2025-03-09T16:42:55.9745680+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es__baseIsEqual_js-8929eb9718d5.js responded 200 in 23487.9912 ms + +2025-03-09T16:42:56.0478992+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/notifications-global-01e85cd1be94.js responded 200 in 23561.3931 ms + +2025-03-09T16:42:56.0528685+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_oddbird_popover-polyfill_dist_popover_js-9da652f58479.js responded 200 in 23567.3321 ms + +2025-03-09T16:42:56.1334245+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/mona-loading-dark-static-8b35171e5d6c.svg responded 200 in 23448.3513 ms + +2025-03-09T16:42:56.1661554+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-core-e519a5f595dd.js responded 200 in 23679.4962 ms + +2025-03-09T16:42:56.2265448+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/mona-loading-dark-7701a7b97370.gif responded 200 in 23541.4313 ms + +2025-03-09T16:42:56.2939287+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/57968347 responded 200 in 23609.6204 ms + +2025-03-09T16:42:56.4601315+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/behaviors-3852665e5a2d.js responded 200 in 23973.6451 ms + +2025-03-09T16:42:56.5454425+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_ui-commands_ui-commands_ts-97496b0f52ba.js responded 200 in 24058.8011 ms + +2025-03-09T16:42:56.6248955+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_github_catalyst_lib_index_-280e4f-f7d6cfa05e86.js responded 200 in 24138.3564 ms + +2025-03-09T16:42:56.6795478+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/light-605318cbe3a1.css responded 200 in 24194.1313 ms + +2025-03-09T16:42:56.9199584+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_turbo_dist_turbo_es2017-esm_js-e3cbe28f1638.js responded 200 in 24432.8962 ms + +2025-03-09T16:42:56.9496983+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/keyboard-shortcuts-dialog-ac448fe050d6.js responded 200 in 24463.0001 ms + +2025-03-09T16:42:57.0069617+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-react.9454cb9ac985e93657ce.module.css responded 200 in 24521.3136 ms + +2025-03-09T16:42:57.7710089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.56.129, 52.109.89.19] + +2025-03-09T16:42:57.7723180+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_text-expander-element_dist_index_js-78748950cb0c.js responded 200 in 25286.1299 ms + +2025-03-09T16:42:58.6652706+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es_pickBy_js-733b80864e6e.js responded 200 in 26178.7264 ms + +2025-03-09T16:42:58.9648702+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-09T16:42:59.2866293+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/3911301 responded 200 in 26602.4045 ms + +2025-03-09T16:43:00.3435332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.28.50] + +2025-03-09T16:43:01.3361808+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_updatable-content_updatable-content_ts-2a55124d5c52.js responded 200 in 28849.7875 ms + +2025-03-09T16:43:01.3802221+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_emotion_is-prop-valid_dist_emotion-is-prop-valid_esm_js-node_modules_emo-62da9f-2df2f32ec596.js responded 200 in 28893.6153 ms + +2025-03-09T16:43:01.4238324+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.73] + +2025-03-09T16:43:03.9938530+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/octicons-react-611691cca2f6.js responded 200 in 31505.4993 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-09T16:43:03.9938658+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 31307.8603 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-09T16:43:03.9938650+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_task-list_ts-app_assets_modules_github_sso_ts-ui_packages-900dde-768abe60b1f8.js responded 200 in 31505.6888 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-09T16:43:03.9938639+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-21a7f868f707.css responded 200 in 31506.8599 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-09T16:43:03.9938669+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-react-d4f7d0473d87.js responded 200 in 31505.5465 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-09T16:43:03.9939615+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 31307.9407 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-09T16:43:03.9939810+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_file-attachment-element_dist_index_js-node_modules_primer_view-co-c44a69-8094ee2ecc5e.js responded 200 in 31506.0525 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-09T16:43:04.0055883+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_failbot_failbot_ts-4600dbf2d60a.js responded 502 in 31519.4469 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-09T16:43:06.9022695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-03-09T16:43:12.1986938+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.165, 20.190.144.166] + +2025-03-09T16:43:20.3865104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.216.153.88, 149.255.129.19, 104.90.7.32] + +2025-03-09T16:43:21.5814822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 20.135.2.0, 20.135.17.52] + +2025-03-09T16:43:22.9874271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.56.130, 52.109.76.144] + +2025-03-09T16:43:24.7317662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +clientnotification-userprodscus1-1.servicebus.windows.net:443->[40.84.185.67] + +2025-03-09T16:43:25.7052878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18] + +2025-03-09T16:43:26.8894616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.216.153.87, 23.216.153.88, 104.90.7.74] + +2025-03-09T16:43:27.8485840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3] + +2025-03-09T16:43:28.9638649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.253.44] + +2025-03-09T16:43:30.1641006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9] + +2025-03-09T16:43:31.0935663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T16:43:32.3913008+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.161, 20.190.144.160] + +2025-03-09T16:43:37.0059087+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:43:42.2150385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2] + +2025-03-09T16:43:43.4719035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18] + +2025-03-09T16:43:44.6386727+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26] + +2025-03-09T16:43:45.0839053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T16:43:46.4866180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.77.37] + +2025-03-09T16:43:47.6312015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-03-09T16:43:48.6266926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.253.44] + +2025-03-09T16:43:57.2361693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36] + +2025-03-09T16:43:59.4320313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T16:44:04.4318296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-09T16:44:13.6839460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.113.22] + +2025-03-09T16:44:15.4981093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 20.135.2.0, 20.135.4.170] + +2025-03-09T16:44:15.9742298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.56.130] + +2025-03-09T16:44:19.1850338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.33, 13.107.246.73] + +2025-03-09T16:44:36.5585383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.113.26] + +2025-03-09T16:44:37.0914096+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 40.90.133.97, 20.135.2.0] + +2025-03-09T16:44:37.6305451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.124.141, 52.109.44.112] + +2025-03-09T16:44:39.5717322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.33] + +2025-03-09T16:44:46.6742061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.77.37] + +2025-03-09T16:45:01.5733363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.88.188] + +2025-03-09T16:45:08.5537546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.89.19] + +2025-03-09T16:45:13.9671348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.216.153.88, 149.255.129.19, 23.216.155.18] + +2025-03-09T16:45:22.2317614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.216.153.87, 23.216.153.88, 23.211.136.122] + +2025-03-09T16:45:24.5511444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 40.90.133.97, 40.90.130.199] + +2025-03-09T16:45:30.4746433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.114.9] + +2025-03-09T16:45:46.1901450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.112.26] + +2025-03-09T16:45:56.2206953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.74.50, 40.90.133.97] + +2025-03-09T16:45:58.0489385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-03-09T16:46:16.3486452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.74, 13.107.246.33] + +2025-03-09T16:46:19.5930069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.26] + +2025-03-09T16:46:24.7639108+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-09T16:46:25.7522509+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 663.2941 ms + +2025-03-09T16:46:26.3030370+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 304.3646 ms + +2025-03-09T16:46:28.6225953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.74.50] + +2025-03-09T16:46:49.6874544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-03-09T16:46:55.3858274+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12, 52.110.17.24] + +2025-03-09T16:47:02.3342835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-03-09T16:47:32.4049792+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:47:53.4676611+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:48:14.7518780+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:48:36.2941522+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:48:57.8143366+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:49:00.7288238+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:49:02.3180556+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:49:02.5601725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-03-09T16:49:24.8000518+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:49:26.8395419+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:49:29.9915252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-03-09T16:49:51.6522200+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:49:51.7239072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.45] + +2025-03-09T16:50:09.4207470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.113.9] + +2025-03-09T16:50:15.3632501+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:50:15.6388814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-03-09T16:50:26.7388778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.253.70] + +2025-03-09T16:50:28.5009169+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:50:28.6482381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T16:50:31.3958146+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:50:31.3964282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T16:50:49.3353690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.60, 13.107.246.73] + +2025-03-09T16:51:11.0857186+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:51:11.3095828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.113.22] + +2025-03-09T16:51:40.7444805+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-09T16:51:40.7456184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T16:52:09.9938051+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:52:09.9961610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T16:52:18.0664212+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:52:18.3421652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.89.117] + +2025-03-09T16:52:41.4195113+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:52:41.7023399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.28.47] + +2025-03-09T16:52:49.0399621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.56.126] + +2025-03-09T16:52:49.7305993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.44] + +2025-03-09T16:52:50.9434434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.25] + +2025-03-09T16:52:52.0159558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-09T16:52:55.0552945+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12, 52.110.17.12] + +2025-03-09T16:53:00.7559880+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.216.153.89, 23.216.153.88, 104.90.7.32] + +2025-03-09T16:53:02.5453165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.216.153.88, 184.28.81.207, 23.209.188.133] + +2025-03-09T16:53:08.5840528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.165, 20.190.148.163] + +2025-03-09T16:53:12.6205494+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.165, 20.190.144.164] + +2025-03-09T16:53:31.8102987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-09T16:53:32.8410300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-03-09T16:53:33.7679799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.6] + +2025-03-09T16:53:42.9240923+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.44] + +2025-03-09T16:53:43.9991789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.114.9] + +2025-03-09T16:53:46.7003624+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.41] + +2025-03-09T16:53:49.4540040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.44.108] + +2025-03-09T16:53:50.9858454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.7] + +2025-03-09T16:53:51.6177681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.33.32.184, 23.216.153.89, 23.216.153.88] + +2025-03-09T16:53:53.2893305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.216.153.88, 23.56.109.137, 184.28.81.207] + +2025-03-09T16:53:53.9570119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.139, 20.190.148.165] + +2025-03-09T16:53:55.7294252+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:53:55.9531807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[103.97.3.19, 192.0.73.2] + +2025-03-09T16:54:02.0891509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-09T16:54:03.9434102+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.3] + +2025-03-09T16:54:36.0282000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-03-09T16:54:38.0747868+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.73] + +2025-03-09T16:54:47.3815877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.124.13] + +2025-03-09T16:54:52.3206991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 13.107.246.44, 13.107.246.73] + +2025-03-09T16:54:52.5986586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.41] + +2025-03-09T16:54:52.6017813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.60] + +2025-03-09T16:54:52.8823599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.74] + +2025-03-09T16:54:55.1006911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.1, 20.135.6.11] + +2025-03-09T16:55:11.0610836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.112.10] + +2025-03-09T16:55:11.5797963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.28.1] + +2025-03-09T16:55:16.4584699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.121.5] + +2025-03-09T16:55:28.1249598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.10] + +2025-03-09T16:55:30.8710549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-09T16:55:30.8746547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-09T16:55:30.8773028+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-09T16:55:30.8797428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-09T16:55:35.1010227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.116.6] + +2025-03-09T16:55:49.4711170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.33, 13.107.246.73, 13.107.246.74] + +2025-03-09T16:55:49.4727486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.33, 13.107.246.45, 13.107.246.73] + +2025-03-09T16:56:12.5615268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-03-09T16:56:15.3399321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.48.167.154, 23.216.153.88, 23.56.109.137] + +2025-03-09T16:56:17.4746158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.60] + +2025-03-09T16:56:21.6706147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-03-09T16:56:39.4040672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.74] + +2025-03-09T16:56:54.6068338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.60] + +2025-03-09T16:56:55.4241583+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.74] + +2025-03-09T16:57:15.2405747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.48.167.154, 23.216.153.88, 23.197.49.26] + +2025-03-09T16:57:17.8918854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.1, 20.135.6.7] + +2025-03-09T16:57:25.6877520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.113.9] + +2025-03-09T16:57:26.0017467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.114.3] + +2025-03-09T16:57:26.2936866+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.76] + +2025-03-09T16:57:26.9658389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12] + +2025-03-09T16:57:26.9701505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-03-09T16:57:26.9723039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.161, 20.190.148.163] + +2025-03-09T16:57:27.1506673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.164, 20.190.144.166] + +2025-03-09T16:57:28.5277044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.3] + +2025-03-09T16:57:54.7013981+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-09T16:57:55.7941006+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 680.3216 ms + +2025-03-09T16:57:55.8739130+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 78.8694 ms + +2025-03-09T16:58:12.1650187+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-09T16:58:12.7028105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.45] + +2025-03-09T16:58:17.3324775+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 325.278 ms + +2025-03-09T16:58:17.3984593+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.4415 ms + +2025-03-09T16:58:18.9084894+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:58:19.1779763+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.26] + +2025-03-09T16:58:24.8013136+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:58:27.1720816+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:58:27.1752383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.44] + +2025-03-09T16:58:35.2479363+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.3497 ms + +2025-03-09T16:58:35.3248143+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 72.402 ms + +2025-03-09T16:58:36.6272390+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T16:59:00.8295834+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:59:23.8731343+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:59:28.8815212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.216.153.88, 23.216.153.89, 184.28.98.76] + +2025-03-09T16:59:33.2768188+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.0901 ms + +2025-03-09T16:59:33.3440819+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.0724 ms + +2025-03-09T16:59:53.1772445+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T16:59:54.3698379+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.216.153.87, 23.216.153.88, 23.48.167.154] + +2025-03-09T17:00:34.8544697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.85, 20.190.148.164, 40.126.35.145] + +2025-03-09T17:01:04.2178836+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:01:04.5214736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.166, 40.126.35.84] + +2025-03-09T17:01:47.7562417+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:01:47.9945621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.253.72] + +2025-03-09T17:01:49.6600479+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:01:50.9394722+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:01:52.7332667+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:02:01.0501032+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:02:17.7567562+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:02:17.8497902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-09T17:02:47.6013550+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:02:55.4914363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 103.97.3.19] + +2025-03-09T17:02:57.0304480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-03-09T17:02:57.9426666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.10] + +2025-03-09T17:03:00.7026328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-09T17:03:01.0121991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-09T17:03:01.4502463+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-09T17:03:01.7828749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-09T17:03:03.3177285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.113.22] + +2025-03-09T17:03:06.7011737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.3] + +2025-03-09T17:03:09.1472566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.41] + +2025-03-09T17:03:18.3009473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.76] + +2025-03-09T17:03:18.5905488+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-09T17:03:19.0333824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.31] + +2025-03-09T17:03:19.4265193+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 810.8753 ms + +2025-03-09T17:03:20.3928146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.191, 52.109.124.4] + +2025-03-09T17:03:22.7617289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.7, 13.105.28.1] + +2025-03-09T17:03:29.4426444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.48.167.168, 23.48.167.140, 184.28.98.76] + +2025-03-09T17:03:30.7875303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.48.167.168, 23.48.167.154, 184.28.81.201] + +2025-03-09T17:03:31.8307170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 40.126.35.145, 20.190.144.162] + +2025-03-09T17:03:36.5156172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.40] + +2025-03-09T17:03:36.7712758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.46, 13.107.246.45] + +2025-03-09T17:03:37.1953847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.25] + +2025-03-09T17:03:39.6815523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.61.202.40, 23.61.202.50, 23.48.167.168] + +2025-03-09T17:03:50.6867556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.46] + +2025-03-09T17:03:52.2141155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.61.202.35, 23.61.202.34, 23.48.167.168] + +2025-03-09T17:03:55.6711629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.136, 40.126.35.145] + +2025-03-09T17:03:57.7309157+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:04:06.6393493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 13.105.28.16, 13.105.28.1] + +2025-03-09T17:04:11.0263003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.6.4] + +2025-03-09T17:04:20.4899983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.51] + +2025-03-09T17:04:36.8795753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.69] + +2025-03-09T17:04:40.7013368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.136, 40.126.35.85] + +2025-03-09T17:05:02.3743047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 4.208.26.199] + +2025-03-09T17:05:13.4009994+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.40] + +2025-03-09T17:05:22.1954907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.40] + +2025-03-09T17:05:30.5834571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.148.167, 20.190.148.163] + +2025-03-09T17:05:30.8096742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.136, 20.190.144.164] + +2025-03-09T17:05:33.2070779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.253.38] + +2025-03-09T17:05:33.5012950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 20.233.83.146] + +2025-03-09T17:06:03.7304640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 13.105.28.1, 20.135.6.7] + +2025-03-09T17:06:21.9615719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.67] + +2025-03-09T17:06:48.2374408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.73] + +2025-03-09T17:06:48.2384380+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.253.38] + +2025-03-09T17:06:48.2392398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.46] + +2025-03-09T17:06:48.3072925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.246.40] + +2025-03-09T17:06:48.3088236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.51] + +2025-03-09T17:06:52.7769696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.7, 20.135.6.9] + +2025-03-09T17:07:04.3956567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-09T17:07:17.7509855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.51] + +2025-03-09T17:07:21.2367243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.61.202.40, 23.61.202.50, 23.33.32.184] + +2025-03-09T17:07:21.2384209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.61.202.35, 23.61.202.34, 61.213.168.41] + +2025-03-09T17:07:23.0716367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12] + +2025-03-09T17:07:24.4872046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.41] + +2025-03-09T17:07:32.3736762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 13.105.28.16, 20.135.6.7] + +2025-03-09T17:07:34.1393823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.3] + +2025-03-09T17:07:34.1406706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.113.5] + +2025-03-09T17:07:40.0892064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.114.22] + +2025-03-09T17:07:40.8498253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.144.162, 40.126.35.128] + +2025-03-09T17:07:42.0689886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 4.208.26.199, 140.82.121.10] + +2025-03-09T17:07:42.5896118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.74, 13.107.246.40] + +2025-03-09T17:07:48.5686722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-09T17:07:52.3094816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.89.19] + +2025-03-09T17:07:53.6517396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.113.22] + +2025-03-09T17:08:13.8106657+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:08:16.8031050+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:08:20.5612910+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:08:43.6457619+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-09T17:09:06.1651125+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-09T17:09:11.1948281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T17:09:40.4355124+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:09:40.4363917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T17:10:01.8216733+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:10:02.9776344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-03-09T17:10:03.9155124+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:10:04.1863476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.113.3] + +2025-03-09T17:10:25.8612039+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:10:25.8627785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T17:10:32.6109828+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:10:32.6282424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T17:10:54.3067893+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:10:54.5531898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.5] + +2025-03-09T17:11:03.6786822+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:11:42.6164802+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:11:42.8698903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.28.47] + +2025-03-09T17:11:46.8910899+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:11:46.9654931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.35] + +2025-03-09T17:11:50.9808335+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:11:51.2802562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.113.21] + +2025-03-09T17:12:16.9764086+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:12:17.0415003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.46, 13.107.246.74] + +2025-03-09T17:12:23.4300723+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:12:23.6558240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.73] + +2025-03-09T17:12:45.3230806+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:12:45.3942943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.67, 13.107.246.51, 13.107.246.74] + +2025-03-09T17:13:05.3882981+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:13:05.6908487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.113.26] + +2025-03-09T17:13:08.5117485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.40] + +2025-03-09T17:13:16.4310102+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.9, 20.135.6.11] + +2025-03-09T17:13:17.3268858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.61.202.50, 23.61.202.40, 61.213.168.41] + +2025-03-09T17:13:18.2901649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.61.202.34, 23.61.202.35, 61.213.168.41] + +2025-03-09T17:13:19.2011879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.163, 20.190.148.163] + +2025-03-09T17:13:20.1704118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.165, 20.190.148.162] + +2025-03-09T17:13:25.0669721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-09T17:13:25.9766209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-09T17:13:33.6888060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.10] + +2025-03-09T17:13:39.8793125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.77.37] + +2025-03-09T17:13:41.1931977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.114.4] + +2025-03-09T17:13:57.8872129+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.165, 20.190.144.160] + +2025-03-09T17:14:01.0981730+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:14:06.2991883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2] + +2025-03-09T17:14:11.4756288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133] + +2025-03-09T17:14:11.7517448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-09T17:14:11.9167431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-09T17:14:12.4000294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-09T17:14:14.3184273+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.113.22] + +2025-03-09T17:14:17.2092081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.9, 13.105.74.49] + +2025-03-09T17:14:19.0789924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-09T17:14:30.4285986+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.113.21] + +2025-03-09T17:14:56.4230512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 4.208.26.199] + +2025-03-09T17:15:06.9821406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-03-09T17:15:07.2467485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.121.3] + +2025-03-09T17:15:07.8935995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.51, 13.107.246.74] + +2025-03-09T17:15:07.8967390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.73] + +2025-03-09T17:15:08.1929364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.74, 13.107.246.40] + +2025-03-09T17:15:08.5001995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[61.213.168.41, 61.213.168.49, 23.56.109.142] + +2025-03-09T17:15:20.2129535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.51, 13.107.246.74] + +2025-03-09T17:15:27.9251499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.34, 20.190.141.32, 20.190.141.36] + +2025-03-09T17:15:37.9354962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 20.26.156.216] + +2025-03-09T17:15:44.6906099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-03-09T17:15:47.7594818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.74.49, 20.135.6.11] + +2025-03-09T17:15:51.5226738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-03-09T17:15:52.1917313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[61.213.168.41, 61.213.168.49, 23.211.136.114] + +2025-03-09T17:15:59.7661892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-09T17:16:19.6989869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.246.73] + +2025-03-09T17:16:41.5215546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.44] + +2025-03-09T17:16:47.7450760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.45] + +2025-03-09T17:16:53.0285598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.114.21, 140.82.112.22] + +2025-03-09T17:17:03.0290223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-09T17:17:03.0323983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.113.26, 140.82.112.26] + +2025-03-09T17:17:03.6041551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-09T17:17:05.7847834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 13.105.74.49] + +2025-03-09T17:17:17.2972493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.73] + +2025-03-09T17:17:17.3002661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.51] + +2025-03-09T17:17:17.3020314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.41, 13.107.246.45] + +2025-03-09T17:17:17.3034518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.44] + +2025-03-09T17:17:17.3658779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.51] + +2025-03-09T17:17:31.7533052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.44] + +2025-03-09T17:17:43.0275107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.112.9] + +2025-03-09T17:17:49.1250379+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.31] + +2025-03-09T17:17:49.1956263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.44] + +2025-03-09T17:17:49.8133137+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.67] + +2025-03-09T17:17:49.8146243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.69] + +2025-03-09T17:17:52.1532371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-09T17:17:53.2333450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-03-09T17:17:53.8647687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.51] + +2025-03-09T17:17:53.8668917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.73] + +2025-03-09T17:17:54.1575414+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.44.108] + +2025-03-09T17:17:54.4467488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.74.49, 20.135.6.11] + +2025-03-09T17:17:55.7536517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-09T17:17:56.1193601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.69] + +2025-03-09T17:17:56.1216907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.211.136.114, 23.56.109.137] + +2025-03-09T17:17:56.1240069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.211.136.114, 23.56.109.135, 23.56.109.137] + +2025-03-09T17:18:07.8831661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.25, 140.82.112.25] + +2025-03-09T17:18:11.2937719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.51] + +2025-03-09T17:18:12.4197015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 13.105.74.49] + +2025-03-09T17:18:23.3503656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.56.109.137, 23.211.136.114] + +2025-03-09T17:18:23.5917141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.56.109.137, 23.56.109.135, 93.191.15.195] + +2025-03-09T17:18:26.8703097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.162, 20.190.144.163] + +2025-03-09T17:18:30.1625733+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.45] + +2025-03-09T17:18:54.7117096+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.56.109.137, 104.90.7.32] + +2025-03-09T17:19:02.7915086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.74, 13.107.246.51] + +2025-03-09T17:19:12.9759003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T17:19:12.9769160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T17:19:12.9785215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T17:19:12.9806263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T17:19:28.5987564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.45.12.194, 23.45.12.210] + +2025-03-09T17:19:34.6899195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.39.160.18, 23.56.109.137, 23.56.109.135] + +2025-03-09T17:19:45.3696433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.112.10] + +2025-03-09T17:19:46.4236030+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.67] + +2025-03-09T17:19:54.3407634+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-09T17:20:03.9729370+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-03-09T17:20:07.9103365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-03-09T17:20:17.0666488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.135.6.9] + +2025-03-09T17:20:28.2592304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 20.190.141.33, 20.190.141.36] + +2025-03-09T17:20:47.2012015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.11] + +2025-03-09T17:21:00.4641722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.5] + +2025-03-09T17:21:15.2344307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.74, 13.107.246.44] + +2025-03-09T17:21:31.7590386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-03-09T17:21:49.3391013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.246.73] + +2025-03-09T17:21:49.7492238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.44] + +2025-03-09T17:21:51.9611913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.121.6] + +2025-03-09T17:21:56.0092435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.71, 13.107.246.69] + +2025-03-09T17:21:56.2412048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.113.22] + +2025-03-09T17:22:17.7891894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.74] + +2025-03-09T17:22:17.7907443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.73, 13.107.246.74] + +2025-03-09T17:22:17.7921148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.74] + +2025-03-09T17:22:17.7930866+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 13.107.246.44, 13.107.246.73] + +2025-03-09T17:22:17.7938808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.44, 13.107.246.73] + +2025-03-09T17:23:08.9186812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.114.25] + +2025-03-09T17:23:14.4924211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.31, 13.107.246.44] + +2025-03-09T17:23:15.3260915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.11] + +2025-03-09T17:23:25.4215992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.39.160.18, 23.211.136.122, 23.56.109.137] + +2025-03-09T17:23:25.8293984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.138, 20.190.144.139] + +2025-03-09T17:23:27.9169029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.136, 20.190.144.137] + +2025-03-09T17:23:30.0620952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-09T17:23:51.1186689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.44, 13.107.246.73] + +2025-03-09T17:23:51.3964512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.116.3] + +2025-03-09T17:23:52.9563855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.113.9] + +2025-03-09T17:24:00.5896735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-03-09T17:24:06.2541475+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:24:14.0527564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-09T17:24:15.3591188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-09T17:24:16.0130033+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-09T17:24:16.9334805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-09T17:24:17.9764720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.241.44.114] + +2025-03-09T17:24:19.2806106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.113.6] + +2025-03-09T17:24:20.9510285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-03-09T17:24:23.7285186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.31, 13.107.246.52, 13.107.246.65] + +2025-03-09T17:24:24.6359558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.74] + +2025-03-09T17:24:27.9017453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-09T17:24:28.3370433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.77.37, 52.109.89.117] + +2025-03-09T17:24:29.2521590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 13.107.246.36, 13.107.246.73] + +2025-03-09T17:24:35.2539578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.39.160.18, 23.39.160.17, 23.211.136.122] + +2025-03-09T17:24:55.5529066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.53] + +2025-03-09T17:24:56.9387762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.73, 13.107.246.53] + +2025-03-09T17:25:00.2476678+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.65, 13.107.246.44] + +2025-03-09T17:25:12.0428046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-03-09T17:25:12.2698509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.3] + +2025-03-09T17:25:13.2670844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.44.108, 52.109.56.126, 52.109.20.15] + +2025-03-09T17:25:16.4108833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-03-09T17:25:24.9602956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.44.108] + +2025-03-09T17:25:29.5498714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.32, 20.190.141.33, 20.190.141.36] + +2025-03-09T17:26:02.9954593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.77.37] + +2025-03-09T17:26:07.0136018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.36, 13.107.246.44, 13.107.246.73] + +2025-03-09T17:26:24.8102801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 13.107.246.73, 13.107.246.74] + +2025-03-09T17:26:27.5862692+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.71, 13.107.246.73] + +2025-03-09T17:26:33.3130774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-09T17:26:49.5309506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.116.3] + +2025-03-09T17:26:49.9981541+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.73, 13.107.246.53] + +2025-03-09T17:26:50.6257882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.69] + +2025-03-09T17:26:57.2235493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.74] + +2025-03-09T17:26:57.4671694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.21] + +2025-03-09T17:26:58.0944358+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.53, 13.107.246.74] + +2025-03-09T17:27:07.5320597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.44, 13.107.246.74] + +2025-03-09T17:27:17.8518452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.71] + +2025-03-09T17:27:17.8534218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.53, 13.107.246.71] + +2025-03-09T17:27:17.8543053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.36, 13.107.246.53] + +2025-03-09T17:27:21.5491789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.137, 20.190.144.163] + +2025-03-09T17:27:45.7763550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.3] + +2025-03-09T17:27:51.4030723+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.44] + +2025-03-09T17:27:51.4056670+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.51, 13.107.246.44] + +2025-03-09T17:27:51.4666187+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.36] + +2025-03-09T17:28:07.9208321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.191, 52.109.124.4] + +2025-03-09T17:28:08.2651352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.52, 13.107.246.67] + +2025-03-09T17:28:10.6380058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.113.25] + +2025-03-09T17:30:05.4792263+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:30:33.0654964+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:30:55.0294576+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:31:28.4475313+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:32:10.8494252+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:33:59.9247091+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:34:00.4670563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12] + +2025-03-09T17:34:05.2034872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T17:34:05.8653557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T17:34:07.3632258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-03-09T17:34:08.5106043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.114.4] + +2025-03-09T17:34:09.1908449+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T17:34:09.6000259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T17:34:10.5361169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-09T17:34:11.5385911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.89.117] + +2025-03-09T17:34:16.4568024+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.6] + +2025-03-09T17:34:17.3467728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.74] + +2025-03-09T17:34:18.3530690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-03-09T17:34:24.3958921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.51, 13.107.246.65] + +2025-03-09T17:34:25.5185174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.25] + +2025-03-09T17:34:26.3972451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.41] + +2025-03-09T17:34:27.4869818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 140.82.113.9] + +2025-03-09T17:34:28.7510284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.124.13] + +2025-03-09T17:34:29.6614441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.36, 13.107.246.53] + +2025-03-09T17:34:30.5867352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.38, 13.107.246.40, 13.107.246.51] + +2025-03-09T17:34:35.8419438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.56.109.137, 23.62.230.74] + +2025-03-09T17:34:37.9333859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.56.109.137, 23.56.109.135, 23.220.206.20] + +2025-03-09T17:34:38.9982789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 13.105.74.49, 20.135.1.1] + +2025-03-09T17:34:44.8779237+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.163, 20.190.144.162] + +2025-03-09T17:34:46.0476212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.144.138, 20.190.144.137] + +2025-03-09T17:34:50.3646078+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:34:57.0258139+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 20.135.1.1, 40.90.130.192] + +2025-03-09T17:35:26.9674554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 40.126.35.85, 40.126.35.151] + +2025-03-09T17:35:36.3145035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.38, 13.107.246.51, 13.107.246.74] + +2025-03-09T17:35:36.3173119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.56.109.137, 23.211.136.123] + +2025-03-09T17:35:46.4377097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.65, 13.107.246.74] + +2025-03-09T17:35:46.4416883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 140.82.112.10] + +2025-03-09T17:35:46.7313910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.36, 13.107.246.57] + +2025-03-09T17:35:47.5812450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 40.90.130.192, 40.90.133.99] + +2025-03-09T17:36:11.0802844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 13.105.74.50, 40.90.130.192] + +2025-03-09T17:36:13.0311628+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.8.88] + +2025-03-09T17:36:15.6514271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.89.19] + +2025-03-09T17:36:15.6550970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-09T17:36:15.6578710+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.80, 40.126.35.85, 40.126.35.84] + +2025-03-09T17:36:26.7009733+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.253.70] + +2025-03-09T17:36:37.3362899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.38, 13.107.246.51] + +2025-03-09T17:36:42.5161630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.40, 13.107.246.36] + +2025-03-09T17:37:12.3282886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-09T17:37:25.3429317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.44.108] + +2025-03-09T17:37:27.9418635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.166, 20.190.144.165] + +2025-03-09T17:38:01.6694707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-03-09T17:38:06.6280295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.40, 13.107.246.57] + +2025-03-09T17:38:13.9720010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.51, 13.107.246.74] + +2025-03-09T17:38:13.9729628+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 140.82.121.9] + +2025-03-09T17:38:19.1666701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.8.88] + +2025-03-09T17:38:19.9006652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.74] + +2025-03-09T17:38:19.9046982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.56.126] + +2025-03-09T17:38:20.5121486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.56.109.137, 23.56.109.135, 104.90.7.41] + +2025-03-09T17:38:20.8310348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.85, 40.126.35.145, 40.126.35.151] + +2025-03-09T17:38:20.8320618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.165, 40.126.35.85] + +2025-03-09T17:38:22.9486101+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-03-09T17:38:23.7000827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.76, 13.107.246.74, 13.107.253.70] + +2025-03-09T17:38:24.0330413+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.3] + +2025-03-09T17:38:32.5158267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.51, 13.107.246.65] + +2025-03-09T17:38:38.0581396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.2, 13.105.74.50] + +2025-03-09T17:38:43.2379890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.40, 13.107.246.36] + +2025-03-09T17:38:44.5919604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.56.109.137, 23.56.109.135, 81.198.165.19] + +2025-03-09T17:39:12.2786159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-09T17:39:14.1636796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-03-09T17:39:16.0682565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.69, 13.107.246.73, 13.107.246.40] + +2025-03-09T17:39:22.4256887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.48.167.15, 23.56.109.137, 23.56.109.135] + +2025-03-09T17:39:22.8544566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.48.167.10, 23.56.109.142, 23.56.109.137] + +2025-03-09T17:39:26.1549798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.51] + +2025-03-09T17:39:26.1586133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.74, 13.107.246.51] + +2025-03-09T17:39:26.2216159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.60, 13.107.246.73] + +2025-03-09T17:39:26.7699073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.112.25] + +2025-03-09T17:39:27.1830278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.112.21, 140.82.114.22] + +2025-03-09T17:39:27.1845248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.69, 13.107.246.74, 13.107.246.40] + +2025-03-09T17:39:29.8129409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-03-09T17:39:30.1895153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.41, 13.107.246.65] + +2025-03-09T17:39:31.0103368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.69, 13.107.246.40, 13.107.246.74] + +2025-03-09T17:39:31.7602277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.9, 20.135.6.2] + +2025-03-09T17:39:32.3920342+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.139, 20.190.144.166] + +2025-03-09T17:39:34.9920533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.112.174] + +2025-03-09T17:39:43.5080655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.163, 20.190.144.166] + +2025-03-09T17:39:46.7775952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.165, 40.126.35.134] + +2025-03-09T17:39:49.5826359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.160] + +2025-03-09T17:39:49.8569456+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.148.167, 20.190.144.161] + +2025-03-09T17:39:58.1366022+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-09T17:39:58.4893504+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 337.9344 ms + +2025-03-09T17:39:58.5666622+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 73.9935 ms + +2025-03-09T17:40:32.5690337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.9, 20.135.6.7] + +2025-03-09T17:40:38.9066032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.74, 13.107.246.41] + +2025-03-09T17:40:41.3484609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-03-09T17:41:01.9212837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.112.145] + +2025-03-09T17:41:18.7437333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.76, 13.107.246.74, 13.107.253.44] + +2025-03-09T17:41:29.5405011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-09T17:41:34.6791870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.74, 13.107.246.60] + +2025-03-09T17:41:39.6752452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.41, 13.107.246.51] + +2025-03-09T17:41:39.9660206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.60, 13.107.246.73] + +2025-03-09T17:41:39.9693208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.40, 13.107.246.74, 13.107.246.73] + +2025-03-09T17:42:05.5524998+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.15, 20.135.6.9] + +2025-03-09T17:42:29.1320915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.76, 13.107.246.74, 13.107.246.71] + +2025-03-09T17:43:24.8539240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.76, 13.107.246.71] + +2025-03-09T17:43:39.4487303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.15, 20.135.6.7] + +2025-03-09T17:44:13.6178598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.15] + +2025-03-09T17:44:25.2655404+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-09T17:44:27.0461062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-09T17:44:27.4612127+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-09T17:44:33.0579944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-03-09T17:44:34.0629601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.3] + +2025-03-09T17:44:34.4577893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-09T17:44:34.7875304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-09T17:44:36.2352504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.76, 13.107.246.74, 13.107.246.71] + +2025-03-09T17:44:36.7742213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.41] + +2025-03-09T17:44:37.2217642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 140.82.121.10] + +2025-03-09T17:44:37.9000247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.26] + +2025-03-09T17:44:40.3573919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.112.22] + +2025-03-09T17:44:40.9697300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.65, 13.107.246.74] + +2025-03-09T17:44:43.1529367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.60] + +2025-03-09T17:44:45.8985801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.44] + +2025-03-09T17:44:46.7542557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-09T17:44:47.2234823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.7] + +2025-03-09T17:44:51.5553408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.139, 20.190.148.167] + +2025-03-09T17:44:55.2360189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.148.164, 20.190.148.167] + +2025-03-09T17:44:57.6287656+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:45:13.8790477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-09T17:45:19.3170228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.48.167.15, 23.56.109.137, 104.90.7.41] + +2025-03-09T17:45:26.8171144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.6] + +2025-03-09T17:45:41.2224503+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.44] + +2025-03-09T17:45:57.3879768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 20.26.156.216] + +2025-03-09T17:45:58.2307175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.116.6] + +2025-03-09T17:46:17.4489328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.2] + +2025-03-09T17:46:18.7442439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.41] + +2025-03-09T17:46:20.1089222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.56.126, 52.109.20.16] + +2025-03-09T17:46:27.1368393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.69] + +2025-03-09T17:46:47.8766588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.56.126] + +2025-03-09T17:46:48.2240788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.73] + +2025-03-09T17:46:48.4554956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.46, 13.107.246.57] + +2025-03-09T17:47:05.9809080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.7] + +2025-03-09T17:47:17.6506039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.148.166, 20.190.148.164] + +2025-03-09T17:47:23.4760375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.52, 13.107.246.44] + +2025-03-09T17:47:29.4691858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-09T17:47:43.0989357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.25] + +2025-03-09T17:47:45.5109146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.46] + +2025-03-09T17:48:08.5350957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.89.117] + +2025-03-09T17:48:28.7449748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.71, 13.107.246.76] + +2025-03-09T17:48:29.6199441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.41, 13.107.246.71] + +2025-03-09T17:48:50.6237447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.124.13] + +2025-03-09T17:49:04.0375753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 13.105.28.1] + +2025-03-09T17:49:21.5955505+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:49:47.5016946+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:49:58.3302618+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:50:18.5448558+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-09T17:50:18.8410621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.1, 20.143.38.0] + +2025-03-09T17:50:20.4535824+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:50:25.3790993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.48.167.15, 23.56.109.137, 104.90.7.74] + +2025-03-09T17:50:27.6351295+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:50:30.8868591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.167, 20.190.148.165] + +2025-03-09T17:50:32.2443882+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:50:32.5192817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.166, 20.190.148.167] + +2025-03-09T17:50:43.9312590+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:50:44.6566368+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:50:45.3631765+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:50:53.4752304+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:51:23.8222532+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:51:39.9328915+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:51:51.5727057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-09T17:52:08.8200910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-09T17:52:09.8447714+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:52:09.9189558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.76, 13.107.253.44] + +2025-03-09T17:52:10.8805937+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:52:11.0093974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-03-09T17:52:12.5158821+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:52:34.5162924+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:52:34.5174592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-09T17:52:37.4888441+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:52:37.4921187+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-09T17:52:39.5692651+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:52:39.8433579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.12.13] + +2025-03-09T17:53:01.4614438+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:53:02.9469839+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:53:03.0129305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 13.107.246.41, 13.107.246.73] + +2025-03-09T17:53:24.6599241+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:53:24.9431184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 4.225.11.198] + +2025-03-09T17:53:27.9295957+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:53:28.1524983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.21] + +2025-03-09T17:53:30.3715196+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:53:30.4397413+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.71, 13.107.246.62] + +2025-03-09T17:53:57.2204523+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:53:57.2817157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.52, 13.107.246.73, 13.107.246.44] + +2025-03-09T17:53:59.5246680+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:53:59.7622873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.26] + +2025-03-09T17:54:19.6058822+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-09T17:54:19.9089155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.114.6] + +2025-03-09T17:54:21.0448016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-03-09T17:54:23.0994452+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:54:23.1703221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.46, 13.107.246.45] + +2025-03-09T17:54:27.2155391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.1, 20.135.6.9] + +2025-03-09T17:54:28.6548646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.56.109.137, 23.196.4.11] + +2025-03-09T17:54:50.3341341+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:54:51.2525197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.213.161.24, 23.56.109.137, 23.213.161.27] + +2025-03-09T17:54:57.0393114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.164, 20.190.148.165] + +2025-03-09T17:55:00.8981983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.162, 20.190.144.164] + +2025-03-09T17:55:02.9347043+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:55:05.6490410+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T17:55:16.0093690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.52, 13.107.246.44, 13.107.246.74] + +2025-03-09T17:55:17.1573475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.113.4] + +2025-03-09T17:55:18.1211449+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.51, 13.107.246.41] + +2025-03-09T17:55:19.2378130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.10] + +2025-03-09T17:55:20.0490566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.0.138] + +2025-03-09T17:55:25.7493512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.76, 13.107.253.44] + +2025-03-09T17:55:34.3197743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-03-09T17:55:36.6572808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.213.161.24, 23.213.161.27, 23.56.109.135] + +2025-03-09T17:55:41.1152159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.196.4.73, 23.196.4.11] + +2025-03-09T17:55:41.5468677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.160, 20.190.148.165] + +2025-03-09T17:55:46.9125783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.164, 20.190.148.162] + +2025-03-09T17:55:50.1588945+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.71, 13.107.246.53] + +2025-03-09T17:55:50.6066321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.9, 13.105.74.50] + +2025-03-09T17:55:59.1284312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.45.51.129, 23.56.109.142, 23.45.51.121] + +2025-03-09T17:56:16.8470066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.45.51.137, 23.45.51.152, 23.213.161.24] + +2025-03-09T17:56:22.9125323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 20.135.6.9] + +2025-03-09T17:56:24.3034288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12] + +2025-03-09T17:56:32.3363921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.45.51.129, 23.56.109.142, 184.28.98.90] + +2025-03-09T17:56:33.9215572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.3] + +2025-03-09T17:56:35.8075642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.53, 13.107.246.62] + +2025-03-09T17:56:42.3463933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-09T17:56:46.5355999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.135, 52.110.8.143, 52.108.8.12] + +2025-03-09T17:56:48.3095219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T17:56:48.3127786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T17:56:48.3148011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T17:56:48.3166473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T17:56:52.0330365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-09T17:56:52.0348159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-09T17:56:52.0358582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-09T17:56:52.0378596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-09T17:57:05.9828352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.41, 13.107.246.73] + +2025-03-09T17:57:06.8791647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.167, 40.126.35.150] + +2025-03-09T17:57:44.9653848+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T17:57:46.7942905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-03-09T17:57:52.4834401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.45, 13.107.246.41] + +2025-03-09T17:57:57.3584999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.54, 13.107.246.44] + +2025-03-09T17:57:58.6788508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.0.136] + +2025-03-09T17:57:59.2390497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.45, 13.107.246.74] + +2025-03-09T17:58:00.4047774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.71, 13.107.246.38] + +2025-03-09T17:58:02.7809883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.164, 20.190.148.167] + +2025-03-09T17:58:05.2698898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.41, 13.107.246.52, 13.107.246.44] + +2025-03-09T17:58:06.2780981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.114.6] + +2025-03-09T17:58:07.2925701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.41, 13.107.246.45] + +2025-03-09T17:58:28.6229701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-03-09T17:58:32.4381034+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.62, 13.107.246.57] + +2025-03-09T17:58:52.6156176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.67, 13.107.246.45] + +2025-03-09T17:59:01.8642496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.114.25] + +2025-03-09T17:59:08.4847813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.144.163, 20.190.148.166] + +2025-03-09T17:59:10.7448600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.41, 13.107.246.44, 13.107.246.74] + +2025-03-09T17:59:10.7484336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-09T17:59:10.7509605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.45, 13.107.246.73] + +2025-03-09T17:59:11.0583953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.62, 13.107.246.38] + +2025-03-09T17:59:11.0612944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.113.25] + +2025-03-09T17:59:20.2160541+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.121.6] + +2025-03-09T17:59:24.8458439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.114.25] + +2025-03-09T17:59:24.8486980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.67, 13.107.246.74] + +2025-03-09T17:59:27.8377316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.52.2, 52.109.56.126] + +2025-03-09T17:59:39.0624999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.164, 20.190.148.162] + +2025-03-09T17:59:49.2415837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.233.83.145, 140.82.112.4] + +2025-03-09T17:59:53.6781062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.51, 13.107.246.45] + +2025-03-09T17:59:54.2508813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.113.10] + +2025-03-09T17:59:55.7983958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.56.126, 52.109.20.16] + +2025-03-09T17:59:58.3101089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.33, 23.45.51.129, 23.56.109.142] + +2025-03-09T17:59:58.9296423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.50, 23.58.144.4, 23.45.51.137] + +2025-03-09T17:59:59.2098768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.167, 40.126.35.80] + +2025-03-09T18:00:02.4917578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.138, 20.190.144.164] + +2025-03-09T18:00:14.2138707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.41, 13.107.246.60, 13.107.246.44] + +2025-03-09T18:00:20.9681889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 13.107.246.40, 13.107.246.45] + +2025-03-09T18:00:28.6807304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.80, 40.126.35.86, 40.126.35.84] + +2025-03-09T18:00:42.9734037+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.33, 23.45.51.129, 23.48.167.140] + +2025-03-09T18:00:43.0918822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.80, 40.126.35.85, 40.126.35.129] + +2025-03-09T18:00:48.4429465+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.148.163, 20.190.148.164] + +2025-03-09T18:00:50.4938501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.62, 13.107.246.38, 13.107.246.73] + +2025-03-09T18:00:59.0469741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.54, 13.107.246.45] + +2025-03-09T18:01:00.4373712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.33, 23.48.167.140, 23.45.51.129] + +2025-03-09T18:01:13.2625961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.62, 13.107.246.40, 13.107.246.38] + +2025-03-09T18:01:21.5081478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.50, 23.58.144.4, 23.45.51.152] + +2025-03-09T18:01:23.4086103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 13.105.28.18, 20.135.6.9] + +2025-03-09T18:01:24.5043996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.110.8.135, 52.108.9.12] + +2025-03-09T18:01:42.2043820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.50, 23.58.144.4, 23.39.160.131] + +2025-03-09T18:01:46.2293231+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12, 52.110.8.166] + +2025-03-09T18:01:48.1380244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12, 52.110.8.151] + +2025-03-09T18:01:49.2748682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:01:49.2786426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:01:49.2813898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:01:49.2836778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:01:49.8405156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.233.83.145, 140.82.116.4] + +2025-03-09T18:01:58.0262081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-09T18:01:58.0288295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-09T18:01:58.9869174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-09T18:01:59.3856167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-09T18:02:00.3379491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 13.107.246.51, 13.107.246.40] + +2025-03-09T18:02:02.5741216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.33, 23.39.160.91, 23.48.167.140] + +2025-03-09T18:02:06.7045565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.163, 20.190.144.137] + +2025-03-09T18:02:08.6324060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-09T18:02:24.0590107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.114.5] + +2025-03-09T18:02:45.9857572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-03-09T18:02:47.7290077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.109.154] + +2025-03-09T18:03:03.8279115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.51, 13.107.246.67] + +2025-03-09T18:03:04.1759044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.45, 13.107.246.54] + +2025-03-09T18:03:07.7275495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.0.136, 52.109.0.138] + +2025-03-09T18:03:08.9863260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 13.107.246.62, 13.107.246.40] + +2025-03-09T18:03:19.8554020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-09T18:03:22.1274485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 13.107.246.62, 13.107.246.57] + +2025-03-09T18:03:30.4593058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.114.21] + +2025-03-09T18:03:32.7340022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 13.107.246.57, 13.107.246.62] + +2025-03-09T18:03:56.0617173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 20.233.83.145] + +2025-03-09T18:03:58.6582117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.66, 13.107.246.45] + +2025-03-09T18:03:58.6594796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.41, 13.107.246.60, 13.107.246.66] + +2025-03-09T18:04:01.1863461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.77, 13.107.246.41, 13.107.246.51] + +2025-03-09T18:04:02.3592355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.112.26] + +2025-03-09T18:04:40.0208778+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:04:43.8125762+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:05:03.0320664+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-09T18:05:24.5795138+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:05:25.0717193+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:05:47.4498547+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:06:32.7890666+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-09T18:06:37.1488082+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:06:58.9673608+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:07:41.0126080+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:07:42.4715925+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:07:42.7071857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.51, 13.107.246.73] + +2025-03-09T18:07:59.3092244+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:07:59.5420725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.45, 13.107.246.54] + +2025-03-09T18:08:38.4838822+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-09T18:08:38.9553894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.113.21] + +2025-03-09T18:08:54.1592274+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-09T18:08:54.5179968+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 349.2724 ms + +2025-03-09T18:08:54.5806361+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 60.5558 ms + +2025-03-09T18:09:24.6992908+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:09:25.1970442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.56.126, 52.109.68.87] + +2025-03-09T18:09:34.6004154+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:09:34.8502887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.253.45, 13.107.246.66] + +2025-03-09T18:09:56.6485733+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:09:57.0718732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.4] + +2025-03-09T18:10:18.8340014+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:10:19.0865003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.77, 13.107.246.68, 13.107.246.51] + +2025-03-09T18:10:40.8563254+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:10:49.5785254+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:10:50.0212043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.114.26] + +2025-03-09T18:11:05.3639914+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:11:05.7778006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-03-09T18:11:07.9231059+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:11:08.1507127+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.74, 13.107.246.67] + +2025-03-09T18:11:16.3294716+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:11:16.5939885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-09T18:11:18.8842912+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:11:19.3341233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 40.90.130.204, 40.90.133.97] + +2025-03-09T18:11:30.7062517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.39.160.91, 23.48.167.140, 23.48.167.168] + +2025-03-09T18:11:32.7470092+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:11:37.9440492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.48.167.154, 23.48.167.168, 23.67.33.143] + +2025-03-09T18:12:01.5450767+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:12:06.7262682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.165, 20.190.144.139] + +2025-03-09T18:12:12.8492014+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:12:16.2908205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.166, 20.190.148.165] + +2025-03-09T18:12:18.8619799+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:12:21.5944470+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:12:28.8961211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-09T18:12:30.9588173+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:12:32.0848640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-09T18:12:40.6161944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-09T18:12:41.2849640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-09T18:12:41.8628883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-09T18:12:48.2663499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-03-09T18:12:48.5468598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.5] + +2025-03-09T18:13:16.1592995+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:13:17.1101877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.246.57] + +2025-03-09T18:13:17.8607146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.77, 13.107.246.68] + +2025-03-09T18:13:18.7823850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.113.10] + +2025-03-09T18:13:19.7754480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.89.117] + +2025-03-09T18:13:20.3755174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.113.22] + +2025-03-09T18:13:21.1822138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.253.45] + +2025-03-09T18:13:22.6336365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.113.26] + +2025-03-09T18:13:23.3657814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.51] + +2025-03-09T18:13:24.1696661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.253.45] + +2025-03-09T18:13:46.0599396+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:13:47.2753296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.15, 40.90.133.97] + +2025-03-09T18:13:48.2477979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.180, 23.54.155.166, 23.56.109.137] + +2025-03-09T18:14:09.9839039+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:14:10.1771697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.54.155.166, 23.54.155.171, 23.39.160.91] + +2025-03-09T18:14:10.6642368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.165, 20.190.144.137] + +2025-03-09T18:14:23.9150178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.21] + +2025-03-09T18:14:23.9183604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117] + +2025-03-09T18:14:24.6456833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-03-09T18:14:25.1828472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.253.70] + +2025-03-09T18:14:26.5037939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.56.126, 52.109.68.87, 52.109.28.25] + +2025-03-09T18:14:26.8375268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.253.45] + +2025-03-09T18:14:29.1469296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.68, 13.107.246.41] + +2025-03-09T18:14:29.4610220+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.41] + +2025-03-09T18:14:29.7603442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-09T18:14:30.4702814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-03-09T18:14:31.1017751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.40] + +2025-03-09T18:14:31.3867297+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.4] + +2025-03-09T18:14:32.4286201+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 40.90.133.97, 20.135.4.163] + +2025-03-09T18:14:32.7952565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.54.155.166, 23.54.155.147, 23.54.155.132] + +2025-03-09T18:14:33.2075772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.180, 23.54.155.166, 23.54.155.143] + +2025-03-09T18:14:37.8897078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.165, 20.190.144.160] + +2025-03-09T18:14:44.3614747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.89.117] + +2025-03-09T18:14:48.1489428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 40.90.133.97, 20.135.4.169] + +2025-03-09T18:15:11.5891425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.15, 40.90.133.97] + +2025-03-09T18:15:24.8127746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.46, 13.107.246.73] + +2025-03-09T18:15:33.7048148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.52, 13.107.246.73] + +2025-03-09T18:15:51.1597441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-03-09T18:16:19.1353706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12] + +2025-03-09T18:16:19.3673315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.246.41] + +2025-03-09T18:16:44.5968854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.74.49, 20.135.6.15] + +2025-03-09T18:16:46.4385303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.0.138] + +2025-03-09T18:16:59.5042524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.114.25] + +2025-03-09T18:17:04.0982718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.144.137, 20.190.148.165] + +2025-03-09T18:17:07.3900741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.165, 20.190.148.166] + +2025-03-09T18:17:16.8419920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.148.163, 20.190.144.166] + +2025-03-09T18:17:35.1999514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-09T18:17:35.2019389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-09T18:17:35.4196042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.246.52] + +2025-03-09T18:17:36.2317592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.41] + +2025-03-09T18:17:36.5099016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-09T18:17:36.5115541+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-09T18:17:46.4988681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-03-09T18:17:48.4837818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-03-09T18:17:49.2872376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.74.49] + +2025-03-09T18:18:17.8485942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.52, 13.107.246.73] + +2025-03-09T18:18:17.9166339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.67, 13.107.246.74] + +2025-03-09T18:18:17.9184448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.68, 13.107.246.41, 13.107.246.45] + +2025-03-09T18:18:17.9198277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.41, 13.107.246.40] + +2025-03-09T18:18:17.9212219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.73, 13.107.246.41] + +2025-03-09T18:18:20.0766927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.10] + +2025-03-09T18:18:22.8494845+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.67, 13.107.246.51] + +2025-03-09T18:18:22.9174832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.41, 13.107.246.40, 13.107.246.74] + +2025-03-09T18:18:25.7807775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.52, 13.107.246.74] + +2025-03-09T18:18:25.8419943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.41, 13.107.246.67] + +2025-03-09T18:18:25.8439961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.41, 13.107.246.74] + +2025-03-09T18:18:38.6717866+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.5] + +2025-03-09T18:18:39.8948129+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-03-09T18:18:40.6673638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.56.126, 52.109.20.16, 52.109.68.87] + +2025-03-09T18:18:45.1941467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.41, 13.107.246.40] + +2025-03-09T18:18:57.0168243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 13.74.129.92] + +2025-03-09T18:19:01.6310052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.56.126] + +2025-03-09T18:19:02.4712572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.15, 20.135.6.11] + +2025-03-09T18:19:03.0255875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.166, 23.54.155.143, 23.54.155.139] + +2025-03-09T18:19:11.4099229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.54.155.166, 23.54.155.171, 23.54.155.147] + +2025-03-09T18:19:26.1114169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.112.21] + +2025-03-09T18:19:26.1454085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.41, 13.107.246.74] + +2025-03-09T18:19:26.6068274+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.44.108] + +2025-03-09T18:19:33.9726223+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:19:49.6488058+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:20:10.8628928+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:20:12.2322761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.67, 13.107.246.74] + +2025-03-09T18:20:13.5146203+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:20:13.6860088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.74, 13.107.246.44] + +2025-03-09T18:20:13.9731175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.253.45] + +2025-03-09T18:20:35.6881000+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:20:35.7521553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.253.72] + +2025-03-09T18:20:57.3843967+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:21:41.9791639+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:21:42.3763395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.113.26] + +2025-03-09T18:21:55.5684067+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:21:55.8249310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-03-09T18:22:30.9556110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 20.135.6.15] + +2025-03-09T18:22:52.6454405+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:22:53.1181498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.54.155.139, 23.54.155.166, 23.54.155.143] + +2025-03-09T18:22:55.5901229+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:22:59.0524996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.148.163, 20.190.144.137] + +2025-03-09T18:24:48.1146767+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:24:51.5929027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.67, 20.190.166.132, 20.190.166.131] + +2025-03-09T18:26:33.4382933+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:26:55.4168536+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:26:56.8674020+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:26:57.5218893+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:27:11.2549547+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:27:33.0486624+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:27:33.3051780+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-09T18:27:34.2765638+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:27:57.4485017+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:27:57.8968234+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-09T18:27:59.8516450+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:28:05.0371090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-09T18:28:16.8581424+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:28:17.0263912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-09T18:28:28.6831478+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:28:28.9118386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.46, 13.107.246.69] + +2025-03-09T18:28:42.4459587+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:28:47.6287257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-03-09T18:28:49.2440748+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:28:49.6399463+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.3] + +2025-03-09T18:30:23.3856427+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:30:23.6411487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 13.107.246.73, 13.107.246.74] + +2025-03-09T18:30:26.8399043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10] + +2025-03-09T18:30:27.7079906+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-09T18:30:28.5471762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-09T18:30:29.6973371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117] + +2025-03-09T18:30:30.7194060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6] + +2025-03-09T18:30:32.0172302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.28.47] + +2025-03-09T18:30:32.9736043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.253.49] + +2025-03-09T18:30:33.8687581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.64] + +2025-03-09T18:30:34.6656359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.253.45] + +2025-03-09T18:30:35.7203850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.112.21] + +2025-03-09T18:30:40.6806178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.112.25] + +2025-03-09T18:30:41.9393981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.0, 52.109.44.108, 52.109.56.126] + +2025-03-09T18:30:43.0362734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.56.130, 52.109.112.174] + +2025-03-09T18:30:43.9821039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.1.1, 20.135.4.163, 20.135.4.173] + +2025-03-09T18:30:44.9750832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.169, 23.58.144.167, 184.30.30.16] + +2025-03-09T18:30:46.0564959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.169, 23.58.144.167, 184.30.30.51] + +2025-03-09T18:30:59.6339193+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.160, 20.190.144.164] + +2025-03-09T18:31:00.6214943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.133, 20.190.166.66, 20.190.166.132] + +2025-03-09T18:31:11.4595817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.46, 13.107.253.40] + +2025-03-09T18:31:13.4709581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.113.4] + +2025-03-09T18:31:13.7367914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22] + +2025-03-09T18:31:14.4794866+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.74] + +2025-03-09T18:31:14.7818051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.113.26] + +2025-03-09T18:31:19.9820889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-09T18:31:22.7907382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.112.22] + +2025-03-09T18:31:24.5666942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-09T18:31:30.2033107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.89.117] + +2025-03-09T18:31:30.7264598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.130.199, 20.135.1.1, 20.135.4.163] + +2025-03-09T18:31:33.8786952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.74] + +2025-03-09T18:31:43.1078310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.113.25] + +2025-03-09T18:31:55.6270754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.0, 52.109.56.126, 52.109.2.217] + +2025-03-09T18:31:57.4415600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.130.199, 20.135.1.1, 20.135.4.173] + +2025-03-09T18:32:24.8739150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.112.10] + +2025-03-09T18:32:32.0824997+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-03-09T18:32:32.6762506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.112.25] + +2025-03-09T18:32:33.1162547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.130.199, 20.135.1.1, 40.90.133.112] + +2025-03-09T18:32:33.1183151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.169, 23.58.144.167, 23.61.250.33] + +2025-03-09T18:32:34.2210939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12] + +2025-03-09T18:32:35.0619614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.71, 13.107.246.74] + +2025-03-09T18:32:35.4770353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.66] + +2025-03-09T18:32:37.6796630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-09T18:32:38.5964851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.112.21] + +2025-03-09T18:32:47.0572903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 40.90.130.199, 20.135.1.1] + +2025-03-09T18:32:49.5160004+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.35, 20.190.141.37, 20.190.141.39] + +2025-03-09T18:32:54.0082536+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.169, 23.58.144.167, 23.208.31.133] + +2025-03-09T18:32:54.0096405+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.169, 23.58.144.167, 23.61.250.8] + +2025-03-09T18:32:56.6051198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.169, 23.58.144.167, 23.208.31.169] + +2025-03-09T18:33:00.8710604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.166, 20.190.148.167] + +2025-03-09T18:33:03.3293126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:33:03.3330777+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:33:03.3350810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:33:03.3365990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:33:13.8606849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T18:33:14.2912254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T18:33:14.8414423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.74, 13.107.246.46] + +2025-03-09T18:33:16.2108090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T18:33:16.2128882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T18:33:29.9948874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.246.60] + +2025-03-09T18:33:29.9960132+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.67] + +2025-03-09T18:33:29.9967581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.71] + +2025-03-09T18:33:29.9974722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.44] + +2025-03-09T18:33:29.9982555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.66] + +2025-03-09T18:33:31.4448914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.0.136] + +2025-03-09T18:33:33.4083074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.6] + +2025-03-09T18:33:45.6408600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-03-09T18:33:50.4899728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-03-09T18:33:50.7260478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.3] + +2025-03-09T18:34:17.6309798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.40] + +2025-03-09T18:34:40.6982118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.52] + +2025-03-09T18:35:20.8124106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.113.4] + +2025-03-09T18:35:26.1424658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.67] + +2025-03-09T18:35:26.1455181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.52] + +2025-03-09T18:35:26.1476108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.40] + +2025-03-09T18:35:26.2138284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.66] + +2025-03-09T18:35:35.3031012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.73, 13.107.246.74] + +2025-03-09T18:35:38.0142976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.114.21] + +2025-03-09T18:35:40.9320222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.114.25] + +2025-03-09T18:35:55.3229706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.167, 20.190.144.164] + +2025-03-09T18:36:01.2324120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.139, 20.190.144.164] + +2025-03-09T18:36:24.1538122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.169, 23.58.144.167, 23.61.250.8] + +2025-03-09T18:36:47.0037365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.0] + +2025-03-09T18:36:52.2735045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.112.25] + +2025-03-09T18:37:00.1362355+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:37:36.5569655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 40.90.130.199, 40.90.130.192] + +2025-03-09T18:37:38.3946698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-09T18:37:39.1094501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-09T18:37:51.3557814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.34, 20.190.141.39, 20.190.141.36] + +2025-03-09T18:37:56.2613559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.58.144.169, 23.58.144.167, 23.208.31.169] + +2025-03-09T18:37:59.4120370+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.58.144.169, 23.58.144.167, 23.61.250.8] + +2025-03-09T18:38:09.0568345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:38:09.0585477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:38:09.0599582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:38:09.0616231+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-09T18:38:15.2925496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-09T18:38:15.2961377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-09T18:38:15.2978874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-09T18:38:15.2996401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-09T18:38:21.5700452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.60, 13.107.246.40] + +2025-03-09T18:38:30.0727032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.40, 13.107.246.74] + +2025-03-09T18:38:30.4137740+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.73, 13.107.246.71] + +2025-03-09T18:38:30.4179249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.40, 13.107.246.74] + +2025-03-09T18:38:34.4986998+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-03-09T18:38:53.8386877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.116.3, 140.82.113.4, 140.82.121.3] + +2025-03-09T18:38:59.0778390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-03-09T18:39:24.9822913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.74, 13.107.246.40] + +2025-03-09T18:39:25.2711120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.69] + +2025-03-09T18:39:36.8364829+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.158, 52.110.8.142, 52.110.8.164] + +2025-03-09T18:39:37.4107667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.116.3, 140.82.112.3, 140.82.113.4] + +2025-03-09T18:39:37.8385933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.60, 13.107.246.74] + +2025-03-09T18:39:41.9281009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.60, 13.107.246.53] + +2025-03-09T18:39:43.0346080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.53, 13.107.246.74] + +2025-03-09T18:40:24.0886932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-03-09T18:40:27.1618743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.53] + +2025-03-09T18:40:27.4637732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.71, 13.107.246.73] + +2025-03-09T18:40:30.5283786+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:40:30.8612589+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:40:31.4192750+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:40:52.4714465+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:41:03.2524762+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:41:24.2909414+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:41:45.3239752+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:41:47.2142984+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:42:08.9517986+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:42:10.2310599+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:42:11.9468612+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:42:14.1190791+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:42:36.1139007+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:42:44.4107325+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:42:44.8182893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.5] + +2025-03-09T18:43:09.2305355+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:43:18.5213108+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:43:18.9587398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-03-09T18:43:25.2132318+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:43:55.2062948+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:43:55.6280379+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.112.26] + +2025-03-09T18:44:17.3398998+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:44:20.6453945+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.0.136, 52.109.0.138, 52.109.8.88] + +2025-03-09T18:44:46.3461203+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:44:46.5895857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.52, 13.107.246.73, 13.107.246.57] + +2025-03-09T18:45:08.3653317+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:45:08.6340473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.52, 13.107.246.73, 13.107.246.35] + +2025-03-09T18:45:11.0442168+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:45:33.1952418+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:45:33.2937605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.69, 13.107.246.73] + +2025-03-09T18:45:37.3904588+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:45:37.6155531+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.52, 13.107.246.73] + +2025-03-09T18:45:39.6189317+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:45:39.7312590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.164, 52.110.8.135, 52.110.8.128] + +2025-03-09T18:45:42.9580251+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.0] + +2025-03-09T18:45:49.2260079+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:45:49.6640536+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 40.90.133.102] + +2025-03-09T18:46:11.4773897+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:46:13.8327817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.133, 23.48.149.59, 104.90.7.41] + +2025-03-09T18:46:14.9337542+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:46:18.2298713+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.55.179.135, 23.55.179.151, 23.41.4.201] + +2025-03-09T18:46:39.9487640+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:46:45.1329434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.161, 20.190.148.163] + +2025-03-09T18:46:46.1339810+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:46:49.5789224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.148.162, 20.190.144.137] + +2025-03-09T18:47:05.9359130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-09T18:47:07.4721264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-03-09T18:47:12.8869280+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-03-09T18:47:13.2307864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-03-09T18:47:14.0657542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.112.10] + +2025-03-09T18:47:14.4666531+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-03-09T18:47:15.1097082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-03-09T18:47:16.0154198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.113.5] + +2025-03-09T18:47:17.0311979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.241.44.114] + +2025-03-09T18:47:27.1756507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.3] + +2025-03-09T18:47:29.3735300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.0.136, 52.109.8.88, 52.109.89.117] + +2025-03-09T18:47:29.6570610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.73, 13.107.246.74] + +2025-03-09T18:47:30.4412285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.45] + +2025-03-09T18:47:31.4866747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.8.36] + +2025-03-09T18:47:32.3426295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.38, 13.107.246.35, 13.107.246.73] + +2025-03-09T18:47:52.1324304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 20.143.38.0] + +2025-03-09T18:47:53.9676067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.148.165, 40.126.35.81] + +2025-03-09T18:47:56.2117709+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:48:02.4211875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.52, 13.107.246.73, 13.107.246.74] + +2025-03-09T18:48:02.8302568+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.3] + +2025-03-09T18:48:03.4824615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.77, 13.107.246.73] + +2025-03-09T18:48:05.3579743+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:48:05.4530373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.124.13] + +2025-03-09T18:48:19.1533229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-03-09T18:48:19.1557545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.73, 13.107.246.66] + +2025-03-09T18:48:20.9410986+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-03-09T18:48:30.6431363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150] + +2025-03-09T18:48:44.2126329+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.38, 13.107.246.73, 13.107.246.74] + +2025-03-09T18:48:44.2137891+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.0, 52.109.44.108] + +2025-03-09T18:48:56.4105078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.114.25] + +2025-03-09T18:48:59.6278291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.55.179.135, 23.55.179.151, 23.220.206.65] + +2025-03-09T18:49:19.2407965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 20.233.83.150] + +2025-03-09T18:49:20.3562447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.52, 13.107.246.35, 13.107.246.73] + +2025-03-09T18:49:22.5344658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.22.207.36] + +2025-03-09T18:49:25.0851477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.8.88] + +2025-03-09T18:49:26.5606475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 40.90.133.102] + +2025-03-09T18:49:32.9469458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.38, 13.107.246.73, 13.107.246.63] + +2025-03-09T18:49:35.2988263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.44] + +2025-03-09T18:49:35.5890736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-03-09T18:49:44.5350510+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-09T18:49:46.8987991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.74] + +2025-03-09T18:49:50.4063584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 20.143.38.0] + +2025-03-09T18:49:53.8979397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.19, 23.208.31.133, 23.208.31.18] + +2025-03-09T18:50:00.8964736+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +g.live.com->127.0.0.1 + +2025-03-09T18:50:04.2530426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.25, 140.82.113.26] + +2025-03-09T18:50:04.7059553+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/odclientsettings/ProdV2 responded 302 in 3473.8897 ms + +2025-03-09T18:50:05.8066924+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/odclientsettings/ProdV2 responded 302 in 115.2392 ms + +2025-03-09T18:50:07.0196340+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/1rewlive5skydrive/ODSUProductionV2 responded 302 in 114.6177 ms + +2025-03-09T18:50:07.3359197+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/1rewlive5skydrive/ODSUProductionV2 responded 302 in 118.3775 ms + +2025-03-09T18:50:09.1520712+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-09T18:50:09.7665380+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 593.5094 ms + +2025-03-09T18:50:16.8328965+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/odclientsettings/ProdV2 responded 302 in 2784.7156 ms + +2025-03-09T18:50:17.1797195+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/odclientsettings/ProdV2 responded 302 in 117.8378 ms + +2025-03-09T18:50:18.6576250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.74] + +2025-03-09T18:50:27.3617587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.121.6] + +2025-03-09T18:50:27.6434254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-03-09T18:50:27.6465859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 13.107.246.74, 13.107.253.45] + +2025-03-09T18:50:27.6488949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-03-09T18:50:27.9565258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.77, 13.107.246.74] + +2025-03-09T18:50:27.9587890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.19, 23.208.31.18, 23.48.149.59] + +2025-03-09T18:50:27.9605022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.81, 40.126.35.145, 40.126.35.85] + +2025-03-09T18:50:33.1844905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.71, 13.107.246.73, 13.107.246.66] + +2025-03-09T18:50:37.4870467+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:50:44.8293294+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:51:05.8696472+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:51:27.1560068+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:51:27.8809325+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:51:29.0954652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12] + +2025-03-09T18:51:50.5900513+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:52:01.1504385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.113.5] + +2025-03-09T18:52:01.8870146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.8.36] + +2025-03-09T18:52:03.6295895+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:52:05.4252617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.8.88] + +2025-03-09T18:52:06.0880606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 13.107.246.77, 13.107.246.38] + +2025-03-09T18:52:07.5452170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.51] + +2025-03-09T18:52:08.2171806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.77, 13.107.246.38, 13.107.246.63] + +2025-03-09T18:52:13.4073089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.66, 13.107.246.71, 13.107.246.74] + +2025-03-09T18:52:15.4490441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 20.135.6.9] + +2025-03-09T18:52:17.4678688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.55.179.135, 23.55.179.151, 23.64.12.162] + +2025-03-09T18:52:23.0633781+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.19, 23.208.31.18, 23.48.149.23] + +2025-03-09T18:52:23.7633985+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.86, 40.126.35.144, 40.126.35.18] + +2025-03-09T18:52:24.4526227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.164, 20.190.144.139] + +2025-03-09T18:52:50.0951180+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:52:50.2358392+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-09T18:53:03.5634862+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:53:03.5652872+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-09T18:53:04.9382257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-09T18:53:19.2838765+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/odclientsettings/ProdV2 responded 302 in 473.7065 ms + +2025-03-09T18:53:20.3241042+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/odclientsettings/ProdV2 responded 302 in 116.3933 ms + +2025-03-09T18:53:26.2632005+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:53:26.4298351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-09T18:53:29.7863732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-09T18:53:31.6297433+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:53:33.6008690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-03-09T18:53:34.2487735+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:53:34.4831422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-03-09T18:53:55.8028394+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:54:17.5465547+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:54:17.8323635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 13.74.129.92] + +2025-03-09T18:54:21.9877782+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:54:25.7648678+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:54:26.1862905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.112.26] + +2025-03-09T18:54:48.0004977+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:54:48.4405901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.89.117] + +2025-03-09T18:54:49.1790610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.74, 13.107.246.77] + +2025-03-09T18:54:56.4355011+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:55:18.5784121+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:55:18.9803808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-03-09T18:55:40.6910546+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-09T18:55:40.9648042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.246.77] + +2025-03-09T18:55:43.7432963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.67, 13.107.246.74, 13.107.246.44] + +2025-03-09T18:55:44.9553308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.52.0] + +2025-03-09T18:55:46.1751094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-09T18:55:48.9773846+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.19, 23.48.149.23, 23.208.31.18] + +2025-03-09T18:56:10.3389961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.121.6] + +2025-03-09T18:56:12.5880817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.35, 13.107.246.73] + +2025-03-09T18:56:18.7485119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.194, 23.208.31.19, 23.208.31.133] + +2025-03-09T18:56:19.3307990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.189, 23.208.31.169, 23.55.179.135] + +2025-03-09T18:56:35.9413486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-09T18:56:46.6625756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.163, 20.190.144.160, 20.190.148.163] + +2025-03-09T18:56:49.7439252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.46, 13.107.246.74] + +2025-03-09T18:57:08.5954475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.35] + +2025-03-09T18:57:08.6631080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.74] + +2025-03-09T18:57:08.6663314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.74] + +2025-03-09T18:57:08.6687670+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.74] + +2025-03-09T18:57:18.4318295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.189, 23.208.31.169, 23.55.179.151] + +2025-03-09T18:57:30.6521146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.144.160, 20.190.144.163] + +2025-03-09T18:57:30.9092268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.144.164, 20.190.144.136] + +2025-03-09T18:57:48.4405651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.1, 20.143.38.0] + +2025-03-09T18:57:51.4853108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T18:57:51.4873803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T18:57:51.4891032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T18:57:51.4908119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-09T18:57:52.9364043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 20.190.141.36, 20.190.141.33] + +2025-03-09T18:57:56.4904751+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T18:58:17.7048326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.3] + +2025-03-09T18:58:21.6680993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.112.5] + +2025-03-09T18:58:30.5213952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.1, 20.135.6.9] + +2025-03-09T18:58:39.2567492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-03-09T18:59:01.8534104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.161, 20.190.144.164] + +2025-03-09T18:59:13.6224708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92, 20.22.207.36] + +2025-03-09T18:59:13.6252689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.113.5] + +2025-03-09T18:59:13.6275195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.9] + +2025-03-09T18:59:21.9226732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-09T18:59:23.0551565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-03-09T18:59:26.6623159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.112.26] + +2025-03-09T18:59:30.9241434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.57] + +2025-03-09T18:59:49.2895911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.35, 13.107.246.74] + +2025-03-09T18:59:49.5535439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.57, 13.107.246.74] + +2025-03-09T18:59:50.1911042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.77] + +2025-03-09T18:59:50.1927805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.71] + +2025-03-09T18:59:50.2556219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.66, 13.107.246.38] + +2025-03-09T18:59:56.9652601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.57, 13.107.246.36] + +2025-03-09T19:00:19.5883692+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.21] + +2025-03-09T19:00:24.9255374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-09T19:00:25.9349709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.35, 13.107.246.36] + +2025-03-09T19:00:33.6317938+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.56.130] + +2025-03-09T19:00:33.9260335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.9, 20.135.6.7] + +2025-03-09T19:00:35.8083310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.114.9] + +2025-03-09T19:00:36.4273021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.0.138] + +2025-03-09T19:00:36.4287920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.36, 13.107.246.74] + +2025-03-09T19:00:36.7583701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.74] + +2025-03-09T19:00:37.3597235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.194, 23.208.31.133, 23.48.149.23] + +2025-03-09T19:00:41.9884125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.77, 13.107.246.74] + +2025-03-09T19:00:41.9892789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.41] + +2025-03-09T19:00:59.8284246+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-09T19:00:59.9072894+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T19:00:59.9113425+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-03-09T19:01:00.4942011+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 620.4675 ms + +2025-03-09T19:01:00.5093383+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T19:01:00.5142722+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 640.5378 ms + +2025-03-09T19:01:00.8222639+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 655.1407 ms + +2025-03-09T19:01:00.8312841+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-09T19:01:01.4664201+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 273.5755 ms + diff --git a/logs/log20250316.txt b/logs/log20250316.txt new file mode 100644 index 0000000..6e83ff2 --- /dev/null +++ b/logs/log20250316.txt @@ -0,0 +1,20762 @@ +2025-03-16T11:58:38.0467781+08:00 [INF] +FastGithub.HttpServer +已监听https://localhost:443,https反向代理服务启动完成 + +2025-03-16T11:58:38.1079467+08:00 [INF] +FastGithub.HttpServer +已监听http://localhost:81,http反向代理服务启动完成 + +2025-03-16T11:58:38.1094098+08:00 [INF] +FastGithub.HttpServer +已监听ssh://localhost:22,github的ssh反向代理服务启动完成 + +2025-03-16T11:58:38.1103234+08:00 [INF] +FastGithub.HttpServer +已监听git://localhost:9418,github的git反向代理服务启动完成 + +2025-03-16T11:58:38.1531310+08:00 [INF] +FastGithub.AppHostedService +FastGithub启动完成,当前版本为v2.1.4,访问 https://github.com/dotnetcore/fastgithub 关注新版本 + +2025-03-16T11:58:38.2020079+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +127.0.0.1:80 <=> 127.0.0.1:81 + +2025-03-16T11:58:38.2053409+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +::1:80 <=> ::1:81 + +2025-03-16T11:58:46.9181247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21] + +2025-03-16T11:58:47.9621323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::60, 2620:1ec:bdf::74] + +2025-03-16T11:58:49.4510714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:1a::17dc:440c, 2600:140b:1a00:1a::17dc:4416, 23.46.63.120] + +2025-03-16T11:58:49.7404681+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T11:58:49.7433167+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T11:58:49.7441444+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T11:58:49.7450806+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T11:58:49.7460017+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->::1 + +2025-03-16T11:58:49.7478854+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-03-16T11:58:50.5429507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T11:58:52.7308525+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->::1 + +2025-03-16T11:58:52.7331637+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->127.0.0.1 + +2025-03-16T11:58:52.8515046+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->::1 + +2025-03-16T11:58:52.8564708+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->127.0.0.1 + +2025-03-16T11:58:52.8824024+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +user-images.githubusercontent.com->::1 + +2025-03-16T11:58:52.8842175+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +user-images.githubusercontent.com->127.0.0.1 + +2025-03-16T11:58:52.9813711+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/ responded 200 in 2871.6858 ms + +2025-03-16T11:58:54.0729148+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_arianotify-polyfill_ariaNotify-polyfill_js-node_modules_github_mi-3abb8f-46b9f4874d95.js responded 200 in 1148.9606 ms + +2025-03-16T11:58:54.0729190+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_failbot_failbot_ts-857611aed7fe.js responded 200 in 1148.9602 ms + +2025-03-16T11:58:54.1095111+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_quote-selection_dist_index_js-node_modules_github_session-resume_-69cfcc-b9c76c3f220a.js responded 200 in 1181.8205 ms + +2025-03-16T11:58:54.1378186+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es__baseIsEqual_js-8929eb9718d5.js responded 200 in 1209.2648 ms + +2025-03-16T11:58:54.1639381+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es_pickBy_js-733b80864e6e.js responded 200 in 1234.9362 ms + +2025-03-16T11:58:54.1785462+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/discussions-dae9ae1a46a6.css responded 200 in 1241.8916 ms + +2025-03-16T11:58:54.2057023+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/github-elements-394f8eb34f19.js responded 200 in 1278.4176 ms + +2025-03-16T11:58:54.3335943+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-react.f39592f6c3e940effb40.module.css responded 200 in 1396.9876 ms + +2025-03-16T11:58:54.4350549+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-7d4d2344e7ab.css responded 200 in 1498.4644 ms + +2025-03-16T11:58:54.4710586+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/mona-loading-dark-static-8b35171e5d6c.svg responded 200 in 1476.2556 ms + +2025-03-16T11:58:54.4969866+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/github-d92840ce6f97.css responded 200 in 1560.3308 ms + +2025-03-16T11:58:54.5947244+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-core-88273863451e.js responded 200 in 1665.1161 ms + +2025-03-16T11:58:54.7183929+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/wp-runtime-4fa8ae1b4434.js responded 200 in 1805.5332 ms + +2025-03-16T11:58:54.7990137+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dashboard-0de2bd46c6d8.css responded 200 in 1862.3819 ms + +2025-03-16T11:58:54.9117362+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_stacktrace-parser_dist_s-e7dcdd-9a233856b02c.js responded 200 in 1980.9058 ms + +2025-03-16T11:58:54.9137576+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/mona-loading-dark-7701a7b97370.gif responded 200 in 1918.8686 ms + +2025-03-16T11:58:55.0310174+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dashboard-649f1bb7c362.js responded 200 in 2101.6912 ms + +2025-03-16T11:58:55.0661582+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_dashboard_loading-context-element_ts-05c9973fa5db.js responded 200 in 124.4037 ms + +2025-03-16T11:58:55.1585729+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-chat.f9a5ca0713c6c1644375.module.css responded 200 in 136.1111 ms + +2025-03-16T11:58:55.1734418+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-markdown_MarkdownRenderer_tsx-8718f67a1876.js responded 200 in 148.6175 ms + +2025-03-16T11:58:55.2254037+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_utils_CopilotChatContext_tsx-5e1eb20c77ee.js responded 200 in 200.6471 ms + +2025-03-16T11:58:55.2373582+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-node_modules_github_mini-throttle_dist_decorators_js-ui_packages_copilot-dashboard-entrypoint-7c7052-b375572ca49f.js responded 200 in 275.6896 ms + +2025-03-16T11:58:55.2928813+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_paths_index_ts-9300589383c3.js responded 200 in 341.4507 ms + +2025-03-16T11:58:55.3123510+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-copilot-menu-5830eb549945.js responded 200 in 285.3445 ms + +2025-03-16T11:58:55.3123567+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_hooks_use-chat-message-behavior_ts-ui_packages_copilot-chat_hooks_us-28667e.b7503bb87af8a886ab9f.module.css responded 200 in 292.9349 ms + +2025-03-16T11:58:55.3523223+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_combobox-nav_dist_index_js-node_modules_github_hotkey_dist_index_-cabcbb-60e8c939a1bd.js responded 200 in 328.6862 ms + +2025-03-16T11:58:55.4583983+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/ajax_context_list responded 200 in 486.1252 ms + +2025-03-16T11:58:55.4765090+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-react-c193b47d6fcb.js responded 200 in 2546.8765 ms + +2025-03-16T11:58:55.6177179+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_components_ChatInput_tsx-ui_packages_copilot-chat_components_Copilot-994011-7ff2932d1879.js responded 200 in 592.8844 ms + +2025-03-16T11:58:55.7239546+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_utils_copilot-local-storage_ts-ui_packages_hydro-analytics_hydro-ana-74ad7c-78b21ca1dba3.js responded 200 in 762.2435 ms + +2025-03-16T11:58:55.7807335+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_promise-with-resolvers-polyfill_promise-with-resolvers-polyfill_ts-ui_packages_re-8d43b0-670dc071b9c2.js responded 200 in 750.7753 ms + +2025-03-16T11:58:55.8843902+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es__Stack_js-node_modules_lodash-es__Uint8Array_js-node_modules_l-4faaa6-4a736fde5c2f.js responded 200 in 2955.9968 ms + +2025-03-16T11:58:55.9482514+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/my_top_repositories responded 200 in 975.8153 ms + +2025-03-16T11:58:56.0998386+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/behaviors-a97e5b1fe5e3.js responded 200 in 3171.5678 ms + +2025-03-16T11:58:56.1417796+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/my_top_repositories responded 200 in 1168.5699 ms + +2025-03-16T11:58:56.1473288+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/ajax_context_list responded 200 in 1175.0603 ms + +2025-03-16T11:58:56.1478687+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/recent-activity responded 200 in 1175.4771 ms + +2025-03-16T11:58:56.1555913+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/recent-activity responded 200 in 1181.8108 ms + +2025-03-16T11:58:56.2005424+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-03-16T11:58:56.2025562+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-03-16T11:58:56.2162604+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/changelog responded 200 in 1242.0067 ms + +2025-03-16T11:58:56.2240575+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 1223.4215 ms + +2025-03-16T11:58:56.4009133+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_components_Chat_tsx-0fc97206a7fc.js responded 200 in 1374.7643 ms + +2025-03-16T11:58:56.4722232+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 200 in 1406.3231 ms + +2025-03-16T11:58:56.5815707+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_hast-util-find-and-replace_lib_index_js-node_modules_hastscript_lib_inde-693930-ffb763a35ddf.js responded 200 in 1558.2087 ms + +2025-03-16T11:58:56.6316320+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-chat-72166d357d85.js responded 200 in 1605.4497 ms + +2025-03-16T11:58:57.2930189+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/conduit/for_you_feed responded 200 in 2319.1285 ms + +2025-03-16T11:58:57.3386125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T11:58:57.5501449+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_delegated-events_dist_in-e6ca0f-25403ad4a85e.js responded 200 in 4621.1371 ms + +2025-03-16T11:58:57.5543605+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_reactions_reactions-menu-element_ts-ec54f775ebd2.js responded 200 in 161.6445 ms + +2025-03-16T11:58:58.0793241+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 2101.2518 ms + +2025-03-16T11:58:58.0793242+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/28056850 responded 200 in 5084.2118 ms + +2025-03-16T11:58:58.0820093+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/158137808 responded 200 in 5087.1725 ms + +2025-03-16T11:58:58.0861005+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/195061 responded 200 in 713.4044 ms + +2025-03-16T11:58:58.0958962+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/57199 responded 200 in 721.2337 ms + +2025-03-16T11:58:58.0968108+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/13550529 responded 200 in 723.7199 ms + +2025-03-16T11:58:58.1018417+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/25068 responded 200 in 727.2321 ms + +2025-03-16T11:58:58.1258441+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/3455675 responded 200 in 750.6644 ms + +2025-03-16T11:58:58.1848793+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/42201 responded 200 in 806.4356 ms + +2025-03-16T11:58:58.1987730+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/10594555 responded 200 in 816.7133 ms + +2025-03-16T11:58:58.1996755+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/11029687 responded 200 in 817.6109 ms + +2025-03-16T11:58:58.2108956+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/13776314 responded 200 in 828.5638 ms + +2025-03-16T11:58:58.2230026+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/4221191 responded 200 in 839.9947 ms + +2025-03-16T11:58:58.2230028+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/25507 responded 200 in 840.1998 ms + +2025-03-16T11:58:58.2298699+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/5741620 responded 200 in 846.2794 ms + +2025-03-16T11:58:58.2392939+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/104239 responded 200 in 858.5212 ms + +2025-03-16T11:58:58.2594064+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 5299.6904 ms + +2025-03-16T11:58:58.3574209+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/41712985 responded 200 in 969.4197 ms + +2025-03-16T11:58:58.4251805+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/33129495 responded 200 in 1049.9673 ms + +2025-03-16T11:58:58.5485775+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/13610128 responded 200 in 5588.875 ms + +2025-03-16T11:58:58.5983760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.102, 40.90.130.197, 13.104.208.160] + +2025-03-16T11:58:58.7758511+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 304 in 5814.7286 ms + +2025-03-16T11:58:59.1629222+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/22787138 responded 200 in 1780.4719 ms + +2025-03-16T11:58:59.2098041+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/151674099 responded 200 in 1837.6197 ms + +2025-03-16T11:58:59.2370208+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/33147431 responded 200 in 1860.0931 ms + +2025-03-16T11:58:59.3540263+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/22218312 responded 200 in 1971.3667 ms + +2025-03-16T11:58:59.5766515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T11:58:59.8272164+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/20921671 responded 200 in 2443.4575 ms + +2025-03-16T11:59:00.6017369+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/26290929 responded 200 in 3213.8934 ms + +2025-03-16T11:59:00.8951947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.52.2, 52.109.56.126] + +2025-03-16T11:59:01.6178944+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_github_catalyst_lib_index_-280e4f-f7d6cfa05e86.js responded 200 in 8689.2409 ms + +2025-03-16T11:59:01.8828224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T11:59:02.8651582+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/conduit/filter responded 200 in 1150.5171 ms + +2025-03-16T11:59:03.2068410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 40.126.35.129, 20.190.148.162] + +2025-03-16T11:59:03.9363352+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/193483667 responded 200 in 8464.741 ms + +2025-03-16T11:59:04.0530564+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 7615.798 ms + +2025-03-16T11:59:04.5130214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-03-16T11:59:05.5107517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 13.107.246.44, 2620:1ec:bdf::74] + +2025-03-16T11:59:06.6793160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T11:59:07.2261667+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T11:59:12.0820465+08:00 [INF] +FastGithub.AppHostedService +正在主动关闭,因为父进程已退出 + +2025-03-16T11:59:12.4395125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T11:59:13.0977615+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 11485.3253 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T11:59:13.1020037+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_highlight_js_es_core_js-node_modules_lowlight_lib_all_js-be89bc04c72d.js responded 200 in 18078.5681 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T11:59:13.1019631+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_hooks_use-chat-message-behavior_ts-ui_packages_copilot-chat_hooks_us-28667e-2a6793bb80ae.js responded 200 in 18075.7734 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T11:59:13.1411386+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-03-16T11:59:13.1440486+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-03-16T11:59:13.1576829+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-03-16T11:59:24.2418465+08:00 [INF] +FastGithub.HttpServer +已监听https://localhost:443,https反向代理服务启动完成 + +2025-03-16T11:59:24.3196249+08:00 [INF] +FastGithub.HttpServer +已监听http://localhost:81,http反向代理服务启动完成 + +2025-03-16T11:59:24.3218349+08:00 [INF] +FastGithub.HttpServer +已监听ssh://localhost:22,github的ssh反向代理服务启动完成 + +2025-03-16T11:59:24.3235997+08:00 [INF] +FastGithub.HttpServer +已监听git://localhost:9418,github的git反向代理服务启动完成 + +2025-03-16T11:59:24.3654590+08:00 [INF] +FastGithub.AppHostedService +FastGithub启动完成,当前版本为v2.1.4,访问 https://github.com/dotnetcore/fastgithub 关注新版本 + +2025-03-16T11:59:24.4291027+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +127.0.0.1:80 <=> 127.0.0.1:81 + +2025-03-16T11:59:24.4326487+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +::1:80 <=> ::1:81 + +2025-03-16T11:59:26.2032317+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T11:59:26.2085860+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T11:59:27.3733820+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/ responded 502 in 779.0209 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-16T11:59:27.7702249+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T11:59:27.7718714+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T11:59:36.7536970+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/ responded 200 in 8975.6127 ms + +2025-03-16T11:59:36.8032227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.112.22] + +2025-03-16T11:59:37.8287098+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/ajax_context_list responded 200 in 792.5428 ms + +2025-03-16T11:59:37.8306578+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/conduit/filter responded 200 in 789.578 ms + +2025-03-16T11:59:37.8403315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T11:59:37.8405049+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/ajax_context_list responded 200 in 800.7803 ms + +2025-03-16T11:59:37.8413418+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/my_top_repositories responded 304 in 800.9687 ms + +2025-03-16T11:59:37.8523141+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/recent-activity responded 200 in 811.893 ms + +2025-03-16T11:59:37.8590127+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/recent-activity responded 200 in 818.6184 ms + +2025-03-16T11:59:37.8642465+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/my_top_repositories responded 304 in 823.8902 ms + +2025-03-16T11:59:37.8646045+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/13995641 responded 200 in 1126.3608 ms + +2025-03-16T11:59:38.1805027+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/10698970 responded 200 in 1419.7942 ms + +2025-03-16T11:59:38.5930663+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/changelog responded 200 in 333.8883 ms + +2025-03-16T11:59:38.6645901+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 344.7468 ms + +2025-03-16T11:59:38.7386729+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 304 in 374.7965 ms + +2025-03-16T11:59:38.9657439+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/conduit/for_you_feed responded 200 in 1924.6496 ms + +2025-03-16T11:59:39.4240374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T11:59:41.1466442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +clientnotification-userprodscus1-1.servicebus.windows.net:443->[40.84.185.67] + +2025-03-16T11:59:41.6284319+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-03-16T11:59:41.6297533+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-03-16T11:59:42.3115719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T11:59:44.0629577+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 2101.0323 ms + +2025-03-16T11:59:44.0648950+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 2104.7858 ms + +2025-03-16T11:59:47.8007877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 185.199.110.133] + +2025-03-16T11:59:53.5152576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216] + +2025-03-16T11:59:59.3238988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.102, 40.90.136.179, 20.135.4.173] + +2025-03-16T12:00:00.3818819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.54, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T12:00:01.0735458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3] + +2025-03-16T12:00:02.6712688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-03-16T12:00:03.9305892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.148.166, 20.190.144.137] + +2025-03-16T12:00:05.0591605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6] + +2025-03-16T12:00:05.8220943+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_highlight_js_es_core_js-node_modules_lowlight_lib_all_js-be89bc04c72d.js responded 200 in 27502.2112 ms + +2025-03-16T12:00:06.3129913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T12:00:07.2308917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T12:00:12.1890889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 185.199.110.133] + +2025-03-16T12:00:13.1322486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::54] + +2025-03-16T12:00:13.9311944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:00:15.4565788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.54, 2620:1ec:bdf::60, 2620:1ec:bdf::74] + +2025-03-16T12:00:16.7168741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.89.117] + +2025-03-16T12:00:17.9135294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[184.27.185.91, 184.27.185.71, 2600:1406:4e00:14::1738:6de4] + +2025-03-16T12:00:19.0486957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.162, 40.126.35.87] + +2025-03-16T12:00:20.1645899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:00:21.1275371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 13.107.246.53] + +2025-03-16T12:00:21.9940695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.46.63.113, 2600:1406:bc00:11::b81c:4e93, 23.46.63.99] + +2025-03-16T12:00:22.4441033+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:00:25.6709811+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_hooks_use-chat-message-behavior_ts-ui_packages_copilot-chat_hooks_us-28667e-2a6793bb80ae.js responded 200 in 47348.483 ms + +2025-03-16T12:00:26.2147424+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/favicons/favicon-dark.svg responded 200 in 432.6645 ms + +2025-03-16T12:00:26.3277166+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/favicons/favicon-dark.png responded 200 in 107.9874 ms + +2025-03-16T12:00:26.7131046+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 651.8081 ms + +2025-03-16T12:00:26.7263214+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 663.5999 ms + +2025-03-16T12:00:27.8982147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T12:00:33.2042325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T12:00:34.4923804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.52.2, 52.109.56.126] + +2025-03-16T12:00:35.8160513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.25.14] + +2025-03-16T12:00:35.8407799+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_blackbird-parser_dist_blackbird_js-df077101f752.js responded 200 in 126.5443 ms + +2025-03-16T12:00:35.9557951+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_search_parsing_parsing_ts-839affb0d8fa.js responded 200 in 241.5726 ms + +2025-03-16T12:00:36.1659304+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 444.233 ms + +2025-03-16T12:00:36.1726344+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 458.4333 ms + +2025-03-16T12:00:36.3178712+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 610.983 ms + +2025-03-16T12:00:36.6650660+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 200 in 589.0596 ms + +2025-03-16T12:00:36.8279025+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_graphql/GetSuggestedNavigationDestinations responded 200 in 751.0306 ms + +2025-03-16T12:00:37.0289570+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 363.0408 ms + +2025-03-16T12:00:37.7243316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 2603:1046:1400::4, 52.109.112.174] + +2025-03-16T12:00:37.9483160+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 360.5911 ms + +2025-03-16T12:00:38.1726260+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 367.6503 ms + +2025-03-16T12:00:38.4335120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.25, 140.82.112.25] + +2025-03-16T12:00:38.5238794+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 507.7759 ms + +2025-03-16T12:00:38.5584585+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 374.6395 ms + +2025-03-16T12:00:39.3908460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::54] + +2025-03-16T12:00:39.8652428+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 373.2203 ms + +2025-03-16T12:00:40.0498677+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 370.2952 ms + +2025-03-16T12:00:40.2392611+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 391.6908 ms + +2025-03-16T12:00:40.6410222+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 513.7515 ms + +2025-03-16T12:00:40.6650406+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 387.569 ms + +2025-03-16T12:00:41.5144699+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 659.2661 ms + +2025-03-16T12:00:41.8176811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-03-16T12:00:41.8211763+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search responded 200 in 995.8436 ms + +2025-03-16T12:00:41.8503287+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T12:00:41.8534827+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T12:00:41.8549258+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T12:00:41.8562394+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T12:00:42.5781145+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search responded 200 in 689.782 ms + +2025-03-16T12:00:42.7529465+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 65088.8008 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T12:00:42.8770277+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_hydro-analytics-client_dist_analytics-client_js-node_modules_gith-c53b2c-493d06fd51d4.js responded 200 in 112.6693 ms + +2025-03-16T12:00:42.8944217+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/search-b6f5d6b16d8d.js responded 200 in 130.4646 ms + +2025-03-16T12:00:42.9928153+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/images/modules/search/mona-love-2x.png responded 200 in 345.094 ms + +2025-03-16T12:00:43.0323584+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_aria-live_aria-live_ts-ui_packages_promise-with-resolvers-polyfill_promise-with-r-17c672-34345cb18aac.js responded 200 in 267.9901 ms + +2025-03-16T12:00:43.1337427+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_signed-commit-badge_index_ts-ui_packages_use-navigate_use-navigate_ts-7d3b385f92f0.js responded 200 in 369.3469 ms + +2025-03-16T12:00:43.1383680+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/shiftwinting.png responded 302 in 373.3937 ms + +2025-03-16T12:00:43.2457861+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/blackbird-search.f5bcf52d1d4605d78b63.module.css responded 200 in 479.177 ms + +2025-03-16T12:00:43.3497451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.113.22] + +2025-03-16T12:00:43.3569631+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/you-z01.png responded 302 in 591.4815 ms + +2025-03-16T12:00:43.3585525+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/ylong52.png responded 302 in 592.3019 ms + +2025-03-16T12:00:43.3638251+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/RC1844.png responded 302 in 598.4642 ms + +2025-03-16T12:00:43.3638221+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/creazyboyone.png responded 302 in 597.5487 ms + +2025-03-16T12:00:43.3681636+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/docmirror.png responded 302 in 601.8494 ms + +2025-03-16T12:00:43.4364347+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/CoolPlayLin.png responded 302 in 670.1211 ms + +2025-03-16T12:00:43.4365865+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dlyjb.png responded 302 in 670.2703 ms + +2025-03-16T12:00:43.5021340+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/2289182718.png responded 302 in 735.5206 ms + +2025-03-16T12:00:43.5604512+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/mcq2473906672.png responded 302 in 794.0599 ms + +2025-03-16T12:00:43.5986575+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/26946961 responded 200 in 454.7148 ms + +2025-03-16T12:00:43.6001931+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/blackbird-search-e537b0c2cfe1.js responded 200 in 835.6303 ms + +2025-03-16T12:00:43.7061725+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/1523014 responded 200 in 341.887 ms + +2025-03-16T12:00:43.8250868+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/108441578 responded 200 in 379.9193 ms + +2025-03-16T12:00:43.9386113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.49, 40.90.133.102, 40.90.136.179] + +2025-03-16T12:00:43.9942743+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/110273449 responded 200 in 487.5217 ms + +2025-03-16T12:00:44.0121076+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/87042256 responded 200 in 443.7657 ms + +2025-03-16T12:00:44.0401711+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/search-2a3fe1ce5c41.css responded 200 in 1273.5804 ms + +2025-03-16T12:00:44.1207200+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/23612645 responded 200 in 741.7814 ms + +2025-03-16T12:00:44.1207601+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/70885697 responded 200 in 740.8389 ms + +2025-03-16T12:00:44.2056746+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/14369275 responded 200 in 827.6532 ms + +2025-03-16T12:00:44.6600793+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 373.6675 ms + +2025-03-16T12:00:44.7855592+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 304 in 391.7057 ms + +2025-03-16T12:00:44.8947072+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 304 in 372.2361 ms + +2025-03-16T12:00:44.9359891+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 413.4532 ms + +2025-03-16T12:00:44.9689538+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/96709586 responded 200 in 1524.9922 ms + +2025-03-16T12:00:45.2812567+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 304 in 373.1131 ms + +2025-03-16T12:00:45.3028045+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 362.9337 ms + +2025-03-16T12:00:45.6234940+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/111741174 responded 200 in 2260.6231 ms + +2025-03-16T12:00:46.9114436+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 2603:1046:1400::4] + +2025-03-16T12:00:47.3649410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[184.27.185.91, 184.27.185.71, 2.20.245.141] + +2025-03-16T12:00:49.0234887+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_document-metadata_document-metadata_ts-ui_packages_use-analytics_use-analytics_ts-364e80-5215461eca2a.js responded 200 in 6258.8884 ms + +2025-03-16T12:00:49.6948166+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 372.563 ms + +2025-03-16T12:00:49.7313936+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 409.4848 ms + +2025-03-16T12:00:49.7346089+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 412.2208 ms + +2025-03-16T12:00:49.7424723+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 422.4519 ms + +2025-03-16T12:00:49.7521068+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 429.9776 ms + +2025-03-16T12:00:49.7578364+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 436.4262 ms + +2025-03-16T12:00:49.7578365+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 435.7336 ms + +2025-03-16T12:00:49.7653764+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 439.549 ms + +2025-03-16T12:00:49.7653994+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 443.2652 ms + +2025-03-16T12:00:49.8914722+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 571.5873 ms + +2025-03-16T12:00:49.9005230+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/sponsors/batch_deferred_sponsor_buttons responded 200 in 581.194 ms + +2025-03-16T12:00:50.0949306+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/blackbird_count responded 200 in 775.156 ms + +2025-03-16T12:00:50.2020487+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 616.8291 ms + +2025-03-16T12:00:50.2616637+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 627.8763 ms + +2025-03-16T12:00:50.3150377+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/RC1844/FastGithub/funding_links responded 200 in 384.4443 ms + +2025-03-16T12:00:50.4829885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-03-16T12:00:54.7417061+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 446.0188 ms + +2025-03-16T12:00:54.7417029+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 437.1968 ms + +2025-03-16T12:00:54.8757893+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_graphql/GetSuggestedNavigationDestinations responded 200 in 464.7344 ms + +2025-03-16T12:00:55.6625420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T12:00:56.1669073+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 440.7209 ms + +2025-03-16T12:00:56.5100749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 52.109.56.130] + +2025-03-16T12:00:58.7777333+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 346.5181 ms + +2025-03-16T12:00:59.0432957+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 374.2518 ms + +2025-03-16T12:00:59.2542426+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 335.5655 ms + +2025-03-16T12:00:59.8330574+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 343.3335 ms + +2025-03-16T12:01:00.2739137+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 353.1606 ms + +2025-03-16T12:01:00.7350802+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 357.7777 ms + +2025-03-16T12:01:01.0342791+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 416.6589 ms + +2025-03-16T12:01:01.9499018+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search responded 200 in 509.0369 ms + +2025-03-16T12:01:02.3147291+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 781.9209 ms + +2025-03-16T12:01:02.3219868+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 1088.1936 ms + +2025-03-16T12:01:02.3578678+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 228.3884 ms + +2025-03-16T12:01:02.4757398+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 377.0654 ms + +2025-03-16T12:01:02.4822633+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 385.4798 ms + +2025-03-16T12:01:02.5165270+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 418.9189 ms + +2025-03-16T12:01:02.5196688+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 422.0871 ms + +2025-03-16T12:01:02.5288648+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 431.9799 ms + +2025-03-16T12:01:02.5315365+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 431.5242 ms + +2025-03-16T12:01:02.5365963+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 436.7036 ms + +2025-03-16T12:01:02.5411076+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 366.5514 ms + +2025-03-16T12:01:02.5499970+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 453.1312 ms + +2025-03-16T12:01:02.6636129+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/blackbird_count responded 200 in 566.8918 ms + +2025-03-16T12:01:02.7069555+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai.png responded 302 in 603.9964 ms + +2025-03-16T12:01:02.7077387+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/huggingface.png responded 302 in 604.7964 ms + +2025-03-16T12:01:02.7119312+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/Jiayi-Pan.png responded 302 in 608.9359 ms + +2025-03-16T12:01:02.8305989+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 220.8713 ms + +2025-03-16T12:01:02.8341947+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/55055083 responded 200 in 115.1857 ms + +2025-03-16T12:01:02.8383311+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 216.8386 ms + +2025-03-16T12:01:02.8430626+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 304 in 519.4868 ms + +2025-03-16T12:01:02.8453741+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/LLM-Red-Team.png responded 302 in 742.3716 ms + +2025-03-16T12:01:02.8579446+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/148330874 responded 200 in 144.2656 ms + +2025-03-16T12:01:02.9648265+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/162786303 responded 200 in 112.6832 ms + +2025-03-16T12:01:02.9693407+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 872.053 ms + +2025-03-16T12:01:03.0144225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.54, 13.107.246.60, 2620:1ec:bdf::74] + +2025-03-16T12:01:03.4041145+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 1306.5817 ms + +2025-03-16T12:01:03.8547357+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/25720743 responded 200 in 1141.0835 ms + +2025-03-16T12:01:13.4950304+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 225.9268 ms + +2025-03-16T12:01:13.6377875+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 429.4701 ms + +2025-03-16T12:01:16.1259236+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 220.6474 ms + +2025-03-16T12:01:17.2772597+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1 responded 200 in 4061.4658 ms + +2025-03-16T12:01:17.5729101+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/favicons/favicon.svg responded 200 in 137.8321 ms + +2025-03-16T12:01:17.5791319+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_github_catalyst_lib_inde-dbbea9-26cce2010167.js responded 200 in 212.1382 ms + +2025-03-16T12:01:17.7053223+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/code-menu-1c0aedc134b1.js responded 200 in 337.2484 ms + +2025-03-16T12:01:17.7641106+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 266.8062 ms + +2025-03-16T12:01:17.7734003+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 271.8239 ms + +2025-03-16T12:01:17.8976079+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_delegated-events_dist_inde-70450e-eecf0d50276f.js responded 200 in 531.599 ms + +2025-03-16T12:01:18.0296956+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/notifications-subscriptions-menu.1bcff9205c241e99cff2.module.css responded 200 in 663.7898 ms + +2025-03-16T12:01:18.0792933+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/favicons/favicon.png responded 200 in 495.0918 ms + +2025-03-16T12:01:18.3396879+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/code-0210be90f4d3.css responded 200 in 973.758 ms + +2025-03-16T12:01:18.4853130+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/22617255 responded 200 in 122.3751 ms + +2025-03-16T12:01:18.4925919+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/155411579 responded 200 in 130.2508 ms + +2025-03-16T12:01:18.4989949+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/33423008 responded 200 in 135.7884 ms + +2025-03-16T12:01:18.5045991+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/4133025 responded 200 in 142.4628 ms + +2025-03-16T12:01:18.5046198+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/22500116 responded 200 in 142.4359 ms + +2025-03-16T12:01:18.5056396+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/148330874 responded 200 in 153.6746 ms + +2025-03-16T12:01:18.6019396+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_code-view-shared_hooks_shortcuts_ts-ui_packages_code-view-shared_utilities_styles-0dc246-f8753c5db08d.js responded 200 in 143.0814 ms + +2025-03-16T12:01:18.6483387+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +camo.githubusercontent.com->::1 + +2025-03-16T12:01:18.6498685+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +camo.githubusercontent.com->127.0.0.1 + +2025-03-16T12:01:18.6854889+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/codespaces-c3bcacfe317c.js responded 200 in 1318.663 ms + +2025-03-16T12:01:18.7340368+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_ref-selector_RefSelector_tsx-7496afc3784d.js responded 200 in 276.0697 ms + +2025-03-16T12:01:18.7443793+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/46627482 responded 200 in 380.7364 ms + +2025-03-16T12:01:18.8216685+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_markdown-accessiblity-table-element_element-entry_ts-64e254bc1f1f.js responded 200 in 189.4556 ms + +2025-03-16T12:01:18.8263295+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/notifications-subscriptions-menu-58a0c58bfee4.js responded 200 in 369.959 ms + +2025-03-16T12:01:18.8265159+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/repos-overview-84280fa39c3f.js responded 200 in 367.4898 ms + +2025-03-16T12:01:18.8477067+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/22633385 responded 200 in 484.7713 ms + +2025-03-16T12:01:18.9926168+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/37035235 responded 200 in 630.2472 ms + +2025-03-16T12:01:19.0284029+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-V2/raw/main/figures/logo.svg responded 302 in 676.4144 ms + +2025-03-16T12:01:19.0383332+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +raw.githubusercontent.com->::1 + +2025-03-16T12:01:19.0399198+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +raw.githubusercontent.com->127.0.0.1 + +2025-03-16T12:01:19.0463879+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 233.6634 ms + +2025-03-16T12:01:19.0713764+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1/raw/main/figures/benchmark.jpg responded 302 in 708.7405 ms + +2025-03-16T12:01:19.0713764+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-V2/raw/main/figures/badge.svg responded 302 in 719.3891 ms + +2025-03-16T12:01:19.0944764+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_code-view-shared_hooks_use-canonical-object_ts-ui_packages_code-view-shared_hooks-a83ec0-5ee2b562b57f.js responded 200 in 635.467 ms + +2025-03-16T12:01:19.1662092+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_mathjax_math-renderer-element_ts-b5c06f560044.js responded 200 in 534.7071 ms + +2025-03-16T12:01:19.2671914+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 604.9995 ms + +2025-03-16T12:01:19.3276590+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1/hovercards/citation/sidebar_partial responded 204 in 664.9299 ms + +2025-03-16T12:01:19.3276591+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1/security/overall-count responded 200 in 665.0724 ms + +2025-03-16T12:01:19.4250990+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/919443098/watch_subscription responded 200 in 663.2771 ms + +2025-03-16T12:01:19.5193472+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1/used_by_list responded 200 in 856.499 ms + +2025-03-16T12:01:19.5315039+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 200 in 769.6243 ms + +2025-03-16T12:01:19.7057131+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_commit-attribution_index_ts-ui_packages_commit-checks-status_index_ts-ui_packages-7094d4-15017f02e61c.js responded 200 in 1247.7131 ms + +2025-03-16T12:01:19.9324536+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/152240452 responded 200 in 1570.2448 ms + +2025-03-16T12:01:19.9677799+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/repos-overview.0ee7cac3ab511a65d9f9.module.css responded 200 in 1513.3382 ms + +2025-03-16T12:01:19.9905591+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/deepseek-ai/DeepSeek-V2/main/figures/logo.svg responded 200 in 623.8287 ms + +2025-03-16T12:01:20.0132478+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/e227481a149714ed5187e4fd0b60b9f736099c2dd2083e6c091e29f1446cbb1a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f446973636f72642d446565705365656b25323041492d3732383964613f6c6f676f3d646973636f7264266c6f676f436f6c6f723d776869746526636f6c6f723d373238396461 responded 200 in 1167.5594 ms + +2025-03-16T12:01:20.0367261+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/a8ed26619b0338e36bfd80f920c9fe96127ff7f12f25a0190e2a94d00a4fa5b9/68747470733a2f2f696d672e736869656c64732e696f2f62616467652ff09fa496253230436861742d446565705365656b25323052312d3533366166353f636f6c6f723d353336616635266c6f676f436f6c6f723d7768697465 responded 200 in 1191.0538 ms + +2025-03-16T12:01:20.1456734+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/1af067540f64107f8fe7715d12150fb910e21f0d2c6aa0c319087c7510c8b934/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d6635646535333f26636f6c6f723d663564653533 responded 200 in 1300.1133 ms + +2025-03-16T12:01:20.1740464+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/8272710ecd020c821b4f62c1c455efb89e0db4eb179c5f5f971c3c1f69452c54/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f547769747465722d646565707365656b5f61692d77686974653f6c6f676f3d78266c6f676f436f6c6f723d7768697465 responded 200 in 1328.448 ms + +2025-03-16T12:01:20.2159483+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 248.2768 ms + +2025-03-16T12:01:20.2315677+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1/tree-commit-info/main responded 200 in 401.4096 ms + +2025-03-16T12:01:20.2315678+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1/branch-and-tag-count responded 200 in 401.4186 ms + +2025-03-16T12:01:20.2357012+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1/refs responded 200 in 405.6366 ms + +2025-03-16T12:01:20.2469426+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1/recently-touched-branches responded 200 in 417.0125 ms + +2025-03-16T12:01:20.2470986+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1/latest-commit/main responded 200 in 417.2148 ms + +2025-03-16T12:01:20.3032731+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/562efc618da65f0a69bc804395005b8124f5c2ed2eb73441c4e359185cc01467/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5765436861742d446565705365656b25323041492d627269676874677265656e3f6c6f676f3d776563686174266c6f676f436f6c6f723d7768697465 responded 200 in 1457.6209 ms + +2025-03-16T12:01:20.3274625+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:01:20.3573125+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/deepseek-ai/DeepSeek-R1/overview-files/main responded 200 in 527.0288 ms + +2025-03-16T12:01:20.3809035+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_code-view-shared_components_files-search_FileResultsList_tsx-ef1fa1f779f7.js responded 200 in 543.7138 ms + +2025-03-16T12:01:20.5767802+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/155411579 responded 200 in 257.7102 ms + +2025-03-16T12:01:20.8546294+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/5e3115539d4583e22d65cb89eb1759e767cb9e1d70772923292fcfc80a654be4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f25463025394625413425393725323048756767696e67253230466163652d446565705365656b25323041492d6666633130373f636f6c6f723d666663313037266c6f676f436f6c6f723d7768697465 responded 200 in 2009.1165 ms + +2025-03-16T12:01:20.9669493+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 226.9514 ms + +2025-03-16T12:01:21.6496146+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/deepseek-ai/DeepSeek-V2/main/figures/badge.svg responded 200 in 2282.9256 ms + +2025-03-16T12:01:22.7876332+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 235.9545 ms + +2025-03-16T12:01:25.8253364+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-vendors-node_modules_mathjax_es5_tex-chtml-full_js-95eacf88983a.js responded 200 in 6650.5169 ms + +2025-03-16T12:01:26.2612092+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 229.9114 ms + +2025-03-16T12:01:26.3382417+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/static/javascripts/mathjax/ui/safe.js responded 200 in 315.9932 ms + +2025-03-16T12:01:40.9750432+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-16T12:01:40.9765347+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->::1 + +2025-03-16T12:01:42.4411142+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1057.7799 ms + +2025-03-16T12:01:43.2661194+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 627.7328 ms + +2025-03-16T12:01:48.3632458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.114.25] + +2025-03-16T12:01:54.2615919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.49, 40.90.133.102, 20.135.1.1] + +2025-03-16T12:02:00.6041491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 13.105.74.49, 40.90.133.102] + +2025-03-16T12:02:02.7978252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.113.25] + +2025-03-16T12:02:06.2140257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.6] + +2025-03-16T12:02:13.5858809+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/deepseek-ai/DeepSeek-R1/main/figures/benchmark.jpg responded 200 in 54219.2309 ms + +2025-03-16T12:02:18.4079292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2403::] + +2025-03-16T12:02:27.4500600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T12:02:35.6170748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.52.2] + +2025-03-16T12:03:09.3185060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.144.160, 20.190.148.166] + +2025-03-16T12:03:17.6865097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.54, 2620:1ec:bdf::60, 13.107.246.60] + +2025-03-16T12:03:20.8442048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T12:03:32.0040835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.60, 2620:1ec:bdf::74] + +2025-03-16T12:03:33.7320667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 40.126.35.18, 20.190.148.162] + +2025-03-16T12:03:42.5126707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[184.27.185.91, 184.27.185.71, 2.16.168.6] + +2025-03-16T12:04:03.1253354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.2, 13.105.74.49] + +2025-03-16T12:04:09.6775044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.5] + +2025-03-16T12:04:17.4261594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T12:04:32.3853305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::53, 2620:1ec:bdf::65, 13.107.246.60] + +2025-03-16T12:04:38.7412069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.112.22] + +2025-03-16T12:04:49.4797911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T12:04:50.9769411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T12:04:51.6770431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-03-16T12:04:51.6780470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-03-16T12:05:00.8551762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.60, 13.107.246.74] + +2025-03-16T12:05:00.9223000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.74, 2620:1ec:bdf::45] + +2025-03-16T12:05:00.9237025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 13.107.246.74, 2620:1ec:bdf::45] + +2025-03-16T12:05:00.9243849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 13.107.246.74, 2620:1ec:bdf::44] + +2025-03-16T12:05:02.4853571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 4.225.11.194] + +2025-03-16T12:05:07.5004625+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-03-16T12:05:07.7282690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.6] + +2025-03-16T12:05:08.2318712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.74, 2620:1ec:bdf::44] + +2025-03-16T12:05:15.0058136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.148.167, 20.190.148.166] + +2025-03-16T12:05:16.2057435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-03-16T12:05:18.9373776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.74, 2620:1ec:bdf::44] + +2025-03-16T12:05:19.2982279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 13.107.246.74, 13.107.246.44] + +2025-03-16T12:05:20.2858176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.74, 13.107.246.44] + +2025-03-16T12:05:24.5427991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.162, 40.126.35.18] + +2025-03-16T12:05:24.5441766+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.144.136, 20.190.148.167] + +2025-03-16T12:05:26.6926430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T12:05:28.9436513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.74, 13.107.246.44] + +2025-03-16T12:05:29.2545252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 13.107.246.76] + +2025-03-16T12:05:30.8016853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[184.27.185.91, 184.27.185.71, 2.20.245.141] + +2025-03-16T12:05:31.1585778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.46.63.113, 23.46.63.99, 2.16.168.13] + +2025-03-16T12:05:38.2881423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-03-16T12:05:40.3545856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.74, 2620:1ec:bdf::44] + +2025-03-16T12:05:44.2486408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.4] + +2025-03-16T12:05:44.7947048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-03-16T12:05:46.1711036+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.41, 13.107.246.74] + +2025-03-16T12:05:49.6270300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T12:05:55.3966772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 20.26.156.216] + +2025-03-16T12:06:02.7294273+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:2c00:3a::1727:a0b0, 23.46.63.113, 2600:140b:2c00:3a::1727:a05b] + +2025-03-16T12:06:03.8048168+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::44] + +2025-03-16T12:06:03.8061042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::53, 2620:1ec:bdf::65, 13.107.246.74] + +2025-03-16T12:06:04.1687242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::44] + +2025-03-16T12:06:17.5010367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2c00:3a::1727:a083, 184.27.185.91, 184.27.185.71] + +2025-03-16T12:06:20.0739888+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.44] + +2025-03-16T12:06:28.9156776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.114.26] + +2025-03-16T12:06:41.2812364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-03-16T12:06:41.3432766+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::44, 13.107.246.74] + +2025-03-16T12:06:41.9630255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.41, 2620:1ec:bdf::44] + +2025-03-16T12:06:41.9648360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.74, 13.107.246.44] + +2025-03-16T12:07:02.4974961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 13.105.74.49, 20.135.6.2] + +2025-03-16T12:07:11.9185635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::44, 13.107.246.74] + +2025-03-16T12:07:23.3319107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 13.107.246.41, 13.107.246.74] + +2025-03-16T12:07:29.1856472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.74, 13.107.246.44] + +2025-03-16T12:07:45.2018415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::53, 2620:1ec:bdf::51, 13.107.246.74] + +2025-03-16T12:07:57.5404623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.113.4] + +2025-03-16T12:08:08.6134823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::11, 2603:1047:1:a0::15, 2603:1047:1:a0::c] + +2025-03-16T12:08:16.3801990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.113.6] + +2025-03-16T12:08:17.8036457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.15, 13.105.74.49] + +2025-03-16T12:08:26.4833479+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-03-16T12:08:28.0515671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T12:08:30.4613785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.162, 40.126.35.144] + +2025-03-16T12:08:59.0084942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.112.9] + +2025-03-16T12:09:22.1187562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.44] + +2025-03-16T12:09:23.6719128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.15, 20.135.6.7] + +2025-03-16T12:09:33.0159522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.74, 13.107.246.44] + +2025-03-16T12:09:42.7484194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.114.21] + +2025-03-16T12:09:52.6257154+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T12:09:53.7451754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:09:53.7460667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:09:53.7472150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:09:57.4895345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:09:57.4905101+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:09:58.2517385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.71, 13.107.246.74] + +2025-03-16T12:10:05.7204113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-03-16T12:10:06.9364774+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T12:10:06.9373079+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T12:10:06.9801839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.113.3] + +2025-03-16T12:10:07.5753674+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 620.2761 ms + +2025-03-16T12:10:08.0501355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.71, 13.107.246.44] + +2025-03-16T12:10:08.1146479+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::44, 13.107.246.44] + +2025-03-16T12:10:08.4637499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::54, 13.107.246.44] + +2025-03-16T12:10:08.5335209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::54, 2620:1ec:bdf::44] + +2025-03-16T12:10:09.1639440+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.41, 2620:1ec:bdf::54] + +2025-03-16T12:10:25.8476633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-03-16T12:10:31.1237989+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-03-16T12:10:31.1246548+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-03-16T12:10:31.1658280+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-03-16T12:10:31.1666842+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-03-16T12:10:31.7441168+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 590.1516 ms + +2025-03-16T12:10:31.7784105+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 599.5357 ms + +2025-03-16T12:10:31.8007926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.44, 2620:1ec:bdf::51] + +2025-03-16T12:10:32.1841670+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 1030.2143 ms + +2025-03-16T12:10:32.2788607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 13.107.246.44, 2620:1ec:bdf::44] + +2025-03-16T12:10:33.0522612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.53, 13.107.246.44] + +2025-03-16T12:10:33.1837870+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-16T12:10:33.1851916+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-03-16T12:10:33.9945685+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.53, 13.107.246.44] + +2025-03-16T12:10:34.0082117+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 548.9469 ms + +2025-03-16T12:10:34.3744859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.53, 13.107.246.41] + +2025-03-16T12:10:36.2191651+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 141.5187 ms + +2025-03-16T12:10:36.9628459+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 5547.4173 ms + +2025-03-16T12:10:37.6822521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.73, 23.220.70.80, 184.27.185.71] + +2025-03-16T12:10:38.5261087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:2c00:3a::1727:a0b0, 23.46.63.99, 2600:140b:2c00:3a::1727:a05b] + +2025-03-16T12:10:38.6966369+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 152.6697 ms + +2025-03-16T12:10:39.3194294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.163, 40.126.35.144] + +2025-03-16T12:10:41.5487219+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:10:44.9804974+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 541.6795 ms + +2025-03-16T12:10:46.7689353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T12:10:48.6926626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.25.14] + +2025-03-16T12:10:49.5504786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-03-16T12:10:51.7702971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.44, 2620:1ec:bdf::54] + +2025-03-16T12:10:55.1293937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::54, 2620:1ec:bdf::44] + +2025-03-16T12:10:55.1304197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 13.107.246.44, 2620:1ec:bdf::54] + +2025-03-16T12:11:01.1842172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.44, 2620:1ec:bdf::51] + +2025-03-16T12:11:12.0603275+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.46.63.99, 2600:140b:2c00:3a::1727:a05b, 2.16.168.6] + +2025-03-16T12:11:20.9785465+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::44, 13.107.246.67] + +2025-03-16T12:11:36.7550180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.113.4] + +2025-03-16T12:11:36.7560511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 13.107.246.67] + +2025-03-16T12:11:41.9420995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.67, 13.107.246.74] + +2025-03-16T12:11:42.3877296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 13.107.246.67, 13.107.246.74] + +2025-03-16T12:11:48.2650296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.114.21] + +2025-03-16T12:12:01.7469665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::51, 13.107.246.67] + +2025-03-16T12:12:17.9768465+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::51, 13.107.246.74] + +2025-03-16T12:12:28.0388188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.44, 13.107.246.67] + +2025-03-16T12:12:28.2346288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::51, 13.107.246.71] + +2025-03-16T12:12:28.6245480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.53, 2620:1ec:bdf::51] + +2025-03-16T12:12:28.6255825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.53, 2620:1ec:bdf::51] + +2025-03-16T12:12:46.6780439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.71, 13.107.246.74] + +2025-03-16T12:12:47.4842195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.53, 2620:1ec:bdf::76] + +2025-03-16T12:12:47.5477934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.53, 2620:1ec:bdf::76] + +2025-03-16T12:13:17.4298626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.46.63.99, 2600:140b:2c00:3a::1727:a05b, 23.216.55.31] + +2025-03-16T12:13:18.2019238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::11, 2603:1047:1:a0::15, 2603:1047:1:a0::13] + +2025-03-16T12:13:21.0513996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.5] + +2025-03-16T12:13:21.3918029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 13.107.246.59, 13.107.246.44] + +2025-03-16T12:13:31.9878157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.162, 20.190.148.163] + +2025-03-16T12:14:05.6765341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.113.6] + +2025-03-16T12:14:19.8585165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.15] + +2025-03-16T12:14:24.5955905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.44, 13.107.246.64] + +2025-03-16T12:14:24.5966273+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.71, 13.107.246.64] + +2025-03-16T12:14:33.9298707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::41, 2620:1ec:bdf::76, 13.107.246.74] + +2025-03-16T12:14:39.6223549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.53, 13.107.246.64] + +2025-03-16T12:14:42.5533590+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:15:03.8534935+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:15:25.0014992+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:15:25.0647634+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T12:15:33.1538056+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:15:33.1552789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T12:15:58.6034550+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:16:15.6311272+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:16:16.6553490+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:16:16.7934468+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-03-16T12:16:38.4505660+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:16:39.5619497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.110.8.165] + +2025-03-16T12:17:01.0195989+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:17:01.1611445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T12:17:02.1196892+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:17:02.1214957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T12:17:02.8752510+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:17:02.8764638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T12:17:08.9373952+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:17:10.1600748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:190e] + +2025-03-16T12:17:44.3905267+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:18:07.9584435+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:18:09.2496896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-16T12:18:31.0453034+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:18:31.2971163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-03-16T12:18:57.0782978+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:18:58.3147202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.3] + +2025-03-16T12:19:25.2940570+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:19:25.5315682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.25] + +2025-03-16T12:19:29.6644421+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:19:30.8033758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T12:19:31.5841994+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:19:31.5854268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T12:19:33.8054660+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:19:35.6756513+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:19:35.7609899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.74, 2620:1ec:bdf::51] + +2025-03-16T12:19:37.9284349+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T12:19:37.9292671+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T12:19:38.7799571+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 830.224 ms + +2025-03-16T12:19:57.5491241+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:19:57.6486487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 2620:1ec:bdf::69, 13.107.246.74] + +2025-03-16T12:20:01.3947499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.74, 13.107.246.64] + +2025-03-16T12:20:04.2839062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.62, 2620:1ec:bdf::41] + +2025-03-16T12:20:05.3926175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.59, 13.107.246.53, 2620:1ec:bdf::31] + +2025-03-16T12:20:09.8060627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.9] + +2025-03-16T12:20:14.7926211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2.16.168.13, 2.16.168.6, 2600:1406:bc00:11::b81c:4e9b] + +2025-03-16T12:20:15.8021563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.220.70.73, 23.220.70.80, 23.46.63.120] + +2025-03-16T12:20:19.6276433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.139, 20.190.144.166] + +2025-03-16T12:20:23.7518324+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.144.163, 20.190.144.139] + +2025-03-16T12:20:30.4584262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T12:20:34.4738609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-03-16T12:20:35.4896513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-03-16T12:20:37.5351833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 20.26.156.216] + +2025-03-16T12:20:38.6743020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 2620:1ec:bdf::69, 13.107.246.73] + +2025-03-16T12:20:38.9859803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2403::] + +2025-03-16T12:20:39.7521312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.73, 13.107.246.74] + +2025-03-16T12:20:40.2172621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.74, 13.107.246.64] + +2025-03-16T12:20:40.7537369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 20.135.6.15] + +2025-03-16T12:20:41.8758359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::31, 2620:1ec:bdf::44] + +2025-03-16T12:20:42.2330604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.13] + +2025-03-16T12:20:44.1087501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2.16.168.13, 2.16.168.6, 23.56.109.201] + +2025-03-16T12:20:48.4943128+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:20:48.8499358+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 4.225.11.198] + +2025-03-16T12:21:02.4841888+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T12:21:18.1409907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-03-16T12:21:22.0492744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::41, 13.107.246.73] + +2025-03-16T12:21:35.7140320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.74, 2620:1ec:bdf::51] + +2025-03-16T12:21:40.5107743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 52.110.8.145, 52.110.8.157] + +2025-03-16T12:21:47.5937389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.75.242, 2.16.168.13, 2.16.168.6] + +2025-03-16T12:21:58.8392089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.73, 13.107.246.74] + +2025-03-16T12:21:59.1340206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::51, 13.107.246.64] + +2025-03-16T12:22:01.9321468+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T12:22:01.9330240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T12:22:01.9339151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T12:22:01.9347221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8000::154, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-03-16T12:22:01.9353975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[2606:50c0:8000::154, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-03-16T12:22:22.8916139+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-03-16T12:22:27.8239737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-16T12:22:30.6691848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::31, 2620:1ec:bdf::44, 13.107.246.73] + +2025-03-16T12:22:31.0515292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.46.63.120, 23.56.109.205, 23.56.109.204] + +2025-03-16T12:22:40.5585550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.144.163, 20.190.148.164] + +2025-03-16T12:22:45.4243403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 140.82.114.9] + +2025-03-16T12:22:51.5987236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.3] + +2025-03-16T12:22:53.9454920+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.9] + +2025-03-16T12:22:59.6142395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.51] + +2025-03-16T12:23:11.6974709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::69, 13.107.246.73] + +2025-03-16T12:23:12.3648307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 20.135.6.7] + +2025-03-16T12:23:13.8984213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.5] + +2025-03-16T12:23:31.1707900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-16T12:23:31.8882138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-03-16T12:23:39.6636654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.76, 2620:1ec:bdf::69] + +2025-03-16T12:23:54.3992147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::69, 13.107.246.73] + +2025-03-16T12:24:18.8149272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:2e00:19::6010:3707, 2600:1406:2e00:19::6010:370c, 23.220.75.242] + +2025-03-16T12:24:30.2490036+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-03-16T12:24:30.3885233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8001::154, 2606:50c0:8000::154, 2606:50c0:8003::154] + +2025-03-16T12:24:30.3896647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[2606:50c0:8001::154, 2606:50c0:8000::154, 2606:50c0:8003::154] + +2025-03-16T12:24:40.4884551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-03-16T12:24:41.5677828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 4.225.11.198] + +2025-03-16T12:24:43.1381776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.8.88] + +2025-03-16T12:24:43.8084600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T12:24:43.8832417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.76, 13.107.246.73] + +2025-03-16T12:24:44.0202154+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.46, 2620:1ec:bdf::45] + +2025-03-16T12:24:44.3007937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T12:24:46.1313580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.138, 20.190.148.167] + +2025-03-16T12:24:46.1326716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.166, 20.190.148.162] + +2025-03-16T12:24:47.2459840+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1442958.8807 ms + +2025-03-16T12:24:47.4207732+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-03-16T12:24:47.4217141+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-03-16T12:24:50.5478953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.162, 20.190.144.138] + +2025-03-16T12:24:58.5758381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.76] + +2025-03-16T12:24:59.0774430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.51] + +2025-03-16T12:24:59.0782914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.74] + +2025-03-16T12:25:04.1134170+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:25:07.8051671+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:25:07.8726730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 2620:1ec:bdf::74] + +2025-03-16T12:25:28.9334032+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:25:28.9342771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.74, 2620:1ec:bdf::44] + +2025-03-16T12:25:37.7119733+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.143.38.0] + +2025-03-16T12:25:38.0446886+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:25:38.2605364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.52.2] + +2025-03-16T12:25:42.5330112+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:26:04.4632746+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:26:06.8393482+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:26:07.1981704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.46.63.120, 23.46.63.121, 2600:140b:2::17ce:fa41] + +2025-03-16T12:26:21.4307541+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:26:24.7447381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.148.162, 40.126.35.145] + +2025-03-16T12:26:46.1903900+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:26:46.4886525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.148.166, 20.190.144.166] + +2025-03-16T12:26:52.5986309+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:26:54.5732338+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:27:03.0723644+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:27:03.7733586+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:27:05.9234638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T12:27:35.1372924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[20.22.207.36, 13.74.129.92, 52.231.186.36] + +2025-03-16T12:27:37.3793229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.121.9] + +2025-03-16T12:27:57.3176002+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T12:28:02.3233354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154] + +2025-03-16T12:28:23.7026229+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:28:24.8546115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T12:28:46.6851717+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:28:46.6871253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T12:29:08.9201928+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T12:29:08.9211723+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T12:29:09.5281131+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 594.6757 ms + +2025-03-16T12:29:12.1074831+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:29:12.1085675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T12:29:33.8814572+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:29:44.0709374+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-03-16T12:29:44.0725573+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-03-16T12:29:44.6882543+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 606.9798 ms + +2025-03-16T12:29:44.6939255+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 613.7821 ms + +2025-03-16T12:29:51.9402821+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-03-16T12:29:51.9412718+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-03-16T12:29:53.6725756+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 1700.1538 ms + +2025-03-16T12:29:55.9814689+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:29:56.2165592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.6] + +2025-03-16T12:29:59.4248566+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:29:59.6895823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.114.21] + +2025-03-16T12:30:01.2462599+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 1625.7366 ms + +2025-03-16T12:30:01.6707021+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 154.4905 ms + +2025-03-16T12:30:02.7012451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 2603:1036:2400::b] + +2025-03-16T12:30:03.6093043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.114.26] + +2025-03-16T12:30:04.1090578+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/Default.json responded 404 in 570.6797 ms + +2025-03-16T12:30:08.4208873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.67] + +2025-03-16T12:30:13.2364924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8003::154] + +2025-03-16T12:30:13.5476800+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8003::154] + +2025-03-16T12:30:14.3018741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.45] + +2025-03-16T12:30:14.8326689+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 154.4984 ms + +2025-03-16T12:30:14.8347116+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 156.7863 ms + +2025-03-16T12:30:15.1037222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 13.107.246.44, 2620:1ec:bdf::51] + +2025-03-16T12:30:21.3664649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.67] + +2025-03-16T12:30:26.4661695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.67] + +2025-03-16T12:30:30.8324087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T12:30:33.7536595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:2e00:19::6010:3707, 2600:1406:2e00:19::6010:370c, 23.46.63.99] + +2025-03-16T12:30:38.9673866+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 40.126.35.21, 40.126.35.20] + +2025-03-16T12:30:42.9343833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.166, 2603:1047:1:168::1b] + +2025-03-16T12:30:48.8684978+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:30:55.1356268+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[13.74.129.92, 20.22.207.36, 52.231.186.36] + +2025-03-16T12:30:56.1550513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.114.3] + +2025-03-16T12:30:57.3275957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.233.83.150, 140.82.112.9] + +2025-03-16T12:31:10.2747992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-03-16T12:31:16.6485128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.46.63.113, 2600:1406:2e00:19::6010:3707, 2600:1406:2e00:19::6010:370c] + +2025-03-16T12:31:17.8522174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::17ce:fa50, 23.46.63.120, 23.46.63.121] + +2025-03-16T12:31:20.3510695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.114.25] + +2025-03-16T12:31:27.5263375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.144.137, 20.190.148.162] + +2025-03-16T12:31:35.3272147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-03-16T12:31:35.9836873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-03-16T12:31:49.7633552+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 2603:1047:1:168::1b, 2603:1047:1:168::2e] + +2025-03-16T12:31:55.9945831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T12:31:55.9961535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T12:32:04.9184092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 13.107.246.73] + +2025-03-16T12:32:04.9193370+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-03-16T12:32:06.6800698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T12:32:10.4851838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 2620:1ec:bdf::31] + +2025-03-16T12:32:30.3965887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.44, 2620:1ec:bdf::51] + +2025-03-16T12:32:31.3293192+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::44, 13.107.246.73] + +2025-03-16T12:32:38.1922397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-03-16T12:32:44.5844680+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4495, 2600:140b:1a00:19::17dc:4486, 23.46.63.113] + +2025-03-16T12:33:03.9364395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92, 20.22.207.36] + +2025-03-16T12:33:07.8441189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.6] + +2025-03-16T12:33:10.0749400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.67, 2620:1ec:bdf::74] + +2025-03-16T12:33:15.0871623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-03-16T12:33:19.9298976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.25, 140.82.112.25] + +2025-03-16T12:33:25.0854461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 2606:50c0:8001::154] + +2025-03-16T12:33:25.2292009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 2606:50c0:8001::154] + +2025-03-16T12:33:26.7852015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T12:33:26.7861212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T12:33:26.7868960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T12:33:33.4407056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.11] + +2025-03-16T12:33:42.5815990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.44, 2620:1ec:bdf::74] + +2025-03-16T12:34:21.5835942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 40.90.130.192] + +2025-03-16T12:34:33.1933367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.44, 13.107.246.45] + +2025-03-16T12:34:48.2932001+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-03-16T12:34:49.0872419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.11] + +2025-03-16T12:35:01.6669324+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.5] + +2025-03-16T12:35:02.0525682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-03-16T12:35:02.3273368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.114.22] + +2025-03-16T12:35:05.1571810+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:35:05.4355007+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-03-16T12:35:06.1146310+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:35:09.8611736+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:35:12.5013678+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:35:12.5869374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::35, 13.107.246.74] + +2025-03-16T12:35:41.7075744+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T12:35:41.7779375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.63, 2620:1ec:bdf::67] + +2025-03-16T12:36:02.5304999+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T12:36:02.5948353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::77, 2620:1ec:bdf::41] + +2025-03-16T12:36:23.9452245+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:36:24.0159683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::31, 2620:1ec:bdf::65] + +2025-03-16T12:36:34.2911100+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:36:34.3547321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.57, 13.107.246.64] + +2025-03-16T12:36:35.1603775+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:36:38.1805930+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:36:59.8133316+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:36:59.9335664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T12:37:21.6377862+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:37:21.9829736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4495, 2600:140b:1a00:19::17dc:4486, 23.46.63.99] + +2025-03-16T12:37:23.2780096+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:37:24.4457358+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2.20.245.141, 2600:1406:5e00:4f::1720:98ee, 23.206.229.143] + +2025-03-16T12:37:45.8284452+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:37:50.8553060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.138, 40.126.35.144] + +2025-03-16T12:38:10.7171487+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T12:38:13.8055630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 2603:1047:1:168::24, 2603:1047:1:168::12] + +2025-03-16T12:38:20.8872233+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:38:39.9398845+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T12:38:39.9406754+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T12:38:42.8894271+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:38:43.4422134+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 3486.6522 ms + +2025-03-16T12:38:45.7245707+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:38:46.7594983+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:38:47.5322022+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:38:52.5371194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T12:39:14.2796457+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:39:14.5553970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T12:39:23.4071159+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:39:23.6358747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.9] + +2025-03-16T12:39:41.1214530+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:39:42.2684153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.114.3, 140.82.112.3, 4.225.11.194] + +2025-03-16T12:39:43.8078812+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:39:48.8300586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-03-16T12:40:10.2521056+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:40:11.4214815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T12:40:31.9790361+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-03-16T12:40:31.9800414+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-03-16T12:40:32.3226205+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 316.9708 ms + +2025-03-16T12:40:32.3933553+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 182.3503 ms + +2025-03-16T12:40:35.9396219+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:40:35.9411442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T12:40:37.6903363+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:40:37.6912076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T12:40:38.9542190+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:40:39.3253459+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:190e] + +2025-03-16T12:40:42.2529280+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:40:42.5634955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.25] + +2025-03-16T12:40:44.6335906+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:40:44.8756331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.22] + +2025-03-16T12:40:46.0378868+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:40:47.1867301+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-03-16T12:40:48.9178915+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:40:48.9189105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-03-16T12:40:50.6608242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 13.107.246.41, 2620:1ec:bdf::35] + +2025-03-16T12:40:56.3410251+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 2603:1036:2400::b] + +2025-03-16T12:40:57.1354030+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 2620:1ec:bdf::66, 13.107.246.74] + +2025-03-16T12:41:03.0292861+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::77, 13.107.246.41, 2620:1ec:bdf::38] + +2025-03-16T12:41:04.0693772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T12:41:04.7975580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.73, 2620:1ec:bdf::66] + +2025-03-16T12:41:05.8982650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 13.105.74.50] + +2025-03-16T12:41:06.5723731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::46, 13.107.246.57] + +2025-03-16T12:41:15.8808544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4486, 2600:140b:1a00:19::17dc:4495, 23.46.63.99] + +2025-03-16T12:41:17.9760520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.33, 20.190.141.39, 20.190.141.35] + +2025-03-16T12:41:22.6509423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T12:41:28.9323779+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:41:35.2118309+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.112.9] + +2025-03-16T12:41:57.4328395+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T12:41:57.8424910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.116.6] + +2025-03-16T12:41:59.3017542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.114.3, 140.82.113.3, 140.82.112.3] + +2025-03-16T12:42:03.2867924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 2603:1036:2404::2] + +2025-03-16T12:42:05.8907556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::35, 2620:1ec:bdf::66] + +2025-03-16T12:42:06.5520955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::77, 2620:1ec:bdf::38, 13.107.246.67] + +2025-03-16T12:42:07.7138704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::53, 2620:1ec:bdf::66, 13.107.246.74] + +2025-03-16T12:42:08.2627103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.64, 2620:1ec:bdf::53] + +2025-03-16T12:42:08.9353586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T12:42:10.5161171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T12:42:11.2686385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4b::17ce:e56c, 2600:1406:5e00:4f::1720:98ee, 23.206.229.143] + +2025-03-16T12:42:14.6626523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.74, 2620:1ec:bdf::57] + +2025-03-16T12:42:14.9881809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.74, 2620:1ec:bdf::65] + +2025-03-16T12:42:14.9892516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::35, 2620:1ec:bdf::60, 13.107.246.74] + +2025-03-16T12:42:29.7036132+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4b::17ce:e56c, 2600:1406:5e00:4b::17ce:e56a, 96.7.129.17] + +2025-03-16T12:42:30.1743029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4486, 2600:140b:1a00:19::17dc:4495, 23.206.229.109] + +2025-03-16T12:42:33.2281207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.121.9] + +2025-03-16T12:42:33.8578781+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.113.21] + +2025-03-16T12:42:33.8589601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.114.3, 140.82.113.3, 4.225.11.194] + +2025-03-16T12:43:16.9069984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::24, 2603:1047:1:168::2e, 2603:1047:1:168::12] + +2025-03-16T12:43:32.3060937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::35, 2620:1ec:bdf::44, 2620:1ec:bdf::60] + +2025-03-16T12:43:32.6422126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::77, 13.107.246.67, 13.107.246.73] + +2025-03-16T12:43:44.1833440+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T12:43:44.1847043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T12:43:44.1854361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T12:43:51.2751074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T12:43:52.0916125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.9] + +2025-03-16T12:43:57.6422608+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 2603:1026:2405::1] + +2025-03-16T12:44:06.5558099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.74, 13.107.246.60] + +2025-03-16T12:44:31.0631239+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::60, 13.107.246.74] + +2025-03-16T12:44:31.0645761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.64, 13.107.246.67] + +2025-03-16T12:44:31.0658498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-03-16T12:44:31.0670052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.229.109, 96.7.129.12, 23.56.109.142] + +2025-03-16T12:44:31.0705538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::24, 2603:1047:1:168::12, 20.190.144.160] + +2025-03-16T12:44:36.4774637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.113.9] + +2025-03-16T12:44:43.0303583+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.3] + +2025-03-16T12:44:45.4901728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-03-16T12:44:47.5359855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.2] + +2025-03-16T12:44:54.6420625+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.22] + +2025-03-16T12:44:55.9731881+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[96.7.129.12, 23.56.109.142, 23.56.109.137] + +2025-03-16T12:44:59.7919354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.67, 2620:1ec:bdf::67] + +2025-03-16T12:45:00.8083222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 13.107.246.73, 2620:1ec:bdf::41] + +2025-03-16T12:45:01.1300850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4b::17ce:e56c, 2600:1406:5e00:4b::17ce:e56a, 23.37.230.161] + +2025-03-16T12:45:01.1309859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.56.109.137, 2a02:26f0:d8::6851:3c4b] + +2025-03-16T12:45:01.1318896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 20.190.144.160, 20.190.144.137] + +2025-03-16T12:45:05.6373836+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:45:08.3700924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::77, 2620:1ec:bdf::53, 13.107.246.73] + +2025-03-16T12:45:08.8241821+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.71, 13.107.246.67, 13.107.246.62] + +2025-03-16T12:45:09.5071188+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:45:10.2256350+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:45:10.4795003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.2, 20.135.6.9] + +2025-03-16T12:45:15.8059139+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T12:45:15.8068287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T12:45:15.8076082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T12:45:16.1311331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T12:45:16.1321904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T12:45:41.4160787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-03-16T12:45:41.9616793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::41, 2620:1ec:bdf::60] + +2025-03-16T12:45:42.8003430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 20.135.6.2] + +2025-03-16T12:45:43.4368581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.60] + +2025-03-16T12:45:47.0058807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.114.22] + +2025-03-16T12:45:47.2357300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.112.25] + +2025-03-16T12:45:51.0765813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T12:45:51.1411088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::44] + +2025-03-16T12:45:51.3561919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T12:45:51.3571731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::77, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T12:45:51.4222172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::66] + +2025-03-16T12:45:57.0629752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 2603:1046:1401::1] + +2025-03-16T12:46:00.3087833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::53] + +2025-03-16T12:46:05.8055172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-03-16T12:46:07.9340433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.60, 2620:1ec:bdf::74] + +2025-03-16T12:46:08.1751208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T12:46:09.4672511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::36] + +2025-03-16T12:46:19.3610935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4b::17ce:e56c, 2600:1406:5e00:4b::17ce:e56a, 2001:918:ffcb::c1f6:3029] + +2025-03-16T12:46:20.0011319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.39, 20.190.141.35, 20.190.141.34] + +2025-03-16T12:46:25.0114775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 2603:1047:1:168::2d, 2603:1047:1:168::12] + +2025-03-16T12:46:28.3224168+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::66] + +2025-03-16T12:46:44.3395764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.113.9] + +2025-03-16T12:46:54.7708287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.52.2, 2603:1046:1406::2] + +2025-03-16T12:47:09.3952067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T12:47:09.8491860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 13.107.246.41] + +2025-03-16T12:47:11.0551051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 52.109.52.2] + +2025-03-16T12:47:11.2485430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T12:47:11.3572816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T12:47:13.7619840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.56.109.137, 23.200.156.208] + +2025-03-16T12:47:32.3134396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.46.63.120, 23.46.63.121, 2600:1406:5e00:4b::17ce:e56c] + +2025-03-16T12:47:32.6859621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.46.63.113, 2600:1406:5e00:4b::17ce:e56d, 2600:1406:5e00:4b::17ce:e56f] + +2025-03-16T12:47:36.1282203+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 2603:1047:1:168::2d, 20.190.148.166] + +2025-03-16T12:47:37.3580400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.21] + +2025-03-16T12:47:45.0465949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.114.26, 140.82.113.25] + +2025-03-16T12:48:10.9334568+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T12:48:10.9342323+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T12:48:21.6513721+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 10706.9777 ms + +2025-03-16T12:48:35.2896027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.44, 2620:1ec:bdf::74] + +2025-03-16T12:48:41.1779728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.143.38.0, 20.135.6.11] + +2025-03-16T12:48:52.5071842+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T12:49:01.6742818+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->127.0.0.1 + +2025-03-16T12:49:01.6752433+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->::1 + +2025-03-16T12:49:02.4188798+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/v2.1/federationProvider responded 200 in 472.8512 ms + +2025-03-16T12:49:11.9695177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T12:49:27.2447040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.121.10, 140.82.113.9, 140.82.112.10] + +2025-03-16T12:49:27.2457356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 20.26.156.215] + +2025-03-16T12:49:50.4185397+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1502987.2337 ms + +2025-03-16T12:49:50.5614263+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->::1 + +2025-03-16T12:49:50.5629750+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-03-16T12:49:52.4618681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154] + +2025-03-16T12:49:53.5804174+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 2996.8867 ms + +2025-03-16T12:49:54.2532029+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/_alive responded 200 in 664.3525 ms + +2025-03-16T12:49:54.7699200+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_alive responded 200 in 509.9509 ms + +2025-03-16T12:50:02.2430662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-03-16T12:50:03.2255294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.112.3] + +2025-03-16T12:50:04.7245946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.60, 2620:1ec:bdf::74] + +2025-03-16T12:50:09.3182744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.143.38.0] + +2025-03-16T12:50:10.3958291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.62, 2620:1ec:bdf::74] + +2025-03-16T12:50:19.0226806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T12:50:19.0238056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T12:50:19.0245270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T12:50:19.3303884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-03-16T12:50:19.3320849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-03-16T12:50:19.5346374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.40, 13.107.246.60] + +2025-03-16T12:50:42.4282636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-03-16T12:50:43.9657123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.143.38.0] + +2025-03-16T12:50:50.1989880+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-03-16T12:50:50.9766232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.114.26] + +2025-03-16T12:50:53.1794299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8001::154] + +2025-03-16T12:50:53.1804411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8001::154] + +2025-03-16T12:50:53.2462492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::51, 13.107.246.40] + +2025-03-16T12:50:53.3085803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.74, 13.107.246.44] + +2025-03-16T12:50:53.6132594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-03-16T12:50:53.9835589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::74] + +2025-03-16T12:50:53.9844182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T12:50:57.4277313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 52.109.120.46] + +2025-03-16T12:50:58.3680543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::51, 13.107.246.45] + +2025-03-16T12:51:06.7670293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 2603:1046:1400::7, 2603:1036:2400::12] + +2025-03-16T12:51:06.8388424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::53, 2620:1ec:bdf::46, 13.107.246.74] + +2025-03-16T12:51:09.8552134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.74, 2620:1ec:bdf::51] + +2025-03-16T12:51:09.9179402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.74, 13.107.246.45] + +2025-03-16T12:51:10.1598337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T12:51:10.5021788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.71] + +2025-03-16T12:51:16.2926644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.46.63.113, 2.16.168.13, 23.56.109.142] + +2025-03-16T12:51:21.9260124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.39, 20.190.141.35] + +2025-03-16T12:51:25.2098752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.137, 20.190.148.167] + +2025-03-16T12:51:30.1676357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 2603:1046:1406::2] + +2025-03-16T12:51:32.4772617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.110.8.165] + +2025-03-16T12:51:34.0914030+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1417:1b::cb45:8d33, 2600:1417:1b::cb45:8d28, 23.46.63.113] + +2025-03-16T12:51:49.0683790+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T12:51:56.6618066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.114.10, 140.82.113.9, 140.82.112.10] + +2025-03-16T12:52:09.8372086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.57, 13.107.246.74] + +2025-03-16T12:52:12.0115296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T12:52:12.9623332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.52.2] + +2025-03-16T12:52:13.0600720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T12:52:13.4610961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.46.63.120, 23.46.63.121, 2.20.245.141] + +2025-03-16T12:52:20.2250523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.64, 13.107.246.57] + +2025-03-16T12:52:34.0531903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2.20.245.141, 2600:1406:5e00:4f::1720:98ed, 2600:1406:5e00:4b::17ce:e56c] + +2025-03-16T12:52:34.4038397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1417:1b::cb45:8d33, 2600:1417:1b::cb45:8d28, 23.46.63.99] + +2025-03-16T12:52:34.5332891+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.167, 20.190.144.160] + +2025-03-16T12:52:38.5503018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.22] + +2025-03-16T12:52:49.0111180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.137, 20.190.148.167] + +2025-03-16T12:52:51.2794744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.116.9, 140.82.114.10, 140.82.113.9] + +2025-03-16T12:52:51.6065566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2405::1] + +2025-03-16T12:52:58.0495861+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-03-16T12:53:02.9966144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-16T12:53:08.5827921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.62] + +2025-03-16T12:53:08.6458395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.52] + +2025-03-16T12:53:15.2046855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-03-16T12:53:15.5622066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.74, 2620:1ec:bdf::51] + +2025-03-16T12:53:16.4884761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.137, 20.190.148.162] + +2025-03-16T12:53:16.6083331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.160, 20.190.144.166] + +2025-03-16T12:53:33.8073476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.162, 20.190.144.137] + +2025-03-16T12:53:35.3499900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.116.9, 140.82.113.9, 140.82.112.10] + +2025-03-16T12:53:35.4146362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 13.107.246.57, 13.107.246.74] + +2025-03-16T12:53:36.2318439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-03-16T12:53:48.1835965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T12:53:58.4303815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.113.4] + +2025-03-16T12:53:58.6320011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.64, 13.107.246.57] + +2025-03-16T12:54:03.8810863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.64, 13.107.246.74] + +2025-03-16T12:54:39.9822743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 20.190.144.138, 2603:1047:1:168::26] + +2025-03-16T12:54:41.4127578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.113.9] + +2025-03-16T12:54:43.3591499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.11] + +2025-03-16T12:54:55.0597520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-03-16T12:54:57.4140858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.2] + +2025-03-16T12:55:04.8222100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-03-16T12:55:06.2409376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-03-16T12:55:06.3052409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.60] + +2025-03-16T12:55:06.8651153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.74, 13.107.246.45] + +2025-03-16T12:55:06.8662555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.44] + +2025-03-16T12:55:14.7772968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.44] + +2025-03-16T12:55:15.9415493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.71] + +2025-03-16T12:55:17.3205898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T12:55:21.5814385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:55:25.9974287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:55:25.9986272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T12:55:25.9994975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.121.6] + +2025-03-16T12:55:28.6227157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98ed, 2600:1406:5e00:4b::17ce:e56c, 2600:1406:5e00:4f::1720:98ee] + +2025-03-16T12:55:29.1736453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 20.190.144.163, 2603:1047:1:168::1d] + +2025-03-16T12:55:34.0485028+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.9] + +2025-03-16T12:55:46.4167180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-03-16T12:55:51.0795764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-03-16T12:55:51.6105236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.113.25] + +2025-03-16T12:55:52.7588183+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-03-16T12:55:52.7624581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-03-16T12:55:53.1022682+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-03-16T12:55:53.1032112+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-03-16T12:55:53.1040424+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->::1 + +2025-03-16T12:55:53.1047722+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-03-16T12:55:53.1877205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.110.8.128] + +2025-03-16T12:55:53.5434287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.45, 13.107.246.51] + +2025-03-16T12:55:53.5446143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.71, 13.107.246.44, 13.107.246.54] + +2025-03-16T12:55:53.6074622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::66, 13.107.246.44] + +2025-03-16T12:55:53.7906409+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 527.4615 ms + +2025-03-16T12:55:53.9452105+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 823.7175 ms + +2025-03-16T12:55:53.9454868+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 823.7285 ms + +2025-03-16T12:55:54.5175174+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 289.4633 ms + +2025-03-16T12:55:54.7987882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 20.190.144.160, 20.190.144.166] + +2025-03-16T12:55:55.7054550+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-16T12:55:55.7066305+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->::1 + +2025-03-16T12:55:56.5915177+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 874.5952 ms + +2025-03-16T12:55:56.9470526+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8000::154] + +2025-03-16T12:55:56.9481556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8000::154] + +2025-03-16T12:55:56.9491256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.66, 2620:1ec:bdf::40] + +2025-03-16T12:55:56.9499156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.64, 13.107.246.45] + +2025-03-16T12:55:58.7410933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.54, 2620:1ec:bdf::67] + +2025-03-16T12:55:58.8050191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.44, 2620:1ec:bdf::67] + +2025-03-16T12:56:01.9935341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.64, 2620:1ec:bdf::41] + +2025-03-16T12:56:02.1162621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.54] + +2025-03-16T12:56:02.1177194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::66, 13.107.246.44] + +2025-03-16T12:56:02.4852047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::54, 13.107.246.69] + +2025-03-16T12:56:12.2837420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::41, 13.107.246.44] + +2025-03-16T12:56:12.8664110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T12:56:12.9299703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::54, 13.107.246.69, 13.107.246.40] + +2025-03-16T12:56:13.2593666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.54] + +2025-03-16T12:56:13.2609550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.73, 2620:1ec:bdf::66] + +2025-03-16T12:56:13.4915657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.2] + +2025-03-16T12:56:15.8959876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::40, 13.107.246.66] + +2025-03-16T12:56:16.3048717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::62, 13.107.246.44, 13.107.246.73] + +2025-03-16T12:56:24.2334681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.44, 13.107.246.73] + +2025-03-16T12:56:31.7479288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T12:56:35.0285609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.9] + +2025-03-16T12:56:40.7726644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T12:56:45.3750149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[96.7.128.189, 96.7.128.185, 2600:1406:5e00:4f::1720:98ed] + +2025-03-16T12:57:12.2459296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.10] + +2025-03-16T12:57:14.1027757+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.3] + +2025-03-16T12:57:14.3817550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.27.177.116, 140.82.113.5] + +2025-03-16T12:57:24.4593659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::66, 13.107.246.41] + +2025-03-16T12:57:26.5531466+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::71, 13.107.246.44] + +2025-03-16T12:57:27.2903919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.110.8.128] + +2025-03-16T12:57:29.8047764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T12:57:35.5829183+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.46.63.120, 2600:1406:5e00:4f::1720:98ee, 96.7.128.189] + +2025-03-16T12:57:38.8482932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.166, 20.190.148.162] + +2025-03-16T12:57:44.7516393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.21] + +2025-03-16T12:57:51.9313791+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T12:57:51.9321333+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T12:57:53.1554342+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 1209.4432 ms + +2025-03-16T12:58:03.0194017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.166, 20.190.144.162] + +2025-03-16T12:58:12.2593825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 20.26.156.215] + +2025-03-16T12:58:21.1028514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::66, 13.107.246.41] + +2025-03-16T12:58:22.7063995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::54, 13.107.246.69, 2620:1ec:bdf::67] + +2025-03-16T12:58:34.1111376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.160, 20.190.148.163] + +2025-03-16T12:58:34.3922535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 2603:1047:1:168::20, 2603:1047:1:168::25] + +2025-03-16T12:58:40.9274534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.112.4] + +2025-03-16T12:58:48.3929673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T12:58:49.2948815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.9] + +2025-03-16T12:58:56.4866636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T12:58:57.6466283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-16T12:59:04.2664641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::40, 13.107.246.60] + +2025-03-16T12:59:04.6341832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.73, 2620:1ec:bdf::44] + +2025-03-16T12:59:12.8862082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-16T12:59:26.2676004+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::62, 13.107.246.54, 13.107.246.44] + +2025-03-16T12:59:37.9980974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::20, 2603:1047:1:168::25, 2603:1047:1:168::28] + +2025-03-16T12:59:44.7015898+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-03-16T12:59:44.7030799+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-03-16T12:59:45.0023889+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 282.7692 ms + +2025-03-16T12:59:45.0424556+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 319.9025 ms + +2025-03-16T13:00:29.6643100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.10] + +2025-03-16T13:00:30.5055230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-03-16T13:00:30.9446698+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 662.9038 ms + +2025-03-16T13:00:30.9675372+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 665.3745 ms + +2025-03-16T13:00:31.0126336+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 730.9238 ms + +2025-03-16T13:00:31.6188820+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 636841.5637 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T13:00:31.6480187+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T13:00:31.6512021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T13:00:31.6534013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T13:00:31.8628128+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 221.5066 ms + +2025-03-16T13:00:32.1061846+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 466.0996 ms + +2025-03-16T13:00:32.8523028+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.112.3] + +2025-03-16T13:00:32.8540960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T13:00:32.8557083+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T13:00:33.2524303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-03-16T13:00:34.0116826+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.69, 2620:1ec:bdf::66] + +2025-03-16T13:00:36.6106113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.2] + +2025-03-16T13:00:40.1015724+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::18, 2603:1047:1:168::20, 2603:1047:1:168::25] + +2025-03-16T13:00:48.8325242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.161, 20.190.144.160] + +2025-03-16T13:00:52.1203932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::20, 2603:1047:1:168::25, 2603:1047:1:168::1a] + +2025-03-16T13:00:54.0465685+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 104.17.25.14] + +2025-03-16T13:00:54.5591350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.113.22] + +2025-03-16T13:00:56.9889658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.69, 13.107.246.41] + +2025-03-16T13:00:58.0403950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.45, 2620:1ec:bdf::74] + +2025-03-16T13:00:59.4660135+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.110.8.166] + +2025-03-16T13:00:59.6712524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.2] + +2025-03-16T13:01:01.2029452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::25, 2603:1047:1:168::20, 20.190.148.164] + +2025-03-16T13:01:08.2594121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.41, 2620:1ec:bdf::67] + +2025-03-16T13:01:09.1808981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::44, 13.107.246.41] + +2025-03-16T13:01:11.3941207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::62, 13.107.246.44, 2620:1ec:bdf::74] + +2025-03-16T13:01:13.5414776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.241.44.114] + +2025-03-16T13:01:14.3555449+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-16T13:01:14.3568689+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->::1 + +2025-03-16T13:01:15.2906758+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 920.0925 ms + +2025-03-16T13:01:19.1315540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::74, 2620:1ec:bdf::45] + +2025-03-16T13:01:20.5706538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-03-16T13:01:20.6324593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::62, 2620:1ec:bdf::74, 2620:1ec:bdf::66] + +2025-03-16T13:01:20.9207716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.41, 2620:1ec:bdf::67] + +2025-03-16T13:01:21.3200438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::53, 13.107.246.41] + +2025-03-16T13:01:21.5910986+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.9] + +2025-03-16T13:01:26.0817014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::67, 2620:1ec:bdf::74] + +2025-03-16T13:01:29.7682473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-16T13:01:29.7695705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-03-16T13:01:30.4079330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 2620:1ec:bdf::74, 13.107.246.67] + +2025-03-16T13:01:30.8541062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-03-16T13:01:36.4009970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1417:1b::cb45:8d33, 23.46.63.99, 23.46.63.113] + +2025-03-16T13:01:46.6384623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.46.63.120, 2600:1406:5e00:4f::1720:98ee, 2600:1406:5e00:4f::1720:98ed] + +2025-03-16T13:01:51.3120570+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:01:57.7046313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.113.4] + +2025-03-16T13:02:03.2292835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98ee, 2600:1406:5e00:4f::1720:98ed, 184.29.57.174] + +2025-03-16T13:02:03.2328159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1417:1b::cb45:8d33, 2600:1417:1b::cb45:8d28, 2600:1406:5e00:4f::1720:98f7] + +2025-03-16T13:02:27.6138486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-03-16T13:02:29.9375922+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.8.12] + +2025-03-16T13:02:30.4969236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.60, 2620:1ec:bdf::67] + +2025-03-16T13:02:31.0538346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::62, 13.107.246.67, 2620:1ec:bdf::74] + +2025-03-16T13:02:31.4088231+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::44, 2620:1ec:bdf::41] + +2025-03-16T13:02:31.9591065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::53, 13.107.246.66] + +2025-03-16T13:02:32.1594490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::67, 2620:1ec:bdf::74] + +2025-03-16T13:02:34.5570988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T13:02:36.3101495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.144.160, 20.190.148.163] + +2025-03-16T13:02:51.1211409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.6] + +2025-03-16T13:03:03.6152732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98ee, 184.29.57.174, 2600:1406:5e00:4f::1720:98ed] + +2025-03-16T13:03:07.4317425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.161, 20.190.144.160] + +2025-03-16T13:03:21.5242611+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::41, 2620:1ec:bdf::74] + +2025-03-16T13:03:22.1820506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::53, 2620:1ec:bdf::60] + +2025-03-16T13:03:22.2435876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::41, 13.107.246.60] + +2025-03-16T13:03:41.7819656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.9, 20.135.6.2] + +2025-03-16T13:03:45.8507291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98f7, 96.7.128.177, 184.29.57.151] + +2025-03-16T13:03:46.4779378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.160, 20.190.144.137] + +2025-03-16T13:03:50.9185931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T13:03:50.9194010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T13:03:50.9199523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T13:03:52.1410131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::62, 13.107.246.67, 2620:1ec:bdf::67] + +2025-03-16T13:03:52.3699397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::41, 2620:1ec:bdf::63, 2620:1ec:bdf::74] + +2025-03-16T13:03:53.0478318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 2620:1ec:bdf::74, 2620:1ec:bdf::66] + +2025-03-16T13:03:53.8017988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98ee, 184.29.57.174, 23.216.55.183] + +2025-03-16T13:03:59.0704348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-03-16T13:04:02.9551292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.41, 2620:1ec:bdf::53] + +2025-03-16T13:04:27.9311504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.41, 13.107.246.76] + +2025-03-16T13:04:28.5378921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.76, 2620:1ec:bdf::74, 2620:1ec:bdf::66] + +2025-03-16T13:04:36.8701694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::41, 2620:1ec:bdf::63] + +2025-03-16T13:04:38.2677051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::25, 2603:1047:1:168::20, 2603:1047:1:168::26] + +2025-03-16T13:04:56.0206876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.5] + +2025-03-16T13:05:05.0924486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.10] + +2025-03-16T13:05:06.2255167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-03-16T13:05:09.7450569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.76, 2620:1ec:bdf::74] + +2025-03-16T13:05:10.6632391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98ee, 184.29.57.174, 23.216.55.28] + +2025-03-16T13:05:29.2735719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.76, 2620:1ec:bdf::53] + +2025-03-16T13:05:37.1475788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T13:05:37.1504460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T13:05:37.5471549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T13:05:39.0830099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-03-16T13:05:39.0856651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-03-16T13:05:39.5597128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-03-16T13:05:39.9120585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::41, 13.107.246.57] + +2025-03-16T13:05:41.3866727+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::45, 2620:1ec:bdf::41] + +2025-03-16T13:05:41.4503570+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::31, 13.107.246.76] + +2025-03-16T13:05:43.2720518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98f7, 23.216.55.31, 23.216.55.14] + +2025-03-16T13:05:53.9903083+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.163, 20.190.144.160] + +2025-03-16T13:05:55.5098578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.112.9] + +2025-03-16T13:05:56.4481186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 104.17.24.14] + +2025-03-16T13:05:57.0631654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.113.22] + +2025-03-16T13:05:57.6170606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.4] + +2025-03-16T13:05:58.8391766+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.25] + +2025-03-16T13:05:59.9874801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T13:06:00.3533535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T13:06:01.8986766+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 13.107.246.46, 2620:1ec:bdf::41] + +2025-03-16T13:06:03.0107922+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::31, 13.107.246.57] + +2025-03-16T13:06:07.7691067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::20, 2603:1047:1:168::25, 2603:1047:1:168::26] + +2025-03-16T13:06:12.4422242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::62, 13.107.246.67, 13.107.246.71] + +2025-03-16T13:06:18.0147308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.241.44.114] + +2025-03-16T13:06:18.3270789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.7] + +2025-03-16T13:06:22.1557585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-03-16T13:06:22.5004453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.38, 13.107.246.67, 2620:1ec:bdf::62] + +2025-03-16T13:06:23.2718294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.76, 2620:1ec:bdf::60] + +2025-03-16T13:06:23.5170402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T13:06:49.8578532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-16T13:06:52.7823150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.191] + +2025-03-16T13:06:58.1020058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.116.6] + +2025-03-16T13:07:02.6694779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 20.135.6.7, 13.105.74.49] + +2025-03-16T13:07:26.7511415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::60, 13.107.246.66] + +2025-03-16T13:07:34.3063304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T13:07:34.9245912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-03-16T13:07:35.4350748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.4] + +2025-03-16T13:07:36.1894855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.7] + +2025-03-16T13:07:36.2685345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::62, 13.107.246.52] + +2025-03-16T13:07:36.6639142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.46, 13.107.246.57, 2620:1ec:bdf::63] + +2025-03-16T13:07:36.9904308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::45, 2620:1ec:bdf::44] + +2025-03-16T13:07:37.4780533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::44, 2620:1ec:bdf::67] + +2025-03-16T13:07:57.0810178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98ee, 23.216.55.28, 23.216.55.183] + +2025-03-16T13:08:06.0372633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98ed, 23.216.55.28, 23.216.55.183] + +2025-03-16T13:08:06.8343155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.165, 20.190.144.161] + +2025-03-16T13:08:23.0878261+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::60, 2620:1ec:bdf::67] + +2025-03-16T13:08:23.1537741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::44, 2620:1ec:bdf::46] + +2025-03-16T13:08:23.1553556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::31, 13.107.246.57, 13.107.246.44] + +2025-03-16T13:08:36.7707820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::44, 13.107.246.31] + +2025-03-16T13:08:53.7497557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::63, 13.107.246.57] + +2025-03-16T13:08:53.8242028+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::67, 2620:1ec:bdf::71] + +2025-03-16T13:08:53.8250613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.62, 13.107.246.31, 13.107.246.73] + +2025-03-16T13:08:55.6879964+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98ed, 23.216.55.28, 2600:1406:5e00:4f::1720:98ee] + +2025-03-16T13:08:57.2344612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T13:09:06.6889205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::62, 13.107.246.31] + +2025-03-16T13:09:18.2493597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::60, 2620:1ec:bdf::67] + +2025-03-16T13:09:39.8275521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::20, 2603:1047:1:168::25, 20.190.148.166] + +2025-03-16T13:09:45.3293075+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::63, 13.107.246.57, 13.107.246.71] + +2025-03-16T13:09:58.8343444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::67, 2620:1ec:bdf::71] + +2025-03-16T13:10:11.7884926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.4] + +2025-03-16T13:10:12.5952746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98ed, 23.216.55.41, 23.216.55.28] + +2025-03-16T13:10:20.8391799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.10] + +2025-03-16T13:10:21.8024477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.7, 20.135.6.2] + +2025-03-16T13:10:31.8515925+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:10:57.6129004+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:10:57.8304401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1417:1b::cb45:8d3a, 2600:1417:1b::cb45:8d30, 2600:1406:5e00:4f::1720:98ed] + +2025-03-16T13:10:59.0271988+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:10:59.2965283+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:5e00:4f::1720:98f7, 2600:1406:5e00:4f::1720:98e7, 23.56.109.142] + +2025-03-16T13:11:25.0350732+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:11:28.3345060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.165, 20.190.144.166] + +2025-03-16T13:11:50.1852211+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:11:53.5603159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 2603:1047:1:168::1c, 2603:1047:1:168::19] + +2025-03-16T13:11:55.7297039+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:12:03.7603837+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:12:25.7717418+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:12:48.0099528+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:12:48.8089052+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:12:49.1303707+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:13:15.6817765+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:13:17.0130982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T13:13:19.7717349+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:13:19.9993501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T13:13:41.7051119+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:13:41.9555576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T13:14:03.7393529+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:14:05.0532314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T13:14:26.7989133+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:14:27.2512198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-16T13:14:48.9103841+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:14:54.1047682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-03-16T13:14:59.4525664+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:15:00.0287889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-03-16T13:15:02.1318680+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:15:02.5837214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.9] + +2025-03-16T13:15:04.8620167+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:15:05.2975021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.112.22] + +2025-03-16T13:15:29.3505092+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:15:29.8162351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.3] + +2025-03-16T13:15:33.0636557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.112.6] + +2025-03-16T13:15:34.2394303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-03-16T13:15:37.2954091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 2606:50c0:8003::154] + +2025-03-16T13:15:38.1960821+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 2606:50c0:8003::154] + +2025-03-16T13:15:39.6015943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2403::] + +2025-03-16T13:15:41.4687487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.38, 13.107.246.71, 2620:1ec:bdf::76] + +2025-03-16T13:15:42.5707552+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 13.105.28.1] + +2025-03-16T13:15:43.5332207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.54, 2620:1ec:bdf::62] + +2025-03-16T13:15:44.5298553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.67, 13.107.246.69] + +2025-03-16T13:15:45.5644570+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.45, 13.107.246.67] + +2025-03-16T13:15:46.4613403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::31, 13.107.246.45] + +2025-03-16T13:15:50.9479015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-03-16T13:15:57.2305434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.73, 23.56.109.142, 2600:1406:5e00:6::17ce:bc14] + +2025-03-16T13:16:01.3595712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1417:1b::cb45:8d3a, 23.39.160.18, 23.39.160.17] + +2025-03-16T13:16:07.2257443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.160, 20.190.148.166] + +2025-03-16T13:16:11.1704302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 2603:1047:1:168::2f, 2603:1047:1:168::1b] + +2025-03-16T13:16:14.7249982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T13:16:15.4378121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T13:16:18.1144978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-03-16T13:16:23.9363053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.45, 13.107.246.69] + +2025-03-16T13:16:25.1176086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.73, 23.56.109.142, 23.216.55.14] + +2025-03-16T13:16:25.7228108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.138, 20.190.148.164] + +2025-03-16T13:16:25.8197957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.163, 20.190.144.138, 20.190.148.164] + +2025-03-16T13:16:44.3366672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.67, 13.107.246.57] + +2025-03-16T13:16:50.4513091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.3] + +2025-03-16T13:16:52.3483617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.0.138] + +2025-03-16T13:17:04.0012754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::62, 2620:1ec:bdf::44] + +2025-03-16T13:17:06.7237761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.113.3] + +2025-03-16T13:17:25.9489187+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.114.22] + +2025-03-16T13:17:33.8289587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.112.22] + +2025-03-16T13:17:40.6895372+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-03-16T13:17:41.0945935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::40, 13.107.246.54] + +2025-03-16T13:17:50.0612736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.45, 13.107.246.51] + +2025-03-16T13:17:50.4804036+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::60, 2620:1ec:bdf::62] + +2025-03-16T13:17:53.1316328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T13:18:01.4350893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.57, 13.107.246.69] + +2025-03-16T13:18:01.7556001+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.54, 13.107.246.71] + +2025-03-16T13:18:25.0400595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:18:25.4161943+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:18:25.8110918+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:18:26.9359416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:18:26.9368110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:18:28.2780031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 20.135.6.15] + +2025-03-16T13:18:49.6503069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1404::4, 52.109.124.29, 2603:1046:1406::5] + +2025-03-16T13:18:53.5960351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.113.5] + +2025-03-16T13:19:02.5130254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.112.9] + +2025-03-16T13:19:05.8168869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T13:19:23.6039902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.73, 23.56.109.142, 2600:1406:5e00:6::17ce:bc14] + +2025-03-16T13:19:32.4713635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.25] + +2025-03-16T13:19:32.7751254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.57, 13.107.246.69, 2620:1ec:bdf::51] + +2025-03-16T13:19:41.9317288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::40, 2620:1ec:bdf::60, 13.107.246.54] + +2025-03-16T13:19:51.4604446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::40, 2620:1ec:bdf::69, 13.107.246.45] + +2025-03-16T13:19:55.0970011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-03-16T13:20:04.4426963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-03-16T13:20:08.5974027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-03-16T13:20:08.6006734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.45, 13.107.246.57] + +2025-03-16T13:20:14.2870944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.164, 20.190.144.139] + +2025-03-16T13:20:14.2884573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.163, 20.190.148.164, 20.190.144.139] + +2025-03-16T13:20:21.6785092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-16T13:20:24.7464559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.57, 2620:1ec:bdf::51, 13.107.246.74] + +2025-03-16T13:20:25.0621699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::40, 2620:1ec:bdf::69, 13.107.246.51] + +2025-03-16T13:20:25.0633687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::62, 2620:1ec:bdf::51] + +2025-03-16T13:20:25.0643418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.57, 2620:1ec:bdf::38] + +2025-03-16T13:20:25.6415708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T13:20:44.1755649+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:20:44.4205480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.25, 140.82.113.25] + +2025-03-16T13:20:47.8824146+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:20:48.1542253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 2603:1036:2400::b] + +2025-03-16T13:20:49.3082717+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:20:49.3764352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.74, 2620:1ec:bdf::44] + +2025-03-16T13:20:50.8629711+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:20:52.8351184+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:20:52.9021095+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.57, 13.107.246.41] + +2025-03-16T13:20:54.5358950+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:20:56.4451673+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:20:56.5723847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.51, 13.107.246.74] + +2025-03-16T13:21:17.6246643+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:21:17.6903711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.62, 13.107.246.57, 13.107.246.74] + +2025-03-16T13:21:23.3111756+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:21:45.1655883+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:21:45.2308714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.71, 13.107.246.54, 13.107.246.64] + +2025-03-16T13:22:06.9340153+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:22:29.9987231+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:22:53.2076572+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:23:15.2176553+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:23:15.5827605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 2600:1406:5e00:6::17ce:bc14, 2600:1406:5e00:6::17ce:bc3f] + +2025-03-16T13:23:19.7030547+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:23:24.7109863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.48.5.7, 23.39.160.18, 23.48.5.20] + +2025-03-16T13:23:37.2064876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.136, 20.190.148.166] + +2025-03-16T13:23:55.8914328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 2603:1047:1:168::11, 20.190.144.160] + +2025-03-16T13:24:24.5291427+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:24:47.7862683+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:25:04.3802378+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:25:28.5963863+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T13:25:29.3478127+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:25:30.8206792+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:25:36.0143645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T13:26:06.2742418+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:26:06.7672529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T13:26:12.8731552+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:26:44.1015823+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T13:26:44.5220845+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.10] + +2025-03-16T13:27:04.6004683+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:27:23.6418039+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:27:24.9548844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-03-16T13:27:53.4056053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.5] + +2025-03-16T13:27:56.6302357+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:28:01.8307886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T13:28:10.3882730+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:28:10.6013144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T13:28:20.9401671+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:28:21.0998230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T13:28:44.9252449+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-03-16T13:28:46.0714411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.113.25] + +2025-03-16T13:28:47.6217656+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:28:48.0536437+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.22] + +2025-03-16T13:28:52.1211443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 2603:1036:2400::b, 2603:1036:2404::2] + +2025-03-16T13:28:53.1566313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::51, 13.107.246.74] + +2025-03-16T13:28:54.0975826+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8000::154] + +2025-03-16T13:28:54.6961929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8000::154] + +2025-03-16T13:28:56.6327721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.51] + +2025-03-16T13:28:57.6305707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.62, 13.107.246.38, 2620:1ec:bdf::51] + +2025-03-16T13:29:02.6255416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.41, 13.107.246.60, 13.107.246.69] + +2025-03-16T13:29:03.5710057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.64, 13.107.246.74] + +2025-03-16T13:29:04.7251606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.1, 13.105.74.49] + +2025-03-16T13:29:08.3353704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-03-16T13:29:14.9750473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.48.5.20, 23.39.160.18, 23.48.5.7] + +2025-03-16T13:29:16.2884871+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 2600:1406:2e00:4d::172e:d844, 2600:1406:2e00:4d::172e:d84c] + +2025-03-16T13:29:38.0750904+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:29:41.4660059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.165, 20.190.148.162] + +2025-03-16T13:29:57.8899548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::18, 2603:1047:1:168::24, 20.190.144.164] + +2025-03-16T13:30:04.7225741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T13:30:06.2371160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T13:30:06.8497871+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T13:30:18.2857003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-03-16T13:30:19.2552223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.113.25] + +2025-03-16T13:30:41.9294086+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:30:41.9321450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-03-16T13:30:42.5810177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.21] + +2025-03-16T13:30:42.5832726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 2603:1036:2404::2, 52.109.89.117] + +2025-03-16T13:30:42.9018972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.69, 13.107.246.73] + +2025-03-16T13:30:43.2235769+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::69] + +2025-03-16T13:30:43.8075179+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::51, 13.107.246.74] + +2025-03-16T13:30:44.1378593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T13:30:44.6713144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.1, 20.135.2.0] + +2025-03-16T13:30:45.0031868+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.74, 2620:1ec:bdf::60] + +2025-03-16T13:30:45.0042337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 2603:1046:1406::2, 52.109.44.108] + +2025-03-16T13:30:45.8132514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.44.112] + +2025-03-16T13:30:46.5181910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:5::17c1:b804, 2600:140b:1a00:5::17c1:b810, 23.39.160.18] + +2025-03-16T13:30:46.9477160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:5::17c1:b823, 2600:140b:1a00:5::17c1:b828, 23.206.250.88] + +2025-03-16T13:31:07.9919571+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:31:17.4000593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4] + +2025-03-16T13:31:18.3714160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T13:31:18.3738296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.9] + +2025-03-16T13:31:19.5608575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.114.25] + +2025-03-16T13:31:23.9807556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-03-16T13:31:24.5268741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 52.109.89.117] + +2025-03-16T13:31:26.0830128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.2.0, 20.135.1.1, 40.90.133.112] + +2025-03-16T13:31:26.4888092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.74, 2620:1ec:bdf::67] + +2025-03-16T13:31:31.9863689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::31] + +2025-03-16T13:31:32.7814818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.73, 13.107.246.74] + +2025-03-16T13:31:39.3530000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.76, 13.107.246.74] + +2025-03-16T13:31:40.4976786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-03-16T13:31:51.9273905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.25] + +2025-03-16T13:31:53.6396698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 20.135.2.0, 20.135.1.1] + +2025-03-16T13:31:54.5679112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T13:32:12.5737992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T13:32:25.8987070+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-03-16T13:32:33.2017407+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-03-16T13:32:40.4084091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.76, 2620:1ec:bdf::51] + +2025-03-16T13:32:44.7061789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.112.25] + +2025-03-16T13:32:54.3147937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.74.50, 20.135.2.0, 40.90.130.192] + +2025-03-16T13:32:55.3897751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:4::17c1:b884, 2600:140b:1a00:4::17c1:b88e, 2600:140b:1a00:5::17c1:b804] + +2025-03-16T13:32:55.3908061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:5::17c1:b823, 2600:140b:1a00:5::17c1:b828, 2600:1406:2e00:4d::172e:d844] + +2025-03-16T13:32:58.8425339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T13:32:58.8433107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T13:32:58.8440415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T13:32:58.8447013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8000::154, 185.199.108.133, 2606:50c0:8003::154] + +2025-03-16T13:32:58.8453213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[2606:50c0:8000::154, 185.199.108.133, 2606:50c0:8003::154] + +2025-03-16T13:33:02.8984439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T13:33:02.8993911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T13:33:02.9000715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T13:33:02.9008601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 185.199.108.133] + +2025-03-16T13:33:02.9015894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8000::154, 185.199.108.133] + +2025-03-16T13:33:08.4470400+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:4::17c1:b89a, 2600:140b:1a00:4::17c1:b8a8, 2600:140b:1a00:5::17c1:b823] + +2025-03-16T13:33:16.6271948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-03-16T13:33:19.5392282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.50, 20.135.2.0] + +2025-03-16T13:33:26.4374995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 2603:1036:2400::9] + +2025-03-16T13:33:28.3854890+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.74.50] + +2025-03-16T13:33:30.5238197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.74, 2620:1ec:bdf::60] + +2025-03-16T13:33:33.5416565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.38, 2620:1ec:bdf::51] + +2025-03-16T13:33:38.3368013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.73, 2620:1ec:bdf::66] + +2025-03-16T13:33:39.9370363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.2] + +2025-03-16T13:33:40.5567177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.151, 40.126.35.128, 40.126.35.80] + +2025-03-16T13:33:53.8084012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.21] + +2025-03-16T13:33:54.1802263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 104.17.24.14] + +2025-03-16T13:34:15.2233672+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T13:34:15.4561472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.114.25] + +2025-03-16T13:34:16.2739598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 52.109.120.46] + +2025-03-16T13:34:16.3567841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.253.70, 13.107.246.74, 13.107.246.60] + +2025-03-16T13:34:16.8663411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.76, 13.107.246.66] + +2025-03-16T13:34:16.9522742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::31, 2620:1ec:bdf::41, 13.107.246.44] + +2025-03-16T13:34:17.0381462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::53, 2620:1ec:bdf::66, 13.107.246.44] + +2025-03-16T13:34:18.4144789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.57, 13.107.246.38] + +2025-03-16T13:34:19.8614336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-03-16T13:34:20.4261480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T13:34:22.8293966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:4::17c1:b884, 2600:140b:1a00:4::17c1:b88e, 2600:140b:1a00:3::17c1:b621] + +2025-03-16T13:34:28.1391640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:4::17c1:b89a, 2600:140b:1a00:4::17c1:b8a8, 2600:140b:1a00:3::17c1:b611] + +2025-03-16T13:34:28.5165052+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.165, 20.190.144.165] + +2025-03-16T13:34:28.7722418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::24, 2603:1047:1:168::2e, 20.190.144.160] + +2025-03-16T13:34:31.9828161+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T13:34:59.6962068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.165, 20.190.148.167] + +2025-03-16T13:35:05.0852472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.148.163, 20.190.148.167] + +2025-03-16T13:35:06.7703285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T13:35:07.0126984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T13:35:07.0146491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T13:35:33.9232637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-03-16T13:35:35.5366772+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:35:42.1419149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.38, 13.107.253.70] + +2025-03-16T13:35:47.1091738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::31, 13.107.246.41, 2620:1ec:bdf::41] + +2025-03-16T13:35:47.5518774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::53, 2620:1ec:bdf::66, 13.107.246.51] + +2025-03-16T13:35:47.8744006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::38, 13.107.246.57] + +2025-03-16T13:35:59.5003721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:4::17c1:b89a, 2600:140b:1a00:4::17c1:b8a8, 2600:140b:1a00:5::17c1:b828] + +2025-03-16T13:36:00.2511446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:5::17c1:b810, 2600:140b:1a00:5::17c1:b804, 2600:140b:1a00:4::17c1:b884] + +2025-03-16T13:36:12.4529115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.76, 13.107.246.40] + +2025-03-16T13:36:14.1967403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 13.105.28.18] + +2025-03-16T13:36:16.2343195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T13:36:22.0971916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.8.12] + +2025-03-16T13:36:32.0548002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::31, 13.107.246.44, 13.107.246.41] + +2025-03-16T13:36:32.3672854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.44, 2620:1ec:bdf::66] + +2025-03-16T13:36:32.3685727+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.44, 2620:1ec:bdf::38] + +2025-03-16T13:36:36.1816315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::66, 13.107.246.51] + +2025-03-16T13:36:38.6061894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.113.10] + +2025-03-16T13:36:46.7378368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.66, 13.107.246.51] + +2025-03-16T13:36:55.4193019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.113.5] + +2025-03-16T13:36:56.7996432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.112.25] + +2025-03-16T13:37:18.3638641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-03-16T13:37:26.0721589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-03-16T13:37:26.4869062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-16T13:37:29.6893576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-03-16T13:37:34.2797708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-03-16T13:37:42.7008879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::62, 13.107.246.38] + +2025-03-16T13:37:45.3296709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::31, 13.107.246.44, 13.107.246.31] + +2025-03-16T13:37:47.9200629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.62, 13.107.246.44] + +2025-03-16T13:37:57.2495581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:5::17c1:b810, 2600:140b:1a00:5::17c1:b804, 2600:140b:1a00:19::17dc:44af] + +2025-03-16T13:37:59.5778235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T13:37:59.7061297+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T13:37:59.7081586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T13:37:59.7101839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T13:37:59.7117823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T13:38:10.9796322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:38:11.4462874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:38:11.4497130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:38:11.4519158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-03-16T13:38:11.4536773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-03-16T13:38:13.3246448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:4::17c1:b8a8, 2600:140b:1a00:4::17c1:b89a, 2600:140b:1a00:19::17dc:4486] + +2025-03-16T13:38:33.3389047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-16T13:38:39.4750985+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:5::17c1:b810, 2600:140b:1a00:21::17da:5e24] + +2025-03-16T13:38:43.7698525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.112.9] + +2025-03-16T13:38:55.0688637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:190e] + +2025-03-16T13:38:58.2610645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.113.5] + +2025-03-16T13:38:59.9178940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.40, 13.107.246.66] + +2025-03-16T13:39:09.0607411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T13:39:15.7445638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.114.26] + +2025-03-16T13:39:18.4860897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:39:18.4872428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:39:21.9818993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 2603:1036:2400::9] + +2025-03-16T13:39:22.0704511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::74, 2620:1ec:bdf::67] + +2025-03-16T13:39:25.5185633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T13:39:25.5871891+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.44, 2620:1ec:bdf::51] + +2025-03-16T13:39:26.0268826+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::65, 13.107.246.62] + +2025-03-16T13:39:27.0992629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-03-16T13:39:28.9668681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:4::17c1:b8a8, 2600:140b:1a00:4::17c1:b89a, 2600:140b:1a00:3::17c1:b611] + +2025-03-16T13:39:29.6127802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:3::17c1:b621, 2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:5::17c1:b810] + +2025-03-16T13:39:29.7111205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.165, 20.190.144.137] + +2025-03-16T13:39:29.8216143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.148.164, 20.190.144.166] + +2025-03-16T13:39:41.2479136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.113.21] + +2025-03-16T13:39:46.3734241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.165, 20.190.144.139] + +2025-03-16T13:39:48.9478980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::69, 2620:1ec:bdf::74] + +2025-03-16T13:39:49.7785511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::69, 13.107.246.44] + +2025-03-16T13:40:06.0405667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.165, 20.190.144.137] + +2025-03-16T13:40:09.1611770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 20.190.144.161, 2603:1047:1:168::2e] + +2025-03-16T13:40:33.9231031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.114.4] + +2025-03-16T13:40:35.1770116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.114.25] + +2025-03-16T13:41:09.4180269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.114.5] + +2025-03-16T13:41:10.0874738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::74, 2620:1ec:bdf::69] + +2025-03-16T13:41:10.6134537+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 2620:1ec:bdf::31, 13.107.246.41] + +2025-03-16T13:41:10.9131389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.44, 13.107.246.57] + +2025-03-16T13:41:11.3604152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 13.107.246.41, 2620:1ec:bdf::51] + +2025-03-16T13:41:11.8964253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::64, 2620:1ec:bdf::65] + +2025-03-16T13:41:15.0168953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:5::17c1:b804, 2600:140b:1a00:3::17c1:b621, 2600:140b:1a00:21::17da:5e08] + +2025-03-16T13:41:29.0483695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902] + +2025-03-16T13:41:30.1673650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-03-16T13:41:32.8147205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.143.38.0] + +2025-03-16T13:41:38.4172014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.57, 2620:1ec:bdf::74] + +2025-03-16T13:41:38.8562173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 13.107.246.41, 13.107.246.31] + +2025-03-16T13:41:41.5492012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.113.10] + +2025-03-16T13:41:51.9193351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::74, 2620:1ec:bdf::66] + +2025-03-16T13:41:52.3938892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.62, 2620:1ec:bdf::40] + +2025-03-16T13:41:52.9505461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 13.107.246.67, 13.107.246.41] + +2025-03-16T13:41:53.3463576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::64, 2620:1ec:bdf::44] + +2025-03-16T13:42:05.4087194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.114.10] + +2025-03-16T13:42:05.6199188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.112.5] + +2025-03-16T13:42:26.9325703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-03-16T13:42:28.3911291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-03-16T13:42:30.0560096+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-03-16T13:42:35.4847150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-03-16T13:42:49.8842536+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::66, 2620:1ec:bdf::69] + +2025-03-16T13:42:49.9495306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::40, 13.107.246.62] + +2025-03-16T13:42:54.3179060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:3::17c1:b621, 2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:21::17da:5e24] + +2025-03-16T13:43:03.6508319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8003::154] + +2025-03-16T13:43:03.7666822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:43:07.4584844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:43:07.8659517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:43:08.2085834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:43:08.2095707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:43:16.0825022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.112.10] + +2025-03-16T13:43:19.0388155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:4::17c1:b89a, 2600:140b:1a00:4::17c1:b8a8, 2600:140b:1a00:3::17c1:b611] + +2025-03-16T13:43:25.4109180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 2603:1036:2400::9, 2603:1036:2405::1] + +2025-03-16T13:43:28.6097903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.9] + +2025-03-16T13:43:30.7769690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.18, 20.135.6.9] + +2025-03-16T13:43:42.5883875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::69, 13.107.246.38] + +2025-03-16T13:43:42.9771883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 13.107.246.67, 2620:1ec:bdf::41] + +2025-03-16T13:43:42.9794702+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::41, 2620:1ec:bdf::40] + +2025-03-16T13:43:43.2031914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-03-16T13:43:44.4352307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:4::17c1:b89a, 2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:4::17c1:b8a8] + +2025-03-16T13:43:44.8132254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:21::17da:5e24, 2600:140b:1a00:3::17c1:b621] + +2025-03-16T13:43:46.6611979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.114.10] + +2025-03-16T13:43:50.7402648+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:3::17c1:b611, 2600:140b:1a00:19::17dc:4495] + +2025-03-16T13:43:52.5543031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::74, 2620:1ec:bdf::69] + +2025-03-16T13:43:56.8859644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-03-16T13:43:57.1440298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-03-16T13:44:16.8066852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.112.26] + +2025-03-16T13:44:17.4081507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 13.107.246.41, 2620:1ec:bdf::74] + +2025-03-16T13:44:25.7019550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 13.107.246.74, 2620:1ec:bdf::60] + +2025-03-16T13:44:26.3375792+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T13:44:26.4079695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.51, 2620:1ec:bdf::73] + +2025-03-16T13:44:26.4694643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 13.107.246.73, 13.107.246.57] + +2025-03-16T13:44:26.5338767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.57, 2620:1ec:bdf::44] + +2025-03-16T13:44:26.5959281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::64, 13.107.246.73] + +2025-03-16T13:44:34.6545313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 2603:1036:2400::9] + +2025-03-16T13:44:36.8889298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:3::17c1:b611, 2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:19::17dc:4495] + +2025-03-16T13:44:37.2272256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:21::17da:5e24, 2600:140b:1a00:3::17c1:b612] + +2025-03-16T13:44:37.2283668+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.167, 20.190.144.165] + +2025-03-16T13:44:43.0054652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-03-16T13:44:50.7929789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.164, 20.190.148.167] + +2025-03-16T13:44:52.4615149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 13.107.246.45, 13.107.246.74] + +2025-03-16T13:44:52.7963177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.57, 2620:1ec:bdf::41] + +2025-03-16T13:45:06.3936606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.148.167, 20.190.144.165] + +2025-03-16T13:45:09.5222555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.144.160, 2603:1047:1:168::2e] + +2025-03-16T13:45:11.2811671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T13:45:11.2824681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T13:45:27.1454281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.3] + +2025-03-16T13:45:34.2644340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.18, 13.105.28.1] + +2025-03-16T13:45:37.3939176+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:45:45.9772474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-03-16T13:45:50.9205026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.112.26] + +2025-03-16T13:45:52.9062417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 13.107.246.41] + +2025-03-16T13:45:52.9086875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 2620:1ec:bdf::41, 2620:1ec:bdf::40] + +2025-03-16T13:45:52.9111042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 20.135.6.9] + +2025-03-16T13:45:59.4857244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.57, 2620:1ec:bdf::41] + +2025-03-16T13:45:59.7178271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::67, 2620:1ec:bdf::64, 13.107.246.73] + +2025-03-16T13:46:12.6828317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.5] + +2025-03-16T13:46:13.3568438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.73, 13.107.246.57] + +2025-03-16T13:46:13.3576987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.54] + +2025-03-16T13:46:25.9044675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 13.105.28.1] + +2025-03-16T13:46:34.2384352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T13:46:34.3513222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T13:46:35.5779993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-03-16T13:46:41.4504868+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.112.9] + +2025-03-16T13:46:42.0990981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 13.107.246.45, 2620:1ec:bdf::53] + +2025-03-16T13:47:09.0335177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.6] + +2025-03-16T13:47:09.2520558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.26] + +2025-03-16T13:47:18.5972956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.148.167, 20.190.144.160] + +2025-03-16T13:47:20.1523092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.3] + +2025-03-16T13:47:28.2648385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::41, 2620:1ec:bdf::73] + +2025-03-16T13:47:34.6001008+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-03-16T13:47:34.8164519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.113.25] + +2025-03-16T13:47:38.9757108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-03-16T13:47:56.6031791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 2603:1046:1401::1] + +2025-03-16T13:47:59.7953979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:21::17da:5e24, 2600:140b:1a00:19::17dc:44aa] + +2025-03-16T13:48:02.6504630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.121.5] + +2025-03-16T13:48:06.0710285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:19::17dc:4495, 2600:140b:1a00:21::17da:5e12] + +2025-03-16T13:48:06.6142551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:21::17da:5e24, 2600:140b:1a00:19::17dc:44af] + +2025-03-16T13:48:08.7537678+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T13:48:08.7563216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T13:48:08.7585554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T13:48:09.1124021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T13:48:09.1133702+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T13:48:19.0086584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T13:48:19.0096120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T13:48:19.0106257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T13:48:19.5062310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-03-16T13:48:19.5070348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-03-16T13:48:20.9035265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:19::17dc:4486, 2600:140b:1a00:21::17da:5e12] + +2025-03-16T13:48:28.1841892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.164, 20.190.148.167] + +2025-03-16T13:48:28.1851695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.144.162, 20.190.148.167] + +2025-03-16T13:48:40.2284418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.241.44.114] + +2025-03-16T13:48:41.8410584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-03-16T13:48:42.8261923+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::41, 2620:1ec:bdf::66] + +2025-03-16T13:48:44.1540783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.67, 13.107.246.45] + +2025-03-16T13:48:44.2199447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.57, 2620:1ec:bdf::44] + +2025-03-16T13:48:44.2210128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::66, 2620:1ec:bdf::73] + +2025-03-16T13:48:44.7381970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e12, 2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:19::17dc:4486] + +2025-03-16T13:48:44.7390993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e24, 2600:140b:1a00:19::17dc:44af, 2600:140b:1a00:21::17da:5e08] + +2025-03-16T13:48:46.4532233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44af, 2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:19::17dc:44aa] + +2025-03-16T13:48:52.0877897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.112.10] + +2025-03-16T13:48:53.2062204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.57, 2620:1ec:bdf::44] + +2025-03-16T13:48:57.9390013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-03-16T13:48:58.2061116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.22] + +2025-03-16T13:49:09.9031931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::66, 2620:1ec:bdf::73] + +2025-03-16T13:49:10.8102376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.57] + +2025-03-16T13:49:12.7380716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.0] + +2025-03-16T13:49:16.6455009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.114.5] + +2025-03-16T13:49:20.7079278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-03-16T13:49:21.8576887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-03-16T13:49:21.8607799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-03-16T13:49:22.3738534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 52.109.120.46] + +2025-03-16T13:49:26.8356225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.67, 13.107.246.45] + +2025-03-16T13:49:26.9128051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.41, 13.107.246.45] + +2025-03-16T13:49:26.9791824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::45, 13.107.246.67] + +2025-03-16T13:49:27.0491061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.54, 2620:1ec:bdf::66, 2620:1ec:bdf::44] + +2025-03-16T13:49:27.1141383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::36, 2620:1ec:bdf::40] + +2025-03-16T13:49:29.2425364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T13:49:32.7636153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.144.162, 20.190.148.165] + +2025-03-16T13:49:41.5426146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.160, 20.190.148.167] + +2025-03-16T13:49:50.1063906+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.3] + +2025-03-16T13:49:50.6696363+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +mrodevicemgr.officeapps.live.com->127.0.0.1 + +2025-03-16T13:49:50.6706332+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +mrodevicemgr.officeapps.live.com->::1 + +2025-03-16T13:49:51.4590588+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://mrodevicemgr.officeapps.live.com/mrodevicemgrsvc/api/v1/SDXReleaseDataPackages responded 202 in 594.3495 ms + +2025-03-16T13:49:53.0332737+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.67, 2620:1ec:bdf::53] + +2025-03-16T13:49:53.0951690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.54, 2620:1ec:bdf::44, 2620:1ec:bdf::66] + +2025-03-16T13:49:53.7005843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.41, 13.107.246.40] + +2025-03-16T13:50:16.1815614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::66, 2620:1ec:bdf::40, 13.107.246.67] + +2025-03-16T13:50:17.9526271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.69, 2620:1ec:bdf::45] + +2025-03-16T13:50:21.9423401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T13:50:34.0709006+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T13:50:34.0720385+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T13:50:34.1115069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-16T13:50:34.1133612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.10] + +2025-03-16T13:50:34.6530646+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 324.4032 ms + +2025-03-16T13:50:34.7293628+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.3029 ms + +2025-03-16T13:50:48.8973870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.9] + +2025-03-16T13:50:50.8418750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.41, 13.107.246.67] + +2025-03-16T13:50:57.6722600+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 583.0741 ms + +2025-03-16T13:50:57.7432266+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.6452 ms + +2025-03-16T13:51:00.4668287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.54, 2620:1ec:bdf::44, 2620:1ec:bdf::71] + +2025-03-16T13:51:00.8305510+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::40, 2620:1ec:bdf::60] + +2025-03-16T13:51:18.2453816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::66, 13.107.246.67] + +2025-03-16T13:51:18.8212191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.4] + +2025-03-16T13:51:18.9422793+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 75.8585 ms + +2025-03-16T13:51:19.0163184+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.0895 ms + +2025-03-16T13:51:36.8613404+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T13:51:36.9759191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T13:51:38.4505796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::66, 2620:1ec:bdf::38] + +2025-03-16T13:51:44.0288003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::53, 2620:1ec:bdf::66, 2620:1ec:bdf::40] + +2025-03-16T13:51:44.2928894+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::53, 13.107.246.69] + +2025-03-16T13:51:44.6230419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::44, 2620:1ec:bdf::40] + +2025-03-16T13:51:49.0358035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::40, 2620:1ec:bdf::60] + +2025-03-16T13:51:52.2473785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-16T13:51:52.5781153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::66, 13.107.246.53] + +2025-03-16T13:51:55.5901988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::53, 2620:1ec:bdf::66] + +2025-03-16T13:51:55.9300497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.67, 2620:1ec:bdf::53] + +2025-03-16T13:51:55.9975143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::60, 13.107.246.57] + +2025-03-16T13:51:55.9989676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 13.107.246.67, 2620:1ec:bdf::66] + +2025-03-16T13:52:09.6802767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.114.25] + +2025-03-16T13:52:25.5202197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.148.165, 20.190.144.160] + +2025-03-16T13:52:35.3562560+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.112.25] + +2025-03-16T13:52:39.9756108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-03-16T13:53:05.9538538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.54, 2620:1ec:bdf::44, 13.107.246.66] + +2025-03-16T13:53:08.0816599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8001::154] + +2025-03-16T13:53:08.0833120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8001::154] + +2025-03-16T13:53:09.5315849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e12, 2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:1b::17dc:469b] + +2025-03-16T13:53:14.8342388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:21::17da:5e24, 2600:140b:1a00:1b::17dc:46a7] + +2025-03-16T13:53:16.2387607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T13:53:16.2432332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T13:53:16.2458855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T13:53:16.8442138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T13:53:16.8451451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T13:53:24.8516466+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.191] + +2025-03-16T13:53:25.2947322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e12, 2600:140b:1a00:19::17dc:4495, 2600:140b:1a00:19::17dc:4486] + +2025-03-16T13:53:28.6589940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 2603:1047:1:168::2f, 20.190.144.136] + +2025-03-16T13:53:35.1371484+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.148.167, 20.190.144.137] + +2025-03-16T13:53:35.1381206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 2603:1047:1:168::2f, 20.190.148.165] + +2025-03-16T13:53:44.8119787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4495, 2600:140b:1a00:19::17dc:4486, 2600:140b:1a00:1b::17dc:469b] + +2025-03-16T13:53:46.5582107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::53, 13.107.246.53] + +2025-03-16T13:53:47.0914986+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 13.107.246.67, 13.107.246.53] + +2025-03-16T13:53:47.1572410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:21::17da:5e24, 2600:140b:1a00:21::17da:5e08, 2600:140b:1a00:1b::17dc:46a7] + +2025-03-16T13:53:52.4074671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::53, 13.107.246.69] + +2025-03-16T13:53:52.7038746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.54, 13.107.246.66, 2620:1ec:bdf::71] + +2025-03-16T13:53:56.5301030+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::53, 13.107.246.77] + +2025-03-16T13:53:56.5311151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.77, 2620:1ec:bdf::60] + +2025-03-16T13:54:00.8797982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:190e, 104.17.24.14] + +2025-03-16T13:54:01.1222520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.114.21] + +2025-03-16T13:54:12.4008182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.5] + +2025-03-16T13:54:17.0006118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-16T13:54:24.3361785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.25, 140.82.113.26] + +2025-03-16T13:54:34.4692832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.112.6] + +2025-03-16T13:54:35.0347166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.77, 13.107.246.73] + +2025-03-16T13:54:36.0137765+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::71, 13.107.246.73] + +2025-03-16T13:54:37.8870603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.137, 20.190.144.165] + +2025-03-16T13:54:38.1692710+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 2603:1047:1:168::2f, 20.190.144.160] + +2025-03-16T13:54:48.5718382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.160, 20.190.144.137] + +2025-03-16T13:54:49.0941830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 2603:1047:1:168::2f, 2603:1047:1:168::29] + +2025-03-16T13:54:51.3334154+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.112.22] + +2025-03-16T13:54:53.1828398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T13:54:54.2505780+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.164, 20.190.144.160] + +2025-03-16T13:54:56.1726840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.77, 13.107.246.69] + +2025-03-16T13:55:14.0568350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1b, 2603:1047:1:168::2e, 2603:1047:1:168::2f] + +2025-03-16T13:55:15.6148471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T13:55:15.6158226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T13:55:25.7181701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T13:55:34.9825710+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-03-16T13:55:35.9058904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::53, 13.107.246.77] + +2025-03-16T13:55:47.9387481+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T13:55:58.9901157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.114.9] + +2025-03-16T13:55:59.2186663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-03-16T13:56:01.4813817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.74] + +2025-03-16T13:56:02.8254979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.73, 2620:1ec:bdf::51] + +2025-03-16T13:56:02.8905854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.73, 2620:1ec:bdf::71] + +2025-03-16T13:56:19.7060358+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.53, 13.107.246.45] + +2025-03-16T13:56:21.3131712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.67, 13.107.246.53, 13.107.246.45] + +2025-03-16T13:56:21.4182104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.13] + +2025-03-16T13:56:34.2193798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T13:56:35.3916332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.116.5] + +2025-03-16T13:56:42.7364375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T13:56:43.2575813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.114.21] + +2025-03-16T13:56:44.3781067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 13.107.246.45, 13.107.246.73] + +2025-03-16T13:56:44.4439962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.77, 2620:1ec:bdf::57] + +2025-03-16T13:56:47.5448646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::51, 13.107.246.74] + +2025-03-16T13:56:56.5368027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::40, 13.107.246.45] + +2025-03-16T13:56:56.5999363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.73, 2620:1ec:bdf::51] + +2025-03-16T13:56:56.9616597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 13.107.246.67, 13.107.246.45] + +2025-03-16T13:56:57.3081603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:1b::17dc:469b, 2600:140b:1a00:1b::17dc:46a3, 2600:140b:1a00:21::17da:5e08] + +2025-03-16T13:57:12.3136158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.26, 140.82.113.25] + +2025-03-16T13:57:18.4248926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.116.3] + +2025-03-16T13:57:19.2641259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:1b::17dc:469b, 2600:140b:1a00:1b::17dc:46a3, 2600:140b:10::684b:a918] + +2025-03-16T13:57:33.8060857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.1, 20.135.6.7] + +2025-03-16T13:57:36.4573747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-03-16T13:57:39.4838598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.66, 13.107.246.73] + +2025-03-16T13:57:40.2881229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.143.38.0, 13.105.28.1] + +2025-03-16T13:57:41.2256725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:1b::17dc:46a7, 2600:140b:1a00:1b::17dc:46aa, 2600:1413:5000:25::1738:6121] + +2025-03-16T13:58:18.9701540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.73, 2620:1ec:bdf::71] + +2025-03-16T13:58:20.6832294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 2603:1046:1406::2] + +2025-03-16T13:58:23.4363760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:1b::17dc:46a3, 2600:140b:1a00:1b::17dc:469b, 2600:140b:10::684b:a918] + +2025-03-16T13:58:23.9249597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:1b::17dc:46aa, 2600:140b:1a00:1b::17dc:46a7, 2600:1413:5000:25::1738:6121] + +2025-03-16T13:58:28.3684058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:58:28.5556411+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:58:28.7238531+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T13:58:29.2534523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.112.10] + +2025-03-16T13:58:34.3590180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-03-16T13:58:34.3603575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-03-16T13:58:42.7533669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 13.107.246.67, 13.107.246.41] + +2025-03-16T13:58:43.9768009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.1, 20.135.6.7] + +2025-03-16T13:58:45.9411397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2e, 20.190.148.164, 2603:1047:1:168::25] + +2025-03-16T13:58:54.7275506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::66, 2620:1ec:bdf::40] + +2025-03-16T13:58:54.9950464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::66, 13.107.246.73] + +2025-03-16T13:59:07.7803359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:180e] + +2025-03-16T13:59:08.6168377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.114.21] + +2025-03-16T13:59:11.3854116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::57, 2620:1ec:bdf::62] + +2025-03-16T13:59:13.0240819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.1, 20.135.6.11] + +2025-03-16T13:59:15.0022058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:1b::17dc:46a3, 2600:140b:1a00:1b::17dc:469b, 2600:140b:10::684b:a90b] + +2025-03-16T13:59:16.0153140+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:1b::17dc:46aa, 2600:140b:1a00:1b::17dc:46a7, 2600:140b:10::684b:a913] + +2025-03-16T13:59:31.5064651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.114.25] + +2025-03-16T13:59:34.6718847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8003::154, 2606:50c0:8001::154] + +2025-03-16T13:59:34.8436034+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8003::154, 2606:50c0:8001::154] + +2025-03-16T13:59:35.5675886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.74, 2620:1ec:bdf::51] + +2025-03-16T13:59:36.3855302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::66, 13.107.246.38] + +2025-03-16T13:59:37.0245959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::66, 13.107.246.74] + +2025-03-16T13:59:39.0370863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.164, 20.190.148.162] + +2025-03-16T13:59:43.4512432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.162, 20.190.144.137] + +2025-03-16T13:59:45.3168488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.137, 20.190.148.166] + +2025-03-16T13:59:50.2355818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2e, 2603:1047:1:168::29, 20.190.148.164] + +2025-03-16T13:59:52.0142949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.4] + +2025-03-16T13:59:52.2382532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.113.21] + +2025-03-16T13:59:55.4790223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.1, 13.105.74.49] + +2025-03-16T13:59:56.9541081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2403::] + +2025-03-16T13:59:57.4015355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 2620:1ec:bdf::66] + +2025-03-16T14:00:02.7155870+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 13.107.246.38, 2620:1ec:bdf::40] + +2025-03-16T14:00:02.7168317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 13.107.246.74] + +2025-03-16T14:00:08.8709195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.166, 20.190.144.137] + +2025-03-16T14:00:17.0737720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 2603:1047:1:168::2c, 2603:1047:1:168::27] + +2025-03-16T14:00:19.0264797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 13.107.246.67, 2620:1ec:bdf::40] + +2025-03-16T14:00:26.2484739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-03-16T14:00:39.4144473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 13.107.246.38] + +2025-03-16T14:00:41.1636729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::62, 13.107.246.74] + +2025-03-16T14:00:41.5377323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.63, 13.107.246.74, 2620:1ec:bdf::52] + +2025-03-16T14:00:42.3966884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.74.49, 20.135.6.11] + +2025-03-16T14:01:16.1894633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.114.9] + +2025-03-16T14:01:16.4659960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.3] + +2025-03-16T14:01:17.6785288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.114.26] + +2025-03-16T14:01:28.6320987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:7::17c1:ba0e, 2600:140b:1a00:7::17c1:ba2a, 2600:140b:1a00:1b::17dc:46aa] + +2025-03-16T14:01:29.0300542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:1b::17dc:46a3, 2600:140b:1a00:1b::17dc:469b, 2600:140b:1a00:7::17c1:ba2a] + +2025-03-16T14:01:39.2135508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T14:01:45.1222632+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T14:01:45.2369151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T14:01:46.0694948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::62, 13.107.246.74, 13.107.246.52] + +2025-03-16T14:01:55.2582973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::40, 13.107.246.74] + +2025-03-16T14:01:57.3395148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.38, 2620:1ec:bdf::40] + +2025-03-16T14:01:57.6689997+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.53, 13.107.246.74] + +2025-03-16T14:01:58.0268443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::52, 13.107.246.63] + +2025-03-16T14:01:58.0287359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.53, 13.107.246.74] + +2025-03-16T14:02:15.4560532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.116.9, 140.82.114.9, 140.82.112.10] + +2025-03-16T14:02:15.9767127+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.38, 13.107.246.53] + +2025-03-16T14:02:16.3006748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-03-16T14:02:17.6976425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.166, 20.190.148.165] + +2025-03-16T14:02:19.1375736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.121.3] + +2025-03-16T14:02:21.0935660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.53, 2620:1ec:bdf::31] + +2025-03-16T14:02:25.6606025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.166, 20.190.144.162] + +2025-03-16T14:02:32.2487975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.11, 20.135.6.15] + +2025-03-16T14:02:44.3211479+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-03-16T14:02:52.6963123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.61, 2620:1ec:bdf::62, 13.107.246.74] + +2025-03-16T14:02:53.5090307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::40, 13.107.246.53] + +2025-03-16T14:02:53.5099707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.15, 20.135.6.2] + +2025-03-16T14:03:15.8640961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.32, 20.190.141.39] + +2025-03-16T14:03:32.2370187+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T14:03:32.6803683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T14:03:34.6300657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::40, 13.107.246.53] + +2025-03-16T14:03:35.2106415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.62, 2620:1ec:bdf::65] + +2025-03-16T14:03:37.6561016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:1b::17dc:46aa, 2600:140b:1a00:7::17c1:ba0e, 2600:140b:1a00:7::17c1:ba2a] + +2025-03-16T14:03:38.2374996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:1b::17dc:469b, 2600:140b:1a00:1b::17dc:46a3, 2600:140b:1a00:7::17c1:ba2a] + +2025-03-16T14:03:40.3958929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T14:03:40.3968928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T14:03:40.3982305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T14:04:01.1328676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.110.8.157] + +2025-03-16T14:04:03.8444298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::40, 13.107.246.74] + +2025-03-16T14:04:03.9078005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.61, 2620:1ec:bdf::62, 2620:1ec:bdf::41] + +2025-03-16T14:04:04.2048919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::52, 2620:1ec:bdf::64] + +2025-03-16T14:04:11.5859701+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.25.14] + +2025-03-16T14:04:11.8300699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.112.22] + +2025-03-16T14:04:14.2620784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.11, 20.135.6.2] + +2025-03-16T14:04:16.0175930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T14:04:18.5228586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.38, 13.107.246.74] + +2025-03-16T14:04:19.6461356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-03-16T14:04:26.9593781+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba8a, 2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:1b::17dc:469b] + +2025-03-16T14:04:27.6286236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:1b::17dc:46aa, 2600:140b:1a00:7::17c1:ba0e] + +2025-03-16T14:04:29.5123341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.15, 20.135.6.11] + +2025-03-16T14:04:33.4917665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.114.26] + +2025-03-16T14:04:37.4985150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.71, 2620:1ec:bdf::76] + +2025-03-16T14:04:37.5705813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::40, 2620:1ec:bdf::64] + +2025-03-16T14:04:37.5717911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::52, 2620:1ec:bdf::64, 2620:1ec:bdf::74] + +2025-03-16T14:04:45.7004521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::64, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T14:04:45.8574220+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-03-16T14:04:48.2420585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.141.37, 20.190.141.32] + +2025-03-16T14:04:48.2438480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 2603:1047:1:168::2c, 20.190.144.138] + +2025-03-16T14:04:50.4706124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.4] + +2025-03-16T14:04:51.4118032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-03-16T14:04:53.0130715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::41, 13.107.246.71] + +2025-03-16T14:04:55.8411284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 2603:1047:1:168::29, 2603:1047:1:168::12] + +2025-03-16T14:04:58.4165934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.113.22] + +2025-03-16T14:04:59.6365981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::64, 2620:1ec:bdf::74] + +2025-03-16T14:04:59.6985516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.45, 2620:1ec:bdf::41] + +2025-03-16T14:04:59.9176762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::65, 2620:1ec:bdf::44] + +2025-03-16T14:05:00.4662529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-03-16T14:05:06.9254938+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.116.9, 140.82.114.9, 140.82.112.9] + +2025-03-16T14:05:07.7897827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.15, 13.105.74.49] + +2025-03-16T14:05:09.4794502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.141.37, 20.190.144.137] + +2025-03-16T14:05:11.8815629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 2603:1047:1:168::12, 20.190.148.166] + +2025-03-16T14:05:16.9515568+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.38, 20.190.141.34, 20.190.144.138] + +2025-03-16T14:05:19.0366490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T14:05:19.7585717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T14:05:33.8114756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.61, 2620:1ec:bdf::62, 2620:1ec:bdf::44] + +2025-03-16T14:05:35.5494316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T14:05:39.4838267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::40, 2620:1ec:bdf::74] + +2025-03-16T14:05:55.6708576+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:06:17.8169972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.116.9, 140.82.112.9, 140.82.121.10] + +2025-03-16T14:06:26.6555561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::40, 13.107.246.41] + +2025-03-16T14:06:29.3346031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:7::17c1:ba0e, 2600:140b:1a00:1b::17dc:46aa] + +2025-03-16T14:06:36.2470494+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.114.6] + +2025-03-16T14:06:45.9393064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.110.8.157] + +2025-03-16T14:06:46.4916066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba8a, 2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:7::17c1:ba06] + +2025-03-16T14:06:46.4927801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:7::17c1:ba0e, 2600:140b:1a00:7::17c1:ba2a] + +2025-03-16T14:06:47.9963832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.114.21, 140.82.113.22] + +2025-03-16T14:06:48.6651854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::53, 2620:1ec:bdf::44, 13.107.246.45] + +2025-03-16T14:06:48.7351188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.62, 2620:1ec:bdf::40] + +2025-03-16T14:07:01.5899867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.62, 13.107.246.45] + +2025-03-16T14:07:02.6358112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-03-16T14:07:03.5162620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.15, 20.143.38.0] + +2025-03-16T14:07:26.7472303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.114.4] + +2025-03-16T14:07:33.5996745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::44, 13.107.246.53] + +2025-03-16T14:07:49.6737074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-03-16T14:07:55.4488416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::45, 2620:1ec:bdf::74] + +2025-03-16T14:07:56.2142469+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.61, 2620:1ec:bdf::44, 2620:1ec:bdf::41] + +2025-03-16T14:08:08.6724433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154] + +2025-03-16T14:08:11.1098859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::41, 2620:1ec:bdf::76] + +2025-03-16T14:08:16.1312496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.35, 20.190.141.33, 20.190.141.32] + +2025-03-16T14:08:27.9827254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.62, 13.107.246.44] + +2025-03-16T14:08:34.1580144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T14:08:34.3233474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T14:08:34.5030405+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T14:08:34.8589158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T14:08:34.8600808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T14:08:35.6721799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.44, 13.107.246.45] + +2025-03-16T14:08:37.1404564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.53, 13.107.246.71] + +2025-03-16T14:08:43.3999429+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.116.9, 140.82.114.10, 140.82.112.9] + +2025-03-16T14:08:50.4302263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 2603:1047:1:168::12, 20.190.144.136] + +2025-03-16T14:09:03.6306585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.113.6] + +2025-03-16T14:09:06.1571425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::41, 2620:1ec:bdf::44, 2620:1ec:bdf::76] + +2025-03-16T14:09:06.4649146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.61, 2620:1ec:bdf::44] + +2025-03-16T14:09:15.6915249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-03-16T14:09:17.4317287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.112.22] + +2025-03-16T14:09:21.8469435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.7, 20.143.38.0] + +2025-03-16T14:09:28.2413863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.3] + +2025-03-16T14:09:29.4796833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::44, 13.107.246.53] + +2025-03-16T14:09:30.7495108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:7::17c1:ba0e, 2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:7::17c1:ba2a] + +2025-03-16T14:09:31.2603248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:7::17c1:ba06, 2600:140b:1a00:7::17c1:ba2a] + +2025-03-16T14:09:41.9930615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::44, 2620:1ec:bdf::74] + +2025-03-16T14:09:42.4541235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::60, 2620:1ec:bdf::74] + +2025-03-16T14:09:42.7251806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.15, 20.143.38.0] + +2025-03-16T14:09:44.2785726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 2603:1047:1:168::12, 20.190.148.167] + +2025-03-16T14:09:48.3936113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::41, 2620:1ec:bdf::44, 2620:1ec:bdf::74] + +2025-03-16T14:09:49.1659882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::41, 2620:1ec:bdf::74] + +2025-03-16T14:09:51.1304995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1404::5] + +2025-03-16T14:10:00.2453459+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.4] + +2025-03-16T14:10:01.1802682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.22, 140.82.113.21] + +2025-03-16T14:10:02.3236934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.67, 2620:1ec:bdf::74] + +2025-03-16T14:10:02.9041138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::41, 13.107.246.51] + +2025-03-16T14:10:03.4721590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::41, 2620:1ec:bdf::60, 2620:1ec:bdf::74] + +2025-03-16T14:10:03.4731827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::53, 13.107.246.44, 2620:1ec:bdf::74] + +2025-03-16T14:10:03.6910166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.61, 13.107.246.67] + +2025-03-16T14:10:04.6664516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.15, 20.135.6.2] + +2025-03-16T14:10:11.0986484+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.148.167, 20.190.144.136] + +2025-03-16T14:10:12.5255620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.116.9, 140.82.112.9, 140.82.114.10] + +2025-03-16T14:10:13.1916142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.45] + +2025-03-16T14:10:24.4637148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T14:10:24.4655207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T14:10:30.0443210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 2603:1047:1:168::2c, 2603:1047:1:168::24] + +2025-03-16T14:10:33.2262141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::60, 2620:1ec:bdf::74] + +2025-03-16T14:10:34.3104476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.4] + +2025-03-16T14:10:34.6040557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.2, 20.143.38.0] + +2025-03-16T14:10:37.5615939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T14:10:50.2264127+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 13.105.28.1, 20.135.6.2] + +2025-03-16T14:11:09.3872926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.116.9, 140.82.114.10, 140.82.121.10] + +2025-03-16T14:11:42.1501170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.112.26] + +2025-03-16T14:11:52.5333796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:6::17c1:ba93, 2600:140b:1a00:7::17c1:ba2a] + +2025-03-16T14:11:53.1200083+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:7::17c1:ba06, 2600:140b:1a00:6::17c1:ba8a] + +2025-03-16T14:12:00.7923286+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.113.21] + +2025-03-16T14:12:34.2875048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.114.10] + +2025-03-16T14:12:46.7678967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.21] + +2025-03-16T14:12:46.7693361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.114.5] + +2025-03-16T14:12:49.9157925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-03-16T14:12:53.8852666+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.112.3] + +2025-03-16T14:12:56.3806851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-03-16T14:12:56.5156918+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.67, 2620:1ec:bdf::60] + +2025-03-16T14:13:13.2860514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-03-16T14:13:13.5860559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.113.21] + +2025-03-16T14:13:13.5871534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.121.10] + +2025-03-16T14:13:16.0225225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.67, 2620:1ec:bdf::74] + +2025-03-16T14:13:16.4354898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.36, 20.190.141.39, 20.190.141.37] + +2025-03-16T14:13:28.6133151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::74, 2620:1ec:bdf::38] + +2025-03-16T14:13:28.6748964+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.54, 2620:1ec:bdf::41, 2620:1ec:bdf::60] + +2025-03-16T14:13:39.3532609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T14:13:39.3552860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T14:13:39.3567166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T14:13:39.3581905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-03-16T14:13:39.3593397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-03-16T14:13:47.3448800+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 20.26.156.216] + +2025-03-16T14:13:48.3122506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.112.6] + +2025-03-16T14:13:53.9736704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::41, 13.107.246.67] + +2025-03-16T14:13:53.9753869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.54, 2620:1ec:bdf::41, 2620:1ec:bdf::74] + +2025-03-16T14:13:55.3081398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:6::17c1:ba93, 23.32.248.34] + +2025-03-16T14:13:55.9643795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:6::17c1:ba8a, 23.39.160.7] + +2025-03-16T14:14:02.8629559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.114.4] + +2025-03-16T14:14:04.9109812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.8.12] + +2025-03-16T14:14:05.7261410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 2603:1047:1:168::10, 2603:1047:1:168::2c] + +2025-03-16T14:14:09.9879111+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::41, 2620:1ec:bdf::74] + +2025-03-16T14:14:10.2301850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::41, 2620:1ec:bdf::74] + +2025-03-16T14:14:10.2317112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 13.107.246.67, 2620:1ec:bdf::41] + +2025-03-16T14:14:22.5686379+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.24.14] + +2025-03-16T14:14:23.1533957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.21, 140.82.114.22] + +2025-03-16T14:14:32.7179607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba93, 2600:140b:1a00:6::17c1:ba98, 23.32.248.34] + +2025-03-16T14:14:36.3516119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.114.5] + +2025-03-16T14:14:37.8771655+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 2603:1047:1:168::2c, 2603:1047:1:168::24] + +2025-03-16T14:14:41.6180197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 13.107.246.67] + +2025-03-16T14:14:42.6851550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 13.107.246.67] + +2025-03-16T14:14:42.7494383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::60, 13.107.246.74] + +2025-03-16T14:14:42.9680275+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.7, 20.135.6.2] + +2025-03-16T14:14:43.0322361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.54, 13.107.246.74] + +2025-03-16T14:14:43.0334349+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.52, 13.107.246.74] + +2025-03-16T14:14:45.0037675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T14:14:45.9827156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.57, 2620:1ec:bdf::74, 13.107.246.38] + +2025-03-16T14:14:46.7073932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2c, 2603:1047:1:168::24, 2603:1047:1:168::26] + +2025-03-16T14:14:46.7519625+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-16T14:14:46.7528147+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->::1 + +2025-03-16T14:14:47.2646669+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/rustdesk/rustdesk/releases/latest responded 302 in 487.5061 ms + +2025-03-16T14:14:48.1694860+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/rustdesk/rustdesk/releases/tag/1.3.8 responded 200 in 888.1081 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T14:14:49.2353771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.113.26] + +2025-03-16T14:14:50.3864574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8003::154, 2606:50c0:8000::154] + +2025-03-16T14:14:50.5718895+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8003::154, 2606:50c0:8000::154] + +2025-03-16T14:14:51.0841107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 2603:1036:2400::9] + +2025-03-16T14:14:57.7986152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T14:15:01.9902068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22, 140.82.112.21] + +2025-03-16T14:15:02.4429499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::41] + +2025-03-16T14:15:02.8300208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.38, 13.107.246.74] + +2025-03-16T14:15:04.5376462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.45, 2620:1ec:bdf::60] + +2025-03-16T14:15:04.5384840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.45, 13.107.246.54] + +2025-03-16T14:15:05.9351306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.13] + +2025-03-16T14:15:11.4854864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 2603:1047:1:168::2c, 2603:1047:1:168::24] + +2025-03-16T14:15:16.3249408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 13.74.129.92] + +2025-03-16T14:15:25.1827729+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.36, 20.190.141.39, 20.190.141.32] + +2025-03-16T14:15:26.8294570+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T14:15:26.8304094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T14:15:35.4167593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 20.190.148.163, 20.190.148.167] + +2025-03-16T14:15:38.0903791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.45, 13.107.246.64] + +2025-03-16T14:15:43.8150389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T14:15:45.4044663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::41] + +2025-03-16T14:15:47.0700538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.163, 20.190.144.137] + +2025-03-16T14:15:49.5155476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.2, 13.105.28.1] + +2025-03-16T14:15:57.5269794+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:16:22.5251336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba93, 2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:19::17dc:44aa] + +2025-03-16T14:16:23.0669934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.39.160.7, 23.56.4.43, 23.39.160.23] + +2025-03-16T14:16:27.0351016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44aa, 2600:140b:1a00:19::17dc:44af, 23.32.248.34] + +2025-03-16T14:16:59.9841473+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@8.8.8.8:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T14:17:08.3750500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 52.109.52.2] + +2025-03-16T14:17:09.5583534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.39.160.7, 23.39.160.23, 2600:1406:bc00:18::6007:81d1] + +2025-03-16T14:17:09.6813132+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.137, 20.190.144.165] + +2025-03-16T14:17:13.6325566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T14:17:14.7762085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-03-16T14:17:15.7894133+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.112.6] + +2025-03-16T14:17:18.6648005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::38] + +2025-03-16T14:17:21.3521418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.2, 20.143.38.0] + +2025-03-16T14:17:21.5732140+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44aa, 2600:140b:1a00:19::17dc:44af, 23.32.248.27] + +2025-03-16T14:17:21.8200051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 23.39.160.7, 23.39.160.23] + +2025-03-16T14:17:28.7436776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-16T14:17:29.7930755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.74, 2620:1ec:bdf::41] + +2025-03-16T14:17:43.9140482+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.25] + +2025-03-16T14:17:46.2261850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.2, 13.105.28.1] + +2025-03-16T14:17:46.3657279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44aa, 2600:140b:1a00:19::17dc:44af, 23.206.250.80] + +2025-03-16T14:17:46.5935794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.163, 20.190.144.137] + +2025-03-16T14:17:48.0901723+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-03-16T14:17:57.4690605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T14:17:57.4709941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::74, 13.107.246.38] + +2025-03-16T14:17:57.5413546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::74, 13.107.246.45] + +2025-03-16T14:18:13.2523578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 13.105.28.1, 13.105.74.49] + +2025-03-16T14:18:15.3860774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-03-16T14:18:20.3897653+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 20.190.148.163, 20.190.144.165] + +2025-03-16T14:18:30.2649778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.45, 13.107.246.64] + +2025-03-16T14:18:35.7224197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T14:18:37.5996016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T14:18:38.3231715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T14:18:38.3245516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 2606:50c0:8000::154] + +2025-03-16T14:18:38.3256620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 2606:50c0:8000::154] + +2025-03-16T14:18:42.6644002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T14:18:42.6651827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T14:18:42.6657741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T14:18:42.6666299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 185.199.110.133] + +2025-03-16T14:18:42.6677797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 185.199.110.133] + +2025-03-16T14:18:49.1075852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 20.26.156.210] + +2025-03-16T14:18:49.6966933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 20.190.144.162, 20.190.148.163] + +2025-03-16T14:18:51.0437424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-03-16T14:18:53.4100328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.163, 20.190.144.138] + +2025-03-16T14:18:54.6724103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::76, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T14:19:05.1638434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.3] + +2025-03-16T14:19:07.0523134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.163, 20.190.148.167] + +2025-03-16T14:19:08.0553871+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.26.156.210, 140.82.112.6] + +2025-03-16T14:19:08.0580654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1406::2, 52.109.44.108] + +2025-03-16T14:19:12.1393020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::76, 2620:1ec:bdf::74, 2620:1ec:bdf::60] + +2025-03-16T14:19:19.2855082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 2603:1046:1401::1] + +2025-03-16T14:19:23.2322564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.0] + +2025-03-16T14:19:37.8768852+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-03-16T14:19:38.3262772+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.112.21] + +2025-03-16T14:19:44.4791965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.45, 13.107.246.64] + +2025-03-16T14:19:44.6584017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.64, 2620:1ec:bdf::44] + +2025-03-16T14:19:45.8454182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::76, 2620:1ec:bdf::44, 13.107.246.46] + +2025-03-16T14:19:47.3279205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 13.105.74.49, 20.135.6.7] + +2025-03-16T14:19:48.7705080+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 23.39.160.23, 2.16.168.13] + +2025-03-16T14:19:49.1947376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.163, 20.190.144.138] + +2025-03-16T14:20:01.3415074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.114.10] + +2025-03-16T14:20:02.3703099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 20.26.156.210] + +2025-03-16T14:20:02.6618495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.112.26] + +2025-03-16T14:20:02.6631198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-03-16T14:20:02.8454586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-03-16T14:20:02.8468092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-03-16T14:20:03.0823427+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.64, 13.107.246.38, 13.107.246.66] + +2025-03-16T14:20:03.4921195+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::45, 13.107.246.67] + +2025-03-16T14:20:07.0307908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 2603:1036:2400::9] + +2025-03-16T14:20:07.7950869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::52, 13.107.246.45, 13.107.246.64] + +2025-03-16T14:20:14.4598277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::12, 20.190.144.162, 2603:1047:1:168::1b] + +2025-03-16T14:20:17.1865799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.114.4] + +2025-03-16T14:20:19.5710276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.138, 20.190.148.165] + +2025-03-16T14:20:19.6543934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 2603:1047:1:168::12, 20.190.144.162] + +2025-03-16T14:20:20.8772664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.241.44.114] + +2025-03-16T14:20:22.2574632+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 13.105.74.49] + +2025-03-16T14:20:30.0507700+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T14:20:46.7206155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-03-16T14:20:47.4502909+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.64, 13.107.246.36] + +2025-03-16T14:20:47.8322884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.67, 13.107.246.69] + +2025-03-16T14:20:47.9053371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::52, 13.107.246.45, 2620:1ec:bdf::44] + +2025-03-16T14:20:47.9067171+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.45, 2620:1ec:bdf::44] + +2025-03-16T14:20:49.6634351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 13.105.74.49] + +2025-03-16T14:20:50.7468334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.144.162, 2603:1047:1:168::2c] + +2025-03-16T14:20:58.0336484+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.138, 40.126.35.151] + +2025-03-16T14:21:01.2146685+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.110.8.145] + +2025-03-16T14:21:17.6569959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::76, 2620:1ec:bdf::44, 13.107.246.67] + +2025-03-16T14:21:22.4870207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.6] + +2025-03-16T14:21:22.4880081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.114.26] + +2025-03-16T14:21:25.7246079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44af, 2600:140b:1a00:19::17dc:44aa, 23.206.250.80] + +2025-03-16T14:21:27.7281224+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 23.39.160.23, 23.212.59.34] + +2025-03-16T14:21:32.2383066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.36, 20.190.141.38, 20.190.141.39] + +2025-03-16T14:21:32.6603211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::4, 2603:1046:2000:148::5, 2603:1047:1:150::2] + +2025-03-16T14:21:34.5391345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::40, 13.107.246.66, 13.107.246.64] + +2025-03-16T14:21:52.0687839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::65, 13.107.246.67] + +2025-03-16T14:22:29.5130152+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:24:40.0658469+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:25:06.8537096+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:25:28.6431771+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:25:30.0594081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-03-16T14:25:45.8916240+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:25:46.1218660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.113.9] + +2025-03-16T14:26:08.4657361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 4.208.26.200] + +2025-03-16T14:26:36.7155349+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:26:36.9995360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.113.25] + +2025-03-16T14:27:02.8109309+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:27:03.0561663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-03-16T14:27:04.1405081+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:27:04.4296015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.113.4] + +2025-03-16T14:27:19.2532926+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:27:21.9413972+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:27:24.0094474+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:27:24.0838603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.36, 13.107.246.64, 13.107.246.66] + +2025-03-16T14:27:25.0372374+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T14:27:25.0394126+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T14:27:25.6319261+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 576.9582 ms + +2025-03-16T14:27:25.7189919+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 81.9591 ms + +2025-03-16T14:27:38.6773877+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 75.353 ms + +2025-03-16T14:27:38.7472560+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.5045 ms + +2025-03-16T14:30:08.3145495+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:30:14.0021285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.110.8.158] + +2025-03-16T14:31:41.4982727+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->127.0.0.1 + +2025-03-16T14:31:41.4998377+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->::1 + +2025-03-16T14:31:42.1784001+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/v2.1/federationProvider responded 200 in 657.2224 ms + +2025-03-16T14:31:42.3681363+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-03-16T14:31:42.3689803+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->::1 + +2025-03-16T14:31:43.1366735+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent/docs responded 200 in 712.6842 ms + +2025-03-16T14:31:45.9756212+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-03-16T14:31:45.9764338+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->::1 + +2025-03-16T14:31:46.4441105+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.github.com/repos/Fndroid/clash_for_windows_pkg/releases/latest responded 404 in 447.06 ms + +2025-03-16T14:31:57.4134989+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-16T14:31:57.4144559+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-03-16T14:31:57.4725343+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-16T14:31:57.4741721+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->::1 + +2025-03-16T14:31:58.0709400+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 630.6113 ms + +2025-03-16T14:31:58.0847568+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 644.4217 ms + +2025-03-16T14:31:58.6206742+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 214.52 ms + +2025-03-16T14:31:59.3233674+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/locations/recent responded 200 in 477.5137 ms + +2025-03-16T14:31:59.3338715+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/docs/recent responded 200 in 488.4114 ms + +2025-03-16T14:31:59.5993537+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 408.4054 ms + +2025-03-16T14:31:59.7095477+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 246.2107 ms + +2025-03-16T14:32:02.4096701+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 4901.2793 ms + +2025-03-16T14:33:14.3595043+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T14:33:14.6321716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-03-16T14:33:18.0264011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.8.88] + +2025-03-16T14:33:19.0360329+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T14:33:20.9689699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::67, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-03-16T14:33:22.5256176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.56.129, 2603:1046:1400::7, 52.109.28.47] + +2025-03-16T14:33:23.6870649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.1, 20.135.6.7] + +2025-03-16T14:33:25.0089332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.52.2] + +2025-03-16T14:33:26.8761967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::76, 13.107.246.74] + +2025-03-16T14:33:28.1536407+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 52.109.20.47] + +2025-03-16T14:33:34.2118580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2.20.245.134, 23.56.109.137, 23.56.109.135] + +2025-03-16T14:33:35.3509646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.48.5.7, 23.48.5.14, 2.20.245.140] + +2025-03-16T14:33:40.6017270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.21, 40.126.35.81, 40.126.35.150] + +2025-03-16T14:33:41.7002208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::26, 20.190.148.162, 20.190.144.162] + +2025-03-16T14:34:00.4973811+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:34:05.6919720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[] + +2025-03-16T14:34:08.5072524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T14:34:09.3132023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T14:34:10.6491825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T14:34:12.0646939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 4.225.11.198] + +2025-03-16T14:34:14.1104629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-03-16T14:34:15.4167253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 20.217.135.0] + +2025-03-16T14:34:16.2705927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T14:34:17.2090911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 2603:1046:1400::7] + +2025-03-16T14:34:18.4750830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.25.14] + +2025-03-16T14:34:19.0656933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 52.109.112.174] + +2025-03-16T14:34:20.2756373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4] + +2025-03-16T14:34:22.3241290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.22] + +2025-03-16T14:34:23.4256506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.113.26] + +2025-03-16T14:34:25.0604791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T14:34:25.7374673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-16T14:34:26.5414579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.53, 2620:1ec:bdf::74] + +2025-03-16T14:34:27.2653213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T14:34:28.2587276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 2620:1ec:bdf::31] + +2025-03-16T14:34:28.7443012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2.20.245.134, 2.16.168.6, 2.16.168.12] + +2025-03-16T14:34:29.2198584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.48.5.7, 23.48.5.14, 2.16.168.13] + +2025-03-16T14:34:30.5921795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T14:34:31.6323190+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 683.2998 ms + +2025-03-16T14:34:32.7171176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T14:34:33.1880950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 2603:1016:2402::5] + +2025-03-16T14:35:11.0519005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.8.12] + +2025-03-16T14:35:11.5641454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 13.105.28.1] + +2025-03-16T14:35:24.0678641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::74, 13.107.246.45] + +2025-03-16T14:35:27.2067603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.53, 2620:1ec:bdf::74] + +2025-03-16T14:35:30.0558202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::66, 2620:1ec:bdf::76] + +2025-03-16T14:35:37.6739777+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.46.216.81, 23.46.216.85, 2.20.245.134] + +2025-03-16T14:35:41.4271332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T14:35:43.5836626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.113.22] + +2025-03-16T14:35:46.7662439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.217.135.0] + +2025-03-16T14:36:03.0119497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.112.22] + +2025-03-16T14:36:20.5114950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 4.225.11.198] + +2025-03-16T14:36:21.0514931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-03-16T14:36:21.9186556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 20.217.135.0] + +2025-03-16T14:36:30.0708235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 2620:1ec:bdf::66] + +2025-03-16T14:37:25.1020321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::44, 2620:1ec:bdf::74] + +2025-03-16T14:37:31.8437754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::74, 2620:1ec:bdf::66] + +2025-03-16T14:38:15.0361324+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.73, 2620:1ec:bdf::74] + +2025-03-16T14:38:15.1108097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.73, 2620:1ec:bdf::51] + +2025-03-16T14:38:15.1125738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 13.107.246.73, 2620:1ec:bdf::44] + +2025-03-16T14:38:15.1140533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::44, 2620:1ec:bdf::74] + +2025-03-16T14:38:15.1155937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::67, 2620:1ec:bdf::73, 13.107.246.73] + +2025-03-16T14:38:17.5032522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T14:38:22.6280534+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:38:27.6405657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.6.4] + +2025-03-16T14:38:29.7384871+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:38:30.6677940+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:38:31.2345546+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:38:31.7785821+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:38:31.8521743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.73, 2620:1ec:bdf::51] + +2025-03-16T14:38:32.2625681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::73, 13.107.246.73] + +2025-03-16T14:38:53.6405795+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:38:53.7042539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.51, 13.107.246.73, 2620:1ec:bdf::74] + +2025-03-16T14:39:19.3712605+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:39:19.4447980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.73, 2620:1ec:bdf::74] + +2025-03-16T14:39:23.5687626+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:39:23.6381688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.73, 2620:1ec:bdf::45] + +2025-03-16T14:39:25.7210005+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:39:45.9460856+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T14:39:46.1930602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.7] + +2025-03-16T14:39:57.5737525+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T14:39:57.5760823+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T14:39:58.0509023+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 459.2263 ms + +2025-03-16T14:39:58.1395941+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 84.6586 ms + +2025-03-16T14:40:11.9596262+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:40:12.2279352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-03-16T14:40:34.0120226+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:40:41.6813404+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unexpected end of stream + +2025-03-16T14:40:42.0158605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:18::6007:81b6, 2.20.245.140] + +2025-03-16T14:41:03.7521076+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:41:25.5193681+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:41:28.8017560+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.145, 40.126.35.129, 40.126.35.18] + +2025-03-16T14:41:54.5028833+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:41:57.7920060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 2603:1047:1:168::11, 2603:1047:1:168::26] + +2025-03-16T14:42:00.1264370+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:42:22.2000871+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:42:24.5882076+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:42:29.2173602+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:42:50.6820394+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:43:17.5172045+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:43:17.8281102+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-16T14:43:20.1483339+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:43:20.4233927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.114.10] + +2025-03-16T14:43:42.1581642+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:44:04.2288677+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:44:04.5251240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.6] + +2025-03-16T14:44:26.3459369+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:44:26.7545728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-03-16T14:44:48.4769348+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:44:48.7518262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T14:45:08.3515589+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-03-16T14:45:12.6734505+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:45:14.0027691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T14:45:19.3465989+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2405::1] + +2025-03-16T14:45:31.4644941+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:45:31.9183935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T14:45:33.4963344+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:45:33.7167276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T14:45:43.2338035+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:45:43.7816333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 2606:4700::6811:190e] + +2025-03-16T14:45:44.9009555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.113.25] + +2025-03-16T14:45:47.0795104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T14:45:48.0955758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T14:45:49.1030968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 2620:1ec:bdf::73] + +2025-03-16T14:45:51.1176734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 13.107.246.74] + +2025-03-16T14:45:52.1005482+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 13.107.246.40] + +2025-03-16T14:45:58.0578933+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:45:58.3032632+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 2620:1ec:bdf::73] + +2025-03-16T14:46:00.5678580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 2620:1ec:bdf::73] + +2025-03-16T14:46:01.7079693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.7, 13.105.74.49] + +2025-03-16T14:46:03.1428076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-03-16T14:46:07.2763514+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:46:07.8317368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba98, 2600:140b:1a00:6::17c1:ba8a, 2600:1406:bc00:18::6007:81d1] + +2025-03-16T14:46:13.0826905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba93, 2600:140b:1a00:6::17c1:ba98, 23.46.216.85] + +2025-03-16T14:46:17.0046214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.167, 20.190.148.165] + +2025-03-16T14:46:22.1479592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.166, 20.190.144.137] + +2025-03-16T14:46:32.8143957+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:46:39.0599732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-03-16T14:46:41.8091724+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.10] + +2025-03-16T14:46:46.1395459+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.7, 13.105.74.50] + +2025-03-16T14:46:47.4873501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:6::17c1:ba93, 2600:140b:1a00:6::17c1:ba98, 2600:1406:bc00:18::6007:81d1] + +2025-03-16T14:47:01.3510971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.144.166, 20.190.148.167] + +2025-03-16T14:47:06.3750461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 20.190.144.138, 20.190.144.166] + +2025-03-16T14:47:19.5035216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2403::] + +2025-03-16T14:47:22.6105248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T14:47:25.8804596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T14:47:25.8817771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T14:47:31.5299660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:14::17dc:5485, 2600:140b:1a00:14::17dc:5488, 2600:140b:1a00:6::17c1:ba93] + +2025-03-16T14:47:31.8874210+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:14::17dc:5491, 2600:140b:1a00:14::17dc:5488, 2600:140b:1a00:6::17c1:ba98] + +2025-03-16T14:47:41.9845081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.7, 40.90.133.102] + +2025-03-16T14:47:55.3806330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T14:47:56.5361173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 13.107.246.57] + +2025-03-16T14:48:06.2074918+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 40.90.133.102, 40.90.130.192] + +2025-03-16T14:48:09.0407712+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T14:48:09.0416110+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T14:48:09.4268237+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 375.2661 ms + +2025-03-16T14:48:09.4932867+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.2112 ms + +2025-03-16T14:48:12.9225950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 52.109.56.130] + +2025-03-16T14:48:27.7955913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 20.190.144.138, 2603:1047:1:168::24] + +2025-03-16T14:48:31.2516430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-03-16T14:48:31.2521353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 20.26.156.210] + +2025-03-16T14:48:32.4100340+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:48:32.4108922+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.26, 140.82.114.25] + +2025-03-16T14:48:33.7585405+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:48:54.7894436+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:49:18.1960613+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:49:18.5604640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 13.107.246.74] + +2025-03-16T14:49:54.5716566+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:49:54.5722782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.57, 13.107.246.74] + +2025-03-16T14:50:13.0293552+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.130.192, 40.90.130.199, 40.90.130.204] + +2025-03-16T14:50:34.8212865+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:50:34.8232230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.31, 13.107.246.74] + +2025-03-16T14:50:58.0974396+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T14:50:58.1750287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.46, 2620:1ec:bdf::74] + +2025-03-16T14:51:24.9767858+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:51:26.2118438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T14:51:50.1419347+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:51:55.1672780+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T14:52:17.0394930+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:52:17.3085793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.52.2, 52.109.56.126] + +2025-03-16T14:52:18.7103573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:14::17dc:5491, 2600:140b:1a00:14::17dc:5488, 2600:140b:1a00:6::17c1:ba8a] + +2025-03-16T14:52:19.9331546+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:52:20.2717980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:14::17dc:5485, 2600:140b:1a00:6::17c1:ba93, 2600:140b:1a00:14::17dc:5488] + +2025-03-16T14:52:42.3135069+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:52:45.5954156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.162, 20.190.144.160] + +2025-03-16T14:52:49.5915888+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:52:54.6188433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::24, 2603:1047:1:168::1b, 2603:1047:1:168::2e] + +2025-03-16T14:53:17.3927186+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T14:53:19.8694310+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:53:26.8517445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T14:53:27.5286679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T14:53:32.9068736+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T14:53:33.8116794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4] + +2025-03-16T14:53:34.7480530+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10] + +2025-03-16T14:53:39.6815585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3] + +2025-03-16T14:53:40.6723550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.113.6] + +2025-03-16T14:53:41.7093178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.114.21] + +2025-03-16T14:53:47.3643524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.8.12] + +2025-03-16T14:53:48.8912925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-03-16T14:53:50.3748682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T14:53:54.8490648+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T14:53:55.1855676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T14:53:56.2932151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-03-16T14:54:02.2637578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.114.26] + +2025-03-16T14:54:03.1961878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::41, 13.107.246.53] + +2025-03-16T14:54:05.2373964+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::36, 13.107.246.66] + +2025-03-16T14:54:06.0908941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::57, 2620:1ec:bdf::46] + +2025-03-16T14:54:06.9178938+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::64, 2620:1ec:bdf::57] + +2025-03-16T14:54:09.5325385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-03-16T14:54:10.5128488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 40.90.130.192, 40.90.130.204] + +2025-03-16T14:54:11.2710435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-03-16T14:54:13.0891927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.46, 2620:1ec:bdf::60] + +2025-03-16T14:54:17.6557340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:14::17dc:5488, 2600:140b:1a00:14::17dc:5491, 2600:140b:1a00:6::17c1:ba8a] + +2025-03-16T14:54:22.2898523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 2603:1047:1:168::12, 2603:1047:1:168::24] + +2025-03-16T14:54:24.2023748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 20.26.156.210] + +2025-03-16T14:54:32.9089141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.2, 40.90.130.192] + +2025-03-16T14:54:44.3966334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 20.190.144.160, 20.190.144.163] + +2025-03-16T14:54:49.8505212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.68, 20.190.166.131, 20.190.166.132] + +2025-03-16T14:55:07.2967585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::60, 2620:1ec:bdf::41] + +2025-03-16T14:55:12.9083528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::74, 13.107.246.46] + +2025-03-16T14:55:16.9023072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.25] + +2025-03-16T14:55:45.5483657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T14:55:46.4815750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.116.10] + +2025-03-16T14:55:47.4392243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 20.26.156.215] + +2025-03-16T14:55:49.3096613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.113.6] + +2025-03-16T14:55:51.7822600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-03-16T14:55:54.2937174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::44, 2620:1ec:bdf::57] + +2025-03-16T14:56:03.2928055+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.246.74] + +2025-03-16T14:56:03.6205042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T14:56:03.8511320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.44, 13.107.246.74] + +2025-03-16T14:56:04.1294043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.65] + +2025-03-16T14:56:04.6217354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.31] + +2025-03-16T14:56:05.7362534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T14:56:06.0536984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.52.2, 52.109.44.108] + +2025-03-16T14:56:15.8421106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 2603:1046:1406::5] + +2025-03-16T14:56:28.2538996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 20.135.6.2] + +2025-03-16T14:56:33.0783427+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:56:55.4270791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-03-16T14:57:05.0905607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:14::17dc:5488, 2600:140b:1a00:14::17dc:5491, 2600:1406:bc00:18::6007:81d1] + +2025-03-16T14:57:05.0914705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:14::17dc:5485, 2600:140b:1a00:14::17dc:5488, 2600:140b:2::17ce:fa50] + +2025-03-16T14:57:13.6816277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.44, 13.107.246.74] + +2025-03-16T14:57:18.4008968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.44.108, 52.109.52.2] + +2025-03-16T14:57:43.5886353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.165, 20.190.148.167] + +2025-03-16T14:57:56.5475243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:bc00:18::6007:81d1, 2600:1406:bc00:18::6007:81b6, 2.20.245.133] + +2025-03-16T14:57:56.8453947+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::17ce:fa50, 2600:140b:2::17ce:fa41, 2.20.245.134] + +2025-03-16T14:57:57.1379286+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.163, 20.190.148.165] + +2025-03-16T14:58:16.1349928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::64] + +2025-03-16T14:58:27.9535349+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:58:27.9546630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.163, 20.190.148.167] + +2025-03-16T14:58:37.4612273+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:58:37.5228571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T14:58:38.3859136+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:58:38.3873722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T14:58:46.2441420+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:58:48.3953308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T14:59:20.4617922+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T14:59:42.0262315+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:00:05.8547375+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:00:06.0979521+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 4.237.22.38, 140.82.114.3] + +2025-03-16T15:00:25.7028723+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T15:00:26.8344874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-03-16T15:00:32.1998306+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:00:37.2236178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T15:00:49.7482838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T15:01:11.1323363+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:01:11.1331450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T15:01:24.4386329+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:01:24.8259878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-03-16T15:01:46.5746956+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:01:46.8642616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.114.5] + +2025-03-16T15:01:48.9615618+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:01:49.2596178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.21] + +2025-03-16T15:02:10.9954950+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:02:11.2690504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.26] + +2025-03-16T15:02:16.4548948+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:02:42.1770222+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:02:42.3146745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 2606:50c0:8002::154] + +2025-03-16T15:03:05.1814208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 2606:50c0:8002::154] + +2025-03-16T15:03:30.9888556+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:03:31.0910111+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.71, 13.107.246.62] + +2025-03-16T15:03:33.4215811+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:03:33.4928594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::64] + +2025-03-16T15:03:55.1979437+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:03:55.2749072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::41, 2620:1ec:bdf::71] + +2025-03-16T15:03:56.8430668+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:03:56.9184249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::41, 2620:1ec:bdf::71] + +2025-03-16T15:03:57.5023855+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T15:03:57.5031455+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T15:03:57.9011867+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 385.9538 ms + +2025-03-16T15:03:57.9868142+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 82.5087 ms + +2025-03-16T15:03:58.1878816+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:03:58.2500896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.65, 2620:1ec:bdf::41] + +2025-03-16T15:04:20.1222483+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:04:20.3980483+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.52.169] + +2025-03-16T15:04:23.9439400+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.7471 ms + +2025-03-16T15:04:24.0186749+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 72.4087 ms + +2025-03-16T15:04:42.1529414+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:04:42.4299204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 13.105.28.1] + +2025-03-16T15:04:58.8496819+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:04:59.1343323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.191] + +2025-03-16T15:05:00.5036660+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:05:03.9076221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.123.71.82, 104.123.71.89, 23.56.109.142] + +2025-03-16T15:05:25.6027971+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:05:25.9423520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::17ce:fa41, 2600:140b:2::17ce:fa50, 104.123.71.81] + +2025-03-16T15:05:50.6293748+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:05:55.6489593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.160, 20.190.144.163, 20.190.144.166] + +2025-03-16T15:06:15.2598799+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 443.3544 ms + +2025-03-16T15:06:15.3370900+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 74.8339 ms + +2025-03-16T15:06:33.2010967+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T15:06:38.3967315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.67, 20.190.166.131, 20.190.166.68] + +2025-03-16T15:07:02.0495886+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:07:37.7642433+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T15:07:42.9335176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T15:07:43.8049421+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T15:07:44.3363914+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:07:59.6179735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T15:08:00.6134718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T15:08:01.5648663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T15:08:23.3400934+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:08:25.5110802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.121.10] + +2025-03-16T15:08:26.5855281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-03-16T15:08:27.8079239+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 104.17.25.14] + +2025-03-16T15:08:28.9070192+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 4.237.22.38, 140.82.112.4] + +2025-03-16T15:08:30.0766900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.112.6] + +2025-03-16T15:08:31.2394731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.113.26] + +2025-03-16T15:08:33.5574757+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.114.22, 140.82.113.22] + +2025-03-16T15:08:37.6868841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 2603:1036:2403::, 52.109.89.117] + +2025-03-16T15:08:44.2507509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T15:08:44.8199345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T15:08:49.9137108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.65, 13.107.246.41, 2620:1ec:bdf::51] + +2025-03-16T15:08:50.9237764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::71, 2620:1ec:bdf::46] + +2025-03-16T15:08:55.8632642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-03-16T15:08:57.2071327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.74.49, 40.90.130.207] + +2025-03-16T15:08:58.4220532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.41, 2620:1ec:bdf::44] + +2025-03-16T15:08:59.7290595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T15:09:00.6618938+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-03-16T15:09:01.9728303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T15:09:03.2297721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 52.109.52.84] + +2025-03-16T15:09:05.2964528+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:09:05.6979993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 104.123.71.82, 104.123.71.89] + +2025-03-16T15:09:06.8798141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::17ce:fa41, 23.206.250.80, 2600:140b:2::17ce:fa50] + +2025-03-16T15:09:12.4391764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 40.126.35.145, 40.126.35.151] + +2025-03-16T15:09:16.4334764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::25, 2603:1047:1:168::27, 2603:1047:1:168::28] + +2025-03-16T15:09:23.7303375+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:09:27.6304476+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:09:48.6882942+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:09:49.4773847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.114.22] + +2025-03-16T15:09:50.3900351+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:09:50.3906883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T15:09:51.2956617+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:09:51.2965610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10] + +2025-03-16T15:09:51.5936560+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4] + +2025-03-16T15:09:53.2161738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.74.49, 20.135.6.2] + +2025-03-16T15:09:53.6162864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-03-16T15:09:54.3854242+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::46, 2620:1ec:bdf::71] + +2025-03-16T15:10:26.1886719+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T15:10:31.9881917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.112.5] + +2025-03-16T15:10:45.4474749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.113.21] + +2025-03-16T15:11:07.2736686+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:11:13.4635397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::51, 2620:1ec:bdf::71] + +2025-03-16T15:11:17.2664676+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::46, 2620:1ec:bdf::51] + +2025-03-16T15:11:18.3946092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.73, 2620:1ec:bdf::51] + +2025-03-16T15:11:19.4543029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.73, 2620:1ec:bdf::51] + +2025-03-16T15:11:24.8283851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 104.123.71.89, 104.123.71.82] + +2025-03-16T15:11:26.2534698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.80, 2600:140b:2::17ce:fa41, 104.123.71.74] + +2025-03-16T15:11:32.0252549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 40.126.35.86, 40.126.35.129] + +2025-03-16T15:11:41.4473481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 2603:1047:1:168::27, 20.190.144.139] + +2025-03-16T15:11:45.0638067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.121.9] + +2025-03-16T15:11:50.0250639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.4] + +2025-03-16T15:11:51.1925021+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:11:51.5291992+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:12:13.2983459+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:12:34.9500905+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:12:38.6445258+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:12:39.5646653+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:12:39.9030384+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:12:44.3975771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 2603:1046:1402::5, 52.109.124.141] + +2025-03-16T15:12:47.4784323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T15:12:49.3938639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T15:12:50.3202018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.5] + +2025-03-16T15:12:55.2873941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T15:12:55.6680636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T15:12:57.3322134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.25] + +2025-03-16T15:12:58.5392144+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:12:58.5400428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T15:12:58.8485626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T15:12:59.3862360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.41, 13.107.246.67] + +2025-03-16T15:13:08.1507851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T15:13:30.8057501+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:13:37.6609184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.41, 2620:1ec:bdf::51] + +2025-03-16T15:13:44.2960626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-03-16T15:13:52.8179354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4495, 2600:140b:1a00:19::17dc:4486, 23.206.250.88] + +2025-03-16T15:14:09.0226056+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.112.10] + +2025-03-16T15:14:10.3543847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.114.3] + +2025-03-16T15:14:10.7593064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T15:14:11.8830654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-03-16T15:14:13.5483444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.116.6, 140.82.121.5, 140.82.112.5] + +2025-03-16T15:14:14.5202439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-03-16T15:14:18.8844266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 52.109.89.117] + +2025-03-16T15:14:19.5042988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.114.25] + +2025-03-16T15:14:21.7352601+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::69, 13.107.246.74] + +2025-03-16T15:14:22.1334962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.41, 13.107.246.73, 13.107.246.74] + +2025-03-16T15:14:22.2040456+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.73, 13.107.246.74] + +2025-03-16T15:14:23.0770593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::46, 13.107.246.74] + +2025-03-16T15:14:24.0613419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.73, 2620:1ec:bdf::46] + +2025-03-16T15:14:25.0078966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T15:14:25.5957399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4495, 2600:140b:1a00:19::17dc:4486, 23.206.250.73] + +2025-03-16T15:14:26.1702680+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.65, 2600:140b:2::17ce:fa41, 104.123.71.74] + +2025-03-16T15:15:03.5809566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 2603:1046:1404::1] + +2025-03-16T15:15:26.0685053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.65, 104.123.71.74, 104.123.71.81] + +2025-03-16T15:15:48.1357154+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-03-16T15:15:48.3453587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::51, 13.107.246.73] + +2025-03-16T15:16:15.7105239+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 2603:1047:1:168::27, 2603:1047:1:168::2c] + +2025-03-16T15:16:18.2853877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T15:16:23.2773012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.114.10] + +2025-03-16T15:16:27.3453607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.15, 13.105.74.50] + +2025-03-16T15:16:27.7109396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.74, 2620:1ec:bdf::73] + +2025-03-16T15:16:28.8238698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.62] + +2025-03-16T15:16:29.0929352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 2603:1046:1404::1] + +2025-03-16T15:16:31.1954390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.65, 104.123.71.81, 104.123.71.74] + +2025-03-16T15:16:32.1711512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 40.126.35.80, 40.126.35.20] + +2025-03-16T15:16:35.5877745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 2603:1047:1:168::27, 20.190.144.139] + +2025-03-16T15:16:37.5728603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.80, 20.190.148.162, 40.126.35.20] + +2025-03-16T15:16:40.9041500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2c, 20.190.144.139, 2603:1047:1:168::28] + +2025-03-16T15:16:57.4511388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.116.6, 140.82.121.5, 140.82.113.6] + +2025-03-16T15:17:45.4857965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T15:17:46.1772990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.80, 40.126.35.87, 20.190.148.162] + +2025-03-16T15:17:48.3472404+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:17:55.2970226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.116.6, 140.82.113.6, 140.82.121.5] + +2025-03-16T15:17:55.7239725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T15:17:55.7248674+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T15:17:59.4324281+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.15] + +2025-03-16T15:18:13.0855144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T15:18:13.3167646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T15:18:13.3176704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T15:18:15.4277684+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T15:18:16.0803139+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T15:18:16.5649088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T15:18:17.0741124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T15:19:09.0340369+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:19:09.2873096+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::51, 13.107.246.73] + +2025-03-16T15:19:26.7060500+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:19:27.0039434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.110.8.139] + +2025-03-16T15:19:43.4077639+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->::1 + +2025-03-16T15:19:43.4097535+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-16T15:19:44.1044605+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-03-16T15:19:44.1063827+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-16T15:19:44.1745303+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.gstatic.com/ => https://gapis.geekzu.org/g-fonts/ + +2025-03-16T15:19:44.3713992+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.gstatic.com/ => https://gapis.geekzu.org/g-fonts/ + +2025-03-16T15:19:44.3720357+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2 responded 502 in 199.2406 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-16T15:19:44.5579764+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:44.7582972+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 200.3157 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-16T15:19:44.7589437+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:45.3599524+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T15:19:45.3619790+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T15:19:45.6712065+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.gstatic.com/s/roboto/v47/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2 responded 302 in 1300.1349 ms + +2025-03-16T15:19:45.6995889+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-03-16T15:19:45.7011618+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-03-16T15:19:45.7227918+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 502 in 963.8176 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-16T15:19:45.7640405+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 381.8578 ms + +2025-03-16T15:19:45.8484962+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 80.6118 ms + +2025-03-16T15:19:46.1473421+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:46.3600851+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:46.3601507+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 212.7635 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-16T15:19:48.5905103+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:19:48.8621557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.45, 13.107.246.66, 2620:1ec:bdf::41] + +2025-03-16T15:19:49.8258518+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 3465.8015 ms + +2025-03-16T15:19:49.8371021+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:50.0116871+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 174.7369 ms + +2025-03-16T15:19:50.0144663+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:50.1910731+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 176.5651 ms + +2025-03-16T15:19:50.1955828+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:50.3691180+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 173.5224 ms + +2025-03-16T15:19:50.3910300+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:50.5733884+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 182.4593 ms + +2025-03-16T15:19:50.5802201+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:50.7531061+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 172.7888 ms + +2025-03-16T15:19:50.7563524+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:50.9340525+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 177.697 ms + +2025-03-16T15:19:50.9443404+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:51.1189982+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 174.6558 ms + +2025-03-16T15:19:51.1211501+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:51.2953147+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 174.1937 ms + +2025-03-16T15:19:51.2998652+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:51.4888064+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 188.934 ms + +2025-03-16T15:19:51.4920367+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:51.6780689+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 186.014 ms + +2025-03-16T15:19:51.6878058+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:51.8656736+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 177.91 ms + +2025-03-16T15:19:51.8680903+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:52.0481989+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 180.0868 ms + +2025-03-16T15:19:52.0620524+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:52.2365747+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 174.5349 ms + +2025-03-16T15:19:52.2401044+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:52.4158227+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 175.5058 ms + +2025-03-16T15:19:52.4954989+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:52.6425216+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:52.6435334+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 148.1256 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:19:52.9022711+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 259.7368 ms + +2025-03-16T15:19:52.9098242+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:53.1206754+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:53.1208462+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 211.0185 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:19:53.3746243+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 254.0124 ms + +2025-03-16T15:19:53.3807515+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:53.5881616+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:53.5884412+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 207.705 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:19:53.7953853+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 207.2428 ms + +2025-03-16T15:19:53.8015393+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:54.0099524+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:54.0109640+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 209.6208 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:19:54.9061587+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 896.2936 ms + +2025-03-16T15:19:54.9168598+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:55.1196598+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 202.7097 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-16T15:19:55.1200681+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:55.9369089+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 816.7547 ms + +2025-03-16T15:19:55.9883105+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:56.1799122+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 191.5687 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:19:56.1826408+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:56.4294322+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 246.7751 ms + +2025-03-16T15:19:56.4409274+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:56.6484858+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:56.6491751+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 208.2203 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:19:57.5172062+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 868.7849 ms + +2025-03-16T15:19:57.5250452+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:57.7350682+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 209.9438 ms + +2025-03-16T15:19:57.7434206+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:57.9582693+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 214.8372 ms + +2025-03-16T15:19:57.9699393+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:58.1739074+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:58.1745034+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 204.5732 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:19:59.0546014+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 880.7064 ms + +2025-03-16T15:19:59.0637404+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:59.2653149+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:19:59.2654842+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 201.7452 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:20:00.4864216+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1221.1038 ms + +2025-03-16T15:20:00.4921731+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:20:00.6604216+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 168.2416 ms + +2025-03-16T15:20:00.6627848+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:20:00.8326610+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 169.7951 ms + +2025-03-16T15:20:00.8417299+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:20:01.0147837+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 173.044 ms + +2025-03-16T15:20:01.0172431+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:20:01.1953757+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 178.1088 ms + +2025-03-16T15:20:01.2183210+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:20:01.3915912+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 173.2766 ms + +2025-03-16T15:20:01.3946824+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:20:01.5726227+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 177.9335 ms + +2025-03-16T15:20:03.8574924+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 101.5553 ms + +2025-03-16T15:20:03.9382586+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 78.6856 ms + +2025-03-16T15:20:42.0624459+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:20:42.3217430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::71, 2620:1ec:bdf::53] + +2025-03-16T15:20:45.8155607+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:20:47.8662121+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:20:48.1113235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.45, 13.107.246.57, 13.107.246.65] + +2025-03-16T15:20:49.6770899+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:20:49.9669081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::62, 13.107.246.57, 2620:1ec:bdf::66] + +2025-03-16T15:21:11.6974446+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:21:43.1382738+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:21:48.3559240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-03-16T15:22:10.2263543+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:22:25.5071245+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:25.7056577+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 198.4512 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-16T15:22:25.7081583+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:26.9978743+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1289.8903 ms + +2025-03-16T15:22:27.0058391+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:27.2157407+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 210.0208 ms + +2025-03-16T15:22:27.2171217+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:27.4240144+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 206.9308 ms + +2025-03-16T15:22:27.4307952+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:27.6390483+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 208.3107 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:27.6392161+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:27.8910526+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 251.826 ms + +2025-03-16T15:22:27.8991052+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:28.1080288+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:28.1092669+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 210.2577 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:30.1324228+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 2024.6232 ms + +2025-03-16T15:22:30.1378053+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:30.3468855+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:30.3472431+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 209.4344 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:31.0692454+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 722.3698 ms + +2025-03-16T15:22:31.0786459+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:31.2532949+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 174.7126 ms + +2025-03-16T15:22:31.2565219+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:31.4259692+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 169.4336 ms + +2025-03-16T15:22:31.4308053+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:31.6020777+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 171.2322 ms + +2025-03-16T15:22:31.6063668+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:31.7818890+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 175.6255 ms + +2025-03-16T15:22:31.7878511+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:31.9575081+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 169.765 ms + +2025-03-16T15:22:31.9648060+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:32.1389590+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 174.2029 ms + +2025-03-16T15:22:32.1444863+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:32.3185716+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 174.2698 ms + +2025-03-16T15:22:32.3207694+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:32.4898668+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 169.0217 ms + +2025-03-16T15:22:32.4949491+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:32.6624271+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 167.4601 ms + +2025-03-16T15:22:32.6647126+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:32.8306013+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 165.8698 ms + +2025-03-16T15:22:32.8437034+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:33.0145349+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 170.9818 ms + +2025-03-16T15:22:33.0201377+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:33.1901090+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 169.9689 ms + +2025-03-16T15:22:33.1973965+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:33.3641864+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 166.786 ms + +2025-03-16T15:22:33.3680536+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:33.5374728+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 169.4979 ms + +2025-03-16T15:22:33.5438124+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:33.7131401+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 169.3329 ms + +2025-03-16T15:22:33.7151402+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:33.8917505+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 176.5835 ms + +2025-03-16T15:22:33.8980922+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:34.0656847+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 167.5474 ms + +2025-03-16T15:22:34.0705756+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:34.2387995+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 168.2641 ms + +2025-03-16T15:22:34.2454499+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:34.4142488+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 168.7845 ms + +2025-03-16T15:22:34.4277082+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:34.6028750+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 175.2678 ms + +2025-03-16T15:22:34.6150333+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:34.7826465+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 167.7033 ms + +2025-03-16T15:22:34.7850259+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:34.9515257+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 166.4312 ms + +2025-03-16T15:22:34.9616455+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:35.1298749+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 168.4643 ms + +2025-03-16T15:22:35.1320869+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:35.3031400+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 171.037 ms + +2025-03-16T15:22:35.3098341+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:35.4806463+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 171.015 ms + +2025-03-16T15:22:35.4831672+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:35.6528030+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 169.5811 ms + +2025-03-16T15:22:35.6691708+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:35.8351790+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 166.0495 ms + +2025-03-16T15:22:35.8369494+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:36.0055736+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 168.6081 ms + +2025-03-16T15:22:36.0194003+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:36.1913361+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 171.9476 ms + +2025-03-16T15:22:36.1936554+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:36.3622541+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 168.6019 ms + +2025-03-16T15:22:36.3776800+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:36.5460080+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 168.3453 ms + +2025-03-16T15:22:36.5484949+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:36.7171128+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 168.6242 ms + +2025-03-16T15:22:37.3552775+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 374.5142 ms + +2025-03-16T15:22:37.4620138+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 102.7543 ms + +2025-03-16T15:22:48.2202305+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:48.4039267+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 183.7139 ms + +2025-03-16T15:22:48.4070470+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:48.5974383+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 190.3831 ms + +2025-03-16T15:22:48.6033443+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:48.7714160+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 168.0886 ms + +2025-03-16T15:22:48.7735565+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:48.9551075+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 181.5439 ms + +2025-03-16T15:22:48.9606040+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:49.1699440+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:49.1708358+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 210.2068 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:50.2482606+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1078.3747 ms + +2025-03-16T15:22:50.2545821+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:50.4685325+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:50.4694112+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 214.7944 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:51.3471198+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 878.5716 ms + +2025-03-16T15:22:51.3640504+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:51.5715529+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:51.5725941+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 208.5061 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:52.4906534+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 919.1557 ms + +2025-03-16T15:22:52.4950781+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:52.6987124+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 203.6081 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:52.6987680+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:53.6156393+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 916.827 ms + +2025-03-16T15:22:53.6274947+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:53.8316560+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:53.8316599+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 204.3091 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:54.7428091+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 911.1448 ms + +2025-03-16T15:22:54.7527285+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:54.9518563+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:54.9522399+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 199.5044 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:55.9665726+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1014.7411 ms + +2025-03-16T15:22:55.9727919+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:56.1828411+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:56.1832524+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 210.4575 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:57.2162161+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1033.3871 ms + +2025-03-16T15:22:57.2241843+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:57.4324740+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:57.4335632+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 209.3206 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:58.3391333+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 906.6593 ms + +2025-03-16T15:22:58.3465565+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:58.5524414+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:58.5527599+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 206.1554 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:59.5828082+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1030.359 ms + +2025-03-16T15:22:59.5924801+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:22:59.7971819+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 204.7105 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:22:59.7975291+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:00.8338023+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1036.2619 ms + +2025-03-16T15:23:00.8491940+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:01.0615458+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:01.0615565+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 212.3842 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:23:01.9584290+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 896.8613 ms + +2025-03-16T15:23:01.9672849+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:02.1778744+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:02.1783616+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 211.063 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:23:03.2586456+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1080.7943 ms + +2025-03-16T15:23:03.2808321+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:03.4780336+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 197.2209 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:23:03.4789945+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:04.5462514+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1067.2167 ms + +2025-03-16T15:23:04.5594030+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:04.7702462+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:04.7707479+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 211.436 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:23:05.6590084+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 888.7535 ms + +2025-03-16T15:23:05.6685286+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:05.8729497+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:05.8732597+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 204.7396 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:23:06.7529693+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 880.0382 ms + +2025-03-16T15:23:06.7611279+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:06.9701918+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:06.9703439+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 209.2008 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:23:07.9912841+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1021.0755 ms + +2025-03-16T15:23:08.0017465+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:08.2137531+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:08.2139912+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 212.2399 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:23:09.1118314+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 898.0892 ms + +2025-03-16T15:23:09.1289145+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:09.3332241+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:09.3336601+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 204.7501 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:23:10.3629974+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1029.8179 ms + +2025-03-16T15:23:10.3707863+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:10.5762567+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T15:23:10.5766682+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 205.8951 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:23:11.4590405+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 882.7959 ms + +2025-03-16T15:23:11.7932835+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.1688 ms + +2025-03-16T15:23:11.8698609+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 74.5233 ms + +2025-03-16T15:23:31.3349370+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:23:32.6788173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2001:438:fffd:13::d0b9:730a, 2001:438:fffd:13::d0b9:731b, 2600:1406:bc00:18::6007:81bc] + +2025-03-16T15:23:38.8289162+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:23:39.5737771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:4486, 2600:140b:1a00:19::17dc:4495, 2600:1406:bc00:18::6007:81d1] + +2025-03-16T15:24:02.4019493+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:24:05.9078954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.166, 20.190.144.161] + +2025-03-16T15:24:31.6381357+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:24:36.6490558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::29, 2603:1047:1:168::25, 2603:1047:1:168::2e] + +2025-03-16T15:24:38.8159338+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:24:39.2596804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18] + +2025-03-16T15:24:41.3676684+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:24:41.5547033+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18] + +2025-03-16T15:24:45.2265661+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:24:55.0876069+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:25:12.3396735+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unexpected end of stream + +2025-03-16T15:25:16.3167421+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:25:33.9264211+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-03-16T15:25:33.9277896+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-16T15:25:33.9294476+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-03-16T15:25:33.9306312+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-03-16T15:25:36.9139006+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-03-16T15:25:36.9151508+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-03-16T15:25:37.2168302+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 260.9848 ms + +2025-03-16T15:25:37.7192478+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-03-16T15:25:37.7201232+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-03-16T15:25:37.8174388+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/Default.json responded 404 in 69.0467 ms + +2025-03-16T15:25:38.5487668+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 800.3674 ms + +2025-03-16T15:25:38.7452751+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 171.8802 ms + +2025-03-16T15:25:39.1542050+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/ExtMgr/CompatList/CompatibilityList.xml responded 200 in 64.3265 ms + +2025-03-16T15:25:39.1789588+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 157.0024 ms + +2025-03-16T15:25:39.2402054+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 62.7755 ms + +2025-03-16T15:25:39.3008444+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 116.1652 ms + +2025-03-16T15:25:39.6677627+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 317.2717 ms + +2025-03-16T15:25:39.8247045+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 440.0342 ms + +2025-03-16T15:25:40.2362466+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 161.0919 ms + +2025-03-16T15:25:40.4647567+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 161.598 ms + +2025-03-16T15:25:40.6394917+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 163.2907 ms + +2025-03-16T15:25:41.1196822+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:25:41.4983822+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-16T15:25:41.4992934+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->::1 + +2025-03-16T15:25:42.9305969+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 160.7041 ms + +2025-03-16T15:25:43.7537565+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 61.0678 ms + +2025-03-16T15:25:44.0326699+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 66.1512 ms + +2025-03-16T15:25:44.0326698+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 66.1504 ms + +2025-03-16T15:25:44.1015963+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 107.0366 ms + +2025-03-16T15:25:44.1309072+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 151.5764 ms + +2025-03-16T15:25:44.1681294+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-16T15:25:44.1691018+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-03-16T15:25:44.6038892+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 319.6973 ms + +2025-03-16T15:25:44.8927917+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 684.4084 ms + +2025-03-16T15:25:44.9933994+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 157.5826 ms + +2025-03-16T15:25:45.3735887+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 155.3933 ms + +2025-03-16T15:25:46.1328263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T15:25:46.1971443+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 63.5972 ms + +2025-03-16T15:25:46.1971442+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 63.5972 ms + +2025-03-16T15:25:47.1286594+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 183.6054 ms + +2025-03-16T15:25:47.3487765+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:25:47.8756996+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 181.6173 ms + +2025-03-16T15:25:49.3686450+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +marketplace.visualstudio.com->127.0.0.1 + +2025-03-16T15:25:49.3694960+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +marketplace.visualstudio.com->::1 + +2025-03-16T15:25:50.1240685+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 172.179 ms + +2025-03-16T15:25:50.2812162+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://marketplace.visualstudio.com/_apis/public/gallery/extensionquery responded 200 in 589.1109 ms + +2025-03-16T15:25:51.2606787+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 155.5623 ms + +2025-03-16T15:25:51.8524064+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 166.9019 ms + +2025-03-16T15:25:52.2358078+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 158.4171 ms + +2025-03-16T15:25:54.1761547+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 151.2144 ms + +2025-03-16T15:25:54.4589645+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 714.0062 ms + +2025-03-16T15:25:57.1512566+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 159.517 ms + +2025-03-16T15:25:57.9481888+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 153.6141 ms + +2025-03-16T15:26:01.4721596+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 154.0794 ms + +2025-03-16T15:26:05.7500123+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 1111.4064 ms + +2025-03-16T15:26:09.1330617+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:26:09.2895090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-03-16T15:26:13.9215756+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:26:18.0235589+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +app.vssps.visualstudio.com->127.0.0.1 + +2025-03-16T15:26:18.0244588+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +app.vssps.visualstudio.com->::1 + +2025-03-16T15:26:18.8632889+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://app.vssps.visualstudio.com/_apis/connectionData responded 200 in 428.1281 ms + +2025-03-16T15:26:18.9005565+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.vstsusers.visualstudio.com->127.0.0.1 + +2025-03-16T15:26:18.9014926+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.vstsusers.visualstudio.com->::1 + +2025-03-16T15:26:18.9317365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T15:26:20.1412457+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/connectionData responded 200 in 1011.3319 ms + +2025-03-16T15:26:20.5134756+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me responded 200 in 353.5119 ms + +2025-03-16T15:26:20.7696155+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Locations responded 200 in 246.477 ms + +2025-03-16T15:26:21.0202659+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Settings/ProfileRefreshInterval responded 200 in 246.3002 ms + +2025-03-16T15:26:21.3706287+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Attributes responded 200 in 345.4075 ms + +2025-03-16T15:26:21.5166088+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Avatar responded 200 in 480.5488 ms + +2025-03-16T15:26:21.9991212+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Avatar responded 200 in 963.2067 ms + +2025-03-16T15:26:23.2270236+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +PUT https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Attributes/VisualStudio.14_PreferredProfile;PreferredProfile responded 204 in 324.2795 ms + +2025-03-16T15:26:32.8146278+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://app.vssps.visualstudio.com/_apis/connectionData responded 200 in 429.4774 ms + +2025-03-16T15:26:33.2867217+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/connectionData responded 200 in 455.2188 ms + +2025-03-16T15:26:33.6468418+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me responded 200 in 343.4406 ms + +2025-03-16T15:26:33.9044665+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Locations responded 200 in 256.1664 ms + +2025-03-16T15:26:34.1686883+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Settings/ProfileRefreshInterval responded 200 in 262.8045 ms + +2025-03-16T15:26:34.5182851+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Attributes responded 200 in 345.2293 ms + +2025-03-16T15:26:36.0490886+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/ClientNotification/Subscriptions/me responded 200 in 1852.1849 ms + +2025-03-16T15:26:36.1913082+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->127.0.0.1 + +2025-03-16T15:26:36.1924446+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->::1 + +2025-03-16T15:26:39.6832177+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://clientnotification-userprodscus1-1.servicebus.windows.net/$servicebus/websocket responded 101 in 1251.1869 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T15:26:40.4141557+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:26:40.4151000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T15:26:41.5035906+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 161.3961 ms + +2025-03-16T15:26:41.7111819+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:26:41.7122587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-16T15:26:41.7179030+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 167.6607 ms + +2025-03-16T15:27:03.4312717+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:27:03.8229732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-03-16T15:27:12.3632155+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/discovery/instance responded 200 in 502.7888 ms + +2025-03-16T15:27:25.6072917+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:27:25.8661130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.113.6] + +2025-03-16T15:27:27.9053222+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:27:28.1288386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.114.21] + +2025-03-16T15:27:32.3378745+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:27:32.6126721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-03-16T15:27:54.3540754+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:27:54.6364546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.114.26] + +2025-03-16T15:27:55.8840928+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:27:56.1310017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.113.9] + +2025-03-16T15:28:00.3145624+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:28:03.5953188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.8.88] + +2025-03-16T15:28:28.1359064+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:28:29.2962556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-03-16T15:28:50.9894048+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:28:51.1933990+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 2606:50c0:8003::154] + +2025-03-16T15:28:52.6029824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T15:28:53.3304134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.57, 2620:1ec:bdf::74] + +2025-03-16T15:28:58.3028310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::45] + +2025-03-16T15:29:03.0605574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.44] + +2025-03-16T15:29:03.8917074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::71] + +2025-03-16T15:29:05.9065184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-03-16T15:29:10.8879499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.49, 40.90.133.97] + +2025-03-16T15:29:11.6505088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.52, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T15:29:12.9071691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.52.2, 52.109.56.126] + +2025-03-16T15:29:13.9876182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.52.84, 2603:1046:1406::7] + +2025-03-16T15:29:19.1481122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 104.123.71.82, 23.56.109.142] + +2025-03-16T15:29:20.2907045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.65, 23.56.109.137, 2001:438:fffd:13::d0b9:730a] + +2025-03-16T15:29:24.2772788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.161, 20.190.144.164] + +2025-03-16T15:29:28.2954631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 2603:1047:1:168::25, 2603:1047:1:168::11] + +2025-03-16T15:29:33.1535808+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:29:38.7022237+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:29:48.7439304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T15:29:53.6768875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10] + +2025-03-16T15:29:54.9380640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.4] + +2025-03-16T15:30:05.0158083+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:30:07.8285247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-03-16T15:30:08.5582777+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 104.21.70.253] + +2025-03-16T15:30:21.7339272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.0.136] + +2025-03-16T15:30:23.7289903+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:30:24.0208622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.51] + +2025-03-16T15:30:27.9379820+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:30:28.1078537+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.69] + +2025-03-16T15:30:29.6896759+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-03-16T15:30:31.2003822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 52.109.52.84] + +2025-03-16T15:30:31.6723933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 104.123.71.89, 104.123.71.82] + +2025-03-16T15:30:35.1968536+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.136, 20.190.148.167] + +2025-03-16T15:30:37.6259003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T15:30:38.5732760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.74.49] + +2025-03-16T15:30:43.5196199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T15:31:05.1721787+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:31:31.1365892+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:31:31.3883326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-03-16T15:31:36.4035132+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8003::154, 2606:50c0:8001::154] + +2025-03-16T15:31:48.6962651+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:32:11.1743560+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:32:11.4052180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::71] + +2025-03-16T15:32:23.7797243+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:32:25.1149368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-03-16T15:32:47.0847526+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:32:47.5408047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T15:32:48.7278590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.65, 2600:1409:9800:31::17d5:2293, 2600:1409:9800:31::17d5:22a7] + +2025-03-16T15:33:04.4525468+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.144.136, 20.190.144.164] + +2025-03-16T15:33:28.2459087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-03-16T15:33:32.6232627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-03-16T15:33:37.0293940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-03-16T15:33:37.3891504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133] + +2025-03-16T15:33:42.6409547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.114.26] + +2025-03-16T15:33:44.1432892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-03-16T15:33:45.6978328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-03-16T15:33:46.6701310+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.112.21] + +2025-03-16T15:33:47.7522131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 52.109.0.136] + +2025-03-16T15:33:49.1653228+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:33:49.6040044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.2, 13.105.28.16] + +2025-03-16T15:33:55.2515574+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-03-16T15:33:56.0865802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.51, 2620:1ec:bdf::40] + +2025-03-16T15:33:56.7442590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.44, 2620:1ec:bdf::38] + +2025-03-16T15:33:57.4954646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8001::154, 2606:50c0:8003::154] + +2025-03-16T15:33:58.3934467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T15:34:07.0629360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-03-16T15:34:07.8271479+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::53, 2620:1ec:bdf::60, 2620:1ec:bdf::73] + +2025-03-16T15:34:31.7451511+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:34:32.3139492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2001:438:fffd:13::d0b9:730a, 104.123.71.74, 2001:438:fffd:13::d0b9:731b] + +2025-03-16T15:35:06.0586902+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:35:09.3942734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.123.71.89, 104.123.71.82, 2600:1409:3800::1722:ac41] + +2025-03-16T15:35:21.3485089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.138, 20.190.144.162] + +2025-03-16T15:35:22.5915819+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:35:22.8822704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.144.136, 20.190.144.166] + +2025-03-16T15:35:45.6108390+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:35:49.2990022+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:35:49.3666002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T15:35:51.9972235+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:35:57.9399543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.114.10] + +2025-03-16T15:35:58.4322100+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T15:36:20.2586838+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:36:20.2597320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T15:36:50.6099787+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:36:56.6226662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-03-16T15:36:57.8223054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T15:36:59.5266738+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:37:08.2209089+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:37:08.6853530+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18, 172.67.141.24] + +2025-03-16T15:37:09.7543803+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:37:09.9451349+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18, 172.67.141.24] + +2025-03-16T15:37:10.8956634+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.112.22] + +2025-03-16T15:37:16.2443996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8001::154, 2606:50c0:8003::154, 185.199.109.133] + +2025-03-16T15:37:16.6180117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[2606:50c0:8001::154, 2606:50c0:8003::154, 185.199.109.133] + +2025-03-16T15:37:17.6586134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.2] + +2025-03-16T15:37:19.2732135+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.45, 13.107.246.53, 2620:1ec:bdf::46] + +2025-03-16T15:37:20.1112090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.69, 2620:1ec:bdf::40] + +2025-03-16T15:37:25.1640331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::66, 2620:1ec:bdf::60, 2620:1ec:bdf::73] + +2025-03-16T15:37:27.0805799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::62, 2620:1ec:29:1::67] + +2025-03-16T15:37:27.8910505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::53, 2620:1ec:bdf::73] + +2025-03-16T15:37:29.8150331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T15:37:31.9920327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T15:37:33.5629681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.112, 23.220.70.94, 104.123.71.82] + +2025-03-16T15:37:36.2531800+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:37:36.4956002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.162, 20.190.144.136] + +2025-03-16T15:37:40.0023727+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 2603:1047:1:168::11, 2603:1047:1:168::25] + +2025-03-16T15:37:43.0423340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T15:38:04.0753944+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:38:04.0764904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T15:38:13.5022385+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:38:13.5037176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T15:38:35.2906893+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:38:35.5779435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 4.225.11.198] + +2025-03-16T15:38:39.5510341+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:38:39.8570644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.4] + +2025-03-16T15:39:01.2262111+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:39:03.6630114+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:39:04.0379952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-03-16T15:39:30.5270139+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:39:30.7768769+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.112.26] + +2025-03-16T15:39:52.5062801+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:39:52.7824307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.113.22] + +2025-03-16T15:40:18.2725142+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:40:19.4351018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8003::154, 2606:50c0:8001::154, 185.199.109.133] + +2025-03-16T15:40:30.5117704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[2606:50c0:8003::154, 2606:50c0:8001::154, 185.199.109.133] + +2025-03-16T15:40:31.4579006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 13.105.74.49] + +2025-03-16T15:40:33.7899281+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:40:34.2674864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.0.136] + +2025-03-16T15:40:35.0290958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 13.107.246.66] + +2025-03-16T15:40:35.7605032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::73, 13.107.246.45] + +2025-03-16T15:41:05.7794982+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:41:06.0668803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::31, 2620:1ec:bdf::74, 2620:1ec:bdf::73] + +2025-03-16T15:41:08.7120686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::41, 13.107.246.45] + +2025-03-16T15:41:30.4887637+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:41:30.7285929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::41, 13.107.246.57] + +2025-03-16T15:41:32.0628564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.191] + +2025-03-16T15:41:33.1756114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.52.84, 2603:1046:1406::7] + +2025-03-16T15:41:39.3393522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.80, 2001:438:fffd:13::d0b9:730a, 2001:438:fffd:13::d0b9:731b] + +2025-03-16T15:41:49.1161227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.137, 20.190.144.165] + +2025-03-16T15:41:53.3981694+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::11, 2603:1047:1:168::25, 20.190.144.136] + +2025-03-16T15:42:00.8657375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T15:42:23.9700420+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:42:24.2560247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T15:42:25.3458745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T15:42:25.8340609+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:42:31.0198444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T15:42:34.3198158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T15:42:39.3915709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T15:42:40.2996192+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T15:43:01.9649045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T15:43:08.4626613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 4.225.11.198] + +2025-03-16T15:43:09.6419143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.121.3] + +2025-03-16T15:43:11.6630577+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-03-16T15:43:14.4073661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.21] + +2025-03-16T15:43:15.3512923+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T15:43:16.4086062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T15:43:17.7701700+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.26, 140.82.114.25] + +2025-03-16T15:43:18.3790612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8003::154, 185.199.111.133] + +2025-03-16T15:43:18.7327671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8003::154, 185.199.111.133] + +2025-03-16T15:43:24.4127586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.2, 40.90.133.97] + +2025-03-16T15:44:02.9969771+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:44:03.2755636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::41, 13.107.246.74] + +2025-03-16T15:44:05.9794005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2404::2] + +2025-03-16T15:44:06.8442758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::41, 13.107.246.44] + +2025-03-16T15:44:08.8145180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.62, 13.107.246.74] + +2025-03-16T15:44:13.8673316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.66, 13.107.246.44] + +2025-03-16T15:44:23.7198416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 52.109.52.84] + +2025-03-16T15:44:30.5946439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-03-16T15:44:32.8482199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[104.123.71.74, 104.123.71.81, 2600:1406:6c00::17cc:928b] + +2025-03-16T15:44:38.2405622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.163, 20.190.148.166] + +2025-03-16T15:44:42.3824104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::25, 20.190.144.137, 20.190.144.165] + +2025-03-16T15:44:58.5985292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.113.3, 140.82.121.3, 20.205.243.166] + +2025-03-16T15:45:00.3830598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.121.5, 140.82.113.6, 20.26.156.210] + +2025-03-16T15:45:10.3715508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:190e] + +2025-03-16T15:45:10.9621560+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.112.26, 140.82.113.26] + +2025-03-16T15:45:11.5136884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.113.22] + +2025-03-16T15:45:12.7962706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.11, 20.135.2.0] + +2025-03-16T15:45:22.2502083+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 140.82.113.10] + +2025-03-16T15:45:25.3291672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T15:45:25.9246340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.11, 40.90.133.99] + +2025-03-16T15:45:26.2956617+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T15:45:31.7647467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.2, 20.135.6.11] + +2025-03-16T15:45:34.7943839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.0.138] + +2025-03-16T15:45:36.3906105+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T15:45:39.9431893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.62, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T15:45:40.0109356+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T15:45:40.4085472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::31, 2620:1ec:bdf::65, 13.107.246.74] + +2025-03-16T15:45:40.4728993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::69, 13.107.246.74] + +2025-03-16T15:45:58.4394843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.113.3, 140.82.121.3, 140.82.112.4] + +2025-03-16T15:46:07.9836235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.51, 2620:1ec:bdf::41, 13.107.246.62] + +2025-03-16T15:46:08.4164339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.62, 13.107.246.74] + +2025-03-16T15:46:08.4815146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::31, 2620:1ec:bdf::65] + +2025-03-16T15:46:08.4824614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::41, 13.107.246.74] + +2025-03-16T15:46:10.0057781+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T15:46:11.4161979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.51, 13.107.246.62, 13.107.246.74] + +2025-03-16T15:46:11.8783453+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.62, 13.107.246.74, 2620:1ec:bdf::41] + +2025-03-16T15:46:11.8794665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.74, 2620:1ec:bdf::41] + +2025-03-16T15:46:34.5409279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.38, 2620:1ec:bdf::31] + +2025-03-16T15:46:38.4389518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.112, 23.220.70.94, 23.206.250.88] + +2025-03-16T15:46:43.5162650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[104.123.71.81, 104.123.71.74, 2600:1406:6c00::17cc:928b] + +2025-03-16T15:46:51.4835196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 13.74.129.92] + +2025-03-16T15:47:11.2929835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.121.5, 140.82.113.6, 140.82.121.6] + +2025-03-16T15:47:17.9220626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.165, 20.190.148.166] + +2025-03-16T15:47:18.2275957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.166, 20.190.144.137, 20.190.148.167] + +2025-03-16T15:47:19.8536338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T15:47:19.8543120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T15:47:19.8548831+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T15:47:20.6289573+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.2, 13.105.74.50] + +2025-03-16T15:47:27.4677423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 20.26.156.216] + +2025-03-16T15:47:30.7754269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::64, 13.107.246.66] + +2025-03-16T15:47:39.5436711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T15:47:39.5450558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T15:47:39.5460586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T15:47:39.7770113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T15:47:39.7786011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T15:47:42.2206912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.84, 2600:1406:6c00::17cc:928b, 2600:1406:6c00::17cc:928a] + +2025-03-16T15:47:42.7020564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 23.67.33.97, 23.67.33.71] + +2025-03-16T15:47:42.7031074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.167, 20.190.144.166] + +2025-03-16T15:48:09.5658828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.9] + +2025-03-16T15:48:09.7612516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.51, 13.107.246.38, 13.107.246.62] + +2025-03-16T15:48:11.8936704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[140.82.121.3, 140.82.113.3, 140.82.112.4] + +2025-03-16T15:48:16.9076365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-03-16T15:48:17.5012035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-03-16T15:48:19.1191063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-03-16T15:48:22.1509493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.148.165, 20.190.144.137] + +2025-03-16T15:48:25.6501128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.84, 23.67.33.135, 23.67.33.143] + +2025-03-16T15:48:34.6824258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::64, 13.107.246.38] + +2025-03-16T15:48:36.7506513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.2, 20.143.38.0] + +2025-03-16T15:48:43.7488157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.121.5, 140.82.121.6, 20.26.156.210] + +2025-03-16T15:49:01.4417851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18, 2620:1ec:22::18] + +2025-03-16T15:49:04.8619496+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 13.107.246.62, 13.107.246.74] + +2025-03-16T15:49:04.9348165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.60, 2620:1ec:bdf::64] + +2025-03-16T15:49:08.5908173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.62, 13.107.246.51, 13.107.246.38] + +2025-03-16T15:49:08.6527273+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::60, 13.107.246.62] + +2025-03-16T15:49:09.1431563+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.1, 20.135.6.2] + +2025-03-16T15:49:19.9351350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.66, 2620:1ec:bdf::69] + +2025-03-16T15:49:24.7961552+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1406::7] + +2025-03-16T15:49:25.8621921+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::64, 2620:1ec:bdf::35] + +2025-03-16T15:49:36.9873823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.22, 140.82.112.22] + +2025-03-16T15:49:59.8492750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.113.3] + +2025-03-16T15:50:01.8591704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-03-16T15:50:10.1267949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.45, 13.107.246.62, 13.107.246.51] + +2025-03-16T15:50:11.1047514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T15:50:12.8033358+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-03-16T15:50:13.4011325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.22, 140.82.114.21] + +2025-03-16T15:50:14.9379591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.25] + +2025-03-16T15:50:16.3520248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.2, 20.135.6.9] + +2025-03-16T15:50:36.3212011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 2620:1ec:bdf::35, 13.107.246.38] + +2025-03-16T15:50:36.3221462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::69, 13.107.246.40] + +2025-03-16T15:50:39.0291618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 2620:1ec:bdf::69, 13.107.246.73] + +2025-03-16T15:50:41.5124762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-03-16T15:50:46.4450613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.5] + +2025-03-16T15:50:46.9028020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.71, 13.107.246.73, 13.107.246.40] + +2025-03-16T15:50:47.5658424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.45, 13.107.246.60, 13.107.246.66] + +2025-03-16T15:50:55.3086602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.241.44.114] + +2025-03-16T15:51:00.7507342+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.3] + +2025-03-16T15:51:08.7924989+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 2620:1ec:bdf::73, 2620:1ec:bdf::35] + +2025-03-16T15:51:09.5252480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::64, 13.107.246.71] + +2025-03-16T15:51:11.5437311+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 52.109.120.46] + +2025-03-16T15:51:11.6065882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.45, 13.107.246.62, 2620:1ec:bdf::41] + +2025-03-16T15:51:11.7681657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T15:51:43.3503360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-03-16T15:51:45.5807798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.73, 23.67.33.97, 23.67.33.71] + +2025-03-16T15:51:49.4512487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.163, 2603:1047:1:168::2c] + +2025-03-16T15:52:10.0866296+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-03-16T15:52:10.0871766+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-03-16T15:52:10.7454919+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 628.6228 ms + +2025-03-16T15:52:21.4120610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.148.162, 20.190.144.163] + +2025-03-16T15:52:26.4281112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.148.164, 2603:1047:1:168::2c] + +2025-03-16T15:52:28.0875688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T15:52:28.3970590+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:52:34.2160060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18, 2620:1ec:22::18] + +2025-03-16T15:52:35.5834577+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.113.22] + +2025-03-16T15:52:36.1809869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 20.26.156.216] + +2025-03-16T15:52:37.0234044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.6] + +2025-03-16T15:52:37.5676131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::73, 2620:1ec:bdf::64] + +2025-03-16T15:52:37.9452543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.71, 2620:1ec:bdf::64] + +2025-03-16T15:52:43.4154251+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T15:52:48.4366232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902] + +2025-03-16T15:52:49.5757730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T15:52:50.0562640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T15:52:50.5131645+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T15:52:51.0676979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.112.6] + +2025-03-16T15:52:51.3517246+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8002::154, 2606:50c0:8003::154] + +2025-03-16T15:52:51.3527180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8002::154, 2606:50c0:8003::154] + +2025-03-16T15:52:55.8992410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.135, 23.67.33.143, 23.67.33.84] + +2025-03-16T15:52:56.6034059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.73, 23.67.33.71, 23.67.33.97] + +2025-03-16T15:53:04.9531289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T15:53:15.3115304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.4] + +2025-03-16T15:53:20.4841703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-03-16T15:53:21.9790345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.112.21] + +2025-03-16T15:53:22.4300664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-03-16T15:53:23.7676193+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.138, 2603:1047:1:168::2c] + +2025-03-16T15:53:26.5352197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.143, 23.67.33.135, 23.67.33.84] + +2025-03-16T15:53:42.2742819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.10] + +2025-03-16T15:54:02.0173761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 2620:1ec:22::18, 13.107.42.18] + +2025-03-16T15:54:07.7090727+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::41, 13.107.246.51] + +2025-03-16T15:54:11.4672422+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:54:11.8011877+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:54:11.8638764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::64, 2620:1ec:bdf::35] + +2025-03-16T15:54:15.2071144+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:54:15.2856518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.71, 2620:1ec:bdf::64] + +2025-03-16T15:54:15.8403919+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:54:36.9450576+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:54:40.5256677+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:55:02.4846930+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:55:03.9864502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T15:55:29.7146611+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:55:39.3270971+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-03-16T15:55:39.3276827+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-03-16T15:55:40.0638599+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 720.0184 ms + +2025-03-16T15:55:40.2361207+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 889.2666 ms + +2025-03-16T15:55:54.5113992+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T15:55:54.5127141+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T15:55:54.9142607+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 385.7692 ms + +2025-03-16T15:55:55.0097434+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 80.2263 ms + +2025-03-16T15:55:56.1735417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.71, 23.67.33.97, 23.67.33.151] + +2025-03-16T15:56:00.1422259+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:56:00.6234518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.163, 20.190.144.162] + +2025-03-16T15:56:05.4093065+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.2967 ms + +2025-03-16T15:56:05.4754620+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.6501 ms + +2025-03-16T15:56:26.0922376+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:56:31.3667756+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:56:35.8924725+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 82.5596 ms + +2025-03-16T15:56:35.9682875+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 71.2739 ms + +2025-03-16T15:56:36.9611672+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:56:39.0753674+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:57:00.7887603+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:57:03.0639270+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:57:36.5881136+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:57:36.8813082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-16T15:57:59.9584452+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:58:00.2317810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-03-16T15:58:35.7528738+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T15:58:36.9062110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-03-16T15:58:58.7262163+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:58:59.8619051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T15:59:25.5094429+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T15:59:25.5392006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T15:59:28.3627359+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:59:28.3634584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T15:59:34.8751536+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:59:35.2984042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[104.21.70.253, 172.67.141.24, 2606:4700:3031::6815:46fd] + +2025-03-16T15:59:45.0792302+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T15:59:45.4812595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:190e, 104.17.24.14] + +2025-03-16T16:00:07.2903741+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:00:07.4848580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 172.67.141.24, 2606:4700:3031::6815:46fd] + +2025-03-16T16:00:29.2693027+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:00:29.4990684+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.112.21] + +2025-03-16T16:00:53.3755759+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T16:00:54.4970398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.121.10, 140.82.121.9, 20.205.243.165] + +2025-03-16T16:01:16.1875120+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:01:22.7934217+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:01:23.0786860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.114.26] + +2025-03-16T16:01:44.8597661+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:01:45.9972994+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8000::154, 2606:50c0:8003::154] + +2025-03-16T16:02:07.7543828+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:02:07.9245085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8000::154, 2606:50c0:8003::154] + +2025-03-16T16:02:17.2395366+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:02:43.4016518+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:02:44.7324110+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.70, 2620:1ec:bdf::60, 2620:1ec:bdf::31] + +2025-03-16T16:03:06.7786394+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:03:07.0594620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.44, 2620:1ec:bdf::64] + +2025-03-16T16:03:09.3806484+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-03-16T16:03:10.3115860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::73, 13.107.246.73] + +2025-03-16T16:03:11.6000151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.44, 13.107.246.40] + +2025-03-16T16:03:12.3899062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::64, 13.107.246.73, 13.107.246.51] + +2025-03-16T16:03:13.6494164+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.9, 40.90.130.207] + +2025-03-16T16:03:14.8552183+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-03-16T16:03:17.0093009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T16:03:25.7270762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.204.146.139, 23.199.47.133] + +2025-03-16T16:03:50.0031741+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:03:50.3478955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 23.206.188.215, 23.199.47.145] + +2025-03-16T16:03:54.3126289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.139, 20.190.148.162] + +2025-03-16T16:03:55.4906776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2c, 2603:1047:1:168::28, 20.190.148.164] + +2025-03-16T16:04:02.1810899+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:04:07.3862871+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T16:04:09.2855176+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T16:04:11.5360658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T16:04:50.5052095+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T16:04:50.8246422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T16:04:54.0204582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T16:04:59.9309801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-03-16T16:05:01.1242040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.113.5] + +2025-03-16T16:05:06.7285533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T16:05:07.5176888+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T16:05:08.4849213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T16:05:09.5060805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3032::ac43:8d18, 104.21.70.253, 172.67.141.24] + +2025-03-16T16:05:10.6659623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 104.21.70.253, 172.67.141.24] + +2025-03-16T16:05:13.0642681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14, 2606:4700::6811:180e] + +2025-03-16T16:05:13.8627954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.112.21, 140.82.114.22] + +2025-03-16T16:05:15.0109839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3] + +2025-03-16T16:05:19.0070243+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 40.90.136.180, 20.135.4.173] + +2025-03-16T16:05:19.8853684+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.112.25] + +2025-03-16T16:05:20.7104782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.36, 2620:1ec:bdf::60] + +2025-03-16T16:05:21.3148504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2403::] + +2025-03-16T16:05:21.9375203+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-03-16T16:05:26.6735491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-03-16T16:05:27.4589746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.73, 13.107.246.77] + +2025-03-16T16:05:28.3705773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 2603:1046:1400::7, 52.109.0.140] + +2025-03-16T16:05:33.1787684+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::76, 13.107.246.53] + +2025-03-16T16:05:34.0780954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.73, 2620:1ec:bdf::62] + +2025-03-16T16:05:34.8616967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::64, 13.107.246.64] + +2025-03-16T16:05:37.0821817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 2603:1046:1406::2] + +2025-03-16T16:05:38.3344068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 2603:1046:1406::7, 52.109.52.84] + +2025-03-16T16:05:39.4527086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.188.206, 23.199.47.133, 23.56.109.137] + +2025-03-16T16:05:40.3963720+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.85.248.88, 104.85.248.73, 23.56.109.142] + +2025-03-16T16:05:46.7791284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.112.22, 140.82.114.22] + +2025-03-16T16:05:49.4182387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 2603:1046:1406::7] + +2025-03-16T16:05:56.9615891+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-03-16T16:05:57.7319979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1046:1400::7] + +2025-03-16T16:05:58.3065547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.160, 40.126.35.145] + +2025-03-16T16:06:05.3097982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 20.190.148.164, 2603:1047:1:168::1c] + +2025-03-16T16:06:15.6390390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.114.9] + +2025-03-16T16:06:33.9385633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.114.26] + +2025-03-16T16:06:36.4543612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 20.190.148.164, 2603:1047:1:168::11] + +2025-03-16T16:06:47.3731216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8002::154] + +2025-03-16T16:06:47.3739922+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8002::154] + +2025-03-16T16:06:57.6446832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T16:07:03.2202172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T16:07:16.2262825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-03-16T16:07:17.1962566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.1.1, 40.90.136.180] + +2025-03-16T16:07:23.2378715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::65, 13.107.246.36] + +2025-03-16T16:07:29.2809194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.52, 2620:1ec:bdf::73, 13.107.246.73] + +2025-03-16T16:07:52.7926933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.121.9] + +2025-03-16T16:07:52.8609529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.73] + +2025-03-16T16:07:52.8619143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.44, 2620:1ec:bdf::76] + +2025-03-16T16:07:53.2141878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 13.107.246.67] + +2025-03-16T16:07:53.2147012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 2620:1ec:bdf::73] + +2025-03-16T16:07:53.7522652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.1.1, 40.90.133.99] + +2025-03-16T16:07:54.0769302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.52, 2620:1ec:bdf::73] + +2025-03-16T16:08:07.3400854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::62, 2620:1ec:bdf::74] + +2025-03-16T16:08:07.3406220+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::76, 13.107.246.53] + +2025-03-16T16:08:07.4206338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 2620:1ec:bdf::74] + +2025-03-16T16:08:07.4216770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.52, 13.107.246.77] + +2025-03-16T16:08:25.2991455+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T16:08:25.3790922+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.52, 2620:1ec:bdf::74] + +2025-03-16T16:08:26.2820138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.56.109.135, 23.199.47.149, 23.206.188.207] + +2025-03-16T16:08:51.5050698+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 104.85.248.88, 104.85.248.73] + +2025-03-16T16:08:56.8947202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.160, 20.190.144.162] + +2025-03-16T16:09:01.9140330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 2603:1047:1:168::2e, 2603:1047:1:168::26] + +2025-03-16T16:09:11.5344249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.52, 13.107.246.53] + +2025-03-16T16:09:13.2547185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.160, 20.190.144.163] + +2025-03-16T16:09:14.3429447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T16:09:14.4147969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T16:09:14.4162961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T16:09:29.0570515+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.1.1, 40.90.130.207] + +2025-03-16T16:09:40.1199486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 13.107.246.40] + +2025-03-16T16:09:42.4088972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 13.105.28.1, 20.135.1.1] + +2025-03-16T16:09:45.9925188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T16:09:51.5555141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T16:10:01.7203660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154] + +2025-03-16T16:10:01.9480861+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-03-16T16:10:02.0926802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-03-16T16:10:02.0934973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-03-16T16:10:23.1271724+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:10:24.4512332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.7, 13.105.28.1] + +2025-03-16T16:10:28.9051432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.111.154] + +2025-03-16T16:10:34.5271299+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.114.3] + +2025-03-16T16:10:34.6503241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T16:10:34.6508434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T16:10:34.6512976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T16:10:35.6612742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd] + +2025-03-16T16:10:37.2795715+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 104.17.25.14] + +2025-03-16T16:10:39.8891185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd] + +2025-03-16T16:10:40.7870175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T16:10:40.7875575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T16:10:41.2154302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 13.107.246.44] + +2025-03-16T16:10:41.5773403+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 13.107.246.53] + +2025-03-16T16:10:41.9401040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.74, 2620:1ec:bdf::44] + +2025-03-16T16:10:41.9410218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.74, 13.107.246.53] + +2025-03-16T16:10:44.1157186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.109.142, 104.85.248.88, 23.206.188.215] + +2025-03-16T16:10:47.6936435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.135, 23.67.33.143, 23.56.109.135] + +2025-03-16T16:10:49.2299848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.112.21] + +2025-03-16T16:10:56.1032232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.114.6] + +2025-03-16T16:11:02.4291647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.10, 140.82.114.9] + +2025-03-16T16:11:10.2061442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.112.6] + +2025-03-16T16:11:11.4689999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.151, 23.67.33.149, 23.56.109.142] + +2025-03-16T16:11:16.1487474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.112.10] + +2025-03-16T16:11:34.2318991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.74, 2620:1ec:bdf::46] + +2025-03-16T16:11:37.9563188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.112.25] + +2025-03-16T16:11:41.8642976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::60, 2620:1ec:bdf::74] + +2025-03-16T16:12:26.8346215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::44, 13.107.246.46] + +2025-03-16T16:12:53.4892745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::36, 13.107.246.51] + +2025-03-16T16:12:53.5565965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::77, 13.107.246.62] + +2025-03-16T16:12:53.5575613+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::76, 13.107.246.40] + +2025-03-16T16:12:53.5581619+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::51, 13.107.246.67] + +2025-03-16T16:12:53.5588486+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::46, 13.107.246.53] + +2025-03-16T16:13:07.9437431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.51, 2620:1ec:bdf::62] + +2025-03-16T16:13:08.1903106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::73, 2620:1ec:bdf::77] + +2025-03-16T16:13:08.2694207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::51, 2620:1ec:bdf::73] + +2025-03-16T16:13:13.8728924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 2620:1ec:bdf::62, 13.107.246.45] + +2025-03-16T16:13:30.2718218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.135, 23.67.33.143, 23.199.47.133] + +2025-03-16T16:13:31.0795331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.165, 20.190.144.136] + +2025-03-16T16:13:37.6371435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1036:2407::5] + +2025-03-16T16:13:43.6208423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::36, 2620:1ec:bdf::62] + +2025-03-16T16:13:50.8532213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-03-16T16:13:52.9556610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.151, 23.206.188.215, 23.199.47.140] + +2025-03-16T16:13:56.7541035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.138, 20.190.144.164] + +2025-03-16T16:13:57.0272112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::13, 20.190.144.165, 20.190.144.136] + +2025-03-16T16:14:05.1843640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::2f, 20.190.144.161, 2603:1047:1:168::12] + +2025-03-16T16:14:06.7411527+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:14:14.9866779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.163, 20.190.144.138] + +2025-03-16T16:14:16.5018208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T16:14:16.7028279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T16:14:21.6376282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.112.22] + +2025-03-16T16:14:25.0228745+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::57, 2620:1ec:bdf::73] + +2025-03-16T16:14:26.5623972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.15, 20.135.6.7] + +2025-03-16T16:14:40.0502073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.77, 2620:1ec:bdf::62] + +2025-03-16T16:14:41.4144802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.53, 2620:1ec:bdf::76] + +2025-03-16T16:14:43.2955924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.15, 13.105.28.1] + +2025-03-16T16:14:44.7231126+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.114.9] + +2025-03-16T16:14:52.5774254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T16:15:03.2416755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:15:03.2427756+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:15:03.2433679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:15:03.6509998+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:15:03.6514825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:15:24.9410967+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.7, 20.135.6.15] + +2025-03-16T16:15:32.1824334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-03-16T16:15:42.4063371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.135, 23.67.33.143, 2600:1406:5600:e::17d4:3e4c] + +2025-03-16T16:15:49.1055887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.24.14] + +2025-03-16T16:15:49.6108450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.112.3] + +2025-03-16T16:15:50.1800480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:130:436c:6f75:6466:6c61:7265, 172.67.141.24] + +2025-03-16T16:15:50.5246456+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:130:436c:6f75:6466:6c61:7265, 172.67.141.24] + +2025-03-16T16:15:52.6414863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.77, 13.107.246.33] + +2025-03-16T16:15:53.0426749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.77, 13.107.246.53] + +2025-03-16T16:15:54.0288575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.65, 2620:1ec:bdf::69] + +2025-03-16T16:15:54.6081835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::46, 2620:1ec:bdf::69] + +2025-03-16T16:16:04.5438220+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.114.9] + +2025-03-16T16:16:10.9664901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-03-16T16:16:12.1231897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.149, 23.67.33.151, 23.206.188.215] + +2025-03-16T16:16:39.7414070+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.114.26] + +2025-03-16T16:16:41.0076568+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::69, 2620:1ec:bdf::41] + +2025-03-16T16:16:54.6776962+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.57, 13.107.246.77] + +2025-03-16T16:16:54.9623934+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.77, 13.107.246.38] + +2025-03-16T16:17:04.8263944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.6] + +2025-03-16T16:17:07.8675258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 172.67.141.24, 2606:4700:3031::6815:46fd] + +2025-03-16T16:17:10.4086644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.21, 140.82.113.22] + +2025-03-16T16:17:19.6164292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.3] + +2025-03-16T16:17:20.2550375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.114.5] + +2025-03-16T16:17:20.5666371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.26, 140.82.112.25] + +2025-03-16T16:17:21.4795181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::41, 2620:1ec:bdf::51] + +2025-03-16T16:17:23.3061124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::24, 2603:1047:1:168::2f, 20.190.144.161] + +2025-03-16T16:17:28.0509129+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 13.107.246.46, 2620:1ec:bdf::51] + +2025-03-16T16:17:28.0529211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.65, 13.107.246.67] + +2025-03-16T16:17:30.0975865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.67, 2620:1ec:bdf::69] + +2025-03-16T16:17:41.1219014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.112.10] + +2025-03-16T16:17:41.8054770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.114.26] + +2025-03-16T16:17:42.7655545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 13.107.246.46, 2620:1ec:bdf::73] + +2025-03-16T16:17:44.5982642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.52, 2620:1ec:bdf::41] + +2025-03-16T16:17:56.0891399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::36, 13.107.246.77, 2620:1ec:bdf::66] + +2025-03-16T16:18:14.9906823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T16:18:16.1588785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T16:18:16.5510884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.52, 13.107.246.71] + +2025-03-16T16:18:18.4863986+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.9, 20.135.6.15] + +2025-03-16T16:18:20.4612067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 2603:1046:1404::1] + +2025-03-16T16:18:31.1181309+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.4] + +2025-03-16T16:18:33.0132327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.135, 23.67.33.143, 23.56.109.135] + +2025-03-16T16:18:53.4915793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-03-16T16:18:54.0613326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.71, 2620:1ec:bdf::41] + +2025-03-16T16:18:55.2140971+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.139, 20.190.144.164, 20.190.148.163] + +2025-03-16T16:19:04.9125267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::24, 20.190.144.165, 20.190.148.164] + +2025-03-16T16:19:11.0509505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::73, 2620:1ec:bdf::44] + +2025-03-16T16:19:11.0520318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.67, 13.107.246.77] + +2025-03-16T16:19:22.6222347+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.21] + +2025-03-16T16:19:27.2655964+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.65, 13.107.246.67, 13.107.246.71] + +2025-03-16T16:19:28.3394585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.77, 2620:1ec:bdf::41] + +2025-03-16T16:19:28.9470011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.7, 20.135.6.9] + +2025-03-16T16:19:37.8620429+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 13.107.246.77, 2620:1ec:bdf::73] + +2025-03-16T16:19:54.5452073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::66, 13.107.246.64] + +2025-03-16T16:19:54.6070809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.57, 13.107.246.40, 13.107.246.77] + +2025-03-16T16:19:55.4736702+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.67, 13.107.246.77] + +2025-03-16T16:19:56.3827754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-03-16T16:20:03.6115445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T16:20:08.4572554+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.112.10] + +2025-03-16T16:20:13.4664918+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-03-16T16:20:14.5950649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T16:20:14.5956382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T16:20:14.5960859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T16:20:15.5421005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T16:20:15.5429046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T16:20:15.5435340+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1036:2407::5] + +2025-03-16T16:20:25.6820088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T16:20:25.9305013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.9, 13.105.74.50] + +2025-03-16T16:20:28.1586114+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-03-16T16:20:35.9927345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T16:20:39.1599185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T16:20:39.1609137+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T16:20:39.1614410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T16:20:39.3870422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T16:20:39.3876899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T16:20:42.0184697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::14, 2603:1047:1:a0::a, 2603:1047:1:a0::10] + +2025-03-16T16:20:51.9226749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 104.21.70.253, 172.67.141.24] + +2025-03-16T16:20:52.6512438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-03-16T16:20:53.1921671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3032::ac43:8d18, 104.21.70.253, 172.67.141.24] + +2025-03-16T16:20:54.1712024+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.113.22] + +2025-03-16T16:20:54.7370245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-03-16T16:20:55.6758033+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::66, 13.107.246.45] + +2025-03-16T16:20:56.0277667+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.46, 13.107.246.45, 13.107.246.53] + +2025-03-16T16:20:56.6471803+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.65, 13.107.246.71] + +2025-03-16T16:21:02.8232842+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.40, 13.107.246.77, 2620:1ec:bdf::66] + +2025-03-16T16:21:26.8745968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.45, 13.107.246.53, 2620:1ec:bdf::73] + +2025-03-16T16:21:29.1121078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.77, 13.107.246.65] + +2025-03-16T16:21:39.6787394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.57, 13.107.246.77, 13.107.246.45] + +2025-03-16T16:21:41.0963697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.25] + +2025-03-16T16:21:59.0768735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.45, 2620:1ec:bdf::46, 13.107.246.53] + +2025-03-16T16:22:04.9317186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-03-16T16:22:04.9931221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 13.107.246.40, 13.107.246.77] + +2025-03-16T16:22:05.7093279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.77, 13.107.246.57, 13.107.246.45] + +2025-03-16T16:22:08.0276256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.6] + +2025-03-16T16:22:18.4029266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.113.4] + +2025-03-16T16:22:31.3422826+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.3] + +2025-03-16T16:22:32.2448018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.77, 2620:1ec:bdf::73] + +2025-03-16T16:22:32.4767327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.77, 13.107.246.65, 13.107.246.71] + +2025-03-16T16:22:46.7339308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.9] + +2025-03-16T16:22:48.1199596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::63, 13.107.246.45, 2620:1ec:bdf::46] + +2025-03-16T16:22:59.1417972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.10] + +2025-03-16T16:23:10.7309548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.62, 13.107.246.77] + +2025-03-16T16:23:10.7926671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::64, 13.107.246.77] + +2025-03-16T16:23:11.1724142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::64, 2620:1ec:bdf::63] + +2025-03-16T16:23:11.4802016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 13.107.246.77, 13.107.246.65] + +2025-03-16T16:23:13.4684219+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.15, 20.135.6.9] + +2025-03-16T16:23:15.3066074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::13, 2603:1047:1:a0::c, 2603:1047:1:a0::14] + +2025-03-16T16:23:17.3300034+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T16:23:23.9494272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T16:23:31.5232074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.113.25] + +2025-03-16T16:23:35.0782605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.67.33.135, 23.67.33.143, 23.206.188.207] + +2025-03-16T16:23:36.6488208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T16:23:48.3086018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::64, 13.107.246.65, 2620:1ec:bdf::74] + +2025-03-16T16:23:48.3725454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.62, 2620:1ec:bdf::74] + +2025-03-16T16:23:48.8565004+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::64, 13.107.246.57] + +2025-03-16T16:23:48.9478183+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 13.107.246.40, 13.107.246.45] + +2025-03-16T16:23:49.9195719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.145, 40.126.35.19, 40.126.35.81] + +2025-03-16T16:23:55.3211972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.22, 140.82.114.21] + +2025-03-16T16:23:56.8041353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.19, 40.126.35.144, 40.126.35.85] + +2025-03-16T16:24:14.7798133+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:24:20.0038716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T16:24:26.3863576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T16:24:29.4549330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::64, 2620:1ec:bdf::63, 2620:1ec:bdf::73] + +2025-03-16T16:24:30.0645771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.9, 13.105.74.50] + +2025-03-16T16:24:53.7826966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.9] + +2025-03-16T16:24:57.4116760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T16:24:57.4785143+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 13.107.246.45, 13.107.246.53] + +2025-03-16T16:24:59.2458555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T16:25:40.0697222+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-03-16T16:25:40.0706383+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->::1 + +2025-03-16T16:25:40.7159896+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 637.9542 ms + +2025-03-16T16:25:40.8893516+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 643.451 ms + +2025-03-16T16:25:44.1137873+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 167.871 ms + +2025-03-16T16:25:49.7751433+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-03-16T16:25:49.7759198+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->::1 + +2025-03-16T16:25:50.4101425+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 608.0747 ms + +2025-03-16T16:25:53.4380328+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/Default.json responded 404 in 152.5282 ms + +2025-03-16T16:25:53.7361983+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 154.4953 ms + +2025-03-16T16:26:01.2680218+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 153.8823 ms + +2025-03-16T16:26:01.4176805+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 303.5401 ms + +2025-03-16T16:26:42.2269916+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:26:45.3305272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:a0::13, 2603:1047:1:a0::c, 2603:1047:1:168::20] + +2025-03-16T16:26:49.3925615+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:26:57.1234914+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:27:12.9929626+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:27:34.4207274+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:27:49.7793240+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:28:09.6683669+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T16:28:11.7226241+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:28:12.8503944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-03-16T16:28:34.6518985+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:28:35.7705350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.110.8.144] + +2025-03-16T16:28:44.6735615+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:28:45.8135517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.121.9, 140.82.121.10, 20.205.243.165] + +2025-03-16T16:29:07.8427793+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:29:09.1669328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T16:29:30.9334130+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:29:31.1132387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T16:29:37.9839237+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:29:38.4429626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T16:29:43.4249672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18] + +2025-03-16T16:30:05.1178323+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:30:05.1880868+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18] + +2025-03-16T16:30:24.9264008+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:30:26.4517361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 2606:4700::6811:180e] + +2025-03-16T16:30:56.0531963+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:30:56.5195796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.114.21, 140.82.114.22] + +2025-03-16T16:30:58.3115880+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:30:58.8024757+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.5] + +2025-03-16T16:31:20.5597813+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:31:20.9786415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.26] + +2025-03-16T16:31:50.3412694+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:31:50.8062946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-03-16T16:32:16.2165411+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:32:17.5615545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T16:32:39.3071227+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:32:39.4945432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-16T16:33:01.2740200+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:33:04.6067254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 2603:1036:2400::9, 2603:1036:2400::b] + +2025-03-16T16:33:06.2403479+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:33:06.3067609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.62, 2620:1ec:bdf::44] + +2025-03-16T16:33:14.1539686+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-16T16:33:14.1547632+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-03-16T16:33:16.4500988+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 2274.5531 ms + +2025-03-16T16:33:17.8790251+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1201.295 ms + +2025-03-16T16:33:27.9162060+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-03-16T16:33:27.9167888+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-16T16:33:28.0615371+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:33:28.2966088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 13.107.246.60] + +2025-03-16T16:33:28.3728574+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/ppsecure/GetUserKeyData.srf responded 400 in 440.778 ms + +2025-03-16T16:33:29.2630934+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 792.228 ms + +2025-03-16T16:33:34.1581673+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:33:35.7642948+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:33:36.0475734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.76, 2620:1ec:bdf::64] + +2025-03-16T16:33:41.1350000+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:33:41.3796457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.76, 13.107.246.73] + +2025-03-16T16:34:03.0927841+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:34:03.3786295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 2620:1ec:bdf::46] + +2025-03-16T16:34:25.2790900+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:34:25.7666165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.52.84, 2603:1046:1406::7] + +2025-03-16T16:34:28.5643196+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:34:56.5049926+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:34:56.9590912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 40.90.130.207] + +2025-03-16T16:35:18.7138134+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:35:20.0402447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.169, 23.56.109.142, 23.67.33.151] + +2025-03-16T16:35:42.8784582+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:35:44.3880565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.212.62.76, 23.67.33.143, 2600:1406:5e00:49::17ce:e5a5] + +2025-03-16T16:35:47.5487752+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:35:51.0020941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.164, 40.126.35.85] + +2025-03-16T16:35:55.8787902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::13, 2603:1047:1:168::24, 2603:1047:1:168::11] + +2025-03-16T16:35:59.3597919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T16:36:01.8775144+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:36:07.0958824+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T16:36:09.5757233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9] + +2025-03-16T16:36:10.8556227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.5, 140.82.112.5] + +2025-03-16T16:36:11.8526437+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4] + +2025-03-16T16:36:13.0047270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.109.154] + +2025-03-16T16:36:18.3686089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:36:18.7587316+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:36:19.4082958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:36:41.4280384+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:36:41.6698571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 172.67.141.24, 2606:4700:3032::ac43:8d18] + +2025-03-16T16:36:46.5410944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 172.67.141.24, 2606:4700:3032::ac43:8d18] + +2025-03-16T16:36:47.6347710+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-03-16T16:36:48.6389771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.112.21] + +2025-03-16T16:36:53.5911160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::74, 2620:1ec:bdf::64, 13.107.246.60] + +2025-03-16T16:36:54.8342163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-03-16T16:36:55.9026380+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 40.90.142.224, 40.90.133.112] + +2025-03-16T16:36:56.5772053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-03-16T16:36:56.9788631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8001::154] + +2025-03-16T16:36:57.9381583+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 2603:1036:2400::b, 52.109.0.138] + +2025-03-16T16:36:58.7030353+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 2620:1ec:bdf::46] + +2025-03-16T16:37:04.4081663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 2620:1ec:bdf::44] + +2025-03-16T16:37:05.1778717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 13.107.246.69] + +2025-03-16T16:37:16.8023542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 2603:1046:1406::7, 52.109.112.174] + +2025-03-16T16:37:18.5080396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.110.8.157] + +2025-03-16T16:37:21.3670251+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.52.0] + +2025-03-16T16:37:22.6529481+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.169, 23.67.33.151, 23.67.33.149] + +2025-03-16T16:37:44.2405109+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:37:47.3702592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::24, 2603:1047:1:168::25, 2603:1047:1:168::1c] + +2025-03-16T16:38:09.9738251+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:38:31.6421692+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:38:32.6937892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.121.9] + +2025-03-16T16:38:34.0334058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-03-16T16:38:55.8707717+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:39:04.6213561+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:39:26.0901362+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:39:29.1224847+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:39:29.1239385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4] + +2025-03-16T16:39:30.0588595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.114.5] + +2025-03-16T16:39:35.3870295+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-16T16:39:35.3879593+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-03-16T16:39:35.9741689+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 555.1619 ms + +2025-03-16T16:39:38.2413520+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:39:52.4358770+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:40:14.0574533+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:40:36.3898617+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:40:42.9095530+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:40:48.3121169+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:40:49.4019447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 40.90.130.197, 40.90.142.224] + +2025-03-16T16:40:50.2421294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.67, 2620:1ec:bdf::53] + +2025-03-16T16:40:51.8347580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-03-16T16:40:52.5301672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::44, 13.107.246.60] + +2025-03-16T16:40:54.0495117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-03-16T16:40:55.0396705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::66, 13.107.246.38] + +2025-03-16T16:40:55.4683259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-03-16T16:40:58.0174006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 2603:1046:1406::7, 52.109.52.84] + +2025-03-16T16:40:59.8328162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::69, 13.107.246.77] + +2025-03-16T16:41:00.8109742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::46, 13.107.246.71] + +2025-03-16T16:41:01.9646860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T16:41:04.0689839+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:41:04.0697410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T16:41:05.2568423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.65, 23.212.62.96, 23.67.33.135] + +2025-03-16T16:41:06.5717804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:5e00:49::17ce:e5b1, 23.67.33.149, 23.67.33.151] + +2025-03-16T16:41:12.3555044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.167, 20.190.144.137] + +2025-03-16T16:41:16.4571351+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 2603:1047:1:168::24, 20.190.148.167] + +2025-03-16T16:41:18.9593288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T16:41:20.5244061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T16:41:21.2674968+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T16:41:29.8559539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.22, 140.82.114.22] + +2025-03-16T16:41:36.0142350+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:41:37.2185363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.4] + +2025-03-16T16:41:37.7197998+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T16:41:37.7212271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T16:41:37.7222505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T16:41:59.0522821+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:41:59.4925458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.112.26] + +2025-03-16T16:42:00.9180264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-03-16T16:42:02.2772770+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:42:03.5702978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.112.5, 140.82.114.6, 140.82.121.6] + +2025-03-16T16:42:04.1437460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T16:42:04.4589476+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T16:42:05.1436633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 2606:4700::6811:190e] + +2025-03-16T16:42:05.1449420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T16:42:05.7189211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 40.90.130.199, 40.90.130.197] + +2025-03-16T16:42:05.7197656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T16:42:08.1470156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::66, 13.107.246.66] + +2025-03-16T16:42:08.5122884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::51, 2620:1ec:bdf::69] + +2025-03-16T16:42:09.1855072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::46, 13.107.246.73] + +2025-03-16T16:42:15.6589948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-16T16:42:16.5766362+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:42:16.8316241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.21] + +2025-03-16T16:42:17.5174926+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:42:24.3990253+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:42:28.0506008+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::1c, 2603:1047:1:168::24, 20.190.148.163] + +2025-03-16T16:42:29.6788475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.8.12] + +2025-03-16T16:42:33.6378362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1404::5, 52.109.124.141, 2603:1046:1406::7] + +2025-03-16T16:42:34.2783796+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::4, 2603:1046:2000:148::3, 2603:1047:1:150::1] + +2025-03-16T16:43:00.7403425+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:43:01.7427401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.66, 2620:1ec:bdf::59] + +2025-03-16T16:43:02.2380128+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:43:05.6155348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::66, 2620:1ec:bdf::51] + +2025-03-16T16:43:06.9012197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T16:43:22.3564534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.25, 140.82.114.25] + +2025-03-16T16:43:44.9657516+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:43:44.9669422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.60, 2620:1ec:bdf::64] + +2025-03-16T16:44:06.0083244+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:44:21.8994538+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:44:46.6074915+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:44:46.7919816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.73, 2620:1ec:bdf::74] + +2025-03-16T16:45:08.1672321+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:45:08.3457445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 2620:1ec:bdf::51, 2620:1ec:bdf::69] + +2025-03-16T16:45:09.4219851+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:45:09.8413079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-03-16T16:45:35.9170706+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:45:47.2781602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:2b::173a:90a7, 2600:1413:5000:2b::173a:90a9, 2600:1406:5e00:49::17ce:e5b1] + +2025-03-16T16:46:00.7345917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.114.22] + +2025-03-16T16:46:02.3858026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 20.26.156.216] + +2025-03-16T16:46:07.3793336+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.113.4] + +2025-03-16T16:46:19.3877487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[140.82.114.6, 140.82.121.5, 140.82.121.6] + +2025-03-16T16:46:33.8107978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 2603:1036:2400::b, 2603:1036:2404::2] + +2025-03-16T16:46:34.6410806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::38, 13.107.246.74] + +2025-03-16T16:46:42.6095368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::67, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T16:46:43.4552119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.9, 40.90.130.197] + +2025-03-16T16:46:44.4593978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::67, 13.107.246.64] + +2025-03-16T16:46:45.1878883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 2620:1ec:bdf::77, 13.107.246.67] + +2025-03-16T16:46:47.1999458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1406::5, 52.109.56.129, 2603:1036:2400::12] + +2025-03-16T16:46:47.9411191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::66, 13.107.246.74] + +2025-03-16T16:46:54.8794565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.65, 23.67.33.135, 23.212.62.96] + +2025-03-16T16:46:55.5141082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:2b::173a:90a7, 2600:1413:5000:2b::173a:90a9, 23.208.31.189] + +2025-03-16T16:47:00.8430059+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.164, 20.190.148.167] + +2025-03-16T16:47:03.3120561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T16:47:04.1878642+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:47:10.6691077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.241.44.114] + +2025-03-16T16:47:16.1630908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-03-16T16:47:17.2957358+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T16:47:17.2962259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T16:47:17.5971181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T16:47:18.1614755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 2606:4700:3032::ac43:8d18, 104.21.70.253] + +2025-03-16T16:47:18.6726359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3032::ac43:8d18, 104.21.70.253] + +2025-03-16T16:47:19.3508630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.24.14, 104.17.25.14] + +2025-03-16T16:47:20.6572166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 140.82.121.9] + +2025-03-16T16:47:21.0645468+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.113.4] + +2025-03-16T16:47:21.6173159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.114.6, 140.82.121.5] + +2025-03-16T16:47:22.1401610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-03-16T16:47:22.4713866+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-03-16T16:47:22.4732605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 2606:50c0:8002::154] + +2025-03-16T16:47:23.0739924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 40.90.130.199, 40.90.130.197] + +2025-03-16T16:47:24.9615355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::77, 13.107.246.67, 13.107.246.66] + +2025-03-16T16:47:25.0266850+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::51, 2620:1ec:bdf::66] + +2025-03-16T16:47:27.4133524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.65, 2600:1406:5e00:49::17ce:e5a5, 2600:1406:5e00:49::17ce:e5ac] + +2025-03-16T16:47:27.6948454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.144.137, 40.126.35.21] + +2025-03-16T16:47:35.1493658+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1046:2000:148::3, 2603:1046:2000:148::4, 2603:1046:2000:158::5] + +2025-03-16T16:47:38.9194063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.1, 40.90.130.199] + +2025-03-16T16:48:02.4130247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.163, 20.190.144.138] + +2025-03-16T16:48:04.5753892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.74, 2620:1ec:bdf::71] + +2025-03-16T16:48:24.6896172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.114.6] + +2025-03-16T16:48:30.2435112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.161, 20.190.148.167, 20.190.148.163] + +2025-03-16T16:48:33.7262064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.26.156.216, 140.82.121.10] + +2025-03-16T16:48:40.9715279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::46, 13.107.246.74] + +2025-03-16T16:48:41.6382963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::45, 2620:1ec:bdf::67] + +2025-03-16T16:48:44.9714908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.66, 2620:1ec:bdf::67] + +2025-03-16T16:48:49.9173820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::70, 2620:1ec:bdf::51] + +2025-03-16T16:48:51.1014368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.110.8.128] + +2025-03-16T16:49:31.2923977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.5] + +2025-03-16T16:49:48.4026493+08:00 [ERR] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://clientnotification-userprodscus1-1.servicebus.windows.net/$servicebus/websocket responded 101 in 4988359.5551 ms +Microsoft.AspNetCore.Connections.ConnectionResetException: 远程主机强迫关闭了一个现有的连接。 + ---> System.Net.Sockets.SocketException (10054): 远程主机强迫关闭了一个现有的连接。 + at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketAwaitableEventArgs.g__ThrowSocketException|5_0(SocketError e) + at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketAwaitableEventArgs.GetResult(Int16 token) + at Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal.SocketConnection.DoReceive() + --- End of inner exception stack trace --- + at System.IO.Pipelines.Pipe.GetReadResult(ReadResult& ) + at System.IO.Pipelines.Pipe.GetReadAsyncResult() + at FastGithub.FlowAnalyze.DuplexPipeStreamExtensions.DuplexPipeStream.ReadAsyncInternal(Memory`1 destination, CancellationToken cancellationToken) + at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 ) + at FastGithub.FlowAnalyze.FlowAnalyzeStream.ReadAsync(Memory`1 destination, CancellationToken cancellationToken) + at System.IO.Pipelines.StreamPipeReader.g__Core|36_0(StreamPipeReader , CancellationTokenSource , CancellationToken ) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.DuplexPipeStream.ReadAsyncInternal(Memory`1 destination, CancellationToken cancellationToken) + at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 ) + at System.Net.Security.SslStream.ReadAsyncInternal[TIOAdapter](TIOAdapter , Memory`1 ) + at System.IO.Pipelines.StreamPipeReader.g__Core|36_0(StreamPipeReader , CancellationTokenSource , CancellationToken ) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1UpgradeMessageBody.ReadAsyncInternalAwaited(ValueTask`1 readTask, CancellationToken cancellationToken) + at System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1.StateMachineBox`1.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 ) + at Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.HttpRequestStream.ReadAsyncInternal(Memory`1 destination, CancellationToken cancellationToken) + at Yarp.ReverseProxy.Forwarder.StreamCopier.CopyAsync(Boolean isRequest, Stream input, Stream output, IClock clock, ActivityCancellationTokenSource activityToken, CancellationToken cancellation) + +2025-03-16T16:49:49.2882395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.67, 2620:1ec:bdf::70] + +2025-03-16T16:50:16.5984240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.26, 140.82.112.26] + +2025-03-16T16:50:27.4116235+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-03-16T16:50:46.5251690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::77, 13.107.246.67, 2620:1ec:bdf::46] + +2025-03-16T16:50:49.6908561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:2b::173a:90a9, 2600:1413:5000:2b::173a:90a7, 23.208.31.189] + +2025-03-16T16:50:58.4192348+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:51:20.4325817+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-03-16T16:51:20.4342463+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-16T16:51:20.4360626+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-03-16T16:51:20.4374520+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-03-16T16:51:23.7196534+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:51:48.8919273+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:51:49.4685439+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:52:10.8181216+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:52:32.1114051+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:52:33.2423248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-03-16T16:52:41.2866265+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:52:41.5598723+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-16T16:53:02.9459198+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:53:04.0680205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:53:09.8153649+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:53:09.8167256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:53:35.4924922+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:53:35.4938477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T16:54:34.5510279+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T16:54:34.9687393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T16:55:13.9871248+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:55:13.9880229+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T16:55:21.9106061+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:55:22.4479810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-03-16T16:55:44.1865887+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T16:55:44.6762359+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.121.4] + +2025-03-16T16:55:47.2514602+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:55:47.7137623+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.6] + +2025-03-16T16:55:58.7006420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.21] + +2025-03-16T16:55:59.8115564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.26] + +2025-03-16T16:56:01.0557784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1406::1, 2603:1046:1401::1, 52.109.120.46] + +2025-03-16T16:56:04.7396901+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8002::154] + +2025-03-16T16:56:05.6813662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8002::154] + +2025-03-16T16:56:06.5289471+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::45, 13.107.246.71] + +2025-03-16T16:56:07.5324866+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::41, 13.107.246.69] + +2025-03-16T16:56:08.2470643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 2620:1ec:bdf::46, 13.107.246.74] + +2025-03-16T16:56:09.1667950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.74, 2620:1ec:bdf::76] + +2025-03-16T16:56:15.1998935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T16:56:20.1786705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::71, 2620:1ec:bdf::64] + +2025-03-16T16:56:21.0815904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.143.38.0, 40.90.133.97] + +2025-03-16T16:56:30.4309313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.110.8.157] + +2025-03-16T16:56:31.4440844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[104.123.71.19, 23.56.109.135, 2600:1406:5400::48f7:d38a] + +2025-03-16T16:56:32.6817426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.123.71.89, 2600:1406:6c00::172d:cc2, 2600:1406:6c00::172d:cd2] + +2025-03-16T16:56:40.8935487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.162, 20.190.148.166] + +2025-03-16T16:56:50.7986381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.162, 20.190.144.139] + +2025-03-16T16:56:53.5660688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T16:56:54.3541404+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T16:56:59.3811470+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T16:57:05.8065223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 20.26.156.216] + +2025-03-16T16:57:06.8906419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-16T16:57:18.0704347+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.143.38.0, 40.90.130.204] + +2025-03-16T16:57:19.3553095+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[104.123.71.81, 104.123.71.74, 104.123.71.19] + +2025-03-16T16:57:20.1415147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.123.71.18, 104.123.71.89, 2600:1406:6c00::172d:cc2] + +2025-03-16T16:57:20.4389150+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 2603:1047:1:168::25, 20.190.148.162] + +2025-03-16T16:57:22.6352863+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T16:57:31.2561084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 13.105.28.1, 20.143.38.0] + +2025-03-16T16:57:34.2913886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.109.154] + +2025-03-16T16:57:51.4734576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.112.26] + +2025-03-16T16:57:54.6631462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.74, 2620:1ec:bdf::45] + +2025-03-16T16:58:11.9588896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-03-16T16:58:16.3985206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 2606:50c0:8002::154] + +2025-03-16T16:58:18.3456682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.53, 13.107.246.74] + +2025-03-16T16:58:26.0576966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T16:58:26.0586557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T16:58:26.0596777+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T16:58:42.6530536+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.74, 13.107.246.71] + +2025-03-16T16:58:42.6535734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.74, 2620:1ec:bdf::45] + +2025-03-16T16:58:43.2641449+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 13.105.28.1, 40.90.130.204] + +2025-03-16T16:58:45.9104322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::41, 13.107.246.74] + +2025-03-16T16:59:01.3814025+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T16:59:29.8837157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 4.237.22.35, 140.82.121.10] + +2025-03-16T16:59:37.6285458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3032::ac43:8d18, 104.21.70.253, 172.67.141.24] + +2025-03-16T16:59:38.0591086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 104.21.70.253, 172.67.141.24] + +2025-03-16T16:59:39.1357640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.123.71.18, 104.123.71.89, 104.123.71.82] + +2025-03-16T16:59:56.5626917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.2, 13.105.28.1] + +2025-03-16T17:00:04.2646610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.2, 13.105.74.49] + +2025-03-16T17:00:20.9486011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::71, 13.107.246.74] + +2025-03-16T17:00:22.4966888+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::46, 13.107.246.74] + +2025-03-16T17:00:27.4700448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 20.135.6.2] + +2025-03-16T17:00:29.3828665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 2606:4700::6811:180e] + +2025-03-16T17:00:29.3838041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.26] + +2025-03-16T17:00:39.3647044+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.71] + +2025-03-16T17:00:39.3659339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.74, 13.107.246.71] + +2025-03-16T17:00:47.5013092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.74, 13.107.246.60] + +2025-03-16T17:00:49.9606743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.4, 52.109.124.13] + +2025-03-16T17:00:49.9616344+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.144.161, 20.190.144.163] + +2025-03-16T17:00:55.6720477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.114.25, 140.82.112.26] + +2025-03-16T17:01:05.9245125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.113.25] + +2025-03-16T17:01:06.4751155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.114.22, 140.82.114.21] + +2025-03-16T17:01:06.6297834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T17:01:06.6302725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T17:01:07.6985446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.60, 2620:1ec:bdf::57] + +2025-03-16T17:01:11.3023681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 2603:1046:1406::1, 52.109.120.46] + +2025-03-16T17:01:11.3725010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::73, 2620:1ec:bdf::44] + +2025-03-16T17:01:11.7453015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::73, 13.107.246.44] + +2025-03-16T17:01:12.2903970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::71, 13.107.246.71] + +2025-03-16T17:01:16.9055095+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 4.237.22.35, 140.82.121.9] + +2025-03-16T17:01:16.9671407+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::41, 2620:1ec:bdf::44] + +2025-03-16T17:01:17.0303997+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.53, 13.107.246.60] + +2025-03-16T17:01:33.6654682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T17:01:35.1435748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[104.123.71.81, 104.123.71.19, 104.123.71.74] + +2025-03-16T17:01:35.7921255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.123.71.82, 104.123.71.89, 104.123.71.18] + +2025-03-16T17:01:37.7788907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T17:01:38.7584568+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.113.4] + +2025-03-16T17:01:44.5412380+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.161, 20.190.144.163] + +2025-03-16T17:01:44.6297416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.164, 2603:1047:1:168::25] + +2025-03-16T17:01:52.4440598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.164, 20.190.144.161] + +2025-03-16T17:01:53.7580218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T17:01:53.7589006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T17:01:53.7598300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T17:01:54.7164568+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.121.6] + +2025-03-16T17:01:57.5084332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T17:01:57.5100511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T17:02:01.6154791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T17:02:20.5665843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::41, 13.107.246.31] + +2025-03-16T17:02:21.2647771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.67, 13.107.246.53] + +2025-03-16T17:02:23.0681197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[104.123.71.74, 104.123.71.81, 104.123.71.19] + +2025-03-16T17:02:23.2335211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[104.123.71.24, 104.123.71.82, 104.123.71.89] + +2025-03-16T17:02:24.9518076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::57, 2620:1ec:bdf::73] + +2025-03-16T17:02:35.4778163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-03-16T17:02:57.5863115+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:03:14.4094370+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.164, 20.190.144.161] + +2025-03-16T17:03:25.5817021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 4.237.22.35] + +2025-03-16T17:03:25.8252500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.108.154, 185.199.111.154] + +2025-03-16T17:03:31.2526984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T17:03:31.6763225+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T17:03:32.0557306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-16T17:03:39.8837660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-03-16T17:03:40.1731277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 2606:50c0:8000::154] + +2025-03-16T17:03:41.1365015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.67, 13.107.246.60] + +2025-03-16T17:03:42.7895265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::38, 13.107.246.73, 2620:1ec:bdf::57] + +2025-03-16T17:03:56.4230295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.5, 140.82.113.6] + +2025-03-16T17:04:00.3098885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 13.107.246.73, 2620:1ec:bdf::73] + +2025-03-16T17:04:33.1024848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.9] + +2025-03-16T17:04:36.7434239+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.73, 2620:1ec:bdf::71] + +2025-03-16T17:04:40.4355128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-03-16T17:04:40.9443584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-03-16T17:04:42.8813657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.66, 13.107.246.73] + +2025-03-16T17:04:58.0725723+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.15] + +2025-03-16T17:05:09.9224641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.131, 20.190.166.133, 20.190.166.132] + +2025-03-16T17:05:20.8660841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.67, 2620:1ec:bdf::66] + +2025-03-16T17:05:31.9558541+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 104.17.24.14] + +2025-03-16T17:05:33.1378681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.67, 2620:1ec:bdf::41] + +2025-03-16T17:05:52.5094533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.4, 140.82.113.3] + +2025-03-16T17:06:14.0912435+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:06:15.6885815+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:06:15.7928157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.67, 2620:1ec:bdf::71, 2620:1ec:bdf::69] + +2025-03-16T17:06:18.5568117+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:06:19.8404011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 2620:1ec:bdf::57, 2620:1ec:bdf::41] + +2025-03-16T17:06:23.1765786+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:06:23.4541029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::71, 13.107.246.66] + +2025-03-16T17:06:50.6668248+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::38, 2620:1ec:bdf::69, 2620:1ec:bdf::45] + +2025-03-16T17:07:12.4186135+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:07:29.4452726+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:07:29.9155119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T17:07:51.8333386+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:08:35.3525940+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:08:40.5503902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[104.123.71.81, 23.56.4.41, 104.123.71.74] + +2025-03-16T17:08:41.6911583+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:08:42.2086549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.4.43, 23.56.4.59, 2600:1406:5400::48f7:d38a] + +2025-03-16T17:09:11.5483241+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:09:15.0625953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.144.137, 20.190.144.160] + +2025-03-16T17:09:17.3470593+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:09:23.2344748+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:09:30.8379909+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:09:31.5131671+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:09:32.0801021+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:09:37.3447500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T17:09:39.6460631+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:09:39.7847932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T17:10:01.4971623+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:10:01.6771041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T17:10:23.4586349+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:10:23.6428366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T17:10:51.1534143+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T17:10:51.4685888+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.8.12] + +2025-03-16T17:11:04.4438075+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:11:04.9092606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T17:11:09.9806801+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:11:11.3179497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-03-16T17:11:17.0114632+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:11:18.7344699+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:11:19.1729064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 2606:4700:130:436c:6f75:6466:6c61:7265] + +2025-03-16T17:11:40.9626551+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:11:41.3491492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:180e, 104.17.25.14] + +2025-03-16T17:11:42.3545602+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:11:42.6068435+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.3] + +2025-03-16T17:11:43.8259429+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:11:44.2374972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.21] + +2025-03-16T17:11:46.3190404+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:11:46.7978239+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.112.9] + +2025-03-16T17:12:10.5446601+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:12:23.2491767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.113.25] + +2025-03-16T17:12:45.0081546+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:12:45.3279927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T17:13:00.4446694+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:13:00.6401557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-16T17:13:02.1605195+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:13:02.6275241+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-03-16T17:13:24.3897427+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:13:25.6588073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 2620:1ec:bdf::51, 13.107.246.74] + +2025-03-16T17:13:26.2929798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.74, 13.107.246.77] + +2025-03-16T17:13:47.9740799+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:13:48.2264253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 2620:1ec:bdf::38, 13.107.246.44] + +2025-03-16T17:13:48.9986432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::51, 13.107.246.74] + +2025-03-16T17:14:10.7201189+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:14:10.9921938+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 13.105.74.50, 20.135.6.15] + +2025-03-16T17:14:11.7694627+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 2620:1ec:bdf::38, 2620:1ec:bdf::41] + +2025-03-16T17:14:18.8215845+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1404::5] + +2025-03-16T17:14:20.8963103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.4.59, 23.56.4.43, 23.67.33.151] + +2025-03-16T17:14:21.8602784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44af, 2600:140b:1a00:19::17dc:44aa, 23.56.4.41] + +2025-03-16T17:14:43.7342273+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:14:47.0181217+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.66, 20.190.166.131, 20.190.166.67] + +2025-03-16T17:14:51.1424902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::11, 2603:1047:1:168::12, 2603:1047:1:168::25] + +2025-03-16T17:14:54.5059414+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:14:54.5758773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T17:14:55.3336027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T17:14:56.0455494+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T17:15:02.3728639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-16T17:15:03.1286911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6] + +2025-03-16T17:15:04.6158734+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-03-16T17:15:06.9208053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T17:15:07.6360951+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T17:15:08.0349381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T17:15:14.1349639+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:15:14.9139919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8002::154, 2606:50c0:8003::154] + +2025-03-16T17:15:15.6757902+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8002::154, 2606:50c0:8003::154] + +2025-03-16T17:15:16.2416118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 13.105.28.1, 20.135.6.15] + +2025-03-16T17:15:16.2430949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.77, 2620:1ec:bdf::74] + +2025-03-16T17:15:18.5731107+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::38, 2620:1ec:bdf::41] + +2025-03-16T17:15:22.1333862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36] + +2025-03-16T17:15:22.1345213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.9] + +2025-03-16T17:15:32.8968004+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T17:15:32.8977297+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T17:15:33.2949108+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 374.9057 ms + +2025-03-16T17:15:33.3615412+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.4436 ms + +2025-03-16T17:15:33.5203871+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.44, 13.107.246.74] + +2025-03-16T17:15:35.1358325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.166, 20.190.148.167, 20.190.148.165] + +2025-03-16T17:15:44.9299317+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T17:15:46.2626104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-03-16T17:15:49.7144733+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.66, 13.107.246.76, 2620:1ec:bdf::51] + +2025-03-16T17:15:50.0112712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.165, 20.190.148.162] + +2025-03-16T17:15:50.0121138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.162, 20.190.144.162] + +2025-03-16T17:15:50.1884002+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.1077 ms + +2025-03-16T17:15:50.2649646+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.711 ms + +2025-03-16T17:15:53.6046205+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T17:15:53.6063766+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.25] + +2025-03-16T17:16:04.0453762+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.113.6] + +2025-03-16T17:16:04.4001185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.26, 140.82.113.25] + +2025-03-16T17:16:16.4692768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-03-16T17:16:19.1205053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T17:16:19.6321073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:130:436c:6f75:6466:6c61:7265, 2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd] + +2025-03-16T17:16:20.2294460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.38, 13.107.246.76, 2620:1ec:bdf::51] + +2025-03-16T17:16:25.1599510+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::66, 2620:1ec:bdf::38] + +2025-03-16T17:16:25.6532958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.76, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T17:16:31.2412795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T17:16:43.1667955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 2606:4700::6811:180e, 104.17.24.14] + +2025-03-16T17:16:45.6242785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.22] + +2025-03-16T17:16:48.3495869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.112.9, 140.82.121.9, 20.205.243.165] + +2025-03-16T17:16:51.8264717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.76, 13.107.246.74] + +2025-03-16T17:17:03.2545373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-16T17:17:17.6191202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.5] + +2025-03-16T17:17:18.2078136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.113.22] + +2025-03-16T17:17:26.0316587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 13.105.28.1, 40.90.130.192] + +2025-03-16T17:17:28.3631444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.25, 140.82.113.26] + +2025-03-16T17:17:28.5518072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.77] + +2025-03-16T17:17:28.9586725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::52, 2620:1ec:bdf::45] + +2025-03-16T17:17:31.9071642+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T17:17:46.5014783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8000::154, 2606:50c0:8001::154] + +2025-03-16T17:17:46.5031109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8000::154, 2606:50c0:8001::154] + +2025-03-16T17:17:50.1960405+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::46, 13.107.246.76] + +2025-03-16T17:17:53.7225416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44af, 2600:140b:1a00:19::17dc:44aa, 2600:1406:5400::48f7:d38a] + +2025-03-16T17:18:10.8140730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-03-16T17:18:19.8541381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 13.105.28.1, 40.90.133.102] + +2025-03-16T17:18:22.2550124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.38, 13.107.246.40, 13.107.246.76] + +2025-03-16T17:18:26.2300108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.77, 2620:1ec:bdf::74] + +2025-03-16T17:18:31.0287817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.64, 2620:1ec:bdf::38] + +2025-03-16T17:18:31.1016652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.38, 13.107.246.40, 2620:1ec:bdf::74] + +2025-03-16T17:18:31.1672917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T17:18:37.6751633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44af, 2600:140b:1a00:19::17dc:44aa, 61.213.168.49] + +2025-03-16T17:18:43.1334499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.56.4.59, 23.56.4.43, 2600:1406:5600:e::17d4:3e4f] + +2025-03-16T17:18:45.0140174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::45, 13.107.246.44, 13.107.246.77] + +2025-03-16T17:18:46.3877937+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:5600:e::17d4:3e4f, 23.67.33.151, 23.67.33.149] + +2025-03-16T17:18:49.0960983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::45, 13.107.246.77] + +2025-03-16T17:18:49.6780296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::66, 13.107.246.64, 2620:1ec:bdf::74] + +2025-03-16T17:18:52.8537607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1404::5] + +2025-03-16T17:19:08.7291572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.165, 20.190.144.137] + +2025-03-16T17:19:08.7306174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.144.162, 20.190.148.164] + +2025-03-16T17:19:11.1095150+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-03-16T17:19:11.1128159+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-16T17:19:11.1388764+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:11.3375655+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:11.3439257+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 205.0693 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-16T17:19:12.1892677+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 851.7366 ms + +2025-03-16T17:19:12.2034725+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:12.4086943+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:12.4096299+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 206.1456 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T17:19:12.7238923+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 315.2127 ms + +2025-03-16T17:19:12.7309688+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:12.9411445+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:12.9413055+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 210.3297 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T17:19:14.3839906+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1442.8508 ms + +2025-03-16T17:19:14.4166262+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:14.6148123+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 198.1895 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T17:19:14.6149019+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:15.6097075+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::66, 2620:1ec:bdf::74] + +2025-03-16T17:19:16.1487589+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 1533.8622 ms + +2025-03-16T17:19:16.1562412+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:16.1859806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::11, 2603:1047:1:168::24, 20.190.148.167] + +2025-03-16T17:19:16.3596497+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:16.3598782+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 203.6494 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T17:19:17.0296889+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 670.0948 ms + +2025-03-16T17:19:17.0356151+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:17.1945912+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 158.9669 ms + +2025-03-16T17:19:17.1967591+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:17.3546271+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 157.8005 ms + +2025-03-16T17:19:17.3628678+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:17.5258140+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 163.0346 ms + +2025-03-16T17:19:17.5278532+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:17.7012743+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 173.4071 ms + +2025-03-16T17:19:17.7070370+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:17.8658454+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 158.9464 ms + +2025-03-16T17:19:17.8687143+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:18.0305217+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 161.811 ms + +2025-03-16T17:19:18.0362227+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:18.2007710+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 164.6254 ms + +2025-03-16T17:19:18.2039622+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:18.3639081+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 159.9326 ms + +2025-03-16T17:19:18.3704399+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:18.4241810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[140.82.112.9, 140.82.113.10, 140.82.121.9] + +2025-03-16T17:19:18.5275670+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 157.1245 ms + +2025-03-16T17:19:18.5294541+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:18.7273903+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 197.9442 ms + +2025-03-16T17:19:18.7325208+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:18.8932361+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 160.8514 ms + +2025-03-16T17:19:18.8962604+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:19.0574884+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 161.2072 ms + +2025-03-16T17:19:19.0643138+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:19.2284585+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 164.139 ms + +2025-03-16T17:19:19.2309766+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:19.3878580+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 302 in 156.8635 ms + +2025-03-16T17:19:19.3927467+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:19.5514039+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 302 in 158.6473 ms + +2025-03-16T17:19:19.5536865+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:19:19.6277927+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 502 in 74.0837 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T17:19:27.2897338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-03-16T17:19:28.0349196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T17:19:29.3459157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.149, 23.67.33.151, 2600:1406:5400::48f7:d393] + +2025-03-16T17:19:32.2222153+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:19:33.2096086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::45, 13.107.246.40] + +2025-03-16T17:19:34.0809523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::52, 2620:1ec:bdf::57] + +2025-03-16T17:19:42.7756337+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 328.6722 ms + +2025-03-16T17:19:42.8417277+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.2377 ms + +2025-03-16T17:19:44.7559364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 13.105.28.1] + +2025-03-16T17:19:51.2038116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.167, 20.190.144.164] + +2025-03-16T17:19:54.7982640+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 2603:1047:1:168::11, 20.190.148.167] + +2025-03-16T17:19:57.0120046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T17:19:58.7163401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.18, 20.135.6.7] + +2025-03-16T17:20:08.7167491+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.9345 ms + +2025-03-16T17:20:08.7817958+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.7997 ms + +2025-03-16T17:20:12.2939724+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T17:20:12.4617035+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T17:20:13.1261812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.108.133] + +2025-03-16T17:20:13.8304101+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.21] + +2025-03-16T17:20:13.8314591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8000::154, 185.199.109.133, 2606:50c0:8001::154] + +2025-03-16T17:20:13.8323204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[2606:50c0:8000::154, 185.199.109.133, 2606:50c0:8001::154] + +2025-03-16T17:20:23.2904522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.38, 13.107.246.44, 13.107.246.40] + +2025-03-16T17:20:27.7397412+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 123.6384 ms + +2025-03-16T17:20:27.8093334+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.9818 ms + +2025-03-16T17:20:31.9284228+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.64, 2620:1ec:bdf::66, 13.107.246.77] + +2025-03-16T17:20:39.9301234+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +g.live.com->127.0.0.1 + +2025-03-16T17:20:39.9313035+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +g.live.com->::1 + +2025-03-16T17:20:40.5519079+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/odclientsettings/ProdV2 responded 302 in 483.6899 ms + +2025-03-16T17:20:41.2645396+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/odclientsettings/ProdV2 responded 302 in 133.3401 ms + +2025-03-16T17:20:42.3957328+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/1rewlive5skydrive/ODSUProductionV2 responded 302 in 121.1306 ms + +2025-03-16T17:20:42.7179026+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/1rewlive5skydrive/ODSUProductionV2 responded 302 in 122.4507 ms + +2025-03-16T17:20:44.9661910+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-16T17:20:44.9669437+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-03-16T17:20:45.5676928+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 569.4115 ms + +2025-03-16T17:20:49.8195251+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +HEAD https://g.live.com/odclientsettings/ProdV2 responded 302 in 117.0406 ms + +2025-03-16T17:20:50.1433271+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://g.live.com/odclientsettings/ProdV2 responded 302 in 117.1301 ms + +2025-03-16T17:21:05.4735326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-16T17:21:06.0020704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.5] + +2025-03-16T17:21:07.5162843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 13.107.246.64, 2620:1ec:bdf::66] + +2025-03-16T17:21:17.1701300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-03-16T17:21:17.8168593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T17:21:20.8700777+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:21:21.2022981+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:21:22.5409100+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:21:32.2673883+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:21:42.8651924+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T17:21:42.8664558+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T17:21:43.2045309+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 322.7051 ms + +2025-03-16T17:21:43.2746549+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.6415 ms + +2025-03-16T17:21:56.0305306+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.0884 ms + +2025-03-16T17:21:56.1022982+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.2504 ms + +2025-03-16T17:22:02.2293816+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:22:02.3520576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-03-16T17:22:09.9370097+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:22:10.2585542+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:22:11.6002156+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:22:12.5004926+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:22:33.5385721+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:22:37.4616736+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:22:37.8566505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.9] + +2025-03-16T17:22:39.6972419+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:22:59.7537863+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 371.2129 ms + +2025-03-16T17:22:59.8253645+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.0559 ms + +2025-03-16T17:23:01.6789311+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:23:01.7954579+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-03-16T17:23:23.1628153+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:23:23.4081373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T17:23:28.6855254+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:23:28.8857876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T17:23:30.3457787+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:23:31.5776730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.24.14] + +2025-03-16T17:23:34.7653764+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->::1 + +2025-03-16T17:23:34.7667963+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-16T17:23:34.7675472+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->::1 + +2025-03-16T17:23:34.7686666+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +cdnjs.cloudflare.com->127.0.0.1 + +2025-03-16T17:23:34.8221823+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->::1 + +2025-03-16T17:23:34.8233481+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-16T17:23:34.8396828+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:23:35.0443266+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://fonts.googleapis.com/css responded 502 in 204.706 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-16T17:23:35.0469625+08:00 [INF] +FastGithub.HttpServer.HttpReverseProxyMiddleware +https://fonts.googleapis.com/ => https://fonts.geekzu.org/ + +2025-03-16T17:23:35.5818719+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://fonts.googleapis.com/css responded 502 in 534.8853 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-16T17:23:53.2816035+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:23:59.8356415+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:24:03.2774998+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 52.109.0.136] + +2025-03-16T17:24:04.3323019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.25] + +2025-03-16T17:24:25.7675107+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:24:26.0798512+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8001::154, 2606:50c0:8000::154, 185.199.109.133] + +2025-03-16T17:24:26.7990094+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:24:26.9961707+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[2606:50c0:8001::154, 2606:50c0:8000::154, 185.199.109.133] + +2025-03-16T17:24:27.9970721+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:24:28.2706082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::45, 13.107.246.51] + +2025-03-16T17:24:29.7776313+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:24:30.0427191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::57, 2620:1ec:bdf::45] + +2025-03-16T17:24:51.8025634+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:24:53.1739144+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:24:53.4272013+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.40] + +2025-03-16T17:25:19.2259518+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:25:24.3197374+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:25:25.4254851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T17:25:56.1088440+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:25:56.2093469+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::51, 2620:1ec:bdf::74] + +2025-03-16T17:26:21.9488664+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:26:22.0497624+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::51, 13.107.246.44] + +2025-03-16T17:26:27.2915346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[61.213.168.49, 23.67.33.135, 2600:1406:5600:e::17d4:3e4c] + +2025-03-16T17:26:29.4363307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:5600:e::17d4:3e53, 23.67.33.151, 2600:1406:5600:e::17d4:3e4f] + +2025-03-16T17:26:33.5548618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.137, 20.190.144.160] + +2025-03-16T17:26:39.2858766+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.144.137, 20.190.144.136] + +2025-03-16T17:26:42.0526208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T17:26:57.6059357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.114.10] + +2025-03-16T17:26:59.4579213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-03-16T17:27:01.3253906+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T17:27:02.0579360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T17:27:06.5282099+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.108.133] + +2025-03-16T17:27:07.8228848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T17:27:08.7597663+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T17:27:09.8236124+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-03-16T17:27:15.1734548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-03-16T17:27:24.0404742+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8001::154, 185.199.111.133] + +2025-03-16T17:27:24.7673300+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8001::154, 185.199.111.133] + +2025-03-16T17:27:25.4896621+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::45, 2620:1ec:bdf::74] + +2025-03-16T17:27:26.1834588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::57, 13.107.246.60] + +2025-03-16T17:27:28.7413130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.7] + +2025-03-16T17:27:30.7842221+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.191] + +2025-03-16T17:27:32.9892352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::51, 13.107.246.44] + +2025-03-16T17:27:41.5851484+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-03-16T17:27:44.4076898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-03-16T17:28:17.2890671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 40.90.133.102] + +2025-03-16T17:28:25.9938370+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T17:28:25.9945853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 2606:4700:3031::6815:46fd, 172.67.141.24] + +2025-03-16T17:28:33.8419866+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 2606:4700::6811:180e, 104.17.24.14] + +2025-03-16T17:28:52.5503085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[61.213.168.49, 2600:1406:5600:e::17d4:3e53, 23.67.33.151] + +2025-03-16T17:28:57.3739958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.36, 20.190.141.34, 20.190.141.38] + +2025-03-16T17:29:07.2481325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.114.21] + +2025-03-16T17:29:07.4807433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.112.25] + +2025-03-16T17:29:13.1542162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.113.10] + +2025-03-16T17:29:15.9258991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.160, 40.126.35.85] + +2025-03-16T17:29:28.9364700+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-03-16T17:29:29.3913768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-03-16T17:29:29.8479517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.253.38] + +2025-03-16T17:29:30.3035003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::57, 13.107.246.67] + +2025-03-16T17:29:35.2875523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.46, 2620:1ec:bdf::51] + +2025-03-16T17:29:35.3521276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::51, 13.107.246.60] + +2025-03-16T17:29:35.6235675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::73, 2620:1ec:bdf::40] + +2025-03-16T17:29:40.8626113+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:29:49.3942194+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 40.90.133.99, 40.90.133.102] + +2025-03-16T17:29:57.0166081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.74, 13.107.246.40] + +2025-03-16T17:30:03.3656878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 2620:1ec:bdf::51] + +2025-03-16T17:30:21.8453865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.74, 13.107.253.38] + +2025-03-16T17:30:57.3663659+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::44, 2620:1ec:bdf::53] + +2025-03-16T17:30:57.3674525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.53, 2620:1ec:bdf::44] + +2025-03-16T17:31:17.9440819+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2404::2] + +2025-03-16T17:31:17.9447749+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::64, 2620:1ec:bdf::62] + +2025-03-16T17:31:18.2477919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::53, 13.107.246.46] + +2025-03-16T17:31:18.8528012+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.90.133.99, 40.90.133.102, 40.90.133.97] + +2025-03-16T17:31:19.1943699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[61.213.168.49, 2600:1406:5600:e::17d4:3e53, 2600:1406:5600:e::17d4:3e4f] + +2025-03-16T17:31:19.1953687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[61.213.168.49, 2600:1406:5600:e::17d4:3e4c, 2600:1406:5600:e::17d4:3e60] + +2025-03-16T17:31:21.1917501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-16T17:31:22.8038009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 4.208.26.199] + +2025-03-16T17:31:34.9094748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::9] + +2025-03-16T17:31:46.3094168+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::44, 2620:1ec:bdf::41] + +2025-03-16T17:31:46.7100738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::65, 2620:1ec:bdf::66, 13.107.246.74] + +2025-03-16T17:31:48.8123599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.2, 40.90.133.99, 40.90.133.102] + +2025-03-16T17:31:53.1725147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:5600:e::17d4:3e53, 2600:1406:5600:e::17d4:3e4f, 23.56.109.142] + +2025-03-16T17:31:54.0155685+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:5600:e::17d4:3e4c, 2600:1406:5600:e::17d4:3e60, 23.56.109.135] + +2025-03-16T17:31:57.6071418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.148.164, 20.190.148.167] + +2025-03-16T17:32:04.7837723+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T17:32:09.2791913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-03-16T17:32:09.8066378+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T17:32:10.2919325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.3] + +2025-03-16T17:32:15.2981433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133] + +2025-03-16T17:32:15.2991693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.108.133] + +2025-03-16T17:32:15.2998022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133] + +2025-03-16T17:32:16.1286973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8000::154, 2606:50c0:8001::154, 2606:50c0:8002::154] + +2025-03-16T17:32:16.1297048+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[2606:50c0:8000::154, 2606:50c0:8001::154, 2606:50c0:8002::154] + +2025-03-16T17:32:23.3191726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-03-16T17:32:23.9699485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 13.74.129.92] + +2025-03-16T17:32:25.5087646+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.114.25] + +2025-03-16T17:32:26.3682823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::41, 2620:1ec:bdf::64] + +2025-03-16T17:32:27.3245516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::44, 2620:1ec:bdf::65] + +2025-03-16T17:32:30.1585191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.52.2] + +2025-03-16T17:32:32.6271927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::73, 2620:1ec:bdf::66] + +2025-03-16T17:32:39.1987966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 20.217.135.5] + +2025-03-16T17:32:44.6408338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-03-16T17:33:07.4139222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.148.167, 20.190.144.138] + +2025-03-16T17:33:27.9390953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.3] + +2025-03-16T17:33:28.9114458+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.114.10] + +2025-03-16T17:33:37.6162693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-03-16T17:33:38.4655451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 104.21.70.253, 2606:4700:3031::6815:46fd] + +2025-03-16T17:33:39.5529830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.24.14] + +2025-03-16T17:33:51.1602637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::41, 13.107.246.67] + +2025-03-16T17:33:51.7391108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::44, 2620:1ec:bdf::53] + +2025-03-16T17:33:52.4815723+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T17:34:07.6515992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.34, 20.190.141.36, 20.190.141.33] + +2025-03-16T17:34:12.3476284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-03-16T17:34:13.0086672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.114.25, 140.82.113.25] + +2025-03-16T17:34:24.6134377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.2, 40.90.133.99] + +2025-03-16T17:34:26.5547639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.112.6] + +2025-03-16T17:34:27.5123312+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::73, 13.107.246.57] + +2025-03-16T17:34:29.5276793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-03-16T17:34:32.0204793+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[2606:50c0:8002::154, 185.199.110.133, 185.199.108.133] + +2025-03-16T17:34:32.0216145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[2606:50c0:8002::154, 185.199.110.133, 185.199.108.133] + +2025-03-16T17:34:32.2756191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.44, 2620:1ec:bdf::74] + +2025-03-16T17:34:32.3567335+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T17:34:32.5976474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::41, 2620:1ec:bdf::62] + +2025-03-16T17:34:32.6670506+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.40, 2620:1ec:bdf::44] + +2025-03-16T17:34:32.9687830+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::51, 2620:1ec:bdf::44, 13.107.246.44] + +2025-03-16T17:34:34.0313517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:3a00:1f::173e:2e77, 2600:1406:5600:e::17d4:3e4c, 2600:1406:3a00:1f::173e:2e75] + +2025-03-16T17:34:35.4485747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T17:34:35.4498421+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::41, 2620:1ec:bdf::62, 13.107.246.44] + +2025-03-16T17:34:36.4677812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.40, 13.107.246.44] + +2025-03-16T17:34:36.8052081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.44, 2620:1ec:bdf::74] + +2025-03-16T17:34:59.9616302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.15, 20.135.6.2] + +2025-03-16T17:35:22.4141975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T17:35:36.0262564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.40, 13.107.246.38] + +2025-03-16T17:35:42.0305292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::41, 2620:1ec:bdf::62] + +2025-03-16T17:35:58.3777682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.38, 13.107.246.44] + +2025-03-16T17:35:58.3783097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T17:36:01.7371153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:5600:e::17d4:3e53, 2600:1406:5600:e::17d4:3e4f, 23.67.33.151] + +2025-03-16T17:36:14.7673384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.44, 2620:1ec:bdf::74] + +2025-03-16T17:36:23.1039501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::74, 13.107.246.65] + +2025-03-16T17:36:34.8352123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:3a00:1f::173e:2e77, 23.67.33.135, 2600:1406:5600:e::17d4:3e4c] + +2025-03-16T17:36:47.5908439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 2620:1ec:bdf::41, 2620:1ec:bdf::74] + +2025-03-16T17:36:47.5914888+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::62, 13.107.246.44] + +2025-03-16T17:36:49.6275726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.2, 20.135.6.15] + +2025-03-16T17:36:55.7682802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.38, 2620:1ec:bdf::71] + +2025-03-16T17:36:56.5825677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:3a00:1f::173e:2e77, 23.67.33.135, 2600:1406:3a00:1f::173e:2e75] + +2025-03-16T17:36:59.8739660+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.137, 20.190.144.160] + +2025-03-16T17:37:23.9561493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T17:37:24.4022974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T17:37:24.8270164+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T17:37:25.2064940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T17:37:25.7606058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T17:37:30.7718913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-03-16T17:37:31.3362073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-03-16T17:37:40.3847478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.121.9] + +2025-03-16T17:37:41.2732450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-03-16T17:37:42.2543533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T17:37:42.6708238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.109.133, 185.199.108.133] + +2025-03-16T17:37:45.2921800+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.31, 2620:1ec:bdf::40, 13.107.246.44] + +2025-03-16T17:37:48.1517614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.9] + +2025-03-16T17:37:49.5716504+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.32, 20.190.141.34, 20.190.141.37] + +2025-03-16T17:37:51.6647094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.22.207.36] + +2025-03-16T17:38:04.3693791+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.65, 13.107.246.53] + +2025-03-16T17:38:14.5173878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.66, 13.107.246.65] + +2025-03-16T17:38:20.0063058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.66, 13.107.246.71] + +2025-03-16T17:38:24.5492679+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.21] + +2025-03-16T17:38:30.3167735+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.161, 20.190.144.165] + +2025-03-16T17:38:31.6284338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.31, 13.107.246.44, 2620:1ec:bdf::74] + +2025-03-16T17:38:39.5521911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-03-16T17:38:39.8996450+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 172.67.141.24] + +2025-03-16T17:38:41.4468931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14, 2606:4700::6811:190e] + +2025-03-16T17:38:44.1963097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1406:3a00:1f::173e:2e77, 23.67.33.135, 2600:1406:3c00::687b:4713] + +2025-03-16T17:38:54.2479399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.4] + +2025-03-16T17:38:55.1382325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:3c00::687b:4712, 2600:1406:5600:e::17d4:3e53, 2600:1406:5600:e::17d4:3e4f] + +2025-03-16T17:39:01.4049812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.114.22] + +2025-03-16T17:39:06.6730833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.32, 20.190.141.37, 20.190.141.33] + +2025-03-16T17:39:10.3046981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.162, 20.190.144.136, 20.190.144.161] + +2025-03-16T17:39:13.1648330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.21, 140.82.113.22] + +2025-03-16T17:39:13.3979815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.112.26] + +2025-03-16T17:39:14.3325108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 13.107.246.44, 2620:1ec:bdf::41] + +2025-03-16T17:39:20.2715517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 2620:1ec:bdf::74, 13.107.246.66] + +2025-03-16T17:39:27.6831017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.112.6, 140.82.121.5] + +2025-03-16T17:39:29.8026950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-03-16T17:39:30.4731308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8002::154, 185.199.109.133] + +2025-03-16T17:39:30.4743232+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 2606:50c0:8002::154, 185.199.109.133] + +2025-03-16T17:39:33.4860533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::41, 13.107.246.77] + +2025-03-16T17:39:33.5472188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.31, 2620:1ec:bdf::53] + +2025-03-16T17:39:33.6283046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::41, 2620:1ec:bdf::66] + +2025-03-16T17:39:33.9278260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.66, 13.107.246.71] + +2025-03-16T17:39:33.9940371+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.38, 13.107.246.40, 2620:1ec:bdf::71] + +2025-03-16T17:39:36.1005173+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::41, 2620:1ec:bdf::44] + +2025-03-16T17:39:36.1683218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.31, 2620:1ec:bdf::44] + +2025-03-16T17:39:36.1691456+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::41, 2620:1ec:bdf::44] + +2025-03-16T17:39:36.1697180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.65, 13.107.246.66, 2620:1ec:bdf::44] + +2025-03-16T17:39:42.4595691+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:39:49.0497137+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.3] + +2025-03-16T17:39:50.7526151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.31, 13.107.246.52] + +2025-03-16T17:40:03.2619182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.65, 13.107.246.71] + +2025-03-16T17:40:03.7997338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.18, 20.135.6.15] + +2025-03-16T17:40:16.2906369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.38, 2620:1ec:bdf::41, 13.107.246.66] + +2025-03-16T17:40:16.8604633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[2603:1046:1404::4, 52.109.124.29, 2603:1046:1406::5] + +2025-03-16T17:40:20.8195213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.65, 2620:1ec:bdf::66] + +2025-03-16T17:40:38.6328644+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.66, 2620:1ec:bdf::44] + +2025-03-16T17:40:38.6336602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 2620:1ec:bdf::71, 2620:1ec:bdf::44] + +2025-03-16T17:41:10.3919859+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1406:3c00::687b:4712, 2600:1406:5600:e::17d4:3e53, 23.67.33.149] + +2025-03-16T17:41:18.0413538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::44, 13.107.246.77] + +2025-03-16T17:41:32.7709362+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:41:36.5697712+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:41:58.0096059+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:42:04.8723100+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:42:21.8669172+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:43:03.0623653+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:43:09.6711924+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:43:10.0749116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 140.82.121.4, 140.82.121.3] + +2025-03-16T17:43:31.8570834+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:43:32.0776721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.112.22, 140.82.114.21] + +2025-03-16T17:43:53.9205840+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:43:54.1718138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.5] + +2025-03-16T17:43:58.5161297+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:44:23.4249566+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:44:23.5275798+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.9.12] + +2025-03-16T17:44:28.6715973+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T17:44:28.6723633+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T17:44:29.0399896+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 355.7795 ms + +2025-03-16T17:44:29.1163195+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 74.0534 ms + +2025-03-16T17:44:49.0076780+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 106.6878 ms + +2025-03-16T17:44:49.0789404+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.8759 ms + +2025-03-16T17:44:49.5793151+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:44:54.7872799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8000::154, 2606:50c0:8002::154] + +2025-03-16T17:45:16.4732287+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:45:16.7121454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 2606:50c0:8000::154, 2606:50c0:8002::154] + +2025-03-16T17:45:21.1056983+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:45:47.1521304+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:46:13.9331799+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:46:14.2304275+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::60, 2620:1ec:bdf::73] + +2025-03-16T17:46:35.2051155+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T17:46:35.4449412+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::73, 2620:1ec:bdf::67] + +2025-03-16T17:46:38.7969957+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:46:38.8630540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.74, 13.107.246.41] + +2025-03-16T17:47:00.8942204+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:47:01.2402605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::73, 13.107.246.44, 2620:1ec:bdf::38] + +2025-03-16T17:47:13.6169145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.76, 13.107.246.60] + +2025-03-16T17:47:15.8113810+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:47:16.1078190+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T17:47:37.9466521+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:47:47.1439193+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:47:47.4208986+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 13.105.74.49] + +2025-03-16T17:47:50.6219512+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:47:51.8506688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[61.213.168.49, 61.213.168.41, 23.67.33.149] + +2025-03-16T17:48:13.5161797+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:48:13.8552322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44aa, 2600:140b:1a00:19::17dc:44af, 61.213.168.49] + +2025-03-16T17:48:19.1626495+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:48:19.4757115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.164, 20.190.144.165] + +2025-03-16T17:48:20.4288106+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:48:23.7090148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.67, 20.190.166.68, 20.190.166.132] + +2025-03-16T17:48:46.4638836+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:49:17.2566866+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:49:17.3310555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T17:49:21.7081604+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:49:35.9448846+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->::1 + +2025-03-16T17:49:35.9465487+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-16T17:49:36.3519425+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 390.8404 ms + +2025-03-16T17:49:36.4305212+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 70.4637 ms + +2025-03-16T17:49:43.5256277+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:49:48.1589961+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:49:50.0292472+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 76.9271 ms + +2025-03-16T17:49:50.1091802+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 73.9644 ms + +2025-03-16T17:50:05.0069159+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 79.5243 ms + +2025-03-16T17:50:05.0776635+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.2862 ms + +2025-03-16T17:50:09.4419662+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-16T17:50:20.3076544+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:50:21.4375794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-03-16T17:50:43.1610048+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:50:43.4437650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 13.74.129.92] + +2025-03-16T17:50:45.4423692+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T17:50:46.3077295+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T17:50:51.5481797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T17:50:52.8085206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[172.67.141.24, 2606:4700:3032::ac43:8d18, 104.21.70.253] + +2025-03-16T17:50:53.6822520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.67.141.24, 2606:4700:3032::ac43:8d18, 104.21.70.253] + +2025-03-16T17:51:08.9679204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 2606:4700::6811:190e, 104.17.25.14] + +2025-03-16T17:51:09.9106587+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 4.225.11.198] + +2025-03-16T17:51:11.0023534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.112.21] + +2025-03-16T17:51:12.1560077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.121.3] + +2025-03-16T17:51:13.3796606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.113.26, 140.82.112.25] + +2025-03-16T17:51:14.5948952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T17:51:16.0445875+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T17:51:17.2236041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-03-16T17:51:17.6947106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.111.133] + +2025-03-16T17:51:18.6739673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::51, 13.107.246.67] + +2025-03-16T17:51:19.7072831+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:51:19.9581910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::60, 13.107.246.74, 13.107.246.76] + +2025-03-16T17:51:21.1272490+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-03-16T17:51:22.3594626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 40.90.130.197, 40.90.133.97] + +2025-03-16T17:51:23.6853750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T17:51:24.4522255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::74, 2620:1ec:bdf::44] + +2025-03-16T17:51:25.3251534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::53] + +2025-03-16T17:51:26.0218285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T17:51:27.3686909+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.52.0] + +2025-03-16T17:51:28.6370434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1406::7, 52.109.124.141] + +2025-03-16T17:51:29.7201339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:1a00:19::17dc:44aa, 2600:140b:1a00:19::17dc:44af, 23.206.250.80] + +2025-03-16T17:51:32.7357404+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.73, 2600:1406:5600:e::17d4:3e53, 2600:1406:3c00::687b:4712] + +2025-03-16T17:51:45.3410953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-16T17:51:45.3417904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.114.4] + +2025-03-16T17:51:59.5614820+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:52:02.9122194+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:52:23.9499995+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:52:25.3049452+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +gapis.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:52:25.8773512+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +fonts.geekzu.org@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:52:26.4233842+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-03-16T17:52:26.7295315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.114.21, 140.82.113.22] + +2025-03-16T17:52:27.1874047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T17:52:27.5860683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::66] + +2025-03-16T17:52:27.8966151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.1.1, 40.90.130.197] + +2025-03-16T17:52:28.2377417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.67, 13.107.246.73, 13.107.246.74] + +2025-03-16T17:52:28.6003797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.74, 2620:1ec:bdf::46] + +2025-03-16T17:52:28.6013202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2404::2] + +2025-03-16T17:52:29.4032906+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.74, 13.107.246.76] + +2025-03-16T17:52:30.0048936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1406::7] + +2025-03-16T17:52:30.8242841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 2603:1046:1406::2] + +2025-03-16T17:52:38.8030982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 140.82.121.9] + +2025-03-16T17:52:40.3597066+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.50, 20.135.1.1] + +2025-03-16T17:52:42.8687259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T17:52:48.1489413+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.74.50, 40.90.130.197] + +2025-03-16T17:52:55.3103809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.112.21, 140.82.114.21] + +2025-03-16T17:53:03.7285777+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.73, 2600:1406:5600:e::17d4:3e53, 2600:1406:3c00::687b:4718] + +2025-03-16T17:53:25.8001783+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:53:47.4056854+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:53:47.6377106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.121.3] + +2025-03-16T17:53:48.5957034+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-16T17:53:50.8442606+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:53:51.0694162+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.113.21, 140.82.112.21] + +2025-03-16T17:53:52.6887438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::64, 13.107.246.74] + +2025-03-16T17:53:58.5597355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.74, 2620:1ec:bdf::69] + +2025-03-16T17:53:59.3321117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.73, 13.107.246.74] + +2025-03-16T17:54:09.3219916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.67, 13.107.246.73] + +2025-03-16T17:54:16.0815725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.165, 20.190.144.138] + +2025-03-16T17:54:22.4071693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.132, 20.190.166.67, 20.190.166.131] + +2025-03-16T17:54:34.0642198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18] + +2025-03-16T17:54:35.0444970+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-16T17:54:35.9051260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T17:54:36.0784738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T17:55:04.4325082+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:55:13.7370044+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:55:14.2412125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::64, 13.107.246.64] + +2025-03-16T17:55:53.3462722+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:55:53.6612932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T17:55:54.2046313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.11, 13.105.74.50] + +2025-03-16T17:55:55.9943649+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T17:55:56.2307876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T17:56:19.9653252+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:56:41.8968785+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:56:54.5004571+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 52.109.124.191, 52.109.124.13] + +2025-03-16T17:57:25.4236401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T17:57:29.4335186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-16T17:57:38.2281588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 20.27.177.114, 140.82.121.9] + +2025-03-16T17:57:43.4148402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-03-16T17:57:44.3873492+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.5] + +2025-03-16T17:57:49.8412637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-03-16T17:57:50.2851815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T17:57:50.9517664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T17:57:55.4400884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T17:57:56.4000002+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 2606:4700:3032::ac43:8d18] + +2025-03-16T17:57:57.1065009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 104.21.70.253, 2606:4700:3032::ac43:8d18] + +2025-03-16T17:58:18.8053370+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T17:58:19.1692442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 2606:4700::6811:190e] + +2025-03-16T17:58:20.1369369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-03-16T17:58:21.0083382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.112.25] + +2025-03-16T18:00:59.3491874+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T18:00:59.8373497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 52.109.89.117] + +2025-03-16T18:01:05.2755262+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8002::154, 2606:50c0:8000::154] + +2025-03-16T18:01:23.7194146+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T18:01:23.9978804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::64, 2620:1ec:bdf::44] + +2025-03-16T18:01:24.3397606+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 2606:50c0:8002::154, 2606:50c0:8000::154] + +2025-03-16T18:01:46.0160624+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T18:01:46.2582528+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.76, 13.107.246.74] + +2025-03-16T18:02:08.1368555+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T18:02:08.3847322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.74] + +2025-03-16T18:02:15.3663082+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.73, 13.107.246.74] + +2025-03-16T18:02:16.4217564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.64] + +2025-03-16T18:02:27.5966451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.7, 13.105.74.50] + +2025-03-16T18:02:28.9539054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 2603:1046:1400::4] + +2025-03-16T18:02:30.2986632+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1402::1, 2603:1046:1404::1, 52.109.124.13] + +2025-03-16T18:02:31.6276828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1413:5000:3a::173d:ca22, 2600:1413:5000:3a::173d:ca23, 2600:140b:2::17ce:fa41] + +2025-03-16T18:02:33.9087339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:3a::173d:ca28, 2600:1413:5000:3a::173d:ca32, 2600:1406:5600:e::17d4:3e4f] + +2025-03-16T18:02:35.1852455+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.160, 20.190.144.139] + +2025-03-16T18:02:39.3258905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.148.163, 2603:1047:1:168::1f] + +2025-03-16T18:02:45.2273302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T18:02:49.0204622+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T18:02:54.2327732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T18:02:59.0112325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165] + +2025-03-16T18:03:00.0190686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.108.154] + +2025-03-16T18:03:05.4116903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.4] + +2025-03-16T18:03:07.3583955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133] + +2025-03-16T18:03:11.8910871+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.110.133] + +2025-03-16T18:03:13.0205095+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133] + +2025-03-16T18:03:14.1798360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[104.21.70.253, 2606:4700:3032::ac43:8d18, 172.67.141.24] + +2025-03-16T18:03:15.0275966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3032::ac43:8d18, 172.67.141.24] + +2025-03-16T18:03:19.9702017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-03-16T18:03:21.6720083+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T18:03:27.3623995+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.77, 2620:1ec:bdf::64, 13.107.246.73] + +2025-03-16T18:03:29.3194230+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::44, 13.107.246.73, 13.107.246.74] + +2025-03-16T18:03:31.3721923+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 2603:1047:1:168::1f, 2603:1047:1:168::20] + +2025-03-16T18:03:33.1415785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.113.21] + +2025-03-16T18:03:33.5141472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 104.17.24.14] + +2025-03-16T18:03:33.8039266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.112.25] + +2025-03-16T18:03:35.7257330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.11, 20.135.6.7] + +2025-03-16T18:03:50.3235728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.114.21] + +2025-03-16T18:03:53.3255710+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 20.190.144.165, 20.190.144.166] + +2025-03-16T18:04:00.9322361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.27.177.114, 20.205.243.165, 4.225.11.198] + +2025-03-16T18:04:09.5980863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-03-16T18:04:24.5328468+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::44, 2620:1ec:bdf::52, 13.107.246.73] + +2025-03-16T18:04:33.8480303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1413:5000:3c::1735:76fd, 2600:1413:5000:3a::173d:ca22, 2600:1413:5000:3c::1735:76ef] + +2025-03-16T18:04:34.8661369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4] + +2025-03-16T18:04:37.3771302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:3a::173d:ca28, 2600:1413:5000:3c::1735:76ec, 2600:1413:5000:3a::173d:ca32] + +2025-03-16T18:04:39.7388505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 4.225.11.198] + +2025-03-16T18:04:39.7401917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-03-16T18:04:39.7412055+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.121.3] + +2025-03-16T18:04:59.9793539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.1, 20.135.6.11] + +2025-03-16T18:05:01.7374211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T18:05:02.6682067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 4.237.22.35, 4.225.11.198] + +2025-03-16T18:05:08.6075520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.5] + +2025-03-16T18:05:12.9304208+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.21] + +2025-03-16T18:05:17.3140409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.77, 13.107.246.73, 13.107.246.74] + +2025-03-16T18:05:28.0093527+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1406::1, 52.109.120.46, 2603:1046:1401::1] + +2025-03-16T18:05:52.3377780+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-03-16T18:05:54.9784091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 13.105.28.1, 20.135.6.7] + +2025-03-16T18:05:57.8124913+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::69] + +2025-03-16T18:06:06.9974622+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133] + +2025-03-16T18:06:08.1186149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T18:06:09.3025106+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.4, 140.82.112.4] + +2025-03-16T18:06:10.7886863+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8000::154, 2606:50c0:8002::154] + +2025-03-16T18:06:10.7893043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 2606:50c0:8000::154, 2606:50c0:8002::154] + +2025-03-16T18:06:11.0707047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1406::1, 2603:1046:1401::1, 52.109.120.46] + +2025-03-16T18:06:13.5234120+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T18:06:13.5243325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T18:06:24.1308384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T18:06:25.9030959+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::52, 13.107.246.73, 13.107.246.74] + +2025-03-16T18:06:25.9044566+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T18:06:48.6176432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.77, 13.107.246.60, 2620:1ec:bdf::69] + +2025-03-16T18:06:48.6930184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.73, 13.107.246.74] + +2025-03-16T18:06:49.3149853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.73, 13.107.246.74] + +2025-03-16T18:06:49.3879986+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.73, 2620:1ec:bdf::41] + +2025-03-16T18:06:49.3893518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::52, 13.107.246.73] + +2025-03-16T18:06:50.3954690+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T18:07:02.7699964+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 4.237.22.35, 140.82.121.9] + +2025-03-16T18:07:06.3539567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.163, 2603:1047:1:168::1f, 2603:1047:1:168::12] + +2025-03-16T18:07:17.5301394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 2620:1ec:bdf::41, 13.107.246.46] + +2025-03-16T18:07:23.1366723+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T18:07:29.0811907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T18:07:42.4559686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1413:5000:3c::1735:76fd, 2600:1413:5000:3c::1735:76ef, 2600:1413:5000:3a::173d:ca22] + +2025-03-16T18:07:42.8033279+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:3c::1735:76ec, 2600:1413:5000:3a::173d:ca32, 2600:1413:5000:3a::173d:ca28] + +2025-03-16T18:07:43.0959428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.163, 20.190.144.166] + +2025-03-16T18:07:43.4041073+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::13, 20.190.144.162, 2603:1047:1:168::25] + +2025-03-16T18:07:44.4227102+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.3] + +2025-03-16T18:07:45.4156882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::69, 13.107.246.73] + +2025-03-16T18:07:50.2913822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T18:08:02.0656160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-03-16T18:08:02.7480026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.21, 140.82.112.22] + +2025-03-16T18:08:17.7209145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.21] + +2025-03-16T18:08:21.9903840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.113.25] + +2025-03-16T18:08:22.4213836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000::12, 2603:1063:2000:1::12, 52.108.8.12] + +2025-03-16T18:08:31.0160774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.60, 2620:1ec:bdf::69] + +2025-03-16T18:08:32.6628780+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.144.136, 20.190.144.165] + +2025-03-16T18:08:33.1317969+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 2603:1047:1:168::13, 20.190.144.162] + +2025-03-16T18:08:34.7775487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 2606:4700::6811:190e, 104.17.25.14] + +2025-03-16T18:08:35.2394620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.113.26, 140.82.112.26] + +2025-03-16T18:08:35.4633064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-03-16T18:08:57.9780443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.165, 20.190.144.136] + +2025-03-16T18:09:00.4423094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.44, 13.107.246.73] + +2025-03-16T18:09:00.9854675+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.73, 2620:1ec:bdf::41] + +2025-03-16T18:09:02.5434719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 13.105.28.1] + +2025-03-16T18:09:08.0976233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.112.3] + +2025-03-16T18:09:26.8004078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.74] + +2025-03-16T18:09:34.5676695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1413:5000:3a::173d:ca22, 2600:1413:5000:3c::1735:76ef, 2600:1413:5000:3c::1735:76fd] + +2025-03-16T18:09:38.2466555+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:3c::1735:76f0, 2600:1413:5000:3c::1735:76ec, 2600:1413:5000:3a::173d:ca32] + +2025-03-16T18:09:45.9642499+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1036:2400::12] + +2025-03-16T18:09:53.8304269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.44, 13.107.246.53] + +2025-03-16T18:10:10.2922946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.113.6] + +2025-03-16T18:10:32.0804202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.44, 13.107.246.73] + +2025-03-16T18:10:34.5934525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.77, 13.107.246.64, 13.107.246.60] + +2025-03-16T18:10:55.6235088+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-16T18:10:56.7739930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.13] + +2025-03-16T18:11:17.8722429+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.138, 20.190.144.165] + +2025-03-16T18:11:26.4837160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T18:11:27.0187271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T18:11:27.3708139+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T18:11:35.7629721+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8003::154] + +2025-03-16T18:11:35.7641386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8003::154] + +2025-03-16T18:11:36.6794669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1406::1, 52.109.120.46, 2603:1046:1401::1] + +2025-03-16T18:11:37.7113885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.60, 2620:1ec:bdf::69] + +2025-03-16T18:11:42.9211856+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.40, 13.107.246.60, 13.107.246.74] + +2025-03-16T18:11:43.6521752+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.73] + +2025-03-16T18:11:43.9173374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.44, 13.107.246.74] + +2025-03-16T18:11:51.0352760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.64, 13.107.246.74] + +2025-03-16T18:11:51.1081464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.53, 13.107.246.74] + +2025-03-16T18:12:03.8505497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 4.237.22.35, 140.82.114.10] + +2025-03-16T18:12:24.0502907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T18:12:31.3716452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.143.38.0, 20.135.6.7] + +2025-03-16T18:12:44.1902898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.191] + +2025-03-16T18:12:45.1438417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:3a::173d:ca28, 2600:1413:5000:3c::1735:76f0, 2600:1413:5000:3c::1735:76ec] + +2025-03-16T18:12:45.4821238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1413:5000:3a::173d:ca23, 2600:1413:5000:3a::173d:ca22, 2600:1413:5000:3c::1735:76ef] + +2025-03-16T18:12:48.5799484+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.164, 20.190.144.139] + +2025-03-16T18:12:50.5149805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T18:12:50.9430398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T18:12:51.0694451+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T18:12:57.5646865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.44, 13.107.246.53] + +2025-03-16T18:13:00.5792998+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T18:13:00.7161026+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T18:13:01.3475125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.108.154] + +2025-03-16T18:13:11.0895395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[20.125.63.4, 13.74.129.92, 52.231.186.36] + +2025-03-16T18:13:11.6630290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-03-16T18:13:12.0614682+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.3] + +2025-03-16T18:13:12.5151927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-03-16T18:13:12.7470758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.21] + +2025-03-16T18:13:13.4887929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.124.141] + +2025-03-16T18:13:17.1424896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3032::ac43:8d18, 172.67.141.24, 2606:4700:3031::6815:46fd] + +2025-03-16T18:13:17.8503206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3032::ac43:8d18, 172.67.141.24, 2606:4700:3031::6815:46fd] + +2025-03-16T18:13:18.5732867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-03-16T18:13:31.5785838+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.8.12] + +2025-03-16T18:13:36.6500189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.25, 140.82.112.26] + +2025-03-16T18:13:38.3288247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.60, 13.107.246.74, 13.107.246.73] + +2025-03-16T18:13:38.9444966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::46, 13.107.246.64] + +2025-03-16T18:13:49.0427649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.24.14, 2606:4700::6811:180e] + +2025-03-16T18:13:50.4101884+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.112.21] + +2025-03-16T18:14:00.9461953+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.74, 13.107.246.73] + +2025-03-16T18:14:01.9125988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.53, 13.107.246.74] + +2025-03-16T18:14:03.0173771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.74, 13.107.246.73] + +2025-03-16T18:14:03.3526805+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 13.105.28.1] + +2025-03-16T18:14:11.7547832+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.164, 20.190.144.139] + +2025-03-16T18:14:11.7558149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.138, 20.190.144.161] + +2025-03-16T18:14:17.2195209+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.22, 140.82.113.21] + +2025-03-16T18:14:17.5674137+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::46, 13.107.246.74] + +2025-03-16T18:14:21.9598239+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.114.3] + +2025-03-16T18:14:27.9942818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 2620:1ec:bdf::52, 13.107.246.74] + +2025-03-16T18:14:31.9494303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1413:5000:3c::1735:76ef, 2600:1413:5000:3c::1735:76fd, 23.206.250.65] + +2025-03-16T18:14:33.7089840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:3c::1735:76f0, 2600:1413:5000:3c::1735:76ec, 23.206.250.88] + +2025-03-16T18:14:35.7937526+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 13.105.28.1, 20.135.6.2] + +2025-03-16T18:14:36.2258711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:1413:5000:3c::1735:76fd, 2600:1413:5000:3c::1735:76ef, 23.206.250.65] + +2025-03-16T18:14:39.5859717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2600:1413:5000:3c::1735:76ec, 2600:1413:5000:3c::1735:76f0, 23.206.250.88] + +2025-03-16T18:14:49.8517552+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.65, 23.206.250.80, 2600:140b:2::17ce:fa50] + +2025-03-16T18:14:54.6289345+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[2620:1ec:bdf::65, 13.107.246.74, 13.107.246.73] + +2025-03-16T18:14:56.9854960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.250.88, 23.206.250.73, 2600:140b:2::17ce:fa49] + +2025-03-16T18:15:03.3636549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.2, 20.135.6.15] + +2025-03-16T18:15:17.6436963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.64, 13.107.246.74] + +2025-03-16T18:15:37.9785017+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 2603:1046:1406::1] + +2025-03-16T18:15:38.8193213+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::46, 13.107.246.64] + +2025-03-16T18:15:38.8205599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::65, 13.107.246.74] + +2025-03-16T18:15:38.8838347+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.60, 2620:1ec:bdf::52] + +2025-03-16T18:15:43.3913032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.66, 2620:1ec:bdf::46, 2620:1ec:bdf::57] + +2025-03-16T18:15:47.0390282+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.138, 20.190.148.164] + +2025-03-16T18:15:56.7078444+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.191, 52.109.124.4] + +2025-03-16T18:16:18.8072258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 2603:1047:1:168::20, 2603:1047:1:168::2f] + +2025-03-16T18:16:30.9478602+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T18:16:30.9487932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T18:16:30.9495987+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T18:16:32.4907172+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-03-16T18:16:32.4914164+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T18:16:32.4920630+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-16T18:16:32.7965949+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.74, 13.107.246.73] + +2025-03-16T18:16:35.3735974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-03-16T18:16:38.8304641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-03-16T18:16:39.9640369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8000::154] + +2025-03-16T18:16:40.2345068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1046:1406::1] + +2025-03-16T18:16:40.5857568+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T18:16:41.0490572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.74, 2620:1ec:bdf::74] + +2025-03-16T18:16:52.5315940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.74, 13.107.246.67] + +2025-03-16T18:16:52.8667402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::46, 13.107.246.74, 2620:1ec:bdf::73] + +2025-03-16T18:16:53.2140905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.66, 2620:1ec:bdf::46] + +2025-03-16T18:16:53.2873428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.74, 2620:1ec:bdf::73] + +2025-03-16T18:16:54.5754686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.121.9] + +2025-03-16T18:17:03.7711475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-16T18:17:24.8912569+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.112, 23.220.70.94, 23.206.250.88] + +2025-03-16T18:17:25.8933905+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[2603:1046:1401::1, 52.109.120.46, 2603:1036:2400::b] + +2025-03-16T18:17:26.1150605+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T18:17:30.7924954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::46, 2620:1ec:bdf::57] + +2025-03-16T18:17:32.7318081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.65, 23.206.250.80, 2600:140b:2::1720:f82a] + +2025-03-16T18:17:43.1171839+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.7, 20.135.6.2] + +2025-03-16T18:17:50.0784489+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.191] + +2025-03-16T18:17:50.9679624+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.112, 23.220.70.94, 23.206.188.206] + +2025-03-16T18:17:51.3068567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::1720:f82a, 2600:140b:2::17ce:fa50, 23.45.12.200] + +2025-03-16T18:17:54.4241539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.166, 20.190.144.139] + +2025-03-16T18:17:54.7030069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 2603:1047:1:168::18, 20.190.144.138] + +2025-03-16T18:17:55.7654683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18, 2620:1ec:a92::175] + +2025-03-16T18:17:55.8298121+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T18:17:55.8311604+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18, 2620:1ec:21::18] + +2025-03-16T18:17:57.6500877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.74, 13.107.246.67] + +2025-03-16T18:18:06.8125688+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-03-16T18:18:08.6079159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 2620:1ec:bdf::46, 13.107.246.74] + +2025-03-16T18:18:17.0873505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[2a04:fa87:fffe::c000:4902, 192.0.73.2] + +2025-03-16T18:18:17.3638285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-16T18:18:17.5045284+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.110.154] + +2025-03-16T18:18:18.0493417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[104.21.70.253, 2606:4700:3032::ac43:8d18, 172.67.141.24] + +2025-03-16T18:18:18.3510665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[104.21.70.253, 2606:4700:3032::ac43:8d18, 172.67.141.24] + +2025-03-16T18:18:19.1196636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.21, 140.82.112.22] + +2025-03-16T18:18:26.2610957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::57, 13.107.246.74] + +2025-03-16T18:18:32.2391631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.108.9.12] + +2025-03-16T18:18:36.2790069+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.21, 140.82.114.21] + +2025-03-16T18:18:36.5212054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.25, 140.82.112.26, 140.82.113.25] + +2025-03-16T18:18:37.7405931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.112.26] + +2025-03-16T18:18:40.4202538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-03-16T18:18:40.4211633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::57, 13.107.246.74, 13.107.246.67] + +2025-03-16T18:18:40.4217944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.74, 13.107.246.67] + +2025-03-16T18:18:46.8559932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.165, 20.190.144.166] + +2025-03-16T18:18:49.8610263+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.166, 20.190.144.139] + +2025-03-16T18:18:56.0094498+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:190e, 104.17.25.14, 104.17.24.14] + +2025-03-16T18:18:56.2499472+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.112.21] + +2025-03-16T18:18:59.3436199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 13.107.246.74, 2620:1ec:bdf::73] + +2025-03-16T18:19:16.8944051+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.148.165, 20.190.144.166] + +2025-03-16T18:19:23.2840463+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 20.26.156.215] + +2025-03-16T18:19:39.9005879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.114.9] + +2025-03-16T18:19:43.2028439+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.62, 13.107.246.74] + +2025-03-16T18:19:52.9280558+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.74, 2620:1ec:bdf::73] + +2025-03-16T18:19:54.8411237+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.53, 13.107.246.74] + +2025-03-16T18:20:07.8895946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1036:2400::12] + +2025-03-16T18:20:29.3803530+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.62, 13.107.246.74, 2620:1ec:bdf::73] + +2025-03-16T18:20:36.6711743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-03-16T18:20:40.0359168+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.74, 2620:1ec:bdf::73] + +2025-03-16T18:20:40.0985152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.62, 2620:1ec:bdf::67, 13.107.246.74] + +2025-03-16T18:20:40.8551584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::1720:f82a, 2600:140b:2::17ce:fa50, 23.56.109.135] + +2025-03-16T18:20:57.6369078+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.4, 52.109.124.13] + +2025-03-16T18:21:06.8283081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 2603:1046:1400::7] + +2025-03-16T18:21:12.8613207+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::67, 13.107.246.74] + +2025-03-16T18:21:18.8776053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 2603:1047:1:168::18, 2603:1047:1:168::20] + +2025-03-16T18:21:23.3912152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.165, 20.190.144.166] + +2025-03-16T18:21:26.6671199+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::28, 2603:1047:1:168::18, 20.190.144.137] + +2025-03-16T18:21:33.5918779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.38, 20.190.141.34, 20.190.141.39] + +2025-03-16T18:21:36.1685825+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T18:21:36.1707594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T18:21:36.1718534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.109.133] + +2025-03-16T18:21:36.3954493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.114.10] + +2025-03-16T18:21:36.8366673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-03-16T18:21:36.9703936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-03-16T18:21:36.9723227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 2606:50c0:8001::154] + +2025-03-16T18:21:48.5951717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 2603:1046:1401::1, 2603:1036:2400::b] + +2025-03-16T18:21:49.7253491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::69, 13.107.246.67, 2620:1ec:bdf::73] + +2025-03-16T18:21:49.7917864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-03-16T18:21:49.8555813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::73, 2620:1ec:bdf::74] + +2025-03-16T18:21:49.9193216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::77, 2620:1ec:bdf::67] + +2025-03-16T18:21:50.2806932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::77, 13.107.246.62, 2620:1ec:bdf::67] + +2025-03-16T18:22:00.1511264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T18:22:00.7109748+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T18:22:00.9533673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::41, 13.107.246.41, 2620:1ec:bdf::74] + +2025-03-16T18:22:01.2416361+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::41, 2620:1ec:bdf::57, 2620:1ec:bdf::77] + +2025-03-16T18:22:06.8924422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::74, 13.107.246.74] + +2025-03-16T18:22:18.3397142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::60, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T18:22:24.7379007+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 13.107.246.53, 2620:1ec:bdf::74] + +2025-03-16T18:22:25.2726109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::77, 13.107.246.62] + +2025-03-16T18:22:26.0917862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 23.220.70.112, 23.206.188.206] + +2025-03-16T18:22:28.1626693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 2603:1046:1406::5, 52.109.56.129] + +2025-03-16T18:22:30.4801523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::1720:f82a, 23.56.109.135, 23.206.250.80] + +2025-03-16T18:22:36.2482270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 2603:1046:1404::5, 52.109.52.84] + +2025-03-16T18:22:36.9063730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2600:140b:2::1720:f822, 23.56.109.135, 23.206.250.80] + +2025-03-16T18:22:51.7852323+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T18:23:03.0391464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.11] + +2025-03-16T18:23:03.6211253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 13.107.246.74] + +2025-03-16T18:23:05.8929812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.4] + +2025-03-16T18:23:06.3503615+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.206.250.80, 2600:140b:2::1720:f822, 23.56.109.135] + +2025-03-16T18:23:10.8187422+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.220.70.94, 23.220.70.112, 2600:140b:2::17ce:fa58] + +2025-03-16T18:23:19.4972391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.141.38, 20.190.141.34, 20.190.141.39] + +2025-03-16T18:23:21.6252993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[2620:1ec:a92::175, 13.107.42.18] + +2025-03-16T18:23:21.6875879+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T18:23:21.6884354+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[2620:1ec:21::18, 13.107.42.18] + +2025-03-16T18:23:26.7065331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2, 2a04:fa87:fffe::c000:4902] + +2025-03-16T18:23:29.2438138+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-03-16T18:23:30.9807445+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +gapis.geekzu.org:443->[2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18, 104.21.70.253] + +2025-03-16T18:23:31.6493789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18, 104.21.70.253] + +2025-03-16T18:23:32.0090249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.9] + +2025-03-16T18:23:33.4559136+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.114.22] + +2025-03-16T18:23:35.4089982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 13.107.246.45] + +2025-03-16T18:23:37.0643296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[2603:1046:1402::5, 52.109.124.141, 2603:1046:1404::5] + +2025-03-16T18:23:49.4546633+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.21, 140.82.112.21] + +2025-03-16T18:23:50.1522098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.112.26, 140.82.112.25, 140.82.113.25] + +2025-03-16T18:23:52.0972141+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 2620:1ec:bdf::46] + +2025-03-16T18:23:52.0985290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T18:23:56.7809818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[2606:4700::6811:180e, 104.17.25.14, 2606:4700::6811:190e] + +2025-03-16T18:23:57.3183384+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.114.22] + +2025-03-16T18:24:13.7444958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 2603:1046:1401::1] + +2025-03-16T18:24:15.6976382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 2620:1ec:bdf::46] + +2025-03-16T18:24:20.4000010+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.2, 20.135.6.15] + +2025-03-16T18:24:25.0960222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.114.3] + +2025-03-16T18:24:42.9912677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-16T18:24:43.2238318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.114.9] + +2025-03-16T18:24:44.6206484+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::77, 2620:1ec:bdf::74] + +2025-03-16T18:24:56.8886664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T18:25:05.6087842+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.46, 2620:1ec:bdf::77] + +2025-03-16T18:25:27.9568401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-16T18:25:39.5352933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::57, 2620:1ec:bdf::77, 2620:1ec:bdf::67] + +2025-03-16T18:25:50.7100191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +fonts.geekzu.org:443->[172.64.80.1, 2606:4700:3031::6815:46fd, 2606:4700:3032::ac43:8d18] + +2025-03-16T18:25:57.3168060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::77, 2620:1ec:bdf::74, 13.107.246.73] + +2025-03-16T18:26:02.2718151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[2620:1ec:bdf::74, 13.107.246.73, 13.107.246.45] + +2025-03-16T18:26:03.7841955+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[2603:1046:1404::1, 52.109.124.13, 52.109.124.191] + +2025-03-16T18:26:11.1710549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-03-16T18:26:30.3982201+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-03-16T18:26:34.3588271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.148.166, 20.190.148.164] + +2025-03-16T18:26:34.5904204+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[2603:1047:1:168::11, 20.190.148.164, 2603:1047:1:168::18] + +2025-03-16T18:26:42.0945388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T18:26:42.0962369+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T18:26:42.0974473+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.110.133] + +2025-03-16T18:26:42.6900771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.3] + +2025-03-16T18:26:42.9124064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.113.5] + +2025-03-16T18:26:44.3553833+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8001::154] + +2025-03-16T18:26:44.3565215+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 2606:50c0:8001::154] + +2025-03-16T18:26:51.5799649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 2603:1046:1401::1, 52.109.120.46] + +2025-03-16T18:26:52.7488285+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.46, 13.107.246.77] + +2025-03-16T18:26:53.3609815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::40, 13.107.246.44] + +2025-03-16T18:26:53.4270330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.36, 2620:1ec:bdf::40, 2620:1ec:bdf::69] + +2025-03-16T18:26:53.7669493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::51, 13.107.246.40, 2620:1ec:bdf::77] + +2025-03-16T18:26:53.7684979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::46, 2620:1ec:bdf::54, 13.107.246.44] + +2025-03-16T18:27:09.4035718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[2603:1063:2000:1::12, 2603:1063:2000::12, 52.110.8.141] + +2025-03-16T18:27:10.5525266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[2620:1ec:bdf::71, 13.107.246.46, 2620:1ec:bdf::73] + +2025-03-16T18:27:12.4711537+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.46, 2620:1ec:bdf::73, 2620:1ec:bdf::40] + +2025-03-16T18:27:12.5361342+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.36, 2620:1ec:bdf::73, 2620:1ec:bdf::40] + +2025-03-16T18:27:12.8507401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::51, 13.107.246.40] + +2025-03-16T18:27:12.8539810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::46, 2620:1ec:bdf::54] + +2025-03-16T18:27:17.0012929+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.10] + +2025-03-16T18:27:18.2693782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[2620:1ec:bdf::73, 2620:1ec:bdf::46, 13.107.246.67] + +2025-03-16T18:27:29.9623576+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-16T18:27:29.9636787+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->::1 + +2025-03-16T18:27:30.1666490+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-16T18:27:30.6591338+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 661.2876 ms + +2025-03-16T18:27:30.9866929+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 287.3893 ms + +2025-03-16T18:27:35.9068018+08:00 [INF] +FastGithub.AppHostedService +正在主动关闭,因为父进程已退出 + diff --git a/logs/log20250323.txt b/logs/log20250323.txt new file mode 100644 index 0000000..dcaa189 --- /dev/null +++ b/logs/log20250323.txt @@ -0,0 +1,9926 @@ +2025-03-23T13:14:13.4417985+08:00 [INF] +FastGithub.HttpServer +已监听https://localhost:443,https反向代理服务启动完成 + +2025-03-23T13:14:13.5012142+08:00 [INF] +FastGithub.HttpServer +已监听http://localhost:81,http反向代理服务启动完成 + +2025-03-23T13:14:13.5025911+08:00 [INF] +FastGithub.HttpServer +已监听ssh://localhost:22,github的ssh反向代理服务启动完成 + +2025-03-23T13:14:13.5034357+08:00 [INF] +FastGithub.HttpServer +已监听git://localhost:9418,github的git反向代理服务启动完成 + +2025-03-23T13:14:13.5408139+08:00 [INF] +FastGithub.AppHostedService +FastGithub启动完成,当前版本为v2.1.4,访问 https://github.com/dotnetcore/fastgithub 关注新版本 + +2025-03-23T13:14:13.6020495+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +127.0.0.1:80 <=> 127.0.0.1:81 + +2025-03-23T13:14:13.6054295+08:00 [INF] +FastGithub.PacketIntercept.Tcp.HttpInterceptor +::1:80 <=> ::1:81 + +2025-03-23T13:14:13.6766517+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +raw.githubusercontent.com->127.0.0.1 + +2025-03-23T13:14:25.5917401+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/public-resolvers.md responded 200 in 10974.0799 ms + +2025-03-23T13:14:26.7313474+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:14:26.9026746+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:14:36.4429589+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/ responded 502 in 9330.2576 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T13:14:36.7180144+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:14:36.9034251+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:14:38.0826780+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-03-23T13:14:39.5634699+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/public-resolvers.md.minisig responded 200 in 13967.5126 ms + +2025-03-23T13:14:45.4293597+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/relays.md responded 200 in 5851.8754 ms + +2025-03-23T13:14:45.5650406+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v3/relays.md.minisig responded 200 in 133.2224 ms + +2025-03-23T13:14:46.0824607+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-03-23T13:14:46.0837228+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->127.0.0.1 + +2025-03-23T13:14:46.1450202+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/ responded 200 in 9231.975 ms + +2025-03-23T13:14:46.1813981+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->127.0.0.1 + +2025-03-23T13:14:46.1837886+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +user-images.githubusercontent.com->127.0.0.1 + +2025-03-23T13:14:46.9579384+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/mona-loading-dark-static-8b35171e5d6c.svg responded 200 in 577.4358 ms + +2025-03-23T13:14:46.9720086+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dark-8a995f0bacd4.css responded 200 in 432.1318 ms + +2025-03-23T13:14:46.9787868+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/discussions-dae9ae1a46a6.css responded 200 in 438.6392 ms + +2025-03-23T13:14:46.9860506+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/mona-loading-dark-7701a7b97370.gif responded 200 in 605.5622 ms + +2025-03-23T13:14:47.0027157+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_commenting_edit_ts-app_assets_modules_github_behaviors_ht-83c235-e429cff6ceb1.js responded 200 in 462.3604 ms + +2025-03-23T13:14:47.0076335+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_delegated-events_dist_index_js-node_modules_github_catalyst_lib_index_js-f6223d90c7ba.js responded 200 in 467.1817 ms + +2025-03-23T13:14:47.0248665+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es__baseIsEqual_js-8929eb9718d5.js responded 200 in 484.4182 ms + +2025-03-23T13:14:47.0278263+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_github_catalyst_lib_index_-280e4f-e58a68a800fd.js responded 200 in 487.141 ms + +2025-03-23T13:14:47.0786647+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dashboard-649f1bb7c362.js responded 200 in 538.0354 ms + +2025-03-23T13:14:47.0897306+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_stacktrace-parser_dist_s-e7dcdd-9a233856b02c.js responded 200 in 548.6864 ms + +2025-03-23T13:14:47.0897326+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_oddbird_popover-polyfill_dist_popover-fn_js-55fea94174bf.js responded 200 in 548.6848 ms + +2025-03-23T13:14:47.0913149+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_ui-commands_ui-commands_ts-8c874fb594e9.js responded 200 in 550.4092 ms + +2025-03-23T13:14:47.1245277+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_arianotify-polyfill_ariaNotify-polyfill_js-node_modules_github_mi-3abb8f-46b9f4874d95.js responded 200 in 583.5054 ms + +2025-03-23T13:14:47.1577983+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_selector-observer_dist_index_esm_js-f690fd9ae3d5.js responded 200 in 616.6985 ms + +2025-03-23T13:14:47.2233863+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_failbot_failbot_ts-75968cfb5298.js responded 200 in 682.2915 ms + +2025-03-23T13:14:47.2442681+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/keyboard-shortcuts-dialog-33dfb803e078.js responded 200 in 703.3334 ms + +2025-03-23T13:14:47.2713646+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es__Stack_js-node_modules_lodash-es__Uint8Array_js-node_modules_l-4faaa6-4a736fde5c2f.js responded 200 in 730.9007 ms + +2025-03-23T13:14:47.2770067+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/wp-runtime-7e63cc235734.js responded 200 in 735.9897 ms + +2025-03-23T13:14:47.2866759+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_auto-complete-element_dist_index_js-node_modules_github_catalyst_-8e9f78-a90ac05d2469.js responded 200 in 745.2232 ms + +2025-03-23T13:14:47.3447723+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_relative-time-element_dist_index_js-62d275b7ddd9.js responded 200 in 803.5085 ms + +2025-03-23T13:14:47.3566469+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_text-expander-element_dist_index_js-78748950cb0c.js responded 200 in 815.4043 ms + +2025-03-23T13:14:47.3880844+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-primitives-225433424a87.css responded 200 in 848.3293 ms + +2025-03-23T13:14:47.3950257+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lit-html_lit-html_js-be8cb88f481b.js responded 200 in 853.4478 ms + +2025-03-23T13:14:47.4119256+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-lib-f1bca44e0926.js responded 200 in 871.1329 ms + +2025-03-23T13:14:47.4144405+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_morphdom_dist_morphdom-e-7c534c-a4a1922eb55f.js responded 200 in 872.7315 ms + +2025-03-23T13:14:47.4484028+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/dashboard-0de2bd46c6d8.css responded 200 in 908.2812 ms + +2025-03-23T13:14:47.4820659+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_color-convert_index_js-e3180fe3bcb3.js responded 200 in 940.3133 ms + +2025-03-23T13:14:47.6121797+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_task-list_ts-app_assets_modules_github_sso_ts-ui_packages-900dde-768abe60b1f8.js responded 200 in 1070.2792 ms + +2025-03-23T13:14:47.6203504+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-react.e0c9f0687c56358ed85e.module.css responded 200 in 1080.1342 ms + +2025-03-23T13:14:47.6203668+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_filter-input-element_dist_index_js-node_modules_github_remote-inp-b5f1d7-a1760ffda83d.js responded 200 in 1078.9954 ms + +2025-03-23T13:14:47.6357521+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_braintree_browser-detection_dist_browser-detection_js-node_modules_githu-2906d7-2a07a295af40.js responded 200 in 1094.0507 ms + +2025-03-23T13:14:47.6369245+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_emotion_is-prop-valid_dist_emotion-is-prop-valid_esm_js-node_modules_emo-62da9f-2df2f32ec596.js responded 200 in 1095.9032 ms + +2025-03-23T13:14:47.6395834+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_primer_behaviors_dist_esm_index_mjs-0dbb79f97f8f.js responded 200 in 1098.3977 ms + +2025-03-23T13:14:47.6508447+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_updatable-content_updatable-content_ts-2a55124d5c52.js responded 200 in 1108.9874 ms + +2025-03-23T13:14:47.6889433+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/element-registry-0bebfa1427c4.js responded 200 in 1147.3937 ms + +2025-03-23T13:14:47.7091186+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_behaviors_ajax-error_ts-app_assets_modules_github_behaviors_include-87a4ae-8be71414579a.js responded 200 in 1168.7412 ms + +2025-03-23T13:14:47.7103742+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/github-43ae85d4871b.css responded 200 in 1170.2692 ms + +2025-03-23T13:14:47.7922656+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_file-attachment-element_dist_index_js-node_modules_primer_view-co-c44a69-8c52cf4cd0d3.js responded 200 in 1250.8358 ms + +2025-03-23T13:14:47.8094770+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_sticky-scroll-into-view_ts-3e000c5d31a9.js responded 200 in 1267.6822 ms + +2025-03-23T13:14:47.8419418+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_lodash-es_pickBy_js-733b80864e6e.js responded 200 in 1301.3388 ms + +2025-03-23T13:14:47.8887129+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_delegated-events_dist_inde-893f9f-b6294cf703b7.js responded 200 in 1346.9716 ms + +2025-03-23T13:14:47.9148366+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_delegated-events_dist_in-e6ca0f-404fe31d112b.js responded 200 in 1374.2387 ms + +2025-03-23T13:14:47.9356062+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-react-e05a7c4c5398.js responded 200 in 1394.9339 ms + +2025-03-23T13:14:48.0216464+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/github-elements-394f8eb34f19.js responded 200 in 1480.1136 ms + +2025-03-23T13:14:48.0516250+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-core-6a3ef8158713.js responded 200 in 1510.8837 ms + +2025-03-23T13:14:48.1269263+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_turbo_dist_turbo_es2017-esm_js-a03ee12d659a.js responded 200 in 1585.2171 ms + +2025-03-23T13:14:48.2823137+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_quote-selection_dist_index_js-node_modules_github_session-resume_-947061-e7a6c4a19f98.js responded 200 in 1740.5196 ms + +2025-03-23T13:14:48.2858414+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/behaviors-7ebb6421bf22.js responded 200 in 1745.3755 ms + +2025-03-23T13:14:48.3844681+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/octicons-react-cf2f2ab8dab4.js responded 200 in 1843.6857 ms + +2025-03-23T13:14:48.4019610+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_oddbird_popover-polyfill_dist_popover_js-9da652f58479.js responded 200 in 1860.948 ms + +2025-03-23T13:14:48.4903513+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/environment-f04cb2a9fc8c.js responded 200 in 1949.3335 ms + +2025-03-23T13:14:48.5328547+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/primer-aaa714e5674d.css responded 200 in 1992.9137 ms + +2025-03-23T13:14:48.5583934+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/notifications-global-01e85cd1be94.js responded 200 in 2017.9711 ms + +2025-03-23T13:14:48.7748040+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/light-74231a1f3bbb.css responded 200 in 2235.0402 ms + +2025-03-23T13:14:48.8051014+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-7d4d2344e7ab.css responded 200 in 2265.1666 ms + +2025-03-23T13:14:49.4141336+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_markdown-toolbar-element_dist_index_js-ceef33f593fa.js responded 200 in 2872.6045 ms + +2025-03-23T13:14:49.7730261+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_webauthn-get-element_element-entry_ts-c4e5a9b4f95a.js responded 200 in 115.9931 ms + +2025-03-23T13:14:49.7772190+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_react-partial-anchor-element_element-entry_ts-4fea8fb23f5c.js responded 200 in 120.1285 ms + +2025-03-23T13:14:49.7794633+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_site_header_notification-indicator-element_ts-f158e4f0717b.js responded 200 in 125.8946 ms + +2025-03-23T13:14:49.7866684+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_hydro-analytics_hydro-analytics_ts-ui_packages_query-builder-element_element-entry_ts-37a12a0ee62c.js responded 200 in 131.7082 ms + +2025-03-23T13:14:49.7866684+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_hydro-analytics_hydro-analytics_ts-ui_packages_jump-to-element_model_ts-880f27a93f7b.js responded 200 in 133.2864 ms + +2025-03-23T13:14:49.9013214+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_paths_index_ts-e019c54eb886.js responded 200 in 248.0054 ms + +2025-03-23T13:14:49.9217141+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_github_combobox-nav_dist-b7767a-9ad7d4eda3d9.js responded 200 in 268.3831 ms + +2025-03-23T13:14:49.9394883+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_tanstack_query-core_build_modern_queryObserver_js-node_modules_tanstack_-defd52-843b41414e0e.js responded 200 in 114.0389 ms + +2025-03-23T13:14:49.9431157+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-chat.f9a5ca0713c6c1644375.module.css responded 200 in 118.8721 ms + +2025-03-23T13:14:49.9463052+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_dompurify_dist_purify_es_mjs-dd1d3ea6a436.js responded 200 in 120.8772 ms + +2025-03-23T13:14:49.9510485+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-user-nav-drawer.830d6c10c9fea7fc134e.module.css responded 200 in 117.7114 ms + +2025-03-23T13:14:49.9558973+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-markdown-rendering-f6845e8f5d6b.css responded 200 in 131.7562 ms + +2025-03-23T13:14:49.9626679+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_hooks_use-chat-message-behavior_ts-ui_packages_copilot-chat_hooks_us-4cf731.b5a2108b50c32717435f.module.css responded 200 in 143.2148 ms + +2025-03-23T13:14:49.9727203+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_utils_copilot-local-storage_ts-ui_packages_hydro-analytics_hydro-ana-74ad7c-0f17da1cc926.js responded 200 in 319.1042 ms + +2025-03-23T13:14:49.9820528+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_components_Chat_tsx-cc9bbb2731f9.js responded 200 in 151.0421 ms + +2025-03-23T13:14:50.0650923+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_search_custom-scopes-element_ts-abc100eaa2cb.js responded 200 in 412.0873 ms + +2025-03-23T13:14:50.0776768+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_focus-visible_dist_focus-visible_js-node_modules_github_combobox-nav_dis-aab2b4-d196b80709e5.js responded 200 in 248.7616 ms + +2025-03-23T13:14:50.0791370+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-user-nav-drawer-487d63bb6986.js responded 200 in 245.5167 ms + +2025-03-23T13:14:50.0943346+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_site-header-logged-in-user-menu-element_element-entry_ts-a6002df55e26.js responded 200 in 437.2879 ms + +2025-03-23T13:14:50.1482318+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-markdown_MarkdownRenderer_tsx-295f64efb2b7.js responded 200 in 318.4062 ms + +2025-03-23T13:14:50.2356845+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_primer_experimental_toggle-switch-element_ts-670c71d392c6.js responded 200 in 582.6701 ms + +2025-03-23T13:14:50.2795806+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_item-picker_constants_labels_ts-ui_packages_item-picker_constants_values_ts-ui_pa-163a9a-accd3c64754c.js responded 200 in 450.6668 ms + +2025-03-23T13:14:50.3043345+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_site_header_deferred-side-panel-element_ts-7afdd44c66a7.js responded 200 in 651.0234 ms + +2025-03-23T13:14:50.3100999+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_react-relay_index_js-2d54b665e445.js responded 200 in 484.6672 ms + +2025-03-23T13:14:50.3244902+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_utils_CopilotChatContext_tsx-158fce76b65b.js responded 200 in 494.5012 ms + +2025-03-23T13:14:50.3620750+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_remark-gfm_lib_index_js-node_modules_remark-parse_lib_index_js-node_modu-44d0fc-3771aaaad894.js responded 200 in 534.396 ms + +2025-03-23T13:14:50.3685495+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_query-builder-element_query-builder-element_ts-b492d6900d5e.js responded 200 in 715.2646 ms + +2025-03-23T13:14:50.4845303+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_promise-with-resolvers-polyfill_promise-with-resolvers-polyfill_ts-ui_packages_re-8d43b0-fb0230244818.js responded 200 in 651.9493 ms + +2025-03-23T13:14:50.5633908+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_cookie-consent-link-element_element-entry_ts-8ca582ddd98a.js responded 200 in 909.7594 ms + +2025-03-23T13:14:50.6384362+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_hast-util-find-and-replace_lib_index_js-node_modules_hastscript_lib_inde-693930-ffb763a35ddf.js responded 200 in 809.7091 ms + +2025-03-23T13:14:50.6530789+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_components_CopilotIconAnimation_tsx-ui_packages_copilot-chat_compone-8be2e4-ea318ba983ad.js responded 200 in 823.1045 ms + +2025-03-23T13:14:50.7145814+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-copilot-menu-663dd3e0d8b8.js responded 200 in 882.6872 ms + +2025-03-23T13:14:50.8359684+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-node_modules_github_mini-throttle_dist_decorators_js-ui_packages_copilot-dashboard-entrypoint-7c7052-b375572ca49f.js responded 200 in 1182.4439 ms + +2025-03-23T13:14:50.8614998+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_item-picker_components_RepositoryPicker_tsx-3840f58896cc.js responded 200 in 1031.8504 ms + +2025-03-23T13:14:50.9240109+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_search_qbsearch-input-element_ts-cf531d29cf91.js responded 200 in 1270.5832 ms + +2025-03-23T13:14:50.9464895+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/global-create-menu-7510a0ee7657.js responded 200 in 1113.8467 ms + +2025-03-23T13:14:51.0165059+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_ghcc-consent-element_element-entry_ts-04338159da93.js responded 200 in 1362.2921 ms + +2025-03-23T13:14:52.6685385+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_decorators_js-node_modules_accname_dist_access-a7695e-94bc658fafd2.js responded 200 in 2839.5855 ms + +2025-03-23T13:14:52.7649954+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_primer_experimental_select-panel-element_ts-dbc875e76b97.js responded 200 in 3112.1269 ms + +2025-03-23T13:14:53.0051492+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_blob-anchor_ts-ui_packages_code-nav_code-nav_ts-ui_packages_filter--8253c1-91468a3354f9.js responded 200 in 3351.8318 ms + +2025-03-23T13:14:53.1297271+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-vendors-node_modules_consent-banner_dist_consent-banner_js-362ca569b596.js responded 200 in 2104.3243 ms + +2025-03-23T13:14:54.2268204+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/copilot-chat-f19afeeba28e.js responded 200 in 4395.8132 ms + +2025-03-23T13:14:54.5232984+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/assets-cdn/worker/socket-worker-eff89a71ae86.js responded 200 in 4978.3651 ms + +2025-03-23T13:14:54.6417831+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/ajax_context_list responded 200 in 4984.0462 ms + +2025-03-23T13:14:54.6608597+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/recent-activity responded 200 in 5002.8777 ms + +2025-03-23T13:14:54.6614376+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/recent-activity responded 200 in 5003.5471 ms + +2025-03-23T13:14:54.6695166+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/conduit/filter responded 200 in 5001.0666 ms + +2025-03-23T13:14:54.6960098+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-node_modules_scroll-anchoring_dist_scroll-anchoring_esm_js-app_components_notifications_notif-ab7b66-4d32396883fc.js responded 200 in 5042.768 ms + +2025-03-23T13:14:54.6972630+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/my_top_repositories responded 200 in 5039.3311 ms + +2025-03-23T13:14:54.7146707+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/my_top_repositories responded 200 in 5056.9489 ms + +2025-03-23T13:14:54.7604165+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/ajax_context_list responded 200 in 5102.7223 ms + +2025-03-23T13:14:54.8116081+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/dashboard/changelog responded 200 in 5109.9284 ms + +2025-03-23T13:14:54.8455732+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/socket-worker-eff89a71ae86.js responded 200 in 308.8609 ms + +2025-03-23T13:14:54.8579775+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-03-23T13:14:54.8978806+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 200 in 5064.0857 ms + +2025-03-23T13:14:55.0377756+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 200 in 5203.5783 ms + +2025-03-23T13:14:55.3839921+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_dashboard_loading-context-element_ts-05c9973fa5db.js responded 200 in 5733.568 ms + +2025-03-23T13:14:55.7619545+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_github_combobox-nav_dist-5f477b-eeb221e8a5a3.js responded 200 in 6107.5167 ms + +2025-03-23T13:14:55.8295615+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/conduit/for_you_feed responded 200 in 6171.5067 ms + +2025-03-23T13:14:56.2154630+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_reactions_reactions-menu-element_ts-ec54f775ebd2.js responded 200 in 302.1598 ms + +2025-03-23T13:14:56.3089354+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 10023.0924 ms + +2025-03-23T13:14:56.3485755+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/41017744 responded 200 in 438.6007 ms + +2025-03-23T13:14:56.4066052+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/11029687 responded 200 in 496.2031 ms + +2025-03-23T13:14:56.4089607+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/22218312 responded 200 in 497.9558 ms + +2025-03-23T13:14:56.4104681+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/8136224 responded 200 in 499.1232 ms + +2025-03-23T13:14:56.4108668+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/22787138 responded 200 in 499.9507 ms + +2025-03-23T13:14:56.4580875+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/108888572 responded 200 in 546.7309 ms + +2025-03-23T13:14:56.4632957+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/57199 responded 200 in 550.7205 ms + +2025-03-23T13:14:56.4651338+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/195061 responded 200 in 553.5618 ms + +2025-03-23T13:14:56.4714958+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/34806814 responded 200 in 10185.5989 ms + +2025-03-23T13:14:56.5213320+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/10594555 responded 200 in 610.9877 ms + +2025-03-23T13:14:56.5366581+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/42201 responded 200 in 622.1938 ms + +2025-03-23T13:14:56.5738984+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/3455675 responded 200 in 659.1194 ms + +2025-03-23T13:14:56.5807023+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 1868.2636 ms + +2025-03-23T13:14:56.5927016+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/33129495 responded 200 in 677.9335 ms + +2025-03-23T13:14:56.5982483+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/151674099 responded 200 in 689.2858 ms + +2025-03-23T13:14:56.6144480+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/5373096 responded 200 in 10328.2327 ms + +2025-03-23T13:14:56.6184557+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/25003283 responded 200 in 706.6724 ms + +2025-03-23T13:14:56.7725345+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/13776314 responded 200 in 862.0476 ms + +2025-03-23T13:14:57.0240957+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/13610128 responded 200 in 10738.1027 ms + +2025-03-23T13:14:57.0523756+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/13550529 responded 200 in 1139.0844 ms + +2025-03-23T13:14:57.1713846+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/193483667 responded 200 in 2513.5897 ms + +2025-03-23T13:14:57.4570750+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/25068 responded 200 in 1542.5179 ms + +2025-03-23T13:14:58.7328931+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-03-23T13:14:59.1110202+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 386.4224 ms + +2025-03-23T13:14:59.2065858+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_search_parsing_parsing_ts-839affb0d8fa.js responded 200 in 468.055 ms + +2025-03-23T13:14:59.3384370+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_blackbird-parser_dist_blackbird_js-df077101f752.js responded 200 in 599.8768 ms + +2025-03-23T13:14:59.4899211+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/104239 responded 200 in 3575.9733 ms + +2025-03-23T13:14:59.8589633+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 200 in 380.474 ms + +2025-03-23T13:15:00.0388014+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_graphql/GetSuggestedNavigationDestinations responded 200 in 560.1676 ms + +2025-03-23T13:15:00.2361109+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 375.2404 ms + +2025-03-23T13:15:00.4286252+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1167.625 ms + +2025-03-23T13:15:00.9077117+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1645.74 ms + +2025-03-23T13:15:02.8601734+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 7709.7447 ms + +2025-03-23T13:15:05.5289319+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 384.5064 ms + +2025-03-23T13:15:05.6828206+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 379.1049 ms + +2025-03-23T13:15:06.1316885+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 402.4649 ms + +2025-03-23T13:15:06.9317185+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 547.8298 ms + +2025-03-23T13:15:08.7495418+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search responded 200 in 1998.1463 ms + +2025-03-23T13:15:08.8064792+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:15:08.8079202+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:15:10.0264490+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_hooks_use-chat-message-behavior_ts-ui_packages_copilot-chat_hooks_us-4cf731-a18bb4162656.js responded 200 in 20196.1007 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T13:15:10.0264489+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_highlight_js_es_core_js-node_modules_lowlight_lib_all_js-be89bc04c72d.js responded 200 in 20198.1735 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T13:15:10.0268267+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 200 in 23740.5869 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: The read operation failed, see inner exception. +System.ObjectDisposedException: Cannot access a disposed object. +Object name: 'System.Net.Sockets.NetworkStream'. + + +2025-03-23T13:15:10.0450973+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 9396.6286 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T13:15:10.0665015+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-03-23T13:15:10.2507310+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_hydro-analytics-client_dist_analytics-client_js-node_modules_gith-c53b2c-493d06fd51d4.js responded 200 in 128.0601 ms + +2025-03-23T13:15:10.3722433+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_aria-live_aria-live_ts-ui_packages_promise-with-resolvers-polyfill_promise-with-r-17c672-34345cb18aac.js responded 200 in 249.7881 ms + +2025-03-23T13:15:10.5937210+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_app-uuid_app-uuid_ts-ui_packages_document-metadata_document-metadata_ts-ui_packag-888215-da61cf0ead34.js responded 200 in 469.445 ms + +2025-03-23T13:15:10.8062826+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_signed-commit-badge_index_ts-ui_packages_use-navigate_use-navigate_ts-975261b404a9.js responded 200 in 682.7329 ms + +2025-03-23T13:15:10.9093068+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/search-2a3fe1ce5c41.css responded 200 in 807.7381 ms + +2025-03-23T13:15:11.0480918+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/blackbird-search.f5bcf52d1d4605d78b63.module.css responded 200 in 922.7831 ms + +2025-03-23T13:15:11.2292361+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/search-b6f5d6b16d8d.js responded 200 in 1104.2676 ms + +2025-03-23T13:15:11.2803215+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search responded 200 in 2460.161 ms + +2025-03-23T13:15:11.3813850+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/renshan.png responded 302 in 362.8123 ms + +2025-03-23T13:15:11.3813850+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/delaford.png responded 302 in 363.127 ms + +2025-03-23T13:15:11.3815264+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/pacampbell.png responded 302 in 362.9671 ms + +2025-03-23T13:15:11.3837872+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/EllanJiang.png responded 302 in 365.1712 ms + +2025-03-23T13:15:11.3857922+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/leereilly.png responded 302 in 366.3455 ms + +2025-03-23T13:15:11.3893082+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley.png responded 302 in 370.9976 ms + +2025-03-23T13:15:11.3915048+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/MonoGame.png responded 302 in 371.938 ms + +2025-03-23T13:15:11.3923019+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/momentum-mod.png responded 302 in 373.759 ms + +2025-03-23T13:15:11.4005840+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/wakaleo.png responded 302 in 380.9856 ms + +2025-03-23T13:15:11.4048693+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/gonet2.png responded 302 in 385.3396 ms + +2025-03-23T13:15:11.7962199+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 372.7781 ms + +2025-03-23T13:15:11.8011504+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 1138.0368 ms + +2025-03-23T13:15:11.8166479+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/blackbird-search-5d80e00bbc29.js responded 200 in 1691.726 ms + +2025-03-23T13:15:11.8939328+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/26019295 responded 200 in 491.8637 ms + +2025-03-23T13:15:11.9230128+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/26036110 responded 200 in 520.7209 ms + +2025-03-23T13:15:11.9230080+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/3587094 responded 200 in 520.9648 ms + +2025-03-23T13:15:11.9339235+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 304 in 421.6212 ms + +2025-03-23T13:15:11.9339687+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/6212778 responded 200 in 532.0579 ms + +2025-03-23T13:15:11.9428857+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/272840 responded 200 in 540.5951 ms + +2025-03-23T13:15:11.9728829+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 304 in 360.5932 ms + +2025-03-23T13:15:12.0000105+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/121322 responded 200 in 597.7827 ms + +2025-03-23T13:15:12.0157300+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/4772066 responded 200 in 608.2084 ms + +2025-03-23T13:15:12.0643546+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/11344047 responded 200 in 647.327 ms + +2025-03-23T13:15:12.0643569+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/55986 responded 200 in 647.3694 ms + +2025-03-23T13:15:12.0816813+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/12523302 responded 200 in 664.5649 ms + +2025-03-23T13:15:12.4309957+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/sponsors/batch_deferred_sponsor_buttons responded 200 in 375.2607 ms + +2025-03-23T13:15:12.4580295+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 399.4689 ms + +2025-03-23T13:15:12.4767355+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 418.1973 ms + +2025-03-23T13:15:12.5060549+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 447.2174 ms + +2025-03-23T13:15:12.5181389+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 459.2439 ms + +2025-03-23T13:15:12.5316197+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/blackbird_count responded 200 in 475.3074 ms + +2025-03-23T13:15:12.5438908+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 486.1318 ms + +2025-03-23T13:15:12.5734742+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 514.5606 ms + +2025-03-23T13:15:12.5816053+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 206 in 2324.695 ms + +2025-03-23T13:15:12.6048835+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 547.1045 ms + +2025-03-23T13:15:12.6086591+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 550.056 ms + +2025-03-23T13:15:12.6719958+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/images/modules/search/mona-love-2x.png responded 200 in 1652.2409 ms + +2025-03-23T13:15:12.8706951+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/momentum-mod/game/funding_links responded 200 in 409.3188 ms + +2025-03-23T13:15:12.8871032+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/MonoGame/MonoGame/funding_links responded 200 in 423.5308 ms + +2025-03-23T13:15:12.9488524+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 1336.8884 ms + +2025-03-23T13:15:13.0228853+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/open_collective-0a706523753d.svg responded 200 in 143.237 ms + +2025-03-23T13:15:13.0615426+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 1002.4623 ms + +2025-03-23T13:15:13.2533189+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 304 in 1111.5722 ms + +2025-03-23T13:15:13.4545310+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 502.7811 ms + +2025-03-23T13:15:13.6295165+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 304 in 367.4152 ms + +2025-03-23T13:15:13.6908198+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 206 in 1098.6065 ms + +2025-03-23T13:15:13.8413647+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 380.5631 ms + +2025-03-23T13:15:14.2315906+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 384.4291 ms + +2025-03-23T13:15:25.2546010+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:15:25.5507031+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36] + +2025-03-23T13:15:31.0304350+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/_graphql/GetSuggestedNavigationDestinations responded 200 in 541.1292 ms + +2025-03-23T13:15:31.3948710+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1015.7886 ms + +2025-03-23T13:15:31.9045662+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1535.082 ms + +2025-03-23T13:15:32.0703622+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_highlight_js_es_core_js-node_modules_lowlight_lib_all_js-be89bc04c72d.js responded 200 in 20630.0156 ms + +2025-03-23T13:15:35.1997485+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 388.7739 ms + +2025-03-23T13:15:35.7464777+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_copilot-chat_hooks_use-chat-message-behavior_ts-ui_packages_copilot-chat_hooks_us-4cf731-a18bb4162656.js responded 200 in 24305.8915 ms + +2025-03-23T13:15:36.0802505+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/favicons/favicon-dark.svg responded 200 in 184.5353 ms + +2025-03-23T13:15:36.1884236+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 247.9064 ms + +2025-03-23T13:15:36.2181135+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/favicons/favicon-dark.png responded 200 in 132.679 ms + +2025-03-23T13:15:36.2724030+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/manifest.json responded 200 in 377.8837 ms + +2025-03-23T13:15:36.5813756+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 703.2331 ms + +2025-03-23T13:15:36.6738919+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 304 in 382.2478 ms + +2025-03-23T13:15:36.8284685+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 304 in 375.2402 ms + +2025-03-23T13:15:36.8292745+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 931.7452 ms + +2025-03-23T13:15:36.9679092+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 304 in 370.3904 ms + +2025-03-23T13:15:37.1514439+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/apple-touch-icon-144x144-b882e354c005.png responded 200 in 872.6642 ms + +2025-03-23T13:15:37.7675147+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 400.9493 ms + +2025-03-23T13:15:38.0130564+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 374.2306 ms + +2025-03-23T13:15:38.2528646+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 371.3773 ms + +2025-03-23T13:15:38.3974587+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 376.0216 ms + +2025-03-23T13:15:38.5266015+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 378.8927 ms + +2025-03-23T13:15:38.8461148+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 368.6967 ms + +2025-03-23T13:15:39.7090631+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 370.7125 ms + +2025-03-23T13:15:39.8233411+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 381.7826 ms + +2025-03-23T13:15:40.5114270+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 200 in 830 ms + +2025-03-23T13:15:40.5254878+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 228.1501 ms + +2025-03-23T13:15:40.8200518+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search responded 200 in 733.4158 ms + +2025-03-23T13:15:40.9049080+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 304 in 389.5438 ms + +2025-03-23T13:15:41.0142519+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +raw.githubusercontent.com->127.0.0.1 + +2025-03-23T13:15:41.3276497+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 239.1368 ms + +2025-03-23T13:15:41.3609669+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/CharlesPikachu.png responded 302 in 364.7506 ms + +2025-03-23T13:15:41.3983098+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 416.6517 ms + +2025-03-23T13:15:41.4063018+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 424.519 ms + +2025-03-23T13:15:41.4083777+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 426.9676 ms + +2025-03-23T13:15:41.4211926+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 439.7107 ms + +2025-03-23T13:15:41.4278723+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 446.6379 ms + +2025-03-23T13:15:41.4404377+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 451.6578 ms + +2025-03-23T13:15:41.4408218+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 459.787 ms + +2025-03-23T13:15:41.4703547+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/sponsors/batch_deferred_sponsor_buttons responded 200 in 491.2002 ms + +2025-03-23T13:15:41.4786081+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 497.7049 ms + +2025-03-23T13:15:41.4876926+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/36195560 responded 200 in 109.7359 ms + +2025-03-23T13:15:41.4914341+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 510.2398 ms + +2025-03-23T13:15:41.4930405+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 200 in 513.39 ms + +2025-03-23T13:15:41.5392440+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/blackbird_count responded 200 in 559.88 ms + +2025-03-23T13:15:41.5855893+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks.png responded 302 in 589.413 ms + +2025-03-23T13:15:41.6017124+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/Kill-Console.png responded 302 in 603.217 ms + +2025-03-23T13:15:41.6218815+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/asweigart.png responded 302 in 623.4359 ms + +2025-03-23T13:15:41.6236948+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/kitao.png responded 302 in 624.8163 ms + +2025-03-23T13:15:41.6287749+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/mahmoud.png responded 302 in 629.8753 ms + +2025-03-23T13:15:41.7039437+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/118304 responded 200 in 110.0951 ms + +2025-03-23T13:15:41.7199701+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/liuzuoping.png responded 302 in 721.0229 ms + +2025-03-23T13:15:41.7300405+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/wangshub.png responded 302 in 733.7834 ms + +2025-03-23T13:15:41.7449290+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 223.3854 ms + +2025-03-23T13:15:41.7667499+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/678802 responded 200 in 139.0928 ms + +2025-03-23T13:15:41.8136007+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/marblexu.png responded 302 in 818.2252 ms + +2025-03-23T13:15:41.8420214+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/49369184 responded 200 in 109.4968 ms + +2025-03-23T13:15:41.9702140+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/47616581 responded 200 in 146.4854 ms + +2025-03-23T13:15:41.9754604+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/kitao/pyxel/funding_links responded 200 in 461.5407 ms + +2025-03-23T13:15:42.0048045+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/52220 responded 200 in 377.652 ms + +2025-03-23T13:15:42.0193662+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/CharlesPikachu/Games/funding_links responded 200 in 505.3608 ms + +2025-03-23T13:15:42.1324851+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/678802 responded 200 in 139.5919 ms + +2025-03-23T13:15:42.1612595+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ko_fi-53a60c17e75c.svg responded 200 in 168.3613 ms + +2025-03-23T13:15:42.1619144+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/20924010 responded 200 in 414.3783 ms + +2025-03-23T13:15:42.1760351+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/patreon-96b15b9db4b9.svg responded 200 in 142.6194 ms + +2025-03-23T13:15:42.3249058+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/130193 responded 200 in 692.3069 ms + +2025-03-23T13:15:43.9327254+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png responded 200 in 2888.5409 ms + +2025-03-23T13:15:44.7134715+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/5077647 responded 200 in 3102.08 ms + +2025-03-23T13:15:46.8859385+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 372.114 ms + +2025-03-23T13:15:47.1756830+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:15:53.3529896+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 237.0635 ms + +2025-03-23T13:15:53.4824648+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 445.6949 ms + +2025-03-23T13:15:54.3488952+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley/game responded 200 in 1300.1706 ms + +2025-03-23T13:15:54.5865254+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/notifications-subscriptions-menu.1bcff9205c241e99cff2.module.css responded 200 in 139.8533 ms + +2025-03-23T13:15:54.5866798+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/app_assets_modules_github_ref-selector_ts-3e9d848bab5f.js responded 200 in 138.7889 ms + +2025-03-23T13:15:54.7098494+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_file-attachment-element_dist_index_js-node_modules_github_remote--3c9c82-b71ef90fbdc7.js responded 200 in 259.6324 ms + +2025-03-23T13:15:54.7153254+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/codespaces-c3bcacfe317c.js responded 200 in 266.8815 ms + +2025-03-23T13:15:54.7555955+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 225.7317 ms + +2025-03-23T13:15:54.8242661+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/code-0210be90f4d3.css responded 200 in 378.6424 ms + +2025-03-23T13:15:54.8320158+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_github_catalyst_lib_inde-dbbea9-26cce2010167.js responded 200 in 381.2782 ms + +2025-03-23T13:15:54.8328505+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_delegated-events_dist_inde-70450e-4b93df70b903.js responded 200 in 385.6172 ms + +2025-03-23T13:15:54.8371196+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/code-menu-1c0aedc134b1.js responded 200 in 386.3407 ms + +2025-03-23T13:15:55.0145205+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/favicons/favicon.svg responded 200 in 511.544 ms + +2025-03-23T13:15:55.0322734+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/repository-4fce88777fa8.css responded 200 in 586.7063 ms + +2025-03-23T13:15:55.1192646+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 229.8048 ms + +2025-03-23T13:15:55.1625519+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_filter-input-element_dist_index_js-node_modules_github_remote-inp-3eebbd-0763620ad7bf.js responded 200 in 713.9029 ms + +2025-03-23T13:15:55.1788242+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/favicons/favicon.png responded 200 in 152.4668 ms + +2025-03-23T13:15:55.2441166+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/notifications-subscriptions-menu-58a0c58bfee4.js responded 200 in 133.6391 ms + +2025-03-23T13:15:55.3346741+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_decorators_js-node_modules_delegated-events_di-e161aa-9d41fb1b6c9e.js responded 200 in 884.4176 ms + +2025-03-23T13:15:55.3736302+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_commit-attribution_index_ts-ui_packages_commit-checks-status_index_ts-ui_packages-7094d4-15017f02e61c.js responded 200 in 262.1455 ms + +2025-03-23T13:15:55.3851571+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_code-view-shared_hooks_shortcuts_ts-ui_packages_code-view-shared_utilities_styles-0dc246-f8753c5db08d.js responded 200 in 273.0376 ms + +2025-03-23T13:15:55.4227532+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/repositories-7a0dbaa42c57.js responded 200 in 972.4734 ms + +2025-03-23T13:15:55.5155665+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_virtualized-list_es_index_js-node_modules_github_template-parts_lib_index_js-94dc7a2157c1.js responded 200 in 1068.5115 ms + +2025-03-23T13:15:55.5685881+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 235.6723 ms + +2025-03-23T13:15:55.5893296+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/272840 responded 200 in 542.3225 ms + +2025-03-23T13:15:55.5979699+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley/game/hovercards/citation/sidebar_partial responded 204 in 390.3059 ms + +2025-03-23T13:15:55.6285466+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley/game/security/overall-count responded 200 in 421.6891 ms + +2025-03-23T13:15:55.6335608+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 448.9224 ms + +2025-03-23T13:15:55.6349770+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley/game/used_by_list responded 200 in 427.3308 ms + +2025-03-23T13:15:55.6880243+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 489.3687 ms + +2025-03-23T13:15:55.6957235+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/3897212/watch_subscription responded 200 in 414.7147 ms + +2025-03-23T13:15:55.8018768+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/repos-overview-ca785c0ab4fa.js responded 200 in 689.463 ms + +2025-03-23T13:15:55.9914034+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 200 in 691.7084 ms + +2025-03-23T13:15:56.0404988+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/repos-overview.0ee7cac3ab511a65d9f9.module.css responded 200 in 932.8421 ms + +2025-03-23T13:15:56.1611153+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_code-view-shared_hooks_use-canonical-object_ts-ui_packages_code-view-shared_hooks-a83ec0-5ee2b562b57f.js responded 200 in 1049.101 ms + +2025-03-23T13:15:56.3197046+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 223.5663 ms + +2025-03-23T13:15:56.3609293+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_ref-selector_RefSelector_tsx-7496afc3784d.js responded 200 in 1249.5452 ms + +2025-03-23T13:15:56.8145663+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley/game/refs responded 200 in 394.4506 ms + +2025-03-23T13:15:56.8145663+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley/game/latest-commit/master responded 200 in 395.5976 ms + +2025-03-23T13:15:56.8225932+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley/game/tree-commit-info/master responded 200 in 402.2067 ms + +2025-03-23T13:15:56.8225931+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley/game/branch-and-tag-count responded 200 in 402.1119 ms + +2025-03-23T13:15:56.8333035+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley/game/recently-touched-branches responded 200 in 414.7127 ms + +2025-03-23T13:15:56.8436569+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-ui_packages_code-view-shared_components_files-search_FileResultsList_tsx-ef1fa1f779f7.js responded 200 in 423.4861 ms + +2025-03-23T13:15:57.3760116+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/images/gravatars/gravatar-user-420.png responded 200 in 538.2631 ms + +2025-03-23T13:16:01.8005859+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 370.9717 ms + +2025-03-23T13:16:11.0823445+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:16:11.4552989+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-23T13:16:26.2539134+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 225.4214 ms + +2025-03-23T13:16:26.6745200+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 646.3184 ms + +2025-03-23T13:16:33.3104829+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:16:34.8753222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-23T13:16:35.4940045+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:16:41.4911493+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 448.7262 ms + +2025-03-23T13:16:43.1094929+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 448.5742 ms + +2025-03-23T13:16:43.5481552+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/users/set_protocol responded 200 in 892.1503 ms + +2025-03-23T13:16:43.7382497+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:16:43.7409740+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:16:43.9905217+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 241.9681 ms + +2025-03-23T13:16:44.1428628+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley/game/archive/refs/heads/master.zip responded 302 in 394.5622 ms + +2025-03-23T13:16:44.1579650+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +codeload.github.com->127.0.0.1 + +2025-03-23T13:16:44.1614925+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +codeload.github.com->127.0.0.1 + +2025-03-23T13:16:47.3065927+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://codeload.github.com/serenity-valley/game/zip/refs/heads/master responded 200 in 2223.3912 ms + +2025-03-23T13:16:57.8565419+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[192.0.73.2] + +2025-03-23T13:17:19.1453256+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:17:19.5585416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-03-23T13:17:45.8572087+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:17:46.0866330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.53] + +2025-03-23T13:18:07.3988666+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:18:07.8035739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9] + +2025-03-23T13:18:09.9112847+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:18:10.3630197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.110.6.131, 52.110.6.144] + +2025-03-23T13:18:11.7494055+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:18:12.1355520+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.44.108] + +2025-03-23T13:18:38.0091860+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:18:38.1812684+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-23T13:18:41.2675714+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:18:41.7230591+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.148.166, 20.190.144.166] + +2025-03-23T13:18:43.8655759+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:18:44.2742671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +clientnotification-userprodscus1-1.servicebus.windows.net:443->[172.215.180.16] + +2025-03-23T13:19:05.9778376+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:19:06.3762116+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-03-23T13:19:17.1697955+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:19:17.6072773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.28.48] + +2025-03-23T13:19:41.0356293+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:19:41.3025113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.44] + +2025-03-23T13:19:43.3448402+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:19:43.7573245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.22] + +2025-03-23T13:20:05.6016662+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:20:08.9986045+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.164, 40.126.35.19] + +2025-03-23T13:20:56.6284596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.217, 23.193.96.227, 2.16.168.100] + +2025-03-23T13:20:57.9073617+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:20:58.0799531+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.44] + +2025-03-23T13:21:19.8645758+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:21:20.0445841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.111.133, 185.199.109.133] + +2025-03-23T13:21:41.8134527+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:21:42.3391049+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-23T13:21:43.8613625+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:21:44.1028851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.vstsusers.visualstudio.com:443->[13.107.42.18] + +2025-03-23T13:21:59.6617063+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-03-23T13:22:00.3899477+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 709.7306 ms + +2025-03-23T13:22:05.9617485+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:22:06.3670725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2.16.168.100, 2.16.168.125, 23.56.109.142] + +2025-03-23T13:22:10.2652956+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-23T13:22:18.0621948+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:22:18.2856924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.60, 13.107.246.73] + +2025-03-23T13:22:20.9734882+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 468.8363 ms + +2025-03-23T13:22:24.3970296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-23T13:22:27.8377993+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:22:28.3146889+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 464.74 ms + +2025-03-23T13:22:33.1678846+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/users/set_protocol responded 200 in 5314.801 ms + +2025-03-23T13:22:46.1123707+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:22:46.5994456+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.11, 20.135.17.52] + +2025-03-23T13:23:05.4373827+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:23:06.8213585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.112.26, 140.82.113.25] + +2025-03-23T13:23:20.1094932+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:23:20.3534960+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.44] + +2025-03-23T13:23:27.1019555+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:23:27.2646302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +app.vssps.visualstudio.com:443->[13.107.42.18] + +2025-03-23T13:23:28.4237021+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:23:28.8732527+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4] + +2025-03-23T13:23:50.5732627+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:23:50.7457517+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +marketplace.visualstudio.com:443->[13.107.42.18] + +2025-03-23T13:23:52.7077783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-23T13:24:16.3784410+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-23T13:24:27.7046093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.74, 13.107.246.53] + +2025-03-23T13:24:28.6120229+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 600.5316 ms + +2025-03-23T13:24:28.9368836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.121.9] + +2025-03-23T13:24:29.9980398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.20.47] + +2025-03-23T13:24:31.6725508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.3, 140.82.121.4] + +2025-03-23T13:24:32.7012809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-03-23T13:24:33.5062980+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.44] + +2025-03-23T13:24:50.6723704+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.73] + +2025-03-23T13:24:51.4112869+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.60, 13.107.246.74, 13.107.246.73] + +2025-03-23T13:24:52.3739357+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.11, 13.105.74.50] + +2025-03-23T13:24:53.2394867+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.112.26] + +2025-03-23T13:24:53.5223993+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.73] + +2025-03-23T13:24:59.4140535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.111.154, 185.199.109.154] + +2025-03-23T13:24:59.7650167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-23T13:25:01.6500816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.44.108, 52.109.2.217] + +2025-03-23T13:25:01.9452181+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-23T13:25:06.2967373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-23T13:25:08.0849286+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:25:10.2493554+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:25:11.5840102+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.12.13, 52.110.6.131] + +2025-03-23T13:25:18.5073703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.148.164, 20.190.148.162] + +2025-03-23T13:25:21.2521355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.164, 40.126.35.134, 40.126.35.145] + +2025-03-23T13:25:25.2966808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.114.21] + +2025-03-23T13:25:25.2992557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.60, 13.107.246.74] + +2025-03-23T13:25:26.3831410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.56.130] + +2025-03-23T13:25:26.6596364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.73] + +2025-03-23T13:25:27.4492255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.25] + +2025-03-23T13:25:27.9597532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.15, 20.135.6.11] + +2025-03-23T13:25:30.7555249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.60, 13.107.246.74] + +2025-03-23T13:25:39.0430726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-03-23T13:25:39.3369733+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:25:41.1407555+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:26:07.5111529+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-23T13:26:10.6261410+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:26:13.4490231+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.110.17.23, 52.110.17.1] + +2025-03-23T13:26:29.4499170+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.114.6] + +2025-03-23T13:26:30.6852801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.114.9] + +2025-03-23T13:26:37.5567569+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:26:38.6777156+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:26:52.7437693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.67, 13.107.246.60, 13.107.246.74] + +2025-03-23T13:27:07.2638325+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.112.25, 140.82.114.26] + +2025-03-23T13:27:08.2041040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2.16.168.100, 2.16.168.125, 23.56.109.137] + +2025-03-23T13:27:08.8692677+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:27:20.5420691+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.44, 13.107.246.74] + +2025-03-23T13:27:20.8372272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.60, 13.107.246.67, 13.107.246.74] + +2025-03-23T13:27:28.8303485+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.44, 13.107.246.74] + +2025-03-23T13:27:32.6875973+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.60, 13.107.246.67] + +2025-03-23T13:27:39.7868321+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:27:43.5034695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.44.108, 52.109.56.126] + +2025-03-23T13:27:48.2809717+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.15, 20.135.6.7] + +2025-03-23T13:27:51.0795917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2.16.168.100, 2.16.168.125, 23.220.75.240] + +2025-03-23T13:27:54.2476118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-23T13:28:12.5717610+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.52.0, 52.109.44.108] + +2025-03-23T13:28:20.7475076+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.73, 13.107.253.70] + +2025-03-23T13:28:21.2753180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.60, 13.107.246.67, 13.107.246.73] + +2025-03-23T13:28:21.2762700+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.44, 13.107.246.53] + +2025-03-23T13:28:29.2821113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.44, 13.107.246.73] + +2025-03-23T13:28:33.7676338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.112.3] + +2025-03-23T13:28:42.9002399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.11, 20.135.6.15] + +2025-03-23T13:28:51.3310376+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:28:57.7518764+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 13.107.246.60, 13.107.246.67] + +2025-03-23T13:28:58.5811797+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:29:21.5931227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.44, 13.107.246.69] + +2025-03-23T13:29:21.5965006+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.253.70, 13.107.246.74] + +2025-03-23T13:29:23.4161236+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:29:30.3821712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-23T13:29:30.8626360+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.114.10] + +2025-03-23T13:29:32.4808860+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:29:38.7385787+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.5] + +2025-03-23T13:29:39.7324464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.66, 13.107.246.73] + +2025-03-23T13:29:44.0317795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.22, 140.82.114.22, 140.82.114.21] + +2025-03-23T13:29:44.5478814+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.52.0] + +2025-03-23T13:29:53.4506547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.53, 13.107.246.66] + +2025-03-23T13:29:53.5150038+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.69] + +2025-03-23T13:29:53.7371304+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.53] + +2025-03-23T13:29:56.2465238+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.111.154, 185.199.110.154] + +2025-03-23T13:30:02.8206174+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.124.191] + +2025-03-23T13:30:03.1106545+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:30:06.4317090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.164, 20.190.144.137] + +2025-03-23T13:30:14.6163951+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.162, 20.190.144.137] + +2025-03-23T13:30:14.8842250+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.164, 20.190.144.136, 20.190.144.166] + +2025-03-23T13:30:17.0724760+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:30:26.4439693+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.22, 140.82.114.22] + +2025-03-23T13:30:27.5425743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.110.17.23] + +2025-03-23T13:30:30.5307741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.112.26] + +2025-03-23T13:30:32.1310142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.67, 13.107.246.73] + +2025-03-23T13:30:32.7169661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.60, 13.107.246.67, 13.107.246.73] + +2025-03-23T13:30:38.7335389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.114.9] + +2025-03-23T13:30:39.8141060+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.114.22, 140.82.112.22] + +2025-03-23T13:30:41.3908879+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:30:48.6027233+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:30:56.9221703+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2.16.168.100, 2.16.168.102, 23.45.173.57] + +2025-03-23T13:31:09.1202656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2.16.168.100, 23.45.173.57, 2.16.168.102] + +2025-03-23T13:31:13.7593816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.110.17.13] + +2025-03-23T13:31:14.2456269+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2.16.168.100, 2.16.168.125, 23.217.118.206] + +2025-03-23T13:31:14.4311366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2.16.168.100, 2.16.168.102, 23.220.75.233] + +2025-03-23T13:31:17.1018291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.11, 20.143.38.0] + +2025-03-23T13:31:34.7506426+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:31:41.2135977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.67, 13.107.246.73, 13.107.246.53] + +2025-03-23T13:31:44.3810157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12] + +2025-03-23T13:31:54.2579151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.51] + +2025-03-23T13:31:54.2606539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.53, 13.107.246.66] + +2025-03-23T13:31:54.2643925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.60, 13.107.246.73, 13.107.246.51] + +2025-03-23T13:32:03.1960413+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:32:10.5295378+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:32:12.3675064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.67] + +2025-03-23T13:32:15.7007303+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T13:32:15.8405166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T13:32:15.8417288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T13:32:15.8428988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T13:32:15.8443801+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T13:32:16.8655245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T13:32:24.7411941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.67] + +2025-03-23T13:32:25.0338191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.69, 13.107.246.44] + +2025-03-23T13:32:25.0396167+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.53, 13.107.246.66] + +2025-03-23T13:32:39.9139077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.114.22] + +2025-03-23T13:32:43.6121166+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:32:52.6732981+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.1, 20.135.6.11] + +2025-03-23T13:33:07.9659808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.114.25] + +2025-03-23T13:33:11.4365841+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[2.16.168.100, 2.16.168.102, 23.45.173.66] + +2025-03-23T13:33:19.1465579+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:33:19.4448041+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:33:21.3890649+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.74] + +2025-03-23T13:33:21.5665032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.69, 13.107.246.74] + +2025-03-23T13:33:23.9311985+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.74] + +2025-03-23T13:33:25.8115603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.57, 13.107.246.73, 13.107.246.69] + +2025-03-23T13:33:34.7973941+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.112.3] + +2025-03-23T13:33:44.2369033+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-03-23T13:33:46.6824732+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->127.0.0.1 + +2025-03-23T13:33:47.7627905+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/272840 responded 304 in 1063.2587 ms + +2025-03-23T13:33:47.8955325+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/106005903 responded 304 in 1195.9856 ms + +2025-03-23T13:33:50.3369538+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:33:50.4692120+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-03-23T13:33:50.4705920+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-03-23T13:33:51.0472943+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 564.8683 ms + +2025-03-23T13:33:51.1376812+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 655.9943 ms + +2025-03-23T13:33:51.5706696+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search responded 200 in 1206.3573 ms + +2025-03-23T13:33:51.5925865+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-03-23T13:33:51.5943667+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->127.0.0.1 + +2025-03-23T13:33:51.5959652+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +user-images.githubusercontent.com->127.0.0.1 + +2025-03-23T13:33:51.6107712+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +raw.githubusercontent.com->127.0.0.1 + +2025-03-23T13:33:51.9764716+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/serenity-valley.png responded 302 in 364.1701 ms + +2025-03-23T13:33:52.1401117+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/272840 responded 304 in 109.3298 ms + +2025-03-23T13:33:52.2042948+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/marblexu.png responded 302 in 590.1281 ms + +2025-03-23T13:33:52.2133695+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks.png responded 302 in 599.1174 ms + +2025-03-23T13:33:52.2197959+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/CharlesPikachu.png responded 302 in 604.7954 ms + +2025-03-23T13:33:52.3350686+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/asweigart.png responded 302 in 720.0014 ms + +2025-03-23T13:33:52.3561151+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/wangshub.png responded 302 in 741.8201 ms + +2025-03-23T13:33:52.3604549+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/Kill-Console.png responded 302 in 745.3081 ms + +2025-03-23T13:33:52.5723337+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 754.1439 ms + +2025-03-23T13:33:52.5772373+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://github.com/sponsors/batch_deferred_sponsor_buttons responded 200 in 550.8314 ms + +2025-03-23T13:33:52.6566611+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 628.9226 ms + +2025-03-23T13:33:52.6714021+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 643.8771 ms + +2025-03-23T13:33:52.6724655+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 644.4946 ms + +2025-03-23T13:33:52.6863660+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 658.3798 ms + +2025-03-23T13:33:52.6900622+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 662.3035 ms + +2025-03-23T13:33:52.6980960+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 671.3117 ms + +2025-03-23T13:33:52.6981628+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/118304 responded 304 in 470.7881 ms + +2025-03-23T13:33:52.7034951+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 200 in 658.3293 ms + +2025-03-23T13:33:52.7268200+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 698.835 ms + +2025-03-23T13:33:52.7320521+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 704.1402 ms + +2025-03-23T13:33:52.7334397+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/count responded 304 in 706.6323 ms + +2025-03-23T13:33:52.7342871+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 505.9444 ms + +2025-03-23T13:33:52.7352170+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/blackbird_count responded 304 in 708.4582 ms + +2025-03-23T13:33:52.7838878+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/36195560 responded 304 in 544.5929 ms + +2025-03-23T13:33:52.8041791+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/suggestions responded 304 in 566.0244 ms + +2025-03-23T13:33:52.8250083+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/20924010 responded 304 in 450.5174 ms + +2025-03-23T13:33:52.8687232+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/52220 responded 304 in 500.6183 ms + +2025-03-23T13:33:53.0311268+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/kitao/pyxel/funding_links responded 304 in 422.679 ms + +2025-03-23T13:33:53.0311268+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png responded 304 in 1402.1107 ms + +2025-03-23T13:33:53.0387119+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/CharlesPikachu/Games/funding_links responded 304 in 430.145 ms + +2025-03-23T13:33:53.1087053+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/custom_scopes responded 304 in 369.2535 ms + +2025-03-23T13:33:53.3374920+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/678802 responded 304 in 125.5631 ms + +2025-03-23T13:33:53.4380546+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/kitao.png responded 302 in 381.0406 ms + +2025-03-23T13:33:53.4795014+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/liuzuoping.png responded 302 in 359.7606 ms + +2025-03-23T13:33:53.4826246+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/mahmoud.png responded 302 in 362.9397 ms + +2025-03-23T13:33:53.4855600+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/5077647 responded 304 in 1111.0665 ms + +2025-03-23T13:33:53.5691731+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 219.7316 ms + +2025-03-23T13:33:53.5708249+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/678802 responded 304 in 123.9577 ms + +2025-03-23T13:33:53.6168810+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/130193 responded 304 in 117.1668 ms + +2025-03-23T13:33:53.6225325+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/49369184 responded 304 in 129.5583 ms + +2025-03-23T13:33:53.6672689+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/47616581 responded 304 in 1444.4514 ms + +2025-03-23T13:33:53.7888913+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 291.1823 ms + +2025-03-23T13:33:58.3083635+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 346.657 ms + +2025-03-23T13:33:58.3779829+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 374.3801 ms + +2025-03-23T13:34:00.4058096+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:34:00.8567794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.144.136, 20.190.144.161] + +2025-03-23T13:34:02.5031367+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 219.9445 ms + +2025-03-23T13:34:05.0417550+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 223.6467 ms + +2025-03-23T13:34:05.1749145+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 429.8297 ms + +2025-03-23T13:34:05.2622156+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 429.0047 ms + +2025-03-23T13:34:06.1456012+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games responded 200 in 1393.9819 ms + +2025-03-23T13:34:06.3837848+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/118304 responded 200 in 127.5685 ms + +2025-03-23T13:34:06.3872486+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/40369168 responded 200 in 124.7793 ms + +2025-03-23T13:34:06.5096303+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/44044119 responded 200 in 246.9148 ms + +2025-03-23T13:34:06.6358262+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/44044200 responded 200 in 316.1123 ms + +2025-03-23T13:34:06.6562452+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/workflows/integration/badge.svg responded 200 in 398.661 ms + +2025-03-23T13:34:06.7296060+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/3992143 responded 200 in 467.4727 ms + +2025-03-23T13:34:06.8281818+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 359.8522 ms + +2025-03-23T13:34:06.8894706+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/hovercards/citation/sidebar_partial responded 204 in 420.0164 ms + +2025-03-23T13:34:06.8936620+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/security/overall-count responded 200 in 424.2913 ms + +2025-03-23T13:34:06.9183761+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/51965632 responded 200 in 598.7818 ms + +2025-03-23T13:34:06.9560024+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/branch-and-tag-count responded 200 in 391.04 ms + +2025-03-23T13:34:06.9607186+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/refs responded 200 in 396.0426 ms + +2025-03-23T13:34:06.9710410+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/recently-touched-branches responded 200 in 406.7039 ms + +2025-03-23T13:34:06.9942130+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/overview-files/master responded 200 in 429.3126 ms + +2025-03-23T13:34:07.0041535+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +camo.githubusercontent.com->127.0.0.1 + +2025-03-23T13:34:07.0127188+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/tree-commit-info/master responded 200 in 448.0293 ms + +2025-03-23T13:34:07.0313376+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/5362372/watch_subscription responded 200 in 407.2564 ms + +2025-03-23T13:34:07.1201891+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 200 in 546.6996 ms + +2025-03-23T13:34:07.1460663+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/84239101 responded 200 in 826.3844 ms + +2025-03-23T13:34:07.1460663+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/latest-commit/master responded 200 in 581.6344 ms + +2025-03-23T13:34:07.2345091+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/2972053 responded 200 in 972.3219 ms + +2025-03-23T13:34:07.2432604+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 221.8844 ms + +2025-03-23T13:34:07.4663813+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 445.1419 ms + +2025-03-23T13:34:07.5210709+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/used_by_list responded 200 in 1051.5656 ms + +2025-03-23T13:34:07.5426669+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/chunk-app_components_accessibility_animated-image-element_ts-3813856f440e.js responded 200 in 535.0563 ms + +2025-03-23T13:34:07.6263284+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/118304 responded 200 in 210.0768 ms + +2025-03-23T13:34:07.8995350+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 221.6446 ms + +2025-03-23T13:34:08.1846845+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/118304 responded 200 in 1922.6755 ms + +2025-03-23T13:34:08.4059924+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 430.6422 ms + +2025-03-23T13:34:08.4066319+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 430.8981 ms + +2025-03-23T13:34:08.4226695+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 447.5128 ms + +2025-03-23T13:34:08.6377508+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 648.9859 ms + +2025-03-23T13:34:08.6461819+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 657.0763 ms + +2025-03-23T13:34:08.6502813+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 660.7614 ms + +2025-03-23T13:34:08.6554441+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 665.5555 ms + +2025-03-23T13:34:08.6555668+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 665.8394 ms + +2025-03-23T13:34:08.6575615+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 667.9636 ms + +2025-03-23T13:34:08.6805280+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 690.5222 ms + +2025-03-23T13:34:08.6817626+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 691.9243 ms + +2025-03-23T13:34:08.6885994+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 697.8403 ms + +2025-03-23T13:34:08.7145095+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 723.4275 ms + +2025-03-23T13:34:08.7282643+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 737.2119 ms + +2025-03-23T13:34:08.8121022+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/1e9698d39dba3f4b75959e0872f251fb64b4f0f7177a07522d5d79f331f6bb67/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f746963746163746f652e676966 responded 200 in 929.6013 ms + +2025-03-23T13:34:08.8317581+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/a533ca6d4354948ee437eedf2ef4105647494f4638ed2c438a0c833bdcdfa12a/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f696c6c7573696f6e2e676966 responded 200 in 947.3746 ms + +2025-03-23T13:34:08.8396942+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 851.9212 ms + +2025-03-23T13:34:08.8436752+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 867.8746 ms + +2025-03-23T13:34:08.8668759+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 877.9604 ms + +2025-03-23T13:34:09.0978420+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/7bf508ef0b62120b72d42d927ccb5d94ed8738040c7b125184dc7c0f1e27017d/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f706f6e672e676966 responded 200 in 1213.2225 ms + +2025-03-23T13:34:09.2860611+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 437.6658 ms + +2025-03-23T13:34:09.3098948+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/912d1bc8a4fc4ead7d5648390c95b833986922fabe10c48dacda2987fed7686d/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f736e616b652e676966 responded 200 in 1428.8898 ms + +2025-03-23T13:34:09.3144039+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 493.9199 ms + +2025-03-23T13:34:09.5438322+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 437.4374 ms + +2025-03-23T13:34:09.5851971+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/3beaa3568fb4b7f43dea405a3195d5b632caaae9a8d1595a7580de21a1682af8/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f63616e6e6f6e2e676966 responded 200 in 1703.103 ms + +2025-03-23T13:34:09.8074577+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 477.3523 ms + +2025-03-23T13:34:10.0059711+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/c599062d2ee3d21421718747ce7077f5d86269ddfe5506001ee5e7c6a4e05bd8/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f73696d6f6e736179732e676966 responded 200 in 2119.0252 ms + +2025-03-23T13:34:10.0626793+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 456.9904 ms + +2025-03-23T13:34:10.0984091+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/a23ccee5df6763d9a676c8ca5ee47293b47004a014e0fe0d22b7beb05c8d2dda/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f6d656d6f72792e676966 responded 200 in 2211.8587 ms + +2025-03-23T13:34:10.1146618+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/f74d837bafe799fde6a0e1644dd14855f2785a90f3b0a35402a1f6c7de364459/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f74696c65732e676966 responded 200 in 2232.4384 ms + +2025-03-23T13:34:10.1547409+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/06c381f3ba4c156fb9c51f43675b61a4223282c6406ee346d0d1b50cab1e36fb/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f7061636d616e2e676966 responded 200 in 2268.78 ms + +2025-03-23T13:34:10.2013990+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/8068a66e2b06cd167a5e96af50d0935396bc0a35a658497c09ff48cbc4caa7f6/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f6c6966652e676966 responded 200 in 2318.6865 ms + +2025-03-23T13:34:10.4926949+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 477.9102 ms + +2025-03-23T13:34:10.5519249+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 434.9604 ms + +2025-03-23T13:34:10.5728716+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 430.6407 ms + +2025-03-23T13:34:10.5966393+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/b2ac2fba1c4e05a4502a9f3cd3044ce1a573e1855eb1f7d356ce960ba2ba7117/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f6669646765742e676966 responded 200 in 2713.168 ms + +2025-03-23T13:34:10.6094815+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 435.8773 ms + +2025-03-23T13:34:10.6554580+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 443.1152 ms + +2025-03-23T13:34:10.6897012+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/9b7553699981f02de677175d451caa15af58141ec765d4a8ba631cdbd4042907/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f636f6e6e6563742e676966 responded 200 in 2804.8348 ms + +2025-03-23T13:34:10.7924871+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/9e15c011febbf793402bb7700c86f75c3dde94e16bdde93967dfc3b4909000ab/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f7061696e742e676966 responded 200 in 2905.6181 ms + +2025-03-23T13:34:10.9164882+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/37648ae15dce6fbcaa74c85e2b4c5b2f5e534cdd987dc71da3d639e70cf2b074/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f666c617070792e676966 responded 200 in 3033.4215 ms + +2025-03-23T13:34:10.9886514+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/e5507ecd4a544b51031f80d8682e485142c510283bc43e2de138af2522714fce/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f74726f6e2e676966 responded 200 in 3102.3231 ms + +2025-03-23T13:34:11.1275466+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 523.6785 ms + +2025-03-23T13:34:11.1442771+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 447.8499 ms + +2025-03-23T13:34:11.2362786+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 430.2706 ms + +2025-03-23T13:34:11.3656099+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 436.4632 ms + +2025-03-23T13:34:11.4760841+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 477.2276 ms + +2025-03-23T13:34:13.1310384+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/44044105 responded 200 in 6868.5647 ms + +2025-03-23T13:34:16.2846163+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 351.5873 ms + +2025-03-23T13:34:17.2352891+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/52addb8d73796debb44dc2d0dbb792317bf17d70a03e79c83ecefc5fda387c4d/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f747970696e672e676966 responded 200 in 9350.1867 ms + +2025-03-23T13:34:17.7307445+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 486.6113 ms + +2025-03-23T13:34:21.3939924+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 460.2051 ms + +2025-03-23T13:34:22.8686999+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.69, 13.107.246.57, 13.107.246.73] + +2025-03-23T13:34:29.2552677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.8.88] + +2025-03-23T13:34:36.9457553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.66] + +2025-03-23T13:34:37.7620778+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.66] + +2025-03-23T13:34:38.5469243+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:34:40.8048469+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.46] + +2025-03-23T13:34:40.8070966+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.74] + +2025-03-23T13:34:40.9750667+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:34:51.7505907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.0] + +2025-03-23T13:35:07.4585835+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 480.1467 ms + +2025-03-23T13:35:08.3440902+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:35:08.3467570+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:35:08.8394960+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 483.0706 ms + +2025-03-23T13:35:09.0199391+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/archive/refs/heads/master.zip responded 302 in 657.9361 ms + +2025-03-23T13:35:09.0279142+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +codeload.github.com->127.0.0.1 + +2025-03-23T13:35:09.0348431+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +codeload.github.com->127.0.0.1 + +2025-03-23T13:35:44.7983232+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://codeload.github.com/grantjenks/free-python-games/zip/refs/heads/master responded 200 in 35733.3673 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T13:35:47.2182424+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 592.8973 ms + +2025-03-23T13:35:47.2852128+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 657.9613 ms + +2025-03-23T13:35:56.2715097+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 221.881 ms + +2025-03-23T13:36:06.5399307+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:36:10.3681865+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 221.1232 ms + +2025-03-23T13:36:23.0572641+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://camo.githubusercontent.com/0727cb2b81658d7b52390dec5f78f9c8dd09d2b2564998a521c97f704ec0c582/68747470733a2f2f6772616e746a656e6b732e636f6d2f646f63732f6672656567616d65732f5f7374617469632f6d617a652e676966 responded 200 in 135171.9224 ms + +2025-03-23T13:36:23.5036379+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 428.718 ms + +2025-03-23T13:36:26.0644482+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-23T13:36:37.2653975+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 572.6066 ms + +2025-03-23T13:36:38.1371114+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 218.4879 ms + +2025-03-23T13:36:38.3717514+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 453.9308 ms + +2025-03-23T13:36:40.5373007+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 219.3528 ms + +2025-03-23T13:36:40.7737915+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 457.831 ms + +2025-03-23T13:36:47.5223473+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:38:30.8811283+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 661.8621 ms + +2025-03-23T13:38:34.8891832+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/commit/cfa331f3d2d20f3fb742c9cd5504cea53504b0ef/hovercard responded 200 in 1271.1874 ms + +2025-03-23T13:38:40.5972962+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://avatars.githubusercontent.com/u/118304 responded 200 in 5694.7078 ms + +2025-03-23T13:38:42.6237478+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 444.0163 ms + +2025-03-23T13:38:42.8444035+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 580.9854 ms + +2025-03-23T13:38:42.8453820+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 581.3475 ms + +2025-03-23T13:38:43.7230192+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/blob/master/requirements-dev.txt responded 200 in 1537.27 ms + +2025-03-23T13:38:43.8174076+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 219.0744 ms + +2025-03-23T13:38:44.1113298+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 225.3928 ms + +2025-03-23T13:38:44.2624456+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-code-view.a0633e3d36c876a6eaa1.module.css responded 200 in 462.8778 ms + +2025-03-23T13:38:44.8209185+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 221.825 ms + +2025-03-23T13:38:45.2024492+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_app-uuid_app-uuid_ts-ui_packages_document-metadata_document-metadata_ts-ui_packag-4d8de9-4af9d1b9ce52.js responded 200 in 1399.3883 ms + +2025-03-23T13:38:45.3748202+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_react-intersection-observer_react-intersection-observer_modern_mjs-node_-b27033-ba82cef135e3.js responded 200 in 1571.254 ms + +2025-03-23T13:38:45.6039734+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 1156.2536 ms + +2025-03-23T13:38:45.6553122+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/github-copilot/chat responded 304 in 1172.232 ms + +2025-03-23T13:38:46.0643668+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 217.5856 ms + +2025-03-23T13:38:46.1022850+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/react-code-view-0ef2da2cc150.js responded 200 in 2300.5198 ms + +2025-03-23T13:38:46.9095867+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/ui_packages_diffs_diff-parts_ts-b05d9274ce63.js responded 200 in 3103.0751 ms + +2025-03-23T13:38:47.6355172+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.githubassets.com/assets/vendors-node_modules_focus-visible_dist_focus-visible_js-node_modules_fzy_js_index_js-node_mo-f2fece-29a0ceccb1f1.js responded 200 in 3830.3611 ms + +2025-03-23T13:38:48.1642098+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/latest-commit/master/requirements-dev.txt responded 200 in 431.3896 ms + +2025-03-23T13:38:48.1687452+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 432.0745 ms + +2025-03-23T13:38:48.2057338+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 461.4532 ms + +2025-03-23T13:38:48.3651218+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/deferred-metadata/master/requirements-dev.txt responded 200 in 628.6224 ms + +2025-03-23T13:38:48.3686755+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +PUT https://github.com/repos/preferences responded 200 in 632.8859 ms + +2025-03-23T13:38:48.3879587+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 506.1514 ms + +2025-03-23T13:38:48.4134433+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/deferred-ast/master/requirements-dev.txt responded 200 in 673.4918 ms + +2025-03-23T13:38:48.5363738+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:38:52.8353686+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-03-23T13:38:53.1857060+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 349.9198 ms + +2025-03-23T13:39:14.4598820+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 1442928.4159 ms + +2025-03-23T13:39:14.5871855+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +alive.github.com->127.0.0.1 + +2025-03-23T13:39:17.1959483+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:39:17.2914448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-23T13:39:21.8377843+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.githubassets.com->127.0.0.1 + +2025-03-23T13:39:21.8464451+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +avatars.githubusercontent.com->127.0.0.1 + +2025-03-23T13:39:21.8486076+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github-cloud.s3.amazonaws.com->127.0.0.1 + +2025-03-23T13:39:21.8634140+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +user-images.githubusercontent.com->127.0.0.1 + +2025-03-23T13:39:21.9977915+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-03-23T13:39:22.1174837+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +github.com->127.0.0.1 + +2025-03-23T13:39:22.4301377+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 431.9179 ms + +2025-03-23T13:39:22.4643362+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 463.9608 ms + +2025-03-23T13:39:22.5706073+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:39:22.6573619+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 654.4948 ms + +2025-03-23T13:39:22.6647917+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 661.0153 ms + +2025-03-23T13:39:22.6679380+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 663.7492 ms + +2025-03-23T13:39:22.6685881+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 663.1137 ms + +2025-03-23T13:39:22.6713901+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 662.1076 ms + +2025-03-23T13:39:22.6759425+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 664.7497 ms + +2025-03-23T13:39:22.6775367+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 663.2655 ms + +2025-03-23T13:39:22.6788345+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 664.979 ms + +2025-03-23T13:39:22.6790716+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 662.957 ms + +2025-03-23T13:39:22.6821979+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 669.6654 ms + +2025-03-23T13:39:22.6821978+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 665.5909 ms + +2025-03-23T13:39:22.7023320+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/notifications/indicator responded 304 in 584.0677 ms + +2025-03-23T13:39:22.7025102+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 685.3287 ms + +2025-03-23T13:39:22.7267779+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 708.7553 ms + +2025-03-23T13:39:22.7483741+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 533.8994 ms + +2025-03-23T13:39:22.7512418+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/hovercards/citation/sidebar_partial responded 204 in 632.1169 ms + +2025-03-23T13:39:22.8206151+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/recently-touched-branches responded 304 in 612.7262 ms + +2025-03-23T13:39:22.8332808+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/latest-commit/master responded 304 in 625.3953 ms + +2025-03-23T13:39:22.8706742+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 868.736 ms + +2025-03-23T13:39:22.8766787+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 656.2318 ms + +2025-03-23T13:39:22.8792224+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 658.3822 ms + +2025-03-23T13:39:22.8792647+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 656.4343 ms + +2025-03-23T13:39:22.8800288+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 662.9772 ms + +2025-03-23T13:39:22.8825345+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 659.6454 ms + +2025-03-23T13:39:22.8935129+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 649.9035 ms + +2025-03-23T13:39:22.9030102+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 642.0018 ms + +2025-03-23T13:39:22.9030102+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 641.9988 ms + +2025-03-23T13:39:22.9032448+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/tree-commit-info/master responded 304 in 694.8004 ms + +2025-03-23T13:39:22.9064516+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 636.9672 ms + +2025-03-23T13:39:22.9080674+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 643.6303 ms + +2025-03-23T13:39:22.9106711+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 639.845 ms + +2025-03-23T13:39:22.9182212+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 646.8551 ms + +2025-03-23T13:39:22.9122217+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 642.4163 ms + +2025-03-23T13:39:22.9114303+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 647.4866 ms + +2025-03-23T13:39:22.9190888+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 644.4419 ms + +2025-03-23T13:39:22.9272199+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 910.2628 ms + +2025-03-23T13:39:22.9292304+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 652.8644 ms + +2025-03-23T13:39:22.9310655+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 652.071 ms + +2025-03-23T13:39:22.9362354+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 657.4583 ms + +2025-03-23T13:39:23.0973356+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 858.5192 ms + +2025-03-23T13:39:23.0977158+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 880.9196 ms + +2025-03-23T13:39:23.0997946+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 874.1212 ms + +2025-03-23T13:39:23.1000945+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 861.3376 ms + +2025-03-23T13:39:23.1094380+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 863.2881 ms + +2025-03-23T13:39:23.1099753+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 866.5545 ms + +2025-03-23T13:39:23.1158075+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 865.3104 ms + +2025-03-23T13:39:23.1158075+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 865.1117 ms + +2025-03-23T13:39:23.1196205+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/overview-files/master responded 304 in 911.1411 ms + +2025-03-23T13:39:23.1211601+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 855.3576 ms + +2025-03-23T13:39:23.1271491+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 860.9593 ms + +2025-03-23T13:39:23.1735130+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 898.4131 ms + +2025-03-23T13:39:23.1940382+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/used_by_list responded 200 in 1074.3959 ms + +2025-03-23T13:39:23.3744093+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1128.1293 ms + +2025-03-23T13:39:23.4811564+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 229.8009 ms + +2025-03-23T13:39:23.6159853+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/grantjenks/free-python-games/branch-and-tag-count responded 304 in 1407.2814 ms + +2025-03-23T13:39:23.6882030+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1473.6458 ms + +2025-03-23T13:39:23.7223401+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1497.1813 ms + +2025-03-23T13:39:23.7427808+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1466.8759 ms + +2025-03-23T13:39:23.8391119+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 588.0475 ms + +2025-03-23T13:39:52.5161621+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:39:57.7083858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.108.154, 185.199.110.154] + +2025-03-23T13:39:59.7156538+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:40:01.0121647+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T13:40:02.0707343+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:40:02.4747936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.113.5] + +2025-03-23T13:40:06.5284610+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:40:06.6905412+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T13:40:08.3635690+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:40:08.3669187+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T13:40:24.9335552+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 602.0106 ms + +2025-03-23T13:40:24.9956112+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 656.5839 ms + +2025-03-23T13:40:30.0970355+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:40:30.1000930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T13:40:51.5392722+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:40:51.5438487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T13:41:13.2541182+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:41:13.5588543+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.3] + +2025-03-23T13:42:21.0691564+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 590.3607 ms + +2025-03-23T13:42:21.1533691+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 672.8114 ms + +2025-03-23T13:43:05.6082590+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:43:05.8485457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.51, 13.107.246.77] + +2025-03-23T13:43:27.5585864+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:43:28.0092049+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.10, 140.82.121.10] + +2025-03-23T13:43:28.6626982+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://github.com/search/warm_blackbird_caches responded 200 in 1645.1917 ms + +2025-03-23T13:43:39.6085661+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 611.7897 ms + +2025-03-23T13:43:40.0359811+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1039.2879 ms + +2025-03-23T13:43:49.6678077+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:43:50.1052292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-03-23T13:43:51.2185894+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:43:51.6275315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.112.22] + +2025-03-23T13:44:13.3509598+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T13:44:13.5894895+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.66] + +2025-03-23T13:45:57.7654454+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +collector.github.com->127.0.0.1 + +2025-03-23T13:45:58.4851804+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 703.4265 ms + +2025-03-23T13:46:36.1141501+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-03-23T13:46:36.3519050+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 237.1334 ms + +2025-03-23T13:46:36.7074903+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 575.7557 ms + +2025-03-23T13:46:48.8972695+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-23T13:46:49.3353084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.113.25] + +2025-03-23T13:46:52.3538804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.31] + +2025-03-23T13:46:53.2749916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.74] + +2025-03-23T13:46:55.1862151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.71] + +2025-03-23T13:46:56.5282636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.108.111] + +2025-03-23T13:46:57.7209389+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117] + +2025-03-23T13:47:07.6906447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.4.6] + +2025-03-23T13:47:08.2269590+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:47:08.5905545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.59.252.187, 23.59.252.201, 93.186.137.153] + +2025-03-23T13:47:09.7664584+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.2.0, 20.135.4.170, 13.104.208.162] + +2025-03-23T13:47:10.2714653+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:47:11.5934380+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.211.14.155, 92.122.166.34, 92.122.166.36] + +2025-03-23T13:47:17.5088494+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 20.190.144.166, 20.190.144.139] + +2025-03-23T13:47:18.5600911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.166, 20.190.148.162] + +2025-03-23T13:47:20.1807975+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:47:30.7217367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12] + +2025-03-23T13:47:36.4594077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-03-23T13:47:44.2576013+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 675.9625 ms + +2025-03-23T13:47:46.4614957+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[20.125.63.4, 13.74.129.92] + +2025-03-23T13:47:47.4239302+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5] + +2025-03-23T13:47:47.8982857+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.112.174] + +2025-03-23T13:47:48.6400288+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.2.0, 20.135.4.170] + +2025-03-23T13:47:53.9960728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-23T13:47:54.3087786+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-23T13:47:59.4760375+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:48:00.2847148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-23T13:48:00.4312500+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:48:00.9817132+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-23T13:48:01.7091914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.66, 13.107.253.38] + +2025-03-23T13:48:02.6116185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.108.133, 185.199.109.133] + +2025-03-23T13:48:03.6948175+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.3] + +2025-03-23T13:48:04.3843431+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.76] + +2025-03-23T13:48:05.0486398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 4.225.11.198] + +2025-03-23T13:48:10.5567652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.112.26] + +2025-03-23T13:48:12.3532513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.6.4] + +2025-03-23T13:48:13.4114053+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 13.107.246.53, 13.107.246.74] + +2025-03-23T13:48:14.4640315+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.211.14.155, 92.122.166.34, 84.53.175.120] + +2025-03-23T13:48:21.1084231+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 220.0573 ms + +2025-03-23T13:48:29.0457255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.56.126, 52.109.4.6] + +2025-03-23T13:48:29.7479013+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:48:32.7219039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.224, 23.193.96.232, 23.59.252.187] + +2025-03-23T13:48:34.8411699+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.113.25] + +2025-03-23T13:48:39.5678251+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.135.2.0] + +2025-03-23T13:48:51.5900042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.31, 13.107.246.46] + +2025-03-23T13:48:52.1104093+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.113.22, 140.82.114.21] + +2025-03-23T13:48:53.5504553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.57, 13.107.246.64, 13.107.246.74] + +2025-03-23T13:48:58.6860946+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.56.126, 52.109.20.15] + +2025-03-23T13:48:59.1411452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.74, 13.107.246.73] + +2025-03-23T13:49:01.5118407+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.193.96.217, 23.211.14.155] + +2025-03-23T13:49:14.5125840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.66, 13.107.246.74, 13.107.253.38] + +2025-03-23T13:49:17.5406258+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:49:18.5575827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[20.125.63.4] + +2025-03-23T13:49:32.0220150+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:49:39.3121290+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[20.125.63.4, 13.74.129.92] + +2025-03-23T13:49:39.7802408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-23T13:49:40.2931438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 20.135.6.11, 20.135.6.9] + +2025-03-23T13:49:45.6366907+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-23T13:49:47.4306368+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.5] + +2025-03-23T13:50:02.3137661+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 13.107.246.66, 13.107.246.74] + +2025-03-23T13:50:05.2941597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6] + +2025-03-23T13:50:05.9485539+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-03-23T13:50:11.1498683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-03-23T13:50:15.2321639+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://alive.github.com/_sockets/u/106005903/ws responded 101 in 660626.6684 ms +System.OperationCanceledException: The operation was canceled. + + +2025-03-23T13:50:15.8302448+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://api.github.com/_private/browser/stats responded 200 in 607.583 ms + +2025-03-23T13:50:15.8586575+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 13.107.246.53, 13.107.246.60] + +2025-03-23T13:50:16.9561597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-03-23T13:50:17.0624395+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://collector.github.com/github/collect responded 204 in 1841.5818 ms + +2025-03-23T13:50:19.5379602+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:50:24.3792927+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:50:30.1660585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-03-23T13:50:50.8240904+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:50:52.2841323+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.70, 13.107.246.74, 13.107.246.31] + +2025-03-23T13:50:56.0366090+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:50:59.9573397+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.65, 13.107.246.74] + +2025-03-23T13:51:11.5083797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.114.3] + +2025-03-23T13:51:20.0729474+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.60, 13.107.246.74] + +2025-03-23T13:51:41.4791165+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:51:48.9786247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.5] + +2025-03-23T13:51:49.8039467+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.26, 140.82.113.25] + +2025-03-23T13:51:54.3767532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.70, 13.107.246.31, 13.107.246.74] + +2025-03-23T13:51:54.4415836+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.57, 13.107.246.74, 13.107.246.64] + +2025-03-23T13:52:10.7370239+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-03-23T13:52:18.1433731+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:52:18.3952046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.193.96.217, 23.211.14.171] + +2025-03-23T13:52:18.5514323+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:52:18.7665267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.224, 23.193.96.232, 23.59.252.201] + +2025-03-23T13:52:19.4049022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.164, 20.190.148.162] + +2025-03-23T13:52:20.0785505+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.164, 20.190.148.162, 20.190.144.162] + +2025-03-23T13:52:26.3049911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.18, 13.105.28.16, 20.135.6.11] + +2025-03-23T13:52:33.7394572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-03-23T13:52:47.9459898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-23T13:52:48.8173897+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:52:51.1745903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.11] + +2025-03-23T13:52:54.6913994+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T13:52:54.6990568+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T13:52:54.7003686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T13:52:54.7012083+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T13:52:54.7021893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T13:52:57.5020460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.160, 20.190.144.164] + +2025-03-23T13:53:00.0644265+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-03-23T13:53:04.4189763+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.121.4] + +2025-03-23T13:53:11.5659287+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.4] + +2025-03-23T13:53:13.2149927+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.73] + +2025-03-23T13:53:13.2185062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.70, 13.107.246.31] + +2025-03-23T13:53:13.2211753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.66] + +2025-03-23T13:53:13.2235296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.64] + +2025-03-23T13:53:13.6692538+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.73] + +2025-03-23T13:53:24.1016982+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:53:30.5381395+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:53:51.9809324+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.70, 13.107.246.46] + +2025-03-23T13:53:52.3907744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.112.22] + +2025-03-23T13:53:54.1207662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.38] + +2025-03-23T13:53:54.1878291+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.65] + +2025-03-23T13:53:54.7628870+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:54:00.0416339+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.57] + +2025-03-23T13:54:07.1318321+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.211.14.171, 23.56.4.41] + +2025-03-23T13:54:11.1516222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.62, 13.107.246.74, 13.107.246.53] + +2025-03-23T13:54:22.7266498+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:54:26.9405196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.110.4.42, 52.110.4.61] + +2025-03-23T13:54:40.7426063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.9] + +2025-03-23T13:54:53.6360645+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:54:55.0320258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 13.107.246.74, 13.107.246.70] + +2025-03-23T13:54:57.4459427+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.71] + +2025-03-23T13:55:02.7860542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.76, 13.107.246.73] + +2025-03-23T13:55:05.1595428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.211.14.171, 23.56.4.51] + +2025-03-23T13:55:06.9941292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.112.10] + +2025-03-23T13:55:09.8207331+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:55:27.2762154+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.62, 13.107.246.74, 13.107.246.53] + +2025-03-23T13:55:31.1472924+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.2] + +2025-03-23T13:55:45.0685811+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-23T13:55:46.8184388+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:55:46.9746536+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:55:52.4336673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 13.107.246.70, 13.107.246.74] + +2025-03-23T13:55:56.4731892+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.57] + +2025-03-23T13:56:18.5727208+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:56:50.5665508+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.26, 140.82.113.25] + +2025-03-23T13:56:52.2148812+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:56:57.0419393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.31, 13.107.246.77, 13.107.246.70] + +2025-03-23T13:56:57.5597328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.71] + +2025-03-23T13:56:57.8023600+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.31, 13.107.246.62, 13.107.246.74] + +2025-03-23T13:57:02.5713200+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.110.8.153, 52.110.8.141] + +2025-03-23T13:57:03.6026776+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.76] + +2025-03-23T13:57:20.6113240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.211.14.171, 23.211.14.155] + +2025-03-23T13:57:20.8896541+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.224, 23.193.96.232, 23.211.14.98] + +2025-03-23T13:57:21.3376349+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.138, 20.190.144.162, 20.190.144.163] + +2025-03-23T13:57:24.6178163+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.163, 20.190.144.160] + +2025-03-23T13:57:25.7413171+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T13:57:32.8633442+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.114.10] + +2025-03-23T13:57:36.0208724+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.153, 52.110.8.141, 52.110.8.135] + +2025-03-23T13:57:40.8480107+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:57:45.0373614+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-23T13:57:46.1718011+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-03-23T13:57:59.3349501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T13:58:00.7100259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T13:58:01.1767375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T13:58:01.3497324+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T13:58:01.3528548+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T13:58:02.1752118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-03-23T13:58:04.3405576+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:58:11.5726895+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:58:14.6864401+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.62, 13.107.246.53, 13.107.246.69] + +2025-03-23T13:58:14.9616477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.113.3] + +2025-03-23T13:58:14.9626146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.40, 13.107.246.71, 13.107.246.57] + +2025-03-23T13:58:15.0251118+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.31, 13.107.246.62, 13.107.246.53] + +2025-03-23T13:58:15.0278085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.76, 13.107.246.73] + +2025-03-23T13:58:35.9061626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.31, 13.107.246.62, 13.107.246.41] + +2025-03-23T13:58:42.8100089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.18, 20.135.6.11] + +2025-03-23T13:58:42.9460632+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:58:50.3175386+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 13.107.246.70, 13.107.246.53] + +2025-03-23T13:58:55.1489186+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.6, 140.82.121.6] + +2025-03-23T13:58:55.6544542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.112.22] + +2025-03-23T13:58:55.9993119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.57, 13.107.246.40, 13.107.246.71] + +2025-03-23T13:58:56.0024039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.40, 13.107.246.76] + +2025-03-23T13:58:58.5522097+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 13.107.246.70, 13.107.246.41] + +2025-03-23T13:59:03.8019225+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:59:06.8843991+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.57, 13.107.246.40] + +2025-03-23T13:59:13.2457114+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T13:59:16.1635094+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.53, 13.107.246.69, 13.107.246.74] + +2025-03-23T13:59:16.7923497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.31, 13.107.246.41, 13.107.246.53] + +2025-03-23T13:59:25.2757495+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.28.18] + +2025-03-23T13:59:27.4141179+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.110.4.31, 52.110.4.7] + +2025-03-23T13:59:54.7361950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.121.5] + +2025-03-23T13:59:55.0985088+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.70, 13.107.246.77, 13.107.246.41] + +2025-03-23T13:59:56.2627080+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:00:09.7750159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.114.10] + +2025-03-23T14:00:11.4240091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.31, 13.107.246.41, 13.107.246.66] + +2025-03-23T14:00:12.3953652+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:00:21.6796561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.57, 13.107.246.40, 13.107.246.60] + +2025-03-23T14:00:34.5375903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-03-23T14:00:48.7333212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.138, 20.190.144.162, 20.190.144.163] + +2025-03-23T14:00:52.3190387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.40, 13.107.246.60, 13.107.246.71] + +2025-03-23T14:00:54.0017023+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.77, 13.107.246.41, 13.107.246.53] + +2025-03-23T14:00:57.1406541+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.65, 13.107.246.57, 13.107.246.73] + +2025-03-23T14:00:58.4652081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.73, 13.107.246.40] + +2025-03-23T14:01:09.0069489+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.51, 13.107.246.73] + +2025-03-23T14:01:11.8091563+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:01:14.2274940+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.114.4] + +2025-03-23T14:01:29.2024711+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 13.107.246.53, 13.107.246.69] + +2025-03-23T14:01:44.2110311+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:01:53.7375922+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.25] + +2025-03-23T14:01:59.9949886+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:02:00.8657381+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:02:02.2735949+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:02:02.8844650+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:02:10.4809383+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:02:11.8767975+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T14:02:12.7966732+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 665.9716 ms + +2025-03-23T14:02:17.0651510+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 13.107.246.69, 13.107.246.74] + +2025-03-23T14:02:38.2755235+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:02:38.3379813+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.40, 13.107.246.60] + +2025-03-23T14:02:59.9169534+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:03:21.4525783+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:03:21.6915320+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.73, 13.107.246.66] + +2025-03-23T14:04:01.0116495+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:04:04.1297410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.44.112, 52.109.56.130, 52.109.112.174] + +2025-03-23T14:04:06.6789888+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:04:11.6953456+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.135, 52.110.8.165, 52.110.8.133] + +2025-03-23T14:04:33.4981649+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:04:34.7150919+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.110.4.18, 52.110.4.61] + +2025-03-23T14:04:40.0070338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.44.108, 52.109.56.126] + +2025-03-23T14:04:44.2645871+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:04:45.0994258+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:04:45.9806052+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:04:46.2503501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.193.96.217, 23.211.14.171] + +2025-03-23T14:04:56.4622848+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:04:56.9608392+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.232, 23.193.96.224, 23.211.14.98] + +2025-03-23T14:05:18.3865580+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:05:18.6711276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.164, 20.190.144.160] + +2025-03-23T14:05:26.7319570+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:05:27.0223040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.144.138, 20.190.144.161] + +2025-03-23T14:05:27.8348806+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 549.9261 ms + +2025-03-23T14:05:57.1125735+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:06:23.8253538+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:06:54.4630737+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:07:17.2685453+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:07:24.7180097+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:07:51.0018505+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:08:05.9813014+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:08:06.2190827+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.5, 140.82.121.6] + +2025-03-23T14:08:31.5695702+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:08:31.7103775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.110.154, 185.199.108.154] + +2025-03-23T14:08:53.3862881+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:08:54.5677762+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:08:55.6887085+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T14:09:05.6955876+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:09:05.6970988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T14:09:13.2445840+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T14:09:38.7753689+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:09:38.9473865+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T14:10:00.7067316+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:10:00.8970256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T14:10:24.7981208+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-23T14:10:26.2522692+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.121.9] + +2025-03-23T14:10:28.6123773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.74] + +2025-03-23T14:10:33.7608609+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.114.22] + +2025-03-23T14:10:45.8301180+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:10:46.0730423+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.67] + +2025-03-23T14:10:52.2694668+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4] + +2025-03-23T14:10:53.3835117+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.64, 13.107.246.60] + +2025-03-23T14:11:01.7780432+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.246.73] + +2025-03-23T14:11:06.9929452+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-23T14:11:07.9078898+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.44] + +2025-03-23T14:11:09.4076784+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-23T14:11:31.1096551+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:11:31.5439211+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.2] + +2025-03-23T14:11:36.8085847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.89.117] + +2025-03-23T14:11:39.1686084+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.211.14.171, 2.16.168.100, 23.211.14.155] + +2025-03-23T14:11:39.7464284+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:11:40.1720823+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.211.14.98, 23.48.5.7, 23.48.5.14] + +2025-03-23T14:11:49.0831441+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.160, 20.190.144.161, 20.190.144.166] + +2025-03-23T14:11:53.3747670+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.165, 20.190.144.161, 20.190.144.164] + +2025-03-23T14:11:54.8649625+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:12:14.9152434+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:12:14.9177201+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74] + +2025-03-23T14:12:16.2987310+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:12:16.3018761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166] + +2025-03-23T14:12:17.3153641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.121.5] + +2025-03-23T14:12:17.8395428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.73] + +2025-03-23T14:12:20.0777331+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-23T14:12:21.5837169+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.121.10] + +2025-03-23T14:12:21.5881438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.6.4] + +2025-03-23T14:12:25.0517535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.21] + +2025-03-23T14:12:26.8692768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.60, 13.107.253.70] + +2025-03-23T14:12:27.5633618+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.25, 140.82.114.25] + +2025-03-23T14:12:28.5341961+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.28.47] + +2025-03-23T14:12:28.8553804+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.44] + +2025-03-23T14:12:29.3204806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.112.174] + +2025-03-23T14:12:33.1025654+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:12:33.1065393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.211.14.98, 23.211.14.145, 23.41.4.198] + +2025-03-23T14:12:33.5588398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.145, 40.126.35.21, 40.126.35.85] + +2025-03-23T14:12:35.3056388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44] + +2025-03-23T14:12:36.2346518+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.22, 140.82.112.21] + +2025-03-23T14:12:39.5213915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.44] + +2025-03-23T14:12:51.1761931+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:12:53.0415190+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3] + +2025-03-23T14:12:53.3397910+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-23T14:13:03.7956599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.77] + +2025-03-23T14:13:05.3054974+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.211.14.98, 23.211.14.145, 2.16.168.100] + +2025-03-23T14:13:09.9855853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.60, 13.107.246.44] + +2025-03-23T14:13:22.9293078+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:13:28.9429948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-03-23T14:13:32.9727270+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.110.4.128, 52.110.4.131] + +2025-03-23T14:13:34.4513480+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.108.154] + +2025-03-23T14:13:37.0334385+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.22, 140.82.114.22] + +2025-03-23T14:13:47.4923833+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:13:58.3847526+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.112.22] + +2025-03-23T14:13:59.4633483+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:14:14.6706654+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.25] + +2025-03-23T14:14:17.8392227+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:14:17.8740819+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T14:14:18.5862469+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 688.9217 ms + +2025-03-23T14:14:40.4409872+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@8.8.8.8:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:14:46.1181206+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.2, 20.135.6.7] + +2025-03-23T14:14:46.4794994+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:14:48.8108330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.253.38] + +2025-03-23T14:14:54.3888712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.9, 140.82.121.9] + +2025-03-23T14:14:55.1100463+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.60, 13.107.246.44] + +2025-03-23T14:14:55.7601068+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.66, 13.107.246.74, 13.107.246.73] + +2025-03-23T14:14:57.1701823+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:14:59.1775493+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.161, 20.190.144.166, 20.190.148.167] + +2025-03-23T14:15:17.9688706+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:15:24.1641108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.21, 40.126.35.85, 40.126.35.87] + +2025-03-23T14:15:29.5605915+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.68.129, 52.109.16.112] + +2025-03-23T14:15:31.2325034+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:15:32.8413817+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.77, 13.107.246.74] + +2025-03-23T14:15:33.2767388+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.68.129, 52.109.20.39] + +2025-03-23T14:15:35.3172760+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.112.21] + +2025-03-23T14:15:51.4324732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.113.25] + +2025-03-23T14:15:54.3554524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.77] + +2025-03-23T14:15:54.6568129+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.74] + +2025-03-23T14:16:11.6220854+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:16:23.4389696+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:16:39.8603111+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 20.135.6.2] + +2025-03-23T14:16:40.1072188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.211.14.155, 2.16.168.100, 2.16.168.102] + +2025-03-23T14:16:43.2108477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.211.14.145, 23.211.14.98, 2.16.168.100] + +2025-03-23T14:17:06.3214104+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.144.139, 20.190.148.163] + +2025-03-23T14:17:09.9747540+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.19, 40.126.35.21, 40.126.35.144] + +2025-03-23T14:17:23.0731202+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.3, 140.82.121.4] + +2025-03-23T14:17:34.0164479+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.41, 13.107.246.44] + +2025-03-23T14:17:35.8005908+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.74, 13.107.246.60] + +2025-03-23T14:17:36.1287455+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.60] + +2025-03-23T14:17:40.7045564+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-23T14:17:44.0494916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.217, 23.193.96.227, 23.211.14.155] + +2025-03-23T14:18:01.7468995+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:18:05.8160354+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:18:20.6673081+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.114.6] + +2025-03-23T14:18:29.2806058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.20.39, 52.109.16.112] + +2025-03-23T14:18:32.7892384+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:18:33.8033061+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-23T14:18:34.9522127+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.108.154] + +2025-03-23T14:18:35.9469886+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-23T14:18:36.2099716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.110.4.174] + +2025-03-23T14:18:37.9059747+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.110.154] + +2025-03-23T14:18:38.4097058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.113.21, 140.82.112.22] + +2025-03-23T14:18:38.6667292+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.57, 13.107.246.74] + +2025-03-23T14:18:57.5789379+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:19:00.3045770+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-03-23T14:19:00.3090016+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-03-23T14:19:00.3117616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-03-23T14:19:00.3141406+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-03-23T14:19:00.3163725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.111.133, 185.199.110.133] + +2025-03-23T14:19:03.6566166+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:19:17.8313387+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 4.237.22.34, 140.82.121.6] + +2025-03-23T14:19:24.4169705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.121.3] + +2025-03-23T14:19:34.6553412+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.57, 13.107.246.74, 13.107.246.41] + +2025-03-23T14:19:37.2140753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.51, 13.107.246.76] + +2025-03-23T14:19:39.7194759+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.66, 13.107.246.45] + +2025-03-23T14:19:40.3813751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.13, 52.109.124.4] + +2025-03-23T14:19:46.9091788+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.9] + +2025-03-23T14:19:49.9118802+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:19:55.8578129+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:19:56.2862877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.35, 20.190.141.36, 20.190.141.37] + +2025-03-23T14:19:57.3558188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.66] + +2025-03-23T14:20:05.4796731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-03-23T14:20:05.5446434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.65, 13.107.246.74, 13.107.246.60] + +2025-03-23T14:20:18.8080027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.113.21] + +2025-03-23T14:20:27.1200374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.20.39, 52.109.68.129] + +2025-03-23T14:20:28.7012057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-03-23T14:20:28.8662177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.57, 13.107.246.74] + +2025-03-23T14:20:29.7177551+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-03-23T14:20:29.7784443+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.57] + +2025-03-23T14:20:29.7810697+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.45] + +2025-03-23T14:20:30.7878559+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.60] + +2025-03-23T14:20:30.7916944+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.51] + +2025-03-23T14:20:30.7942876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.57] + +2025-03-23T14:20:36.7264635+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.114.22] + +2025-03-23T14:20:38.3025928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.65, 13.107.246.44] + +2025-03-23T14:20:56.0663041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.121.3] + +2025-03-23T14:20:56.9221155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.114.26] + +2025-03-23T14:20:57.7947544+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.57, 13.107.246.41] + +2025-03-23T14:20:58.7698939+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.51, 13.107.246.76] + +2025-03-23T14:20:58.9989196+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.45, 13.107.246.66] + +2025-03-23T14:21:13.4326254+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.56.130] + +2025-03-23T14:21:13.5770990+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:21:16.5032018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.76, 13.107.246.51] + +2025-03-23T14:21:19.7514725+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:21:37.6924712+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.38, 13.107.246.74, 13.107.246.57] + +2025-03-23T14:21:38.4066513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.110.8.157, 52.110.8.161, 52.110.8.166] + +2025-03-23T14:21:38.5757763+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.9, 20.135.6.2] + +2025-03-23T14:21:40.4391042+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.10] + +2025-03-23T14:21:42.9298184+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.217, 23.193.96.227, 23.211.14.171] + +2025-03-23T14:21:48.0377414+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.211.14.98, 2.16.168.100, 2.16.168.125] + +2025-03-23T14:21:51.8722279+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:21:56.3747840+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:22:09.3288728+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 20.190.144.166, 20.190.148.163] + +2025-03-23T14:22:12.7503526+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.110.8.164, 52.110.8.165] + +2025-03-23T14:22:34.9149898+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:22:56.5468564+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:23:31.8166853+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:23:53.7220288+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:23:54.8553522+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:23:55.1329374+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.135.6.9, 13.105.74.50] + +2025-03-23T14:24:16.5415398+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:24:17.1316182+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:24:28.7254929+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:24:29.5732488+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:24:33.5309964+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:24:33.7640565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.211.14.171, 23.211.14.155, 2.16.168.100] + +2025-03-23T14:24:34.5066313+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:24:40.7839633+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:24:45.8096252+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:25:07.5636266+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:25:13.7442140+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:25:35.4247722+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:25:41.8872580+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:26:03.6547257+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:26:03.9329465+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 13.74.129.92] + +2025-03-23T14:26:11.4111859+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:26:18.6420499+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:26:19.7828398+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.109.154, 185.199.111.154] + +2025-03-23T14:26:21.0371114+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:26:23.1945745+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:26:23.4241159+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.114.9] + +2025-03-23T14:26:24.4831284+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-03-23T14:26:24.4847518+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.github.com->127.0.0.1 + +2025-03-23T14:26:24.9706880+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.github.com/repos/Fndroid/clash_for_windows_pkg/releases/latest responded 404 in 462.0491 ms + +2025-03-23T14:26:44.8360808+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:27:06.5821680+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:27:08.3529932+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:27:29.8789123+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:28:00.1966542+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edgeassetservice.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:28:00.2633363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.65, 13.107.246.69, 13.107.246.44] + +2025-03-23T14:28:02.6346437+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:28:02.9135057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.114.3] + +2025-03-23T14:28:24.6766163+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:28:24.9335984+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-03-23T14:28:25.9467548+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +collector.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:28:26.1835200+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.113.22] + +2025-03-23T14:28:28.1971183+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +alive.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:28:28.4516854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-03-23T14:28:50.1862596+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:28:50.4398123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.112.5] + +2025-03-23T14:28:55.4046134+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.51, 13.107.246.76, 13.107.246.53] + +2025-03-23T14:28:57.6306825+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:28:57.6976899+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.57, 13.107.246.67] + +2025-03-23T14:28:59.5753638+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +edge-consumer-static.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:28:59.5797212+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.57, 13.107.246.69, 13.107.246.73] + +2025-03-23T14:29:00.3309273+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.69, 13.107.246.73, 13.107.246.45] + +2025-03-23T14:29:04.1404603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.44.112, 52.109.56.130, 52.109.112.174] + +2025-03-23T14:29:05.3671257+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.2, 52.109.44.108] + +2025-03-23T14:29:06.1389067+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.141, 52.110.8.147, 52.110.8.156] + +2025-03-23T14:29:14.1399149+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.9, 13.105.74.49] + +2025-03-23T14:29:14.6949897+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:29:14.9397039+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.211.14.155, 2.16.168.100, 2.16.168.102] + +2025-03-23T14:29:16.5098979+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:29:16.7540155+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.211.14.145, 23.211.14.98, 2.16.168.100] + +2025-03-23T14:29:22.5298296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.32, 20.190.141.39] + +2025-03-23T14:29:28.1673586+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.162, 20.190.144.161] + +2025-03-23T14:29:49.2132733+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.9] + +2025-03-23T14:29:56.7715743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.67, 13.107.246.44] + +2025-03-23T14:30:31.7208866+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +devtools.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:30:31.7256289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.76, 13.107.246.53, 13.107.246.73] + +2025-03-23T14:30:43.1537240+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.57, 13.107.246.67, 13.107.246.73] + +2025-03-23T14:30:46.4263740+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.113.21] + +2025-03-23T14:30:53.0750280+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:30:57.3975936+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.161, 20.190.148.163] + +2025-03-23T14:31:04.8607726+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.69, 13.107.246.73, 13.107.246.74] + +2025-03-23T14:31:05.2926460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.69, 13.107.246.67, 13.107.246.73] + +2025-03-23T14:31:05.8948631+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.113.6] + +2025-03-23T14:31:10.9632669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.73, 13.107.246.44] + +2025-03-23T14:31:21.2495050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.71, 13.107.246.69, 13.107.246.73] + +2025-03-23T14:31:22.7913942+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-23T14:31:22.9579722+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.26] + +2025-03-23T14:31:24.6216415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.9, 40.90.130.192] + +2025-03-23T14:31:27.0321420+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:31:39.1179500+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-23T14:31:40.9929040+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-03-23T14:31:46.0191003+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-23T14:31:46.0231426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-23T14:31:46.0256677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-23T14:31:46.0281488+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-23T14:31:46.0304695+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.110.133] + +2025-03-23T14:31:46.8059190+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.114.9] + +2025-03-23T14:31:47.6556672+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.67, 13.107.246.73] + +2025-03-23T14:31:48.8285015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.71, 13.107.246.73, 13.107.246.44] + +2025-03-23T14:31:48.8320550+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.3, 140.82.121.4] + +2025-03-23T14:31:49.1684741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.44.108, 52.109.56.126, 52.109.68.2] + +2025-03-23T14:31:49.5307861+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.112.174] + +2025-03-23T14:31:49.9856998+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.15, 20.135.6.9, 13.105.74.49] + +2025-03-23T14:31:50.3838047+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.141, 52.110.8.153, 52.110.8.163] + +2025-03-23T14:31:50.6689995+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:31:51.9669478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.133, 23.211.14.155, 2.16.168.100] + +2025-03-23T14:31:52.2580639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.189, 23.208.31.169, 23.211.14.145] + +2025-03-23T14:31:58.2331893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.121.9] + +2025-03-23T14:31:59.9538820+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:32:01.2404901+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:32:07.2568409+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.69, 13.107.246.73] + +2025-03-23T14:32:11.0787352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.57, 13.107.246.53, 13.107.246.73] + +2025-03-23T14:32:12.0977178+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.153, 52.110.8.163, 52.110.8.133] + +2025-03-23T14:32:21.3613627+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:32:36.4473677+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.73, 13.107.246.74] + +2025-03-23T14:32:38.3303223+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn-prod.azureedge.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:32:38.3328271+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.121.4, 140.82.113.4] + +2025-03-23T14:32:38.8505731+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.67, 13.107.246.73, 13.107.246.74] + +2025-03-23T14:32:38.8524364+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.112.25] + +2025-03-23T14:32:41.0346578+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.136, 20.190.144.162, 20.190.148.165] + +2025-03-23T14:32:42.3640950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.121.6, 140.82.112.5] + +2025-03-23T14:32:46.7878426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-23T14:32:48.4414657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.26, 140.82.113.25] + +2025-03-23T14:32:51.7458917+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:32:53.0616259+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.112.21, 140.82.113.22] + +2025-03-23T14:33:01.5054223+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:33:01.7980602+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:33:03.4535716+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.74, 13.107.246.73] + +2025-03-23T14:33:03.6736391+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.73] + +2025-03-23T14:33:03.7383725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.71, 13.107.246.74, 13.107.246.73] + +2025-03-23T14:33:03.7402475+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.57, 13.107.246.74, 13.107.246.53] + +2025-03-23T14:33:03.7421612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.67] + +2025-03-23T14:33:04.7878296+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.148.162, 20.190.144.161] + +2025-03-23T14:33:06.3919603+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 140.82.121.6] + +2025-03-23T14:33:14.8087447+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.61, 13.107.246.57, 13.107.246.74] + +2025-03-23T14:33:21.1973806+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.51, 13.107.246.71, 13.107.246.74] + +2025-03-23T14:33:23.4049983+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:33:26.4183914+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.112.21] + +2025-03-23T14:33:28.2092502+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.37, 20.190.141.32, 20.190.141.39] + +2025-03-23T14:33:29.4597664+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.114.26] + +2025-03-23T14:38:03.5070233+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + +2025-03-23T14:38:06.6406718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.46] + +2025-03-23T14:38:08.1740532+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.71] + +2025-03-23T14:38:12.9247365+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.76, 13.107.246.61] + +2025-03-23T14:38:17.9799214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.20.39] + +2025-03-23T14:38:19.6392135+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.110.8.153, 52.110.8.159, 52.110.8.166] + +2025-03-23T14:38:20.5011669+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-23T14:38:26.5731639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.15, 20.135.6.7] + +2025-03-23T14:38:27.3056594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.153, 52.110.8.159, 52.108.9.12] + +2025-03-23T14:38:27.8353450+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:38:28.1266588+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.194, 23.208.31.133, 23.211.14.155] + +2025-03-23T14:38:28.8996465+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:38:29.3101074+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.211.14.145, 23.208.31.189, 23.211.14.98] + +2025-03-23T14:38:33.2864311+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.166, 20.190.144.136, 20.190.144.138] + +2025-03-23T14:38:34.2569425+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.141.36, 20.190.141.37, 20.190.141.33] + +2025-03-23T14:38:53.6672773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92] + +2025-03-23T14:39:03.0192783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-23T14:39:03.7089808+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-23T14:39:04.4833719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.66, 13.107.246.35] + +2025-03-23T14:39:09.1695251+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-23T14:39:09.8888597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-23T14:39:14.6001152+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.109.133, 185.199.111.133] + +2025-03-23T14:39:15.5593165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.113.4] + +2025-03-23T14:39:24.8832638+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.110.154, 185.199.109.154, 185.199.111.154] + +2025-03-23T14:39:35.5034835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.71] + +2025-03-23T14:39:41.0799140+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.25, 140.82.113.26] + +2025-03-23T14:39:42.4883382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.114.22, 140.82.114.21] + +2025-03-23T14:39:43.3187897+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.76, 13.107.246.64] + +2025-03-23T14:39:44.4972730+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.9, 20.135.6.11, 20.135.6.7] + +2025-03-23T14:39:45.8982136+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:40:06.0858928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.76] + +2025-03-23T14:40:07.5846029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.112.21, 140.82.114.22] + +2025-03-23T14:40:16.7991641+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.76, 13.107.246.53] + +2025-03-23T14:40:47.0787837+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:41:09.3193264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-03-23T14:41:10.2004593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.76, 13.107.246.46] + +2025-03-23T14:41:10.8002916+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.7, 13.105.74.49] + +2025-03-23T14:41:11.7867557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.160, 20.190.144.166] + +2025-03-23T14:41:17.3157177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.113.3, 140.82.112.4] + +2025-03-23T14:41:18.5911435+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:41:26.1375392+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.74.49, 40.90.133.99] + +2025-03-23T14:41:26.1403812+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.194, 23.208.31.133, 184.28.81.201] + +2025-03-23T14:41:27.6156383+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.189, 2.16.168.100, 2.16.168.125] + +2025-03-23T14:41:31.8698505+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:41:41.2185876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.10] + +2025-03-23T14:41:42.3290158+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.44.108] + +2025-03-23T14:41:42.9717740+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.35, 13.107.246.67] + +2025-03-23T14:41:47.7787064+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.35, 13.107.246.71] + +2025-03-23T14:41:49.6195599+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.2] + +2025-03-23T14:41:49.9302508+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:41:52.2368525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.1, 20.135.6.11, 13.105.74.49] + +2025-03-23T14:41:52.7504222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.160, 20.190.144.136] + +2025-03-23T14:42:01.0251926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.116.5, 20.233.83.146] + +2025-03-23T14:42:01.3020123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-23T14:42:06.4739802+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.164, 20.190.144.160, 40.126.35.87] + +2025-03-23T14:42:07.6038903+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:42:17.0545858+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.76, 13.107.246.61] + +2025-03-23T14:42:17.4990145+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:42:45.8302713+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-23T14:42:49.3046174+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:42:52.5455326+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.66, 20.190.166.67, 20.190.166.132] + +2025-03-23T14:42:56.1323744+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +mrodevicemgr.officeapps.live.com->127.0.0.1 + +2025-03-23T14:42:56.6984746+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.208.31.189, 184.28.98.76, 184.28.98.90] + +2025-03-23T14:42:56.9652626+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://mrodevicemgr.officeapps.live.com/mrodevicemgrsvc/api/v1/C2RTargetAudienceData responded 200 in 490.8548 ms + +2025-03-23T14:42:57.2334414+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://mrodevicemgr.officeapps.live.com/mrodevicemgrsvc/api/v2/C2RReleaseData/492350f6-3a01-4f97-b9c0-c7c6ddf67d60 responded 200 in 99.4547 ms + +2025-03-23T14:42:59.1790915+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T14:42:59.1953522+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T14:43:13.7639546+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.35, 13.107.246.73, 13.107.246.71] + +2025-03-23T14:43:13.8299027+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 13.107.246.51, 13.107.246.76] + +2025-03-23T14:43:14.1786014+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.46, 13.107.246.76, 13.107.246.73] + +2025-03-23T14:43:14.4141327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.66, 13.107.246.35, 13.107.246.45] + +2025-03-23T14:43:14.7252333+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.61, 13.107.246.69, 13.107.246.76] + +2025-03-23T14:43:15.1899294+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-03-23T14:43:15.4928987+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T14:43:16.0956074+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 579.9507 ms + +2025-03-23T14:43:19.6215732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.61, 13.107.246.53, 13.107.246.69] + +2025-03-23T14:43:20.5572888+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:43:21.0550976+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.110.8.128, 52.110.8.166, 52.110.8.147] + +2025-03-23T14:43:29.9334428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.133, 184.28.81.201, 184.28.81.207] + +2025-03-23T14:43:32.2035880+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 13.107.246.76, 13.107.246.74] + +2025-03-23T14:43:32.2045402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.76, 13.107.246.73, 13.107.246.74] + +2025-03-23T14:43:32.2052665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 13.107.246.45, 13.107.246.73] + +2025-03-23T14:43:32.2059979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.69, 13.107.246.76] + +2025-03-23T14:43:32.5031089+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.163, 20.190.144.161] + +2025-03-23T14:43:33.8456019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.5] + +2025-03-23T14:43:39.4315348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.161, 20.190.144.166] + +2025-03-23T14:43:41.9557214+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.116.10] + +2025-03-23T14:43:44.9578382+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:43:47.4890912+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.35, 13.107.246.60, 13.107.246.73] + +2025-03-23T14:43:49.8716253+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-23T14:43:53.3171426+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-23T14:44:04.2224542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133] + +2025-03-23T14:44:04.3426553+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T14:44:04.3465743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T14:44:04.3488179+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T14:44:04.9189753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.121.6] + +2025-03-23T14:44:05.3288794+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.45, 13.107.246.35, 13.107.246.73] + +2025-03-23T14:44:05.8358775+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:44:08.1183874+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T14:44:08.1228123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T14:44:15.5609595+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.224, 23.193.96.232, 23.208.31.189] + +2025-03-23T14:44:22.1360145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.53, 13.107.246.76, 13.107.246.77] + +2025-03-23T14:44:26.2983314+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.109.154] + +2025-03-23T14:44:30.7673188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.112.5] + +2025-03-23T14:44:36.0230170+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:44:38.3574710+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.217, 23.193.96.227, 23.208.31.133] + +2025-03-23T14:44:41.4569681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.26, 140.82.113.25] + +2025-03-23T14:44:48.9400643+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.112.22] + +2025-03-23T14:44:49.8739651+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 13.105.28.1, 13.105.74.49] + +2025-03-23T14:45:00.2034219+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:45:09.5624032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 13.107.246.45, 13.107.246.73] + +2025-03-23T14:45:09.7032496+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:45:24.3004816+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.53, 13.107.246.40, 13.107.246.69] + +2025-03-23T14:45:29.6497931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-23T14:45:31.0999313+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:45:48.3398157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.35, 13.107.246.60, 13.107.246.76] + +2025-03-23T14:45:59.3468714+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T14:45:59.3575204+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T14:46:19.3508147+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.76, 13.107.246.73] + +2025-03-23T14:46:19.4137046+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.53, 13.107.246.40] + +2025-03-23T14:46:27.4780789+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.11, 13.105.28.1] + +2025-03-23T14:46:27.6174135+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:46:41.8332043+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.116.9] + +2025-03-23T14:46:44.1774922+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.2] + +2025-03-23T14:46:58.2016769+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:47:19.9689366+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.77, 13.107.246.53, 13.107.246.76] + +2025-03-23T14:47:20.2580113+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.35, 13.107.246.45] + +2025-03-23T14:47:21.9615935+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.11, 20.135.6.7] + +2025-03-23T14:47:29.5016357+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:47:34.0780091+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:47:50.7265639+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.35, 13.107.246.70, 13.107.246.60] + +2025-03-23T14:47:53.0372182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.131, 20.190.166.132, 20.190.166.66] + +2025-03-23T14:47:56.3609252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-23T14:48:04.9752716+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:48:15.9925911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.73, 13.107.246.35] + +2025-03-23T14:48:16.0651844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.66, 13.107.246.73, 13.107.246.44] + +2025-03-23T14:48:16.1272267+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.71, 13.107.246.76] + +2025-03-23T14:48:16.4303733+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.69, 13.107.246.53] + +2025-03-23T14:48:26.5864636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.110.4.176, 52.110.4.136] + +2025-03-23T14:48:29.7632960+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:48:34.2031070+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.166, 20.190.144.138, 20.190.148.163] + +2025-03-23T14:48:37.6895824+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:48:43.2903565+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.10] + +2025-03-23T14:48:50.6337616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-23T14:49:00.0095580+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T14:49:00.0109680+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T14:49:00.0117311+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T14:49:00.0124862+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T14:49:00.0131750+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T14:49:00.7160296+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:49:07.2462671+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T14:49:07.2501373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T14:49:07.2527904+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T14:49:07.2550050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T14:49:07.2571119+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T14:49:08.1788153+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.73, 13.107.246.70] + +2025-03-23T14:49:17.3014255+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.232, 23.193.96.224, 23.208.31.189] + +2025-03-23T14:49:18.5395018+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.3] + +2025-03-23T14:49:19.9132039+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T14:49:19.9286834+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T14:49:21.2000098+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.113.3] + +2025-03-23T14:49:21.8669928+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.110.4.176] + +2025-03-23T14:49:29.5869224+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:49:31.6632461+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.73, 13.107.246.69] + +2025-03-23T14:49:40.2556180+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.193.96.217, 23.208.31.133] + +2025-03-23T14:49:42.9450616+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.114.25, 140.82.112.26] + +2025-03-23T14:49:49.6107754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.112.21, 140.82.114.22, 140.82.113.21] + +2025-03-23T14:49:54.5917994+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.143.38.0, 20.135.6.7, 13.105.28.1] + +2025-03-23T14:49:54.7433383+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:50:11.7268256+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.113.21, 140.82.112.22] + +2025-03-23T14:50:12.4064297+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.73, 13.107.246.45] + +2025-03-23T14:50:14.4592495+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:50:22.3660590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.113.6] + +2025-03-23T14:50:28.2787775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.66, 13.107.246.40, 13.107.246.73] + +2025-03-23T14:50:47.3602652+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.109.89.117] + +2025-03-23T14:50:47.8119705+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.144.166, 20.190.144.138] + +2025-03-23T14:50:59.6826092+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.112.26, 140.82.114.25] + +2025-03-23T14:51:07.4297430+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:51:11.3438066+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:51:21.5628050+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 20.26.156.215] + +2025-03-23T14:51:22.0783090+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.76] + +2025-03-23T14:51:23.1140451+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.53, 13.107.246.71] + +2025-03-23T14:51:27.0252753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.77, 13.107.246.73, 13.107.246.53] + +2025-03-23T14:51:28.8818070+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 13.105.28.1, 20.143.38.0] + +2025-03-23T14:51:36.5941767+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.76, 13.107.246.70] + +2025-03-23T14:51:41.6356115+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:51:42.2237160+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:51:46.9195191+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.4] + +2025-03-23T14:51:50.7635179+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.2] + +2025-03-23T14:51:54.9824188+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 20.143.38.0, 20.135.6.9] + +2025-03-23T14:52:02.7541849+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.73, 13.107.246.70] + +2025-03-23T14:52:02.7558607+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.67] + +2025-03-23T14:52:08.0381209+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:52:14.7949809+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.71, 13.107.246.76] + +2025-03-23T14:52:15.8388545+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.7, 20.143.38.0] + +2025-03-23T14:52:23.5875402+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 20.233.83.146, 140.82.113.5] + +2025-03-23T14:52:24.6794831+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:52:28.5716933+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.40, 13.107.246.73] + +2025-03-23T14:52:28.8315686+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.44, 13.107.246.53] + +2025-03-23T14:52:28.8917362+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.62, 13.107.246.73, 13.107.246.53] + +2025-03-23T14:52:36.3682680+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:52:52.6321054+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.77, 13.107.246.70, 13.107.246.40] + +2025-03-23T14:52:52.6371889+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.70, 13.107.246.73, 13.107.246.71] + +2025-03-23T14:52:59.2960216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.132, 20.190.166.131, 20.190.166.66] + +2025-03-23T14:53:02.1265817+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:53:09.5500599+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:53:16.2365086+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.77, 13.107.246.73] + +2025-03-23T14:53:16.2403687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 20.26.156.215] + +2025-03-23T14:53:16.5743513+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.62, 13.107.246.73] + +2025-03-23T14:53:16.6454489+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.53] + +2025-03-23T14:53:16.7196062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.70] + +2025-03-23T14:53:16.7239620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.77, 13.107.246.73] + +2025-03-23T14:53:32.4549732+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:53:34.1809318+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-03-23T14:53:34.4983148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.2, 52.109.44.108, 52.109.56.126] + +2025-03-23T14:53:34.7614057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.232, 23.193.96.224, 23.208.31.169] + +2025-03-23T14:53:35.1502860+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.166, 20.190.144.137] + +2025-03-23T14:53:43.9690719+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.167, 20.190.148.163, 20.190.144.166] + +2025-03-23T14:53:49.0999657+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.205.243.166, 140.82.116.3] + +2025-03-23T14:53:51.0840456+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:53:57.2516266+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-23T14:53:58.0743380+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-03-23T14:54:02.2808577+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T14:54:02.2845112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T14:54:02.2871877+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T14:54:02.2895549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T14:54:02.2920020+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T14:54:03.9237175+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:54:06.5542032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-23T14:54:06.6606108+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T14:54:06.6640005+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T14:54:06.6663896+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T14:54:06.6687298+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T14:54:06.6709160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.110.133, 185.199.111.133, 185.199.108.133] + +2025-03-23T14:54:13.0711446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.70] + +2025-03-23T14:54:17.2016854+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.27.177.113, 140.82.116.3] + +2025-03-23T14:54:17.7614032+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.224, 23.193.96.232, 23.208.31.169] + +2025-03-23T14:54:32.5008284+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:54:38.8413843+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.110.154] + +2025-03-23T14:54:39.4774718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-23T14:54:42.9172917+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.9, 20.135.6.7] + +2025-03-23T14:54:44.3203542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.217, 23.193.96.227, 23.208.31.133] + +2025-03-23T14:54:46.2544978+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.9, 140.82.121.10] + +2025-03-23T14:54:46.9338189+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.26] + +2025-03-23T14:54:50.1165582+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.112.22] + +2025-03-23T14:54:50.9272041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.132, 20.190.166.66, 20.190.166.67] + +2025-03-23T14:55:05.6711318+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:55:07.1214955+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:55:24.2457975+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-03-23T14:55:32.4406146+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.110.4.134] + +2025-03-23T14:55:42.9050982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.9] + +2025-03-23T14:56:01.6036546+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:56:21.9605594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.114.9, 140.82.121.9] + +2025-03-23T14:56:33.0762058+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.70] + +2025-03-23T14:56:33.6486938+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:56:39.1362983+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:56:55.9447144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.28.1] + +2025-03-23T14:57:03.6607294+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.52.0, 52.109.52.2, 52.109.44.108] + +2025-03-23T14:57:13.5129641+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:57:23.7560062+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.53] + +2025-03-23T14:57:31.5952055+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.121.6] + +2025-03-23T14:57:32.1135516+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.60] + +2025-03-23T14:57:36.6256670+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.110.17.35] + +2025-03-23T14:57:43.2915420+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 52.109.56.129] + +2025-03-23T14:57:44.1396683+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:57:51.7476157+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.0, 52.109.52.2] + +2025-03-23T14:57:53.1104462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.51] + +2025-03-23T14:57:53.1152487+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.71] + +2025-03-23T14:57:53.1179519+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.53] + +2025-03-23T14:57:56.4608350+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:57:56.5786227+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.132, 20.190.166.67, 20.190.166.68] + +2025-03-23T14:58:05.1301954+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.132, 20.190.166.68, 20.190.166.67] + +2025-03-23T14:58:18.4000544+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +roaming.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:58:39.7590709+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +xpaywalletcdn.azureedge.net@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:58:39.8316192+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.70, 13.107.246.67, 13.107.246.74] + +2025-03-23T14:58:44.2299800+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +ocws.officeapps.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:59:05.8008534+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +odc.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:59:06.1231876+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:59:19.9637387+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:59:41.6939433+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +storage.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T14:59:42.4331030+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T14:59:43.9276082+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T14:59:48.9368782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.232, 23.208.31.169, 23.67.33.202] + +2025-03-23T15:00:14.4338345+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +mrodevicemgr.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T15:00:15.6702245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.124.190, 52.109.120.46, 52.110.7.199] + +2025-03-23T15:00:37.3612412+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.microsoftonline.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T15:02:26.5105575+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:02:26.5259355+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:02:44.6586363+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +login.live.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:02:45.1046744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.166, 20.190.144.139] + +2025-03-23T15:02:46.5161018+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:03:15.4125763+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T15:03:27.8094182+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.25.14, 104.17.24.14] + +2025-03-23T15:03:34.8297390+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154, 185.199.111.154] + +2025-03-23T15:03:40.7222341+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T15:03:42.8229112+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.121.9] + +2025-03-23T15:03:43.6757161+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T15:03:48.5653197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T15:03:53.4147417+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T15:03:54.2633903+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.108.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T15:04:01.2860128+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.114.6] + +2025-03-23T15:04:02.3895313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.21, 140.82.113.22, 140.82.112.21] + +2025-03-23T15:04:03.3066592+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.44] + +2025-03-23T15:04:05.3544446+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.73] + +2025-03-23T15:04:06.3784725+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.66] + +2025-03-23T15:04:08.2242382+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.246.73] + +2025-03-23T15:04:14.0327131+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.27.177.113, 20.233.83.145, 140.82.113.3] + +2025-03-23T15:04:14.9312983+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.246.73] + +2025-03-23T15:04:18.2888821+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.4, 52.109.52.0] + +2025-03-23T15:04:28.7119249+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 13.105.74.50] + +2025-03-23T15:04:30.9100272+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.110.7.199] + +2025-03-23T15:04:31.5068069+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T15:04:31.5346604+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T15:04:31.5357397+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-03-23T15:04:32.0765663+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 213.7363 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-23T15:04:32.1250148+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 293.4135 ms + +2025-03-23T15:04:32.3075797+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.166.132, 20.190.166.67, 20.190.166.68] + +2025-03-23T15:04:32.3551397+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T15:04:32.6856972+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 611.5559 ms + +2025-03-23T15:04:32.7372495+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T15:04:32.9564022+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.166, 20.190.148.164] + +2025-03-23T15:04:32.9564318+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 195.0962 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-23T15:04:33.3084645+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 351.5008 ms + +2025-03-23T15:04:35.6680585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.151, 52.110.8.139, 52.110.8.128] + +2025-03-23T15:04:35.8969979+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.22.207.36] + +2025-03-23T15:04:41.5852006+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:04:47.6817689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.232, 23.67.33.202, 23.67.33.198] + +2025-03-23T15:05:05.9878789+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T15:05:06.2146983+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 201.1009 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-23T15:05:06.2953007+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 294.912 ms + +2025-03-23T15:05:06.6102836+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T15:05:06.8721108+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 656.9724 ms + +2025-03-23T15:05:07.1079975+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 198.8813 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T15:05:08.3092693+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 1202.3818 ms + +2025-03-23T15:05:12.0130121+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:05:12.0161145+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.144.139, 20.190.144.163] + +2025-03-23T15:05:16.3722313+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.110.7.146] + +2025-03-23T15:05:17.9504911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.110.7.136] + +2025-03-23T15:05:57.0457732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.121.10, 140.82.112.9] + +2025-03-23T15:05:57.0466723+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.233.83.145, 140.82.113.3, 140.82.121.3] + +2025-03-23T15:06:08.0798046+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:06:08.3600276+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.67.33.202, 23.67.33.198, 23.206.188.206] + +2025-03-23T15:06:09.5011873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.162, 20.190.148.166, 20.190.144.137] + +2025-03-23T15:06:15.9466000+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36] + +2025-03-23T15:06:30.5928629+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.113.5] + +2025-03-23T15:06:44.8247882+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.70] + +2025-03-23T15:06:45.5894828+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.53, 13.107.246.73] + +2025-03-23T15:06:54.7231535+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 13.105.74.50, 40.90.133.97] + +2025-03-23T15:06:55.5134844+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:07:04.9966160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.162, 20.190.144.139, 20.190.148.164] + +2025-03-23T15:07:18.5574144+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.52.0, 52.109.44.108] + +2025-03-23T15:07:19.8461908+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:07:19.8490732+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.188.206, 23.206.188.215, 93.191.15.200] + +2025-03-23T15:07:20.0688166+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.110.4.43, 52.110.4.59] + +2025-03-23T15:07:35.3609101+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:07:46.2115477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.167, 20.190.144.160, 20.190.144.163] + +2025-03-23T15:07:46.4979305+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.148.167, 20.190.144.160] + +2025-03-23T15:07:49.6670820+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.233.83.145, 140.82.121.3] + +2025-03-23T15:07:49.6746958+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.44.112, 52.109.56.130] + +2025-03-23T15:07:51.1956247+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.7, 13.105.74.49, 13.105.74.50] + +2025-03-23T15:07:55.6409673+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.208.31.133, 23.208.31.194, 23.206.188.207] + +2025-03-23T15:08:05.0800226+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-23T15:08:06.5347746+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:08:16.3247735+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:08:16.3274779+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.206.188.206, 23.206.188.215, 23.208.31.169] + +2025-03-23T15:08:17.6374871+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:08:17.6460944+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:08:31.0259337+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.6] + +2025-03-23T15:08:32.1825706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-03-23T15:08:32.4715433+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.73, 13.107.246.60] + +2025-03-23T15:08:32.7628887+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.70, 13.107.246.46] + +2025-03-23T15:08:33.7212424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[20.135.6.11, 20.135.6.7, 13.105.74.49] + +2025-03-23T15:08:47.8806761+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.233.83.145, 140.82.114.4, 140.82.121.3] + +2025-03-23T15:08:48.0118855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T15:08:48.3051041+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T15:08:48.3079102+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T15:08:48.3103029+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T15:08:48.3125567+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.109.133, 185.199.110.133, 185.199.111.133] + +2025-03-23T15:08:51.1073395+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T15:08:51.3547712+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 195.0852 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-23T15:08:51.5100680+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 376.1699 ms + +2025-03-23T15:08:51.8697933+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T15:08:52.1262798+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 768.3182 ms + +2025-03-23T15:08:52.3490330+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 194.1295 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-23T15:08:52.9024549+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 548.4601 ms + +2025-03-23T15:08:54.0697576+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.108.154, 185.199.109.154] + +2025-03-23T15:08:54.3151835+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.112.9, 140.82.121.9] + +2025-03-23T15:09:04.6145667+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T15:09:04.7543952+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 127.7919 ms + +2025-03-23T15:09:04.8437050+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 198.2512 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T15:09:05.0083141+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T15:09:05.1390440+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 292.9117 ms + +2025-03-23T15:09:05.3663662+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 206.3645 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T15:09:05.6139200+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 247.6415 ms + +2025-03-23T15:09:07.3014522+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.60, 13.107.246.74] + +2025-03-23T15:09:11.7512350+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.74, 13.107.246.53] + +2025-03-23T15:09:12.0118464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.63, 13.107.246.74] + +2025-03-23T15:09:12.3115367+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.66, 13.107.246.74] + +2025-03-23T15:09:13.2147792+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:09:13.3466932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.26, 140.82.113.26, 140.82.112.25] + +2025-03-23T15:09:18.3399534+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.112.22] + +2025-03-23T15:09:23.3623448+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.52.0] + +2025-03-23T15:09:28.3468989+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.52.84, 52.109.44.112, 52.109.56.130] + +2025-03-23T15:09:28.9207873+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.7, 20.135.6.11] + +2025-03-23T15:09:34.6205198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.193.96.217, 23.208.31.194] + +2025-03-23T15:09:35.6845869+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:09:57.5542430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-23T15:09:58.2096524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.70, 13.107.246.74, 13.107.246.46] + +2025-03-23T15:09:59.0127233+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.233.83.145, 140.82.121.4] + +2025-03-23T15:10:00.3408307+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.113.10, 140.82.112.9] + +2025-03-23T15:10:01.3068034+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.67, 13.107.246.60] + +2025-03-23T15:10:04.6015853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.142, 52.110.8.153, 52.110.8.145] + +2025-03-23T15:10:04.8916113+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:10:15.4593533+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.110.8.164, 52.110.8.147, 52.110.8.143] + +2025-03-23T15:10:24.1517032+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:10:27.9121709+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-23T15:10:36.3495795+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.60, 13.107.246.63] + +2025-03-23T15:10:37.3098122+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +odc.officeapps.live.com:443->[52.109.124.141, 52.109.52.84, 52.109.44.112] + +2025-03-23T15:10:37.5765673+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:10:51.5891693+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-23T15:10:52.3792960+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 327.9294 ms + +2025-03-23T15:10:52.4597865+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 75.327 ms + +2025-03-23T15:10:55.4582057+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2.16.168.100, 23.206.188.206, 2.16.168.125] + +2025-03-23T15:11:01.7038893+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.114.26, 140.82.113.26] + +2025-03-23T15:11:02.7008347+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.0.140] + +2025-03-23T15:11:08.0017434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.67, 13.107.246.74] + +2025-03-23T15:11:08.7385320+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:11:40.2156142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.69, 13.107.246.60] + +2025-03-23T15:11:54.1347021+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:12:14.1904683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.10] + +2025-03-23T15:12:14.4597260+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.44, 13.107.246.66, 13.107.246.35] + +2025-03-23T15:12:28.4329658+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:12:28.6207755+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:12:39.5731885+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 20.22.207.36] + +2025-03-23T15:12:48.9592792+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.162, 20.190.148.165, 20.190.144.139] + +2025-03-23T15:12:52.2285464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.165, 20.190.144.161] + +2025-03-23T15:12:53.3640910+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:13:00.6369535+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:13:08.7340127+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.45, 13.107.246.67] + +2025-03-23T15:13:34.8317556+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.57, 13.107.246.69] + +2025-03-23T15:13:36.8875586+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:13:54.6303319+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.111.154, 185.199.109.154, 185.199.108.154] + +2025-03-23T15:13:55.7510408+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T15:13:55.7540636+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T15:13:56.2220375+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T15:13:56.3904200+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T15:13:56.8307982+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.109.133] + +2025-03-23T15:13:58.9245626+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.224, 23.193.96.232, 2.16.168.100] + +2025-03-23T15:14:01.6578366+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:14:01.6611681+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:14:05.9097853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 20.233.83.145, 140.82.116.3] + +2025-03-23T15:14:14.5146637+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.70, 13.107.246.46] + +2025-03-23T15:14:15.7534460+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.67, 13.107.246.74] + +2025-03-23T15:14:16.3420160+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.35] + +2025-03-23T15:14:16.6097683+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.113.25] + +2025-03-23T15:14:17.3858459+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.69, 13.107.246.57] + +2025-03-23T15:14:17.6308393+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.67] + +2025-03-23T15:14:20.6987428+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.114.22, 140.82.112.21, 140.82.113.21] + +2025-03-23T15:14:23.8185972+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.52.0] + +2025-03-23T15:14:33.1107585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.217, 23.193.96.80, 23.193.96.227] + +2025-03-23T15:14:37.8031009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-23T15:14:39.5056641+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:14:42.4034822+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.148.165, 20.190.144.139, 20.190.148.164] + +2025-03-23T15:14:45.3605218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.142, 52.110.8.145, 52.110.8.164] + +2025-03-23T15:14:45.8664264+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.1, 20.135.6.7] + +2025-03-23T15:14:51.9217598+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.69, 13.107.246.67] + +2025-03-23T15:14:52.9731125+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.13, 52.109.124.4] + +2025-03-23T15:14:54.2870043+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-23T15:14:54.4553143+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-03-23T15:14:54.4805699+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T15:14:55.1435768+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 627.48 ms + +2025-03-23T15:14:55.2200333+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/docs/recent responded 200 in 575.4696 ms + +2025-03-23T15:14:55.5265789+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/locations/recent responded 200 in 439.5658 ms + +2025-03-23T15:14:55.5861653+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1063.2528 ms + +2025-03-23T15:14:55.7504377+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 300.3865 ms + +2025-03-23T15:14:56.4437627+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://ocws.officeapps.live.com/ocs/v2/recent responded 200 in 327.6734 ms + +2025-03-23T15:14:56.5524715+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 874.776 ms + +2025-03-23T15:14:57.9221547+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.6] + +2025-03-23T15:14:58.2208758+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.144.165, 20.190.144.160] + +2025-03-23T15:14:59.5259985+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.70, 13.107.246.64] + +2025-03-23T15:15:01.2659415+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.112.9] + +2025-03-23T15:15:02.4106328+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.69, 13.107.246.74] + +2025-03-23T15:15:02.4136424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.74] + +2025-03-23T15:15:11.0403346+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1452.6348 ms + +2025-03-23T15:15:11.4248807+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.110.8.151, 52.110.8.163, 52.110.8.164] + +2025-03-23T15:15:11.5823762+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 529.7162 ms + +2025-03-23T15:15:12.2538355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.224, 23.193.96.232, 23.208.31.169] + +2025-03-23T15:15:12.5948911+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.110.8.143, 52.110.8.139, 52.110.8.164] + +2025-03-23T15:15:15.7797278+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 20.190.148.165, 20.190.144.139] + +2025-03-23T15:15:15.7819236+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.163, 20.190.144.160] + +2025-03-23T15:15:33.3617047+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:15:45.8654416+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.69, 13.107.246.45] + +2025-03-23T15:16:00.4060696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 4.225.11.201] + +2025-03-23T15:16:00.6455844+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.10] + +2025-03-23T15:16:00.6497217+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.121.4] + +2025-03-23T15:16:12.8812652+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:16:13.1534988+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 20.190.144.139, 20.190.148.164] + +2025-03-23T15:16:13.1578372+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.148.163, 20.190.144.166] + +2025-03-23T15:16:51.2960386+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:17:00.5271356+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:17:02.0564165+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.113.6] + +2025-03-23T15:17:02.3500156+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.59, 13.107.246.70] + +2025-03-23T15:17:15.8242501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.41] + +2025-03-23T15:17:27.4042785+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 13.105.28.1] + +2025-03-23T15:17:33.4567802+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:17:53.7293992+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.165, 20.190.148.167, 20.190.144.163] + +2025-03-23T15:17:54.4220193+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.165, 20.190.144.166, 20.190.144.160] + +2025-03-23T15:18:03.9075024+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:18:16.3452216+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.45, 13.107.246.57] + +2025-03-23T15:18:36.2851557+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.52.0, 52.109.44.108] + +2025-03-23T15:18:37.7288103+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:18:37.7343091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.150, 40.126.35.87, 40.126.35.21] + +2025-03-23T15:18:37.7368434+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.150, 40.126.35.21, 40.126.35.18] + +2025-03-23T15:18:44.9850457+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +cdnjs.cloudflare.com:443->[104.17.24.14, 104.17.25.14] + +2025-03-23T15:19:02.8664489+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154, 185.199.110.154] + +2025-03-23T15:19:03.0079237+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T15:19:03.2455497+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T15:19:03.6619087+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T15:19:04.0690853+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T15:19:04.5254815+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.108.133, 185.199.110.133] + +2025-03-23T15:19:05.6653095+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.121.10] + +2025-03-23T15:19:06.7952376+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.191, 52.109.124.13, 52.109.124.4] + +2025-03-23T15:19:07.6795124+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:19:08.2538849+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:19:17.8192724+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.69, 13.107.246.31] + +2025-03-23T15:19:18.3372524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.114.26] + +2025-03-23T15:19:18.3413799+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.59, 13.107.246.70, 13.107.246.64] + +2025-03-23T15:19:18.6971185+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.45, 13.107.246.57] + +2025-03-23T15:19:19.0679289+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.40, 13.107.246.64, 13.107.246.41] + +2025-03-23T15:19:19.0714091+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.45, 13.107.246.31] + +2025-03-23T15:19:21.2100377+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.21, 140.82.112.22] + +2025-03-23T15:19:24.4918596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.124.191] + +2025-03-23T15:19:26.8173841+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:19:26.8188644+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:19:30.0876129+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.1, 20.135.6.11] + +2025-03-23T15:19:32.6134782+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-23T15:19:32.9799654+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 352.718 ms + +2025-03-23T15:19:33.0533880+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.6322 ms + +2025-03-23T15:19:33.9740332+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.80, 23.193.96.217, 23.193.96.227] + +2025-03-23T15:19:39.7284019+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:19:40.0228775+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:19:46.3448908+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.1926 ms + +2025-03-23T15:19:46.4109575+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.5905 ms + +2025-03-23T15:19:48.7386847+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.87, 40.126.35.150, 40.126.35.21] + +2025-03-23T15:19:49.2035381+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.151, 40.126.35.150, 40.126.35.21] + +2025-03-23T15:19:50.6122837+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.45, 13.107.246.69] + +2025-03-23T15:19:52.1372501+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 13.105.28.1] + +2025-03-23T15:20:00.0240883+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-23T15:20:00.2965021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.112.4] + +2025-03-23T15:20:01.3615438+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.46, 13.107.246.59] + +2025-03-23T15:20:02.4882860+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.8102 ms + +2025-03-23T15:20:02.5597225+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.0003 ms + +2025-03-23T15:20:05.9758352+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.10, 140.82.113.10] + +2025-03-23T15:20:07.6293738+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.9.12, 52.108.8.12] + +2025-03-23T15:20:11.9776525+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.138, 52.109.0.136] + +2025-03-23T15:20:12.1165395+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:20:14.8332774+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.193.96.224, 23.193.96.232, 23.39.160.23] + +2025-03-23T15:20:21.9342348+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.112.21, 140.82.113.21] + +2025-03-23T15:20:31.8585900+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.0.138] + +2025-03-23T15:20:42.4947614+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:20:48.4941665+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.64, 13.107.246.59, 13.107.246.74] + +2025-03-23T15:20:53.6664441+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:21:09.6287754+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.40, 13.107.246.64, 13.107.246.59] + +2025-03-23T15:21:14.2050523+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.69, 13.107.246.67] + +2025-03-23T15:21:14.4299562+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.45, 13.107.246.67] + +2025-03-23T15:21:15.2803878+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.150, 40.126.35.80, 40.126.35.145] + +2025-03-23T15:21:15.2837594+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.151, 40.126.35.150, 40.126.35.80] + +2025-03-23T15:21:24.4229363+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:21:35.5848521+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:21:46.9846418+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.0.136, 52.109.89.117] + +2025-03-23T15:21:58.6440477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.64, 13.107.246.41, 13.107.246.51] + +2025-03-23T15:21:59.4285511+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:22:02.5184277+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.6, 140.82.113.5] + +2025-03-23T15:22:10.7302851+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.64, 13.107.246.41] + +2025-03-23T15:22:10.7312751+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.45, 13.107.246.51] + +2025-03-23T15:22:17.8689714+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 13.107.246.51, 13.107.246.64] + +2025-03-23T15:22:35.1451123+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.35, 13.107.246.51, 13.107.246.62] + +2025-03-23T15:22:49.6357537+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:22:51.5132079+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.86, 40.126.35.150, 40.126.35.145] + +2025-03-23T15:22:51.5172015+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.151, 40.126.35.150, 40.126.35.145] + +2025-03-23T15:22:53.1401766+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:22:54.2720295+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:22:55.6409507+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.86, 40.126.35.150, 40.126.35.128] + +2025-03-23T15:22:58.9192620+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.19, 40.126.35.151, 40.126.35.150] + +2025-03-23T15:23:15.6522965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.45, 13.107.246.69] + +2025-03-23T15:23:23.5026363+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.44, 13.107.246.69, 13.107.246.45] + +2025-03-23T15:23:24.5985038+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.44, 13.107.246.69, 13.107.246.51] + +2025-03-23T15:23:25.0770059+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:23:29.1062540+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-23T15:23:29.6717491+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[40.126.35.86, 40.126.35.151, 40.126.35.150] + +2025-03-23T15:23:29.9706692+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 855.1343 ms + +2025-03-23T15:23:42.8586430+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.44, 13.107.246.69, 13.107.246.64] + +2025-03-23T15:23:43.1862718+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.69, 13.107.246.45, 13.107.246.41] + +2025-03-23T15:23:49.5506410+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 13.105.28.1, 20.135.6.11] + +2025-03-23T15:23:53.0956743+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +canary.officeapps.live.com:443->[52.108.8.12, 52.108.9.12] + +2025-03-23T15:23:53.7274334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.89.117, 52.109.12.13] + +2025-03-23T15:23:54.6933297+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.69, 13.107.246.64, 13.107.246.67] + +2025-03-23T15:23:57.1956819+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:23:59.8997950+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.110.154, 185.199.111.154] + +2025-03-23T15:24:09.9277855+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T15:24:09.9297252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T15:24:09.9314245+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T15:24:09.9329115+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T15:24:09.9343696+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.110.133, 185.199.108.133] + +2025-03-23T15:24:11.0204197+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.44, 13.107.246.40, 13.107.246.64] + +2025-03-23T15:24:11.9546662+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.113.10] + +2025-03-23T15:24:12.9653396+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.51, 13.107.246.62, 13.107.246.64] + +2025-03-23T15:24:23.3380848+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.108.154, 185.199.111.154] + +2025-03-23T15:24:23.7992753+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.109.8.88, 52.109.89.117] + +2025-03-23T15:24:24.8918177+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.45, 13.107.246.74] + +2025-03-23T15:24:25.3557773+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.64, 13.107.246.67] + +2025-03-23T15:24:26.5829334+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.21, 140.82.113.22, 140.82.114.21] + +2025-03-23T15:24:26.5864071+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.51, 13.107.246.62] + +2025-03-23T15:24:27.1227142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.114.25, 140.82.113.25, 140.82.113.26] + +2025-03-23T15:24:27.3529834+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.64, 13.107.246.40] + +2025-03-23T15:24:29.3749449+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 13.107.246.45, 13.107.246.74] + +2025-03-23T15:24:30.1476768+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.191, 52.109.124.13] + +2025-03-23T15:24:34.7841258+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.148.162, 20.190.148.166] + +2025-03-23T15:24:36.9160509+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.22.207.36] + +2025-03-23T15:24:39.1677581+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.39.160.23, 2.16.168.125, 23.56.109.142] + +2025-03-23T15:24:39.5855130+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.25, 23.193.96.227, 23.193.96.80] + +2025-03-23T15:24:39.8831996+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.151, 40.126.35.150, 40.126.35.128] + +2025-03-23T15:24:41.4224065+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:24:41.4344762+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:24:49.4367462+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.151, 40.126.35.128, 40.126.35.21] + +2025-03-23T15:24:50.2571222+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.148.163, 20.190.148.162] + +2025-03-23T15:24:54.4162239+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:24:54.6880800+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.128, 40.126.35.151, 40.126.35.21] + +2025-03-23T15:25:00.5692963+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.67, 13.107.246.69] + +2025-03-23T15:25:00.5711952+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.74, 13.107.246.40, 13.107.246.44] + +2025-03-23T15:25:02.6098373+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.44] + +2025-03-23T15:25:03.5292372+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.4, 52.109.124.13, 52.109.124.191] + +2025-03-23T15:25:03.8383524+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.11, 20.135.6.9] + +2025-03-23T15:25:09.1882223+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.69, 13.107.246.64] + +2025-03-23T15:25:09.4212864+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.9] + +2025-03-23T15:25:21.2478834+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:25:26.6127435+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:25:26.6167346+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.193.96.217, 2.16.168.102] + +2025-03-23T15:25:39.1025561+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 13.74.129.92] + +2025-03-23T15:25:41.2571783+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.9, 20.135.6.11] + +2025-03-23T15:25:52.6833157+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:25:54.1781004+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-23T15:25:58.6638254+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:26:02.5274708+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.56.129, 52.109.68.129] + +2025-03-23T15:26:06.9822782+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.112.4, 140.82.121.3] + +2025-03-23T15:26:07.9304977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.39.160.23, 2.16.168.125, 2.16.168.100] + +2025-03-23T15:26:07.9330218+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.193.96.217, 2.16.168.100] + +2025-03-23T15:26:09.1427931+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.136, 20.190.144.137, 20.190.148.163] + +2025-03-23T15:26:20.4973038+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.51, 13.107.246.74, 13.107.246.31] + +2025-03-23T15:26:21.9494063+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[40.126.35.21, 40.126.35.128, 40.126.35.87] + +2025-03-23T15:26:25.5356948+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.109.120.46, 52.110.7.146, 52.110.7.184] + +2025-03-23T15:26:29.6319876+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.114.4, 140.82.112.4] + +2025-03-23T15:26:30.3322958+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:26:31.6672926+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[13.105.28.16, 20.135.6.9, 40.90.130.204] + +2025-03-23T15:26:35.8202925+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.125.63.4, 13.74.129.92] + +2025-03-23T15:26:46.5549065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.64, 13.107.246.73] + +2025-03-23T15:27:07.5244738+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:27:21.6816306+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.51] + +2025-03-23T15:27:21.9069514+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.62, 13.107.246.74] + +2025-03-23T15:27:22.6117818+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[23.39.160.23, 23.39.160.7, 2.16.168.125] + +2025-03-23T15:27:23.1986123+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:27:33.7819616+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-23T15:27:34.1697293+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 366.9145 ms + +2025-03-23T15:27:34.2387028+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.5731 ms + +2025-03-23T15:27:38.7565055+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:27:44.1439681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 13.74.129.92, 20.22.207.36] + +2025-03-23T15:27:45.1276009+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 13.105.28.16, 20.135.6.9] + +2025-03-23T15:27:46.5832706+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.64, 13.107.253.45] + +2025-03-23T15:27:51.7449231+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.148.163, 20.190.148.167, 20.190.144.164] + +2025-03-23T15:27:52.5612831+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.1694 ms + +2025-03-23T15:27:52.6274338+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.1435 ms + +2025-03-23T15:28:11.3189399+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-23T15:28:21.9126186+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.2255 ms + +2025-03-23T15:28:21.9961704+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 76.7052 ms + +2025-03-23T15:28:32.1418998+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.5631 ms + +2025-03-23T15:28:32.2114458+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.4978 ms + +2025-03-23T15:28:49.6450542+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.114.6] + +2025-03-23T15:28:50.7302310+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.9488 ms + +2025-03-23T15:28:50.7979810+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.7648 ms + +2025-03-23T15:28:54.3813477+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.74, 13.107.246.44] + +2025-03-23T15:28:57.0227851+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-23T15:28:57.9078957+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 873.9998 ms + +2025-03-23T15:28:58.8940109+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.74, 13.107.246.44, 13.107.246.64] + +2025-03-23T15:29:03.7151593+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2.16.168.125, 2.16.168.100, 23.56.109.142] + +2025-03-23T15:29:08.6834327+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 40.90.130.192] + +2025-03-23T15:29:09.1578898+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:29:09.6202656+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +mrodevicemgr.officeapps.live.com:443->[52.110.8.163, 52.110.8.141, 52.110.8.166] + +2025-03-23T15:29:22.4021585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +secure.gravatar.com:443->[] + +2025-03-23T15:29:29.0381932+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.githubassets.com:443->[185.199.109.154, 185.199.110.154] + +2025-03-23T15:29:30.8031755+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-23T15:29:31.3553395+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.112.9] + +2025-03-23T15:29:31.5979103+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-23T15:29:31.9915394+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-23T15:29:32.4512771+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-23T15:29:32.8282024+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.110.133] + +2025-03-23T15:29:33.1771536+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.41, 13.107.246.73, 13.107.246.69] + +2025-03-23T15:29:33.4070585+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +collector.github.com:443->[140.82.113.22, 140.82.114.21, 140.82.113.21] + +2025-03-23T15:29:33.8601650+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.73, 13.107.246.69, 13.107.246.51] + +2025-03-23T15:29:34.1052810+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.113.25, 140.82.114.25] + +2025-03-23T15:29:34.9329252+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.74, 13.107.246.64] + +2025-03-23T15:29:34.9981597+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.40, 13.107.246.73, 13.107.246.74] + +2025-03-23T15:29:35.5488148+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.62, 13.107.246.73] + +2025-03-23T15:29:35.8230681+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.4, 52.109.124.191] + +2025-03-23T15:29:36.5305062+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:29:39.0340028+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.166, 20.190.148.163] + +2025-03-23T15:29:39.7251021+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.137, 20.190.144.163, 20.190.148.166] + +2025-03-23T15:29:46.7436689+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.69, 13.107.246.74] + +2025-03-23T15:29:51.9263322+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.144.166, 20.190.148.167] + +2025-03-23T15:30:00.7636019+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.22.207.36, 13.74.129.92] + +2025-03-23T15:30:01.0006454+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.205.243.168, 140.82.113.5, 140.82.121.6] + +2025-03-23T15:30:07.0465930+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +roaming.officeapps.live.com:443->[52.109.124.29, 52.109.52.169, 52.109.56.129] + +2025-03-23T15:30:07.1124293+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.73, 13.107.246.64, 13.107.246.74] + +2025-03-23T15:30:07.1132775+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn-prod.azureedge.net:443->[13.107.246.40, 13.107.246.73, 13.107.246.64] + +2025-03-23T15:30:07.1749142+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.41, 13.107.246.62, 13.107.246.70] + +2025-03-23T15:30:07.8007478+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +ocws.officeapps.live.com:443->[52.109.124.13, 52.109.124.191, 52.109.124.4] + +2025-03-23T15:30:08.3806666+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:30:08.8071556+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:30:11.0431744+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edgeassetservice.azureedge.net:443->[13.107.246.70, 13.107.246.73, 13.107.246.69] + +2025-03-23T15:30:15.6460590+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.137, 20.190.144.163, 20.190.148.166] + +2025-03-23T15:30:41.6461066+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:30:41.6502760+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:30:53.5139161+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 364.8512 ms + +2025-03-23T15:30:53.5837639+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 66.3138 ms + +2025-03-23T15:31:04.4711338+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 40.90.130.197] + +2025-03-23T15:31:04.6250523+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:31:08.3679679+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:31:08.5498424+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2.16.168.100, 23.56.109.142, 23.41.4.201] + +2025-03-23T15:31:09.4284244+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.144.163, 20.190.148.166, 20.190.144.166] + +2025-03-23T15:31:09.5154511+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.163, 20.190.148.166, 20.190.144.166] + +2025-03-23T15:31:11.7447466+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +devtools.azureedge.net:443->[13.107.246.73, 13.107.246.64, 13.107.246.69] + +2025-03-23T15:31:12.1801596+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +alive.github.com:443->[140.82.113.26, 140.82.114.25, 140.82.113.25] + +2025-03-23T15:31:32.2991549+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.22.207.36] + +2025-03-23T15:31:36.4391872+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:31:39.3513558+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:31:40.7665572+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.live.com:443->[20.190.166.66, 20.190.166.132, 20.190.166.133] + +2025-03-23T15:32:01.7888741+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az700632.vo.msecnd.net:443->[2.16.168.100, 23.56.109.137, 23.56.109.142] + +2025-03-23T15:32:12.4445889+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:32:12.5834888+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:32:16.5968977+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +login.microsoftonline.com:443->[20.190.144.139, 20.190.144.163, 20.190.148.166] + +2025-03-23T15:32:42.7904464+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +edge-consumer-static.azureedge.net:443->[13.107.246.62, 13.107.246.70, 13.107.246.73] + +2025-03-23T15:32:43.5301101+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:32:43.8150871+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:32:43.9405612+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.193.96.227, 23.193.96.217, 23.39.160.17] + +2025-03-23T15:32:55.4581065+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +g.live.com:443->[52.231.186.36, 20.241.44.114, 20.125.63.4] + +2025-03-23T15:33:00.2911330+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +api.github.com:443->[20.27.177.116, 20.205.243.168, 140.82.113.5] + +2025-03-23T15:33:01.3426687+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +xpaywalletcdn.azureedge.net:443->[13.107.246.41, 13.107.246.73, 13.107.246.64] + +2025-03-23T15:33:02.1624355+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +storage.live.com:443->[40.79.207.82, 20.135.6.9, 13.105.74.50] + +2025-03-23T15:33:03.8553455+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@8.8.8.8:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:33:05.9578739+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +github.com:443->[20.205.243.166, 140.82.116.3, 140.82.114.4] + +2025-03-23T15:33:16.5915612+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az700632.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:33:16.7364277+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +az667904.vo.msecnd.net@8.8.8.8:53->Invalid response received with code Refused + +2025-03-23T15:33:39.7950965+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +az667904.vo.msecnd.net:443->[23.39.160.17, 23.39.160.18, 2.16.168.100] + +2025-03-23T15:34:01.8673031+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +secure.gravatar.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T15:34:02.8967346+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +clientnotification-userprodscus1-1.servicebus.windows.net@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:34:10.3973163+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.vstsusers.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:34:11.9269224+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +app.vssps.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:34:12.6421970+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +marketplace.visualstudio.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:34:12.9820564+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +github.githubassets.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:34:22.8230085+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T15:34:23.3004190+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 456.1491 ms + +2025-03-23T15:34:32.8534369+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +cdnjs.cloudflare.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:34:54.3874710+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +canary.officeapps.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T15:34:55.5152133+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +private-user-images.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:34:55.8216077+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +private-user-images.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-23T15:34:58.1597345+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +avatars.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:34:58.3360308+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +avatars.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-23T15:35:19.3853858+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +camo.githubusercontent.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T15:35:20.5758072+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +camo.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-23T15:35:21.1366410+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +raw.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:35:21.3029198+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +raw.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-23T15:35:22.2442657+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +objects.githubusercontent.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:35:22.4072151+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +objects.githubusercontent.com:443->[185.199.111.133, 185.199.109.133, 185.199.108.133] + +2025-03-23T15:35:42.0689568+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:35:42.0729596+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:35:43.7467037+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +g.live.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T15:36:05.9464583+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +codeload.github.com@119.29.29.29:53->由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + +2025-03-23T15:36:07.3591678+08:00 [INF] +FastGithub.DomainResolve.DomainResolver +codeload.github.com:443->[20.205.243.165, 140.82.116.9, 140.82.121.10] + +2025-03-23T15:36:23.8682331+08:00 [WRN] +FastGithub.DomainResolve.DnsClient +api.github.com@119.29.29.29:53->Unable to read data from the transport connection: 远程主机强迫关闭了一个现有的连接。. + +2025-03-23T15:37:27.7646208+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-23T15:37:28.1385351+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 361.4332 ms + +2025-03-23T15:37:28.2132420+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.1661 ms + +2025-03-23T15:37:35.9162464+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-23T15:37:36.7813994+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 853.7747 ms + +2025-03-23T15:37:42.2220207+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.6767 ms + +2025-03-23T15:37:42.2896771+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.3018 ms + +2025-03-23T15:38:24.3311500+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 78.1974 ms + +2025-03-23T15:38:24.4022910+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.841 ms + +2025-03-23T15:38:39.6738143+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.3693 ms + +2025-03-23T15:38:39.7420649+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.4183 ms + +2025-03-23T15:39:12.1978896+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 329.092 ms + +2025-03-23T15:39:12.2845609+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 84.4701 ms + +2025-03-23T15:39:28.2516330+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 73.8655 ms + +2025-03-23T15:39:28.3204140+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.0739 ms + +2025-03-23T15:41:28.5459521+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:41:28.5504829+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:42:46.4045546+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-23T15:42:47.5029595+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1081.1102 ms + +2025-03-23T15:42:48.2540631+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 565.6923 ms + +2025-03-23T15:43:08.4373084+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-23T15:43:08.8171543+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 368.4658 ms + +2025-03-23T15:43:08.8820089+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.0994 ms + +2025-03-23T15:43:21.0236727+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 71.3517 ms + +2025-03-23T15:43:21.1015525+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 73.6543 ms + +2025-03-23T15:44:26.7381768+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 394.1604 ms + +2025-03-23T15:44:26.8143488+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.4348 ms + +2025-03-23T15:44:30.5538204+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 839.2443 ms + +2025-03-23T15:45:53.9119404+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 365.4224 ms + +2025-03-23T15:45:54.0981558+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 179.217 ms + +2025-03-23T15:46:07.5141960+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.2109 ms + +2025-03-23T15:46:07.5858256+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 65.4269 ms + +2025-03-23T15:46:31.6712738+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:46:31.6733124+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:49:57.9783530+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T15:49:58.4482942+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 448.9265 ms + +2025-03-23T15:49:58.9003898+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 184.6562 ms + +2025-03-23T15:50:52.2907185+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-23T15:50:53.3004897+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1002.0436 ms + +2025-03-23T15:50:54.0321344+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 557.6012 ms + +2025-03-23T15:51:06.0940953+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-23T15:51:06.4843464+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 376.6669 ms + +2025-03-23T15:51:06.5529689+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 63.4559 ms + +2025-03-23T15:52:04.4470375+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 553.189 ms + +2025-03-23T15:52:14.8853574+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:52:14.8871682+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T15:57:13.7335204+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-23T15:57:14.6206486+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 870.5316 ms + +2025-03-23T15:57:36.3378074+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T15:57:36.3398904+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T16:02:37.7953602+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T16:02:37.7983724+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T16:03:32.0147657+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-03-23T16:03:32.3158262+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T16:03:32.8513442+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 509.6897 ms + +2025-03-23T16:03:34.9852591+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 502.1529 ms + +2025-03-23T16:03:35.1736035+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 519.7353 ms + +2025-03-23T16:03:35.6173076+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 1257.428 ms + +2025-03-23T16:05:11.4232009+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-23T16:05:12.7518812+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1321.3247 ms + +2025-03-23T16:05:13.5061566+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 559.9857 ms + +2025-03-23T16:08:19.6038175+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1042.8482 ms + +2025-03-23T16:09:29.6437809+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T16:09:29.6455965+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T16:09:48.0754548+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-23T16:09:48.6619805+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 574.0836 ms + +2025-03-23T16:09:48.7285670+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.0601 ms + +2025-03-23T16:11:34.4225018+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 362.5554 ms + +2025-03-23T16:11:34.5220590+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 96.738 ms + +2025-03-23T16:11:47.6659983+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.6941 ms + +2025-03-23T16:11:47.7406621+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 70.1572 ms + +2025-03-23T16:11:59.5037466+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.9017 ms + +2025-03-23T16:11:59.5821610+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 74.6019 ms + +2025-03-23T16:12:16.0640713+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 62.1121 ms + +2025-03-23T16:12:16.1309557+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 64.1746 ms + +2025-03-23T16:12:28.0238098+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.645 ms + +2025-03-23T16:12:28.0885444+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 61.9855 ms + +2025-03-23T16:13:21.4516669+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 331.0041 ms + +2025-03-23T16:13:21.5308433+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 71.0232 ms + +2025-03-23T16:15:26.2974467+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T16:15:26.3009614+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T16:16:48.4668563+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-23T16:16:49.5397096+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 1063.4817 ms + +2025-03-23T16:16:50.2773184+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 200 in 555.0649 ms + +2025-03-23T16:26:22.7792892+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T16:26:23.2916588+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 487.4266 ms + +2025-03-23T16:28:00.5966837+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 485.9057 ms + +2025-03-23T16:28:01.1189444+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 267.6293 ms + +2025-03-23T16:29:14.3349954+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 396.3806 ms + +2025-03-23T16:29:21.2841113+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 259.3136 ms + +2025-03-23T16:34:21.7299967+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T16:34:22.2159739+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 454.914 ms + +2025-03-23T16:52:52.3828165+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-03-23T16:52:52.8595164+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T16:52:53.3795137+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 497.1738 ms + +2025-03-23T16:52:53.7155507+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 234.8422 ms + +2025-03-23T16:52:53.9664024+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 296.207 ms + +2025-03-23T17:42:45.1607503+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-03-23T17:42:46.1586169+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-03-23T17:42:46.2405692+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 697.0462 ms + +2025-03-23T17:42:46.5915412+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/Default.json responded 404 in 388.6667 ms + +2025-03-23T17:42:47.7947041+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 164.209 ms + +2025-03-23T17:42:47.7974796+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 160.0983 ms + +2025-03-23T17:42:48.6809310+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/ExtMgr/CompatList/CompatibilityList.xml responded 200 in 656.2087 ms + +2025-03-23T17:42:48.7312347+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 166.8742 ms + +2025-03-23T17:42:48.8366188+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 272.2618 ms + +2025-03-23T17:42:49.5552318+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 155.2059 ms + +2025-03-23T17:42:49.5686682+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 168.4404 ms + +2025-03-23T17:42:49.7106605+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Installer.json responded 200 in 299.7233 ms + +2025-03-23T17:42:49.7878360+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 3266.0535 ms + +2025-03-23T17:42:49.9759732+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 2482.772 ms + +2025-03-23T17:42:50.5755304+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 2944.9508 ms + +2025-03-23T17:42:50.9935081+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 3054.5616 ms + +2025-03-23T17:42:51.1848893+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 3204.6013 ms + +2025-03-23T17:42:52.5211011+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T17:42:52.5757886+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T17:42:53.1296277+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 576.748 ms + +2025-03-23T17:42:55.5033965+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 502 in 6103.0069 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-23T17:42:55.5590037+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 6462.4894 ms + +2025-03-23T17:43:01.0405445+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/RemoteSettings/RemoteSettings_Common_17.0.json responded 200 in 895.6062 ms + +2025-03-23T17:43:01.1261990+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 12029.4666 ms + +2025-03-23T17:43:01.1601640+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 12063.647 ms + +2025-03-23T17:43:01.2402952+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 12143.326 ms + +2025-03-23T17:43:01.5775476+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 3826.788 ms + +2025-03-23T17:43:01.7484019+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 12651.8261 ms + +2025-03-23T17:43:01.8227910+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 12725.8363 ms + +2025-03-23T17:43:02.2810967+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 12275.6798 ms + +2025-03-23T17:43:02.8050090+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 4793.1632 ms + +2025-03-23T17:43:02.9017704+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 10389.7321 ms + +2025-03-23T17:43:03.9599165+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 12303.3883 ms + +2025-03-23T17:43:03.9833314+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 11179.1979 ms + +2025-03-23T17:43:04.1814144+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 6023.9219 ms + +2025-03-23T17:43:05.0396863+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Default/v2/dyntelconfig.json responded 200 in 10859.7691 ms + +2025-03-23T17:43:05.1973476+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 11260.692 ms + +2025-03-23T17:43:05.8677331+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 7595.4616 ms + +2025-03-23T17:43:06.6209398+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 17755.0654 ms + +2025-03-23T17:43:14.0839250+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +app.vssps.visualstudio.com->127.0.0.1 + +2025-03-23T17:43:14.7319077+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://app.vssps.visualstudio.com/_apis/connectionData responded 200 in 429.0453 ms + +2025-03-23T17:43:14.7812725+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +api.vstsusers.visualstudio.com->127.0.0.1 + +2025-03-23T17:43:15.0837171+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 16412.7375 ms + +2025-03-23T17:43:15.6491207+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/connectionData responded 200 in 807.4822 ms + +2025-03-23T17:43:16.0074189+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me responded 200 in 331.2894 ms + +2025-03-23T17:43:16.2807435+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Locations responded 200 in 254.4897 ms + +2025-03-23T17:43:16.5448658+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Settings/ProfileRefreshInterval responded 200 in 248.8221 ms + +2025-03-23T17:43:16.8838395+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Attributes responded 200 in 326.1041 ms + +2025-03-23T17:43:17.0093839+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Avatar responded 200 in 442.8487 ms + +2025-03-23T17:43:17.0121001+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Avatar responded 200 in 446.1626 ms + +2025-03-23T17:43:18.1411540+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 15258.7854 ms + +2025-03-23T17:43:18.7653810+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +PUT https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Attributes/VisualStudio.14_PreferredProfile;PreferredProfile responded 204 in 338.9045 ms + +2025-03-23T17:43:19.6231027+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 30526.519 ms + +2025-03-23T17:43:20.8391006+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 22636.2251 ms + +2025-03-23T17:43:21.2587104+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://app.vssps.visualstudio.com/_apis/connectionData responded 200 in 228.2283 ms + +2025-03-23T17:43:21.5225384+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/connectionData responded 200 in 248.3051 ms + +2025-03-23T17:43:21.8981529+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me responded 200 in 358.9865 ms + +2025-03-23T17:43:22.1511335+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Locations responded 200 in 247.5027 ms + +2025-03-23T17:43:22.4046085+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Settings/ProfileRefreshInterval responded 200 in 249.0279 ms + +2025-03-23T17:43:22.9644752+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/Profile/Profiles/me/Attributes responded 200 in 540.9932 ms + +2025-03-23T17:43:23.9836158+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://api.vstsusers.visualstudio.com/_apis/ClientNotification/Subscriptions/me responded 200 in 1529.643 ms + +2025-03-23T17:43:24.1392751+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +clientnotification-userprodscus1-1.servicebus.windows.net->127.0.0.1 + +2025-03-23T17:43:26.4832805+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T17:43:26.4841735+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T17:43:27.5173805+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://clientnotification-userprodscus1-1.servicebus.windows.net/$servicebus/websocket responded 101 in 1221.7925 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T17:43:36.9702814+08:00 [ERR] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 502 in 33549.461 ms +System.Net.Http.HttpRequestException: An error occurred while sending the request. + ---> System.IO.IOException: Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + ---> System.Net.Sockets.SocketException (10060): 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + --- End of inner exception stack trace --- + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 ) + at System.Net.Security.SslStream.EnsureFullTlsFrameAsync[TIOAdapter](TIOAdapter ) + at System.Net.Security.SslStream.ReadAsyncInternal[TIOAdapter](TIOAdapter , Memory`1 ) + at System.Net.Http.HttpConnection.InitialFillAsync(Boolean ) + at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage , Boolean , CancellationToken ) + --- End of inner exception stack trace --- + at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage , Boolean , CancellationToken ) + at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage , Boolean , Boolean , CancellationToken ) + at System.Net.Http.DiagnosticsHandler.SendAsyncCore(HttpRequestMessage , Boolean , CancellationToken ) + at FastGithub.Http.HttpClientHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + at FastGithub.Http.HttpClient.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + at Yarp.ReverseProxy.Forwarder.HttpForwarder.SendAsync(HttpContext context, String destinationPrefix, HttpMessageInvoker httpClient, ForwarderRequestConfig requestConfig, HttpTransformer transformer) + +2025-03-23T17:43:39.1093074+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 170.0671 ms + +2025-03-23T17:43:46.0680781+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/discovery/instance responded 200 in 746.5979 ms + +2025-03-23T17:43:49.7096821+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 502 in 60004.1174 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T17:43:50.6303377+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 502 in 59964.6116 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T17:43:51.9003622+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 189.6536 ms + +2025-03-23T17:43:52.8099795+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 166.9273 ms + +2025-03-23T17:44:00.8707285+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 502 in 60010.4075 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T17:44:02.0997687+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 502 in 60011.4115 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T17:44:03.0581666+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 167.6949 ms + +2025-03-23T17:44:04.2776170+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 172.5726 ms + +2025-03-23T17:44:29.7130702+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 802.7586 ms + +2025-03-23T17:47:02.5108232+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 7481.3566 ms + +2025-03-23T17:47:03.1237253+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 2788.1092 ms + +2025-03-23T17:47:18.2966907+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 11666.8839 ms + +2025-03-23T17:47:37.6106521+08:00 [ERR] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 502 in 34344.0595 ms +System.Net.Http.HttpRequestException: An error occurred while sending the request. + ---> System.IO.IOException: Unable to read data from the transport connection: 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。. + ---> System.Net.Sockets.SocketException (10060): 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 + --- End of inner exception stack trace --- + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 ) + at System.Net.Security.SslStream.EnsureFullTlsFrameAsync[TIOAdapter](TIOAdapter ) + at System.Net.Security.SslStream.ReadAsyncInternal[TIOAdapter](TIOAdapter , Memory`1 ) + at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage , Boolean , CancellationToken ) + --- End of inner exception stack trace --- + at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage , Boolean , CancellationToken ) + at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage , Boolean , Boolean , CancellationToken ) + at System.Net.Http.DiagnosticsHandler.SendAsyncCore(HttpRequestMessage , Boolean , CancellationToken ) + at FastGithub.Http.HttpClientHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + at FastGithub.Http.HttpClient.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) + at Yarp.ReverseProxy.Forwarder.HttpForwarder.SendAsync(HttpContext context, String destinationPrefix, HttpMessageInvoker httpClient, ForwarderRequestConfig requestConfig, HttpTransformer transformer) + +2025-03-23T17:47:39.8047923+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 179.491 ms + +2025-03-23T17:47:59.0759521+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 502 in 59982.4952 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T17:48:05.6731037+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 502 in 60008.199 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T17:48:06.4161042+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 5325.4538 ms + +2025-03-23T17:48:07.6798096+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-03-23T17:48:08.6023928+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 907.9355 ms + +2025-03-23T17:52:43.7591855+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +odc.officeapps.live.com->127.0.0.1 + +2025-03-23T17:52:44.3656871+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://odc.officeapps.live.com/odc/v2.1/federationProvider responded 200 in 499.1233 ms + +2025-03-23T17:54:49.9594358+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T17:54:49.9619813+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T17:54:50.3289082+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-23T17:54:50.7031157+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 359.1095 ms + +2025-03-23T17:54:50.7665831+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 59.7786 ms + +2025-03-23T17:55:03.5320789+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T17:55:03.5490667+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T17:55:03.5775878+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-03-23T17:55:03.7960865+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 194.3769 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-23T17:55:03.9660289+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 400.5963 ms + +2025-03-23T17:55:04.2752992+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T17:55:04.4218725+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 625.4537 ms + +2025-03-23T17:55:04.5471090+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T17:55:04.7847374+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 159.5117 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-23T17:55:05.0156552+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 230.4181 ms + +2025-03-23T18:12:47.8165066+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az700632.vo.msecnd.net->127.0.0.1 + +2025-03-23T18:12:48.4748684+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/DisabledFlights.json responded 200 in 629.5733 ms + +2025-03-23T18:12:48.5189601+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az700632.vo.msecnd.net/pub/FlightsData/ShippedFlights.json responded 200 in 671.7228 ms + +2025-03-23T18:14:23.5869439+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +az667904.vo.msecnd.net->127.0.0.1 + +2025-03-23T18:14:24.9906219+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 200 in 1369.6993 ms + +2025-03-23T18:14:34.1476704+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://az667904.vo.msecnd.net/pub/Dev14/v2/dyntelconfig.json responded 502 in 288.7952 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T18:34:09.8928905+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T18:34:09.8947147+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T18:34:18.3098528+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-23T18:34:18.7265439+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 402.8587 ms + +2025-03-23T18:34:18.8612597+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 116.7169 ms + +2025-03-23T18:35:43.1022823+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 360.6345 ms + +2025-03-23T18:35:43.1885922+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 75.0759 ms + +2025-03-23T18:36:01.8920096+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T18:36:01.9040614+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T18:36:01.9212110+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +storage.live.com->127.0.0.1 + +2025-03-23T18:36:02.1400413+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 502 in 193.1672 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-23T18:36:02.3454848+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.microsoftonline.com/common/oauth2/authorize responded 200 in 425.2046 ms + +2025-03-23T18:36:02.6599498+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.microsoftonline.com->127.0.0.1 + +2025-03-23T18:36:02.7577178+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://storage.live.com/users/0xe36b3663558f372a/myprofile/expressionprofile/profilephoto:UserTileStatic/p responded 302 in 617.4228 ms + +2025-03-23T18:36:02.8982621+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T18:36:03.1180555+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +OPTIONS https://login.live.com/login.srf responded 502 in 179.7691 ms +System.Threading.Tasks.TaskCanceledException: A task was canceled. + + +2025-03-23T18:36:03.3357664+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://login.live.com/login.srf responded 200 in 217.1601 ms + +2025-03-23T18:37:57.2812623+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://clientnotification-userprodscus1-1.servicebus.windows.net/$servicebus/websocket responded 101 in 3269511.5185 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T18:38:01.2334682+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 318.1217 ms + +2025-03-23T18:38:01.2729168+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetGlobalConfig responded 200 in 357.403 ms + +2025-03-23T18:38:01.3068395+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 69.2123 ms + +2025-03-23T18:39:09.5735816+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T18:39:10.0826318+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 486.4408 ms + +2025-03-23T18:39:45.9013660+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T18:39:45.9037695+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T18:39:48.3605882+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +xpaywalletcdn-prod.azureedge.net->127.0.0.1 + +2025-03-23T18:39:48.7440726+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 382.7961 ms + +2025-03-23T18:39:48.8157285+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 68.624 ms + +2025-03-23T18:43:20.9420999+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 396.9879 ms + +2025-03-23T18:43:21.0179590+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.3416 ms + +2025-03-23T18:44:05.8847325+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 89.246 ms + +2025-03-23T18:44:05.9565952+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +GET https://xpaywalletcdn-prod.azureedge.net/mswallet/ExpressCheckout/v1/GetWalletConnectivity responded 200 in 67.0583 ms + +2025-03-23T18:45:06.1498370+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T18:45:06.1523364+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T18:47:32.2129236+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +ocws.officeapps.live.com->127.0.0.1 + +2025-03-23T18:47:32.6832715+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T18:47:33.2116490+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 501.4455 ms + +2025-03-23T18:47:33.7216743+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 240.4943 ms + +2025-03-23T18:51:10.9909831+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T18:51:10.9924994+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T18:56:38.9990502+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.googleapis.com->127.0.0.1 + +2025-03-23T18:56:39.0023911+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +fonts.gstatic.com->127.0.0.1 + +2025-03-23T18:57:23.6182906+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +login.live.com->127.0.0.1 + +2025-03-23T18:57:24.0987137+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 457.0878 ms + +2025-03-23T19:00:45.5505273+08:00 [INF] +FastGithub.PacketIntercept.Dns.DnsInterceptor +roaming.officeapps.live.com->127.0.0.1 + +2025-03-23T19:00:46.5128385+08:00 [WRN] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://roaming.officeapps.live.com/rs/RoamingSoapService.svc responded 502 in 853.6803 ms +System.Threading.Tasks.TaskCanceledException: The operation was canceled. +System.IO.IOException: Unable to read data from the transport connection: 由于线程退出或应用程序请求,已中止 I/O 操作。. +System.Net.Sockets.SocketException: 由于线程退出或应用程序请求,已中止 I/O 操作。 + + +2025-03-23T19:00:46.7495198+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 543.1905 ms + +2025-03-23T19:00:48.3137580+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 199.0224 ms + +2025-03-23T19:00:49.2954672+08:00 [INF] +FastGithub.HttpServer.RequestLoggingMiddleware +POST https://login.live.com/RST2.srf responded 200 in 728.541 ms +