09.log 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  1. ---------------------------------------------------------------
  2. [ 2021-12-09T00:14:12+08:00 ] 52.80.214.36 GET voicechat.lanmaonet.com/
  3. [运行时间:0.011452s] [吞吐率:87.32req/s] [内存消耗:448.61kb] [文件加载:132]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000262s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  9. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000086s ]
  10. [ info ] [ ROUTE ] array (
  11. 'type' => 'module',
  12. 'module' =>
  13. array (
  14. 0 => '',
  15. 1 => NULL,
  16. 2 => NULL,
  17. ),
  18. )
  19. [ info ] [ HEADER ] array (
  20. 'connection' => 'Keep-Alive',
  21. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
  22. 'accept-encoding' => 'gzip, deflate',
  23. 'accept-language' => 'zh,zh-CN;q=0.9',
  24. 'user-agent' => 'Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.3008.1644 Mobile Safari/537.36',
  25. 'upgrade-insecure-requests' => '1',
  26. 'host' => 'voicechat.lanmaonet.com',
  27. 'content-type' => '',
  28. 'content-length' => '',
  29. )
  30. [ info ] [ PARAM ] array (
  31. )
  32. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000076s ]
  33. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  34. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000038s ]
  35. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  36. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  37. 0 => 'user',
  38. 1 => 'site',
  39. 2 => 'config',
  40. ) ]
  41. [ info ] [ LOG ] INIT File
  42. ---------------------------------------------------------------
  43. [ 2021-12-09T00:34:28+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  44. [运行时间:0.007470s] [吞吐率:133.87req/s] [内存消耗:339.58kb] [文件加载:123]
  45. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  46. [ info ] [ CACHE ] INIT File
  47. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000298s ]
  48. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  49. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  50. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  51. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000056s ]
  52. [ info ] [ ROUTE ] array (
  53. 'type' => 'module',
  54. 'module' =>
  55. array (
  56. 0 => 'mt',
  57. 1 => 'mt-xmlrpc.cgi',
  58. 2 => NULL,
  59. ),
  60. )
  61. [ info ] [ HEADER ] array (
  62. 'content-length' => '224',
  63. 'content-type' => 'text/xml',
  64. 'connection' => 'close',
  65. 'accept' => '*/*',
  66. 'accept-encoding' => 'gzip, deflate',
  67. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  68. 'host' => 'voicechat.lanmaonet.com',
  69. )
  70. [ info ] [ PARAM ] array (
  71. )
  72. [ info ] [ LOG ] INIT File
  73. ---------------------------------------------------------------
  74. [ 2021-12-09T00:45:02+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  75. [运行时间:0.004298s] [吞吐率:232.67req/s] [内存消耗:339.58kb] [文件加载:123]
  76. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  77. [ info ] [ CACHE ] INIT File
  78. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000258s ]
  79. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  80. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  81. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  82. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  83. [ info ] [ ROUTE ] array (
  84. 'type' => 'module',
  85. 'module' =>
  86. array (
  87. 0 => 'mt',
  88. 1 => 'mt-xmlrpc.cgi',
  89. 2 => NULL,
  90. ),
  91. )
  92. [ info ] [ HEADER ] array (
  93. 'content-length' => '224',
  94. 'content-type' => 'text/xml',
  95. 'connection' => 'close',
  96. 'accept' => '*/*',
  97. 'accept-encoding' => 'gzip, deflate',
  98. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  99. 'host' => 'voicechat.lanmaonet.com',
  100. )
  101. [ info ] [ PARAM ] array (
  102. )
  103. [ info ] [ LOG ] INIT File
  104. ---------------------------------------------------------------
  105. [ 2021-12-09T00:51:31+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  106. [运行时间:0.005694s] [吞吐率:175.63req/s] [内存消耗:339.58kb] [文件加载:123]
  107. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  108. [ info ] [ CACHE ] INIT File
  109. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000302s ]
  110. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  111. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  112. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  113. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  114. [ info ] [ ROUTE ] array (
  115. 'type' => 'module',
  116. 'module' =>
  117. array (
  118. 0 => 'mt',
  119. 1 => 'mt-xmlrpc.cgi',
  120. 2 => NULL,
  121. ),
  122. )
  123. [ info ] [ HEADER ] array (
  124. 'content-length' => '224',
  125. 'content-type' => 'text/xml',
  126. 'connection' => 'close',
  127. 'accept' => '*/*',
  128. 'accept-encoding' => 'gzip, deflate',
  129. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  130. 'host' => 'voicechat.lanmaonet.com',
  131. )
  132. [ info ] [ PARAM ] array (
  133. )
  134. [ info ] [ LOG ] INIT File
  135. ---------------------------------------------------------------
  136. [ 2021-12-09T00:57:46+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  137. [运行时间:0.004561s] [吞吐率:219.25req/s] [内存消耗:339.58kb] [文件加载:123]
  138. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  139. [ info ] [ CACHE ] INIT File
  140. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000255s ]
  141. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  142. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  143. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  144. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000046s ]
  145. [ info ] [ ROUTE ] array (
  146. 'type' => 'module',
  147. 'module' =>
  148. array (
  149. 0 => 'mt',
  150. 1 => 'mt-xmlrpc.cgi',
  151. 2 => NULL,
  152. ),
  153. )
  154. [ info ] [ HEADER ] array (
  155. 'content-length' => '224',
  156. 'content-type' => 'text/xml',
  157. 'connection' => 'close',
  158. 'accept' => '*/*',
  159. 'accept-encoding' => 'gzip, deflate',
  160. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  161. 'host' => 'voicechat.lanmaonet.com',
  162. )
  163. [ info ] [ PARAM ] array (
  164. )
  165. [ info ] [ LOG ] INIT File
  166. ---------------------------------------------------------------
  167. [ 2021-12-09T01:05:33+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  168. [运行时间:0.004164s] [吞吐率:240.15req/s] [内存消耗:338.22kb] [文件加载:123]
  169. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  170. [ info ] [ CACHE ] INIT File
  171. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000240s ]
  172. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  173. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  174. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  175. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  176. [ info ] [ ROUTE ] array (
  177. 'type' => 'module',
  178. 'module' =>
  179. array (
  180. 0 => 'apple-app-site-association',
  181. 1 => NULL,
  182. 2 => NULL,
  183. ),
  184. )
  185. [ info ] [ HEADER ] array (
  186. 'accept-encoding' => 'gzip',
  187. 'user-agent' => 'AASA-Bot/1.0.0',
  188. 'host' => 'voicechat.lanmaonet.com',
  189. 'content-type' => '',
  190. 'content-length' => '',
  191. )
  192. [ info ] [ PARAM ] array (
  193. )
  194. [ info ] [ LOG ] INIT File
  195. ---------------------------------------------------------------
  196. [ 2021-12-09T01:12:16+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  197. [运行时间:0.004182s] [吞吐率:239.11req/s] [内存消耗:339.58kb] [文件加载:123]
  198. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000035s ]
  199. [ info ] [ CACHE ] INIT File
  200. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000254s ]
  201. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000046s ]
  202. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  203. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  204. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000044s ]
  205. [ info ] [ ROUTE ] array (
  206. 'type' => 'module',
  207. 'module' =>
  208. array (
  209. 0 => 'mt',
  210. 1 => 'mt-xmlrpc.cgi',
  211. 2 => NULL,
  212. ),
  213. )
  214. [ info ] [ HEADER ] array (
  215. 'content-length' => '224',
  216. 'content-type' => 'text/xml',
  217. 'connection' => 'close',
  218. 'accept' => '*/*',
  219. 'accept-encoding' => 'gzip, deflate',
  220. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  221. 'host' => 'voicechat.lanmaonet.com',
  222. )
  223. [ info ] [ PARAM ] array (
  224. )
  225. [ info ] [ LOG ] INIT File
  226. ---------------------------------------------------------------
  227. [ 2021-12-09T01:13:59+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  228. [运行时间:0.004303s] [吞吐率:232.40req/s] [内存消耗:339.58kb] [文件加载:123]
  229. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  230. [ info ] [ CACHE ] INIT File
  231. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000291s ]
  232. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  233. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  234. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  235. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  236. [ info ] [ ROUTE ] array (
  237. 'type' => 'module',
  238. 'module' =>
  239. array (
  240. 0 => 'mt',
  241. 1 => 'mt-xmlrpc.cgi',
  242. 2 => NULL,
  243. ),
  244. )
  245. [ info ] [ HEADER ] array (
  246. 'content-length' => '224',
  247. 'content-type' => 'text/xml',
  248. 'connection' => 'close',
  249. 'accept' => '*/*',
  250. 'accept-encoding' => 'gzip, deflate',
  251. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  252. 'host' => 'voicechat.lanmaonet.com',
  253. )
  254. [ info ] [ PARAM ] array (
  255. )
  256. [ info ] [ LOG ] INIT File
  257. ---------------------------------------------------------------
  258. [ 2021-12-09T01:18:06+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  259. [运行时间:0.004137s] [吞吐率:241.72req/s] [内存消耗:339.58kb] [文件加载:123]
  260. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  261. [ info ] [ CACHE ] INIT File
  262. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000261s ]
  263. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  264. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  265. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  266. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  267. [ info ] [ ROUTE ] array (
  268. 'type' => 'module',
  269. 'module' =>
  270. array (
  271. 0 => 'mt',
  272. 1 => 'mt-xmlrpc.cgi',
  273. 2 => NULL,
  274. ),
  275. )
  276. [ info ] [ HEADER ] array (
  277. 'content-length' => '224',
  278. 'content-type' => 'text/xml',
  279. 'connection' => 'close',
  280. 'accept' => '*/*',
  281. 'accept-encoding' => 'gzip, deflate',
  282. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  283. 'host' => 'voicechat.lanmaonet.com',
  284. )
  285. [ info ] [ PARAM ] array (
  286. )
  287. [ info ] [ LOG ] INIT File
  288. ---------------------------------------------------------------
  289. [ 2021-12-09T01:18:13+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  290. [运行时间:0.004166s] [吞吐率:240.03req/s] [内存消耗:339.58kb] [文件加载:123]
  291. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  292. [ info ] [ CACHE ] INIT File
  293. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000225s ]
  294. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  295. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  296. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  297. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  298. [ info ] [ ROUTE ] array (
  299. 'type' => 'module',
  300. 'module' =>
  301. array (
  302. 0 => 'mt',
  303. 1 => 'mt-xmlrpc.cgi',
  304. 2 => NULL,
  305. ),
  306. )
  307. [ info ] [ HEADER ] array (
  308. 'content-length' => '224',
  309. 'content-type' => 'text/xml',
  310. 'connection' => 'close',
  311. 'accept' => '*/*',
  312. 'accept-encoding' => 'gzip, deflate',
  313. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  314. 'host' => 'voicechat.lanmaonet.com',
  315. )
  316. [ info ] [ PARAM ] array (
  317. )
  318. [ info ] [ LOG ] INIT File
  319. ---------------------------------------------------------------
  320. [ 2021-12-09T01:23:09+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  321. [运行时间:0.004202s] [吞吐率:237.97req/s] [内存消耗:339.58kb] [文件加载:123]
  322. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  323. [ info ] [ CACHE ] INIT File
  324. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000273s ]
  325. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  326. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  327. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  328. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  329. [ info ] [ ROUTE ] array (
  330. 'type' => 'module',
  331. 'module' =>
  332. array (
  333. 0 => 'mt',
  334. 1 => 'mt-xmlrpc.cgi',
  335. 2 => NULL,
  336. ),
  337. )
  338. [ info ] [ HEADER ] array (
  339. 'content-length' => '224',
  340. 'content-type' => 'text/xml',
  341. 'connection' => 'close',
  342. 'accept' => '*/*',
  343. 'accept-encoding' => 'gzip, deflate',
  344. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  345. 'host' => 'voicechat.lanmaonet.com',
  346. )
  347. [ info ] [ PARAM ] array (
  348. )
  349. [ info ] [ LOG ] INIT File
  350. ---------------------------------------------------------------
  351. [ 2021-12-09T01:45:46+08:00 ] 52.77.61.48 GET voicechat.lanmaonet.com/apple-app-site-association
  352. [运行时间:0.004277s] [吞吐率:233.81req/s] [内存消耗:338.22kb] [文件加载:123]
  353. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  354. [ info ] [ CACHE ] INIT File
  355. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000307s ]
  356. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  357. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  358. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  359. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  360. [ info ] [ ROUTE ] array (
  361. 'type' => 'module',
  362. 'module' =>
  363. array (
  364. 0 => 'apple-app-site-association',
  365. 1 => NULL,
  366. 2 => NULL,
  367. ),
  368. )
  369. [ info ] [ HEADER ] array (
  370. 'accept-encoding' => 'gzip',
  371. 'user-agent' => 'AASA-Bot/1.0.0',
  372. 'host' => 'voicechat.lanmaonet.com',
  373. 'content-type' => '',
  374. 'content-length' => '',
  375. )
  376. [ info ] [ PARAM ] array (
  377. )
  378. [ info ] [ LOG ] INIT File
  379. ---------------------------------------------------------------
  380. [ 2021-12-09T01:50:44+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  381. [运行时间:0.004400s] [吞吐率:227.27req/s] [内存消耗:339.58kb] [文件加载:123]
  382. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000035s ]
  383. [ info ] [ CACHE ] INIT File
  384. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000249s ]
  385. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  386. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  387. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  388. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  389. [ info ] [ ROUTE ] array (
  390. 'type' => 'module',
  391. 'module' =>
  392. array (
  393. 0 => 'mt',
  394. 1 => 'mt-xmlrpc.cgi',
  395. 2 => NULL,
  396. ),
  397. )
  398. [ info ] [ HEADER ] array (
  399. 'content-length' => '224',
  400. 'content-type' => 'text/xml',
  401. 'connection' => 'close',
  402. 'accept' => '*/*',
  403. 'accept-encoding' => 'gzip, deflate',
  404. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  405. 'host' => 'voicechat.lanmaonet.com',
  406. )
  407. [ info ] [ PARAM ] array (
  408. )
  409. [ info ] [ LOG ] INIT File
  410. ---------------------------------------------------------------
  411. [ 2021-12-09T04:01:58+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  412. [运行时间:0.025310s] [吞吐率:39.51req/s] [内存消耗:339.58kb] [文件加载:123]
  413. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  414. [ info ] [ CACHE ] INIT File
  415. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.004733s ]
  416. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000053s ]
  417. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  418. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  419. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000654s ]
  420. [ info ] [ ROUTE ] array (
  421. 'type' => 'module',
  422. 'module' =>
  423. array (
  424. 0 => 'mt',
  425. 1 => 'mt-xmlrpc.cgi',
  426. 2 => NULL,
  427. ),
  428. )
  429. [ info ] [ HEADER ] array (
  430. 'content-length' => '224',
  431. 'content-type' => 'text/xml',
  432. 'connection' => 'close',
  433. 'accept' => '*/*',
  434. 'accept-encoding' => 'gzip, deflate',
  435. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  436. 'host' => 'voicechat.lanmaonet.com',
  437. )
  438. [ info ] [ PARAM ] array (
  439. )
  440. [ info ] [ LOG ] INIT File
  441. ---------------------------------------------------------------
  442. [ 2021-12-09T04:09:05+08:00 ] 11.159.172.46 GET voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  443. [运行时间:0.003784s] [吞吐率:264.27req/s] [内存消耗:339.17kb] [文件加载:123]
  444. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  445. [ info ] [ CACHE ] INIT File
  446. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000244s ]
  447. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  448. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  449. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  450. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  451. [ info ] [ ROUTE ] array (
  452. 'type' => 'module',
  453. 'module' =>
  454. array (
  455. 0 => 'mt',
  456. 1 => 'mt-xmlrpc.cgi',
  457. 2 => NULL,
  458. ),
  459. )
  460. [ info ] [ HEADER ] array (
  461. 'via' => 'http/1.1 traffic_server[890ef534-aac9-42f1-9f0f-7e4a5fd7820b] (ApacheTrafficServer/9.0.0)',
  462. 'x-forwarded-for' => '11.159.172.46',
  463. 'client-ip' => '11.159.172.46',
  464. 'accept-encoding' => 'gzip',
  465. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',
  466. 'host' => 'voicechat.lanmaonet.com',
  467. 'content-type' => '',
  468. 'content-length' => '',
  469. )
  470. [ info ] [ PARAM ] array (
  471. )
  472. [ info ] [ LOG ] INIT File
  473. ---------------------------------------------------------------
  474. [ 2021-12-09T04:21:32+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  475. [运行时间:0.004223s] [吞吐率:236.81req/s] [内存消耗:339.58kb] [文件加载:123]
  476. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  477. [ info ] [ CACHE ] INIT File
  478. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000243s ]
  479. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  480. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  481. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  482. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  483. [ info ] [ ROUTE ] array (
  484. 'type' => 'module',
  485. 'module' =>
  486. array (
  487. 0 => 'mt',
  488. 1 => 'mt-xmlrpc.cgi',
  489. 2 => NULL,
  490. ),
  491. )
  492. [ info ] [ HEADER ] array (
  493. 'content-length' => '224',
  494. 'content-type' => 'text/xml',
  495. 'connection' => 'close',
  496. 'accept' => '*/*',
  497. 'accept-encoding' => 'gzip, deflate',
  498. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  499. 'host' => 'voicechat.lanmaonet.com',
  500. )
  501. [ info ] [ PARAM ] array (
  502. )
  503. [ info ] [ LOG ] INIT File
  504. ---------------------------------------------------------------
  505. [ 2021-12-09T04:27:04+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  506. [运行时间:0.005143s] [吞吐率:194.44req/s] [内存消耗:339.58kb] [文件加载:123]
  507. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  508. [ info ] [ CACHE ] INIT File
  509. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000269s ]
  510. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000047s ]
  511. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000067s ]
  512. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  513. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000048s ]
  514. [ info ] [ ROUTE ] array (
  515. 'type' => 'module',
  516. 'module' =>
  517. array (
  518. 0 => 'mt',
  519. 1 => 'mt-xmlrpc.cgi',
  520. 2 => NULL,
  521. ),
  522. )
  523. [ info ] [ HEADER ] array (
  524. 'content-length' => '224',
  525. 'content-type' => 'text/xml',
  526. 'connection' => 'close',
  527. 'accept' => '*/*',
  528. 'accept-encoding' => 'gzip, deflate',
  529. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  530. 'host' => 'voicechat.lanmaonet.com',
  531. )
  532. [ info ] [ PARAM ] array (
  533. )
  534. [ info ] [ LOG ] INIT File
  535. ---------------------------------------------------------------
  536. [ 2021-12-09T05:57:47+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  537. [运行时间:0.004679s] [吞吐率:213.72req/s] [内存消耗:339.58kb] [文件加载:123]
  538. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  539. [ info ] [ CACHE ] INIT File
  540. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000254s ]
  541. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  542. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  543. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  544. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  545. [ info ] [ ROUTE ] array (
  546. 'type' => 'module',
  547. 'module' =>
  548. array (
  549. 0 => 'mt',
  550. 1 => 'mt-xmlrpc.cgi',
  551. 2 => NULL,
  552. ),
  553. )
  554. [ info ] [ HEADER ] array (
  555. 'content-length' => '224',
  556. 'content-type' => 'text/xml',
  557. 'connection' => 'close',
  558. 'accept' => '*/*',
  559. 'accept-encoding' => 'gzip, deflate',
  560. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  561. 'host' => 'voicechat.lanmaonet.com',
  562. )
  563. [ info ] [ PARAM ] array (
  564. )
  565. [ info ] [ LOG ] INIT File
  566. ---------------------------------------------------------------
  567. [ 2021-12-09T06:22:12+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  568. [运行时间:0.004425s] [吞吐率:225.99req/s] [内存消耗:338.22kb] [文件加载:123]
  569. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  570. [ info ] [ CACHE ] INIT File
  571. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000272s ]
  572. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  573. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  574. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  575. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000060s ]
  576. [ info ] [ ROUTE ] array (
  577. 'type' => 'module',
  578. 'module' =>
  579. array (
  580. 0 => 'apple-app-site-association',
  581. 1 => NULL,
  582. 2 => NULL,
  583. ),
  584. )
  585. [ info ] [ HEADER ] array (
  586. 'accept-encoding' => 'gzip',
  587. 'user-agent' => 'AASA-Bot/1.0.0',
  588. 'host' => 'voicechat.lanmaonet.com',
  589. 'content-type' => '',
  590. 'content-length' => '',
  591. )
  592. [ info ] [ PARAM ] array (
  593. )
  594. [ info ] [ LOG ] INIT File
  595. ---------------------------------------------------------------
  596. [ 2021-12-09T06:26:51+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  597. [运行时间:0.004752s] [吞吐率:210.43req/s] [内存消耗:339.58kb] [文件加载:123]
  598. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  599. [ info ] [ CACHE ] INIT File
  600. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000287s ]
  601. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000045s ]
  602. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000065s ]
  603. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  604. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000048s ]
  605. [ info ] [ ROUTE ] array (
  606. 'type' => 'module',
  607. 'module' =>
  608. array (
  609. 0 => 'mt',
  610. 1 => 'mt-xmlrpc.cgi',
  611. 2 => NULL,
  612. ),
  613. )
  614. [ info ] [ HEADER ] array (
  615. 'content-length' => '224',
  616. 'content-type' => 'text/xml',
  617. 'connection' => 'close',
  618. 'accept' => '*/*',
  619. 'accept-encoding' => 'gzip, deflate',
  620. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  621. 'host' => 'voicechat.lanmaonet.com',
  622. )
  623. [ info ] [ PARAM ] array (
  624. )
  625. [ info ] [ LOG ] INIT File
  626. ---------------------------------------------------------------
  627. [ 2021-12-09T06:49:02+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  628. [运行时间:0.004467s] [吞吐率:223.86req/s] [内存消耗:339.58kb] [文件加载:123]
  629. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  630. [ info ] [ CACHE ] INIT File
  631. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000343s ]
  632. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000047s ]
  633. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  634. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  635. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  636. [ info ] [ ROUTE ] array (
  637. 'type' => 'module',
  638. 'module' =>
  639. array (
  640. 0 => 'mt',
  641. 1 => 'mt-xmlrpc.cgi',
  642. 2 => NULL,
  643. ),
  644. )
  645. [ info ] [ HEADER ] array (
  646. 'content-length' => '224',
  647. 'content-type' => 'text/xml',
  648. 'connection' => 'close',
  649. 'accept' => '*/*',
  650. 'accept-encoding' => 'gzip, deflate',
  651. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  652. 'host' => 'voicechat.lanmaonet.com',
  653. )
  654. [ info ] [ PARAM ] array (
  655. )
  656. [ info ] [ LOG ] INIT File
  657. ---------------------------------------------------------------
  658. [ 2021-12-09T06:54:34+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  659. [运行时间:0.004349s] [吞吐率:229.94req/s] [内存消耗:339.58kb] [文件加载:123]
  660. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  661. [ info ] [ CACHE ] INIT File
  662. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000256s ]
  663. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  664. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  665. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  666. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  667. [ info ] [ ROUTE ] array (
  668. 'type' => 'module',
  669. 'module' =>
  670. array (
  671. 0 => 'mt',
  672. 1 => 'mt-xmlrpc.cgi',
  673. 2 => NULL,
  674. ),
  675. )
  676. [ info ] [ HEADER ] array (
  677. 'content-length' => '224',
  678. 'content-type' => 'text/xml',
  679. 'connection' => 'close',
  680. 'accept' => '*/*',
  681. 'accept-encoding' => 'gzip, deflate',
  682. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  683. 'host' => 'voicechat.lanmaonet.com',
  684. )
  685. [ info ] [ PARAM ] array (
  686. )
  687. [ info ] [ LOG ] INIT File
  688. ---------------------------------------------------------------
  689. [ 2021-12-09T07:28:54+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  690. [运行时间:0.004564s] [吞吐率:219.10req/s] [内存消耗:339.58kb] [文件加载:123]
  691. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  692. [ info ] [ CACHE ] INIT File
  693. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000229s ]
  694. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000045s ]
  695. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000067s ]
  696. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  697. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  698. [ info ] [ ROUTE ] array (
  699. 'type' => 'module',
  700. 'module' =>
  701. array (
  702. 0 => 'mt',
  703. 1 => 'mt-xmlrpc.cgi',
  704. 2 => NULL,
  705. ),
  706. )
  707. [ info ] [ HEADER ] array (
  708. 'content-length' => '224',
  709. 'content-type' => 'text/xml',
  710. 'connection' => 'close',
  711. 'accept' => '*/*',
  712. 'accept-encoding' => 'gzip, deflate',
  713. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  714. 'host' => 'voicechat.lanmaonet.com',
  715. )
  716. [ info ] [ PARAM ] array (
  717. )
  718. [ info ] [ LOG ] INIT File
  719. ---------------------------------------------------------------
  720. [ 2021-12-09T07:49:52+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  721. [运行时间:0.006181s] [吞吐率:161.79req/s] [内存消耗:339.58kb] [文件加载:123]
  722. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  723. [ info ] [ CACHE ] INIT File
  724. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000312s ]
  725. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000044s ]
  726. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000065s ]
  727. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  728. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000048s ]
  729. [ info ] [ ROUTE ] array (
  730. 'type' => 'module',
  731. 'module' =>
  732. array (
  733. 0 => 'mt',
  734. 1 => 'mt-xmlrpc.cgi',
  735. 2 => NULL,
  736. ),
  737. )
  738. [ info ] [ HEADER ] array (
  739. 'content-length' => '224',
  740. 'content-type' => 'text/xml',
  741. 'connection' => 'close',
  742. 'accept' => '*/*',
  743. 'accept-encoding' => 'gzip, deflate',
  744. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  745. 'host' => 'voicechat.lanmaonet.com',
  746. )
  747. [ info ] [ PARAM ] array (
  748. )
  749. [ info ] [ LOG ] INIT File
  750. ---------------------------------------------------------------
  751. [ 2021-12-09T08:09:59+08:00 ] 125.212.221.113 POST voicechat.lanmaonet.com/mt/mt-xmlrpc.cgi
  752. [运行时间:0.004462s] [吞吐率:224.11req/s] [内存消耗:339.58kb] [文件加载:123]
  753. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  754. [ info ] [ CACHE ] INIT File
  755. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000235s ]
  756. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  757. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  758. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  759. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  760. [ info ] [ ROUTE ] array (
  761. 'type' => 'module',
  762. 'module' =>
  763. array (
  764. 0 => 'mt',
  765. 1 => 'mt-xmlrpc.cgi',
  766. 2 => NULL,
  767. ),
  768. )
  769. [ info ] [ HEADER ] array (
  770. 'content-length' => '224',
  771. 'content-type' => 'text/xml',
  772. 'connection' => 'close',
  773. 'accept' => '*/*',
  774. 'accept-encoding' => 'gzip, deflate',
  775. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36',
  776. 'host' => 'voicechat.lanmaonet.com',
  777. )
  778. [ info ] [ PARAM ] array (
  779. )
  780. [ info ] [ LOG ] INIT File
  781. ---------------------------------------------------------------
  782. [ 2021-12-09T08:34:27+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  783. [运行时间:0.012578s] [吞吐率:79.50req/s] [内存消耗:602.76kb] [文件加载:144]
  784. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  785. [ info ] [ CACHE ] INIT File
  786. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000258s ]
  787. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  788. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  789. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  790. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  791. [ info ] [ ROUTE ] array (
  792. 'type' => 'module',
  793. 'module' =>
  794. array (
  795. 0 => 'api',
  796. 1 => 'match',
  797. 2 => 'getVoiceTypeList',
  798. ),
  799. )
  800. [ info ] [ HEADER ] array (
  801. 'accept-encoding' => 'gzip',
  802. 'connection' => 'Keep-Alive',
  803. 'host' => 'voicechat.lanmaonet.com',
  804. 'content-length' => '42',
  805. 'content-type' => 'application/x-www-form-urlencoded',
  806. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  807. 'accept-language' => 'zh-CN,zh;q=0.8',
  808. )
  809. [ info ] [ PARAM ] array (
  810. 'token' => '893cd26d-f77b-4e27-a4e3-47fd46057803',
  811. )
  812. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  813. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000077s ]
  814. [ info ] [ TOKEN ] INIT Mysql
  815. [ info ] [ DB ] INIT mysql
  816. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  817. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  818. [ info ] [ LOG ] INIT File
  819. ---------------------------------------------------------------
  820. [ 2021-12-09T08:40:28+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  821. [运行时间:0.007695s] [吞吐率:129.96req/s] [内存消耗:602.76kb] [文件加载:144]
  822. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  823. [ info ] [ CACHE ] INIT File
  824. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000218s ]
  825. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  826. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000077s ]
  827. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  828. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  829. [ info ] [ ROUTE ] array (
  830. 'type' => 'module',
  831. 'module' =>
  832. array (
  833. 0 => 'api',
  834. 1 => 'match',
  835. 2 => 'getVoiceTypeList',
  836. ),
  837. )
  838. [ info ] [ HEADER ] array (
  839. 'accept-encoding' => 'gzip',
  840. 'connection' => 'Keep-Alive',
  841. 'host' => 'voicechat.lanmaonet.com',
  842. 'content-length' => '42',
  843. 'content-type' => 'application/x-www-form-urlencoded',
  844. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  845. 'accept-language' => 'zh-CN,zh;q=0.8',
  846. )
  847. [ info ] [ PARAM ] array (
  848. 'token' => '893cd26d-f77b-4e27-a4e3-47fd46057803',
  849. )
  850. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  851. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000074s ]
  852. [ info ] [ TOKEN ] INIT Mysql
  853. [ info ] [ DB ] INIT mysql
  854. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  855. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  856. [ info ] [ LOG ] INIT File
  857. ---------------------------------------------------------------
  858. [ 2021-12-09T08:41:23+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  859. [运行时间:0.007650s] [吞吐率:130.72req/s] [内存消耗:602.66kb] [文件加载:144]
  860. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  861. [ info ] [ CACHE ] INIT File
  862. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000256s ]
  863. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  864. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  865. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  866. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  867. [ info ] [ ROUTE ] array (
  868. 'type' => 'module',
  869. 'module' =>
  870. array (
  871. 0 => 'api',
  872. 1 => 'match',
  873. 2 => 'getVoiceTypeList',
  874. ),
  875. )
  876. [ info ] [ HEADER ] array (
  877. 'accept-encoding' => 'gzip',
  878. 'content-length' => '42',
  879. 'content-type' => 'application/x-www-form-urlencoded',
  880. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  881. 'accept-language' => 'zh-CN,zh;q=0.8',
  882. 'host' => 'voicechat.lanmaonet.com',
  883. )
  884. [ info ] [ PARAM ] array (
  885. 'token' => '15d3a8b1-5936-477c-80f3-b5f540ff859e',
  886. )
  887. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  888. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  889. [ info ] [ TOKEN ] INIT Mysql
  890. [ info ] [ DB ] INIT mysql
  891. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000079s ]
  892. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  893. [ info ] [ LOG ] INIT File
  894. ---------------------------------------------------------------
  895. [ 2021-12-09T08:46:41+08:00 ] 106.55.201.157 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  896. [运行时间:0.006378s] [吞吐率:156.78req/s] [内存消耗:595.09kb] [文件加载:141]
  897. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  898. [ info ] [ CACHE ] INIT File
  899. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000253s ]
  900. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000063s ]
  901. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000111s ]
  902. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  903. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  904. [ info ] [ ROUTE ] array (
  905. 'type' => 'module',
  906. 'module' =>
  907. array (
  908. 0 => 'api',
  909. 1 => 'match',
  910. 2 => 'getVoiceTypeList',
  911. ),
  912. )
  913. [ info ] [ HEADER ] array (
  914. 'accept-encoding' => 'gzip',
  915. 'content-length' => '0',
  916. 'content-type' => 'application/x-www-form-urlencoded',
  917. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  918. 'accept-language' => 'zh-CN,zh;q=0.8',
  919. 'host' => 'voicechat.lanmaonet.com',
  920. )
  921. [ info ] [ PARAM ] array (
  922. )
  923. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  924. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  925. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  926. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  927. [ info ] [ DB ] INIT mysql
  928. [ info ] [ LOG ] INIT File
  929. ---------------------------------------------------------------
  930. [ 2021-12-09T08:47:58+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  931. [运行时间:0.004352s] [吞吐率:229.79req/s] [内存消耗:338.22kb] [文件加载:123]
  932. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  933. [ info ] [ CACHE ] INIT File
  934. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000226s ]
  935. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  936. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  937. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  938. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  939. [ info ] [ ROUTE ] array (
  940. 'type' => 'module',
  941. 'module' =>
  942. array (
  943. 0 => 'apple-app-site-association',
  944. 1 => NULL,
  945. 2 => NULL,
  946. ),
  947. )
  948. [ info ] [ HEADER ] array (
  949. 'accept-encoding' => 'gzip',
  950. 'user-agent' => 'AASA-Bot/1.0.0',
  951. 'host' => 'voicechat.lanmaonet.com',
  952. 'content-type' => '',
  953. 'content-length' => '',
  954. )
  955. [ info ] [ PARAM ] array (
  956. )
  957. [ info ] [ LOG ] INIT File
  958. ---------------------------------------------------------------
  959. [ 2021-12-09T08:52:43+08:00 ] 40.77.167.80 GET voicechat.lanmaonet.com/
  960. [运行时间:0.012217s] [吞吐率:81.85req/s] [内存消耗:468.58kb] [文件加载:135]
  961. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  962. [ info ] [ CACHE ] INIT File
  963. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000223s ]
  964. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  965. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  966. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  967. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  968. [ info ] [ ROUTE ] array (
  969. 'type' => 'module',
  970. 'module' =>
  971. array (
  972. 0 => '',
  973. 1 => NULL,
  974. 2 => NULL,
  975. ),
  976. )
  977. [ info ] [ HEADER ] array (
  978. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  979. 'from' => 'bingbot(at)microsoft.com',
  980. 'accept-encoding' => 'gzip, deflate',
  981. 'accept' => '*/*',
  982. 'pragma' => 'no-cache',
  983. 'cache-control' => 'no-cache',
  984. 'host' => 'voicechat.lanmaonet.com',
  985. 'content-type' => '',
  986. 'content-length' => '',
  987. )
  988. [ info ] [ PARAM ] array (
  989. )
  990. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  991. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  992. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000071s ]
  993. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000048s ]
  994. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  995. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  996. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  997. 0 => 'user',
  998. 1 => 'site',
  999. 2 => 'config',
  1000. ) ]
  1001. [ info ] [ LOG ] INIT File
  1002. ---------------------------------------------------------------
  1003. [ 2021-12-09T08:52:43+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1004. [运行时间:0.005570s] [吞吐率:179.54req/s] [内存消耗:602.76kb] [文件加载:144]
  1005. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1006. [ info ] [ CACHE ] INIT File
  1007. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000198s ]
  1008. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1009. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  1010. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1011. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1012. [ info ] [ ROUTE ] array (
  1013. 'type' => 'module',
  1014. 'module' =>
  1015. array (
  1016. 0 => 'api',
  1017. 1 => 'match',
  1018. 2 => 'getVoiceTypeList',
  1019. ),
  1020. )
  1021. [ info ] [ HEADER ] array (
  1022. 'accept-encoding' => 'gzip',
  1023. 'connection' => 'Keep-Alive',
  1024. 'host' => 'voicechat.lanmaonet.com',
  1025. 'content-length' => '42',
  1026. 'content-type' => 'application/x-www-form-urlencoded',
  1027. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1028. 'accept-language' => 'zh-CN,zh;q=0.8',
  1029. )
  1030. [ info ] [ PARAM ] array (
  1031. 'token' => '893cd26d-f77b-4e27-a4e3-47fd46057803',
  1032. )
  1033. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1034. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1035. [ info ] [ TOKEN ] INIT Mysql
  1036. [ info ] [ DB ] INIT mysql
  1037. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1038. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1039. [ info ] [ LOG ] INIT File
  1040. ---------------------------------------------------------------
  1041. [ 2021-12-09T08:53:42+08:00 ] 3.121.247.33 GET voicechat.lanmaonet.com/apple-app-site-association
  1042. [运行时间:0.004226s] [吞吐率:236.63req/s] [内存消耗:338.22kb] [文件加载:123]
  1043. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1044. [ info ] [ CACHE ] INIT File
  1045. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000263s ]
  1046. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1047. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1048. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1049. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1050. [ info ] [ ROUTE ] array (
  1051. 'type' => 'module',
  1052. 'module' =>
  1053. array (
  1054. 0 => 'apple-app-site-association',
  1055. 1 => NULL,
  1056. 2 => NULL,
  1057. ),
  1058. )
  1059. [ info ] [ HEADER ] array (
  1060. 'accept-encoding' => 'gzip',
  1061. 'user-agent' => 'AASA-Bot/1.0.0',
  1062. 'host' => 'voicechat.lanmaonet.com',
  1063. 'content-type' => '',
  1064. 'content-length' => '',
  1065. )
  1066. [ info ] [ PARAM ] array (
  1067. )
  1068. [ info ] [ LOG ] INIT File
  1069. ---------------------------------------------------------------
  1070. [ 2021-12-09T09:31:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1071. [运行时间:0.008145s] [吞吐率:122.77req/s] [内存消耗:602.66kb] [文件加载:144]
  1072. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1073. [ info ] [ CACHE ] INIT File
  1074. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000295s ]
  1075. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1076. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  1077. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1078. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  1079. [ info ] [ ROUTE ] array (
  1080. 'type' => 'module',
  1081. 'module' =>
  1082. array (
  1083. 0 => 'api',
  1084. 1 => 'match',
  1085. 2 => 'getVoiceTypeList',
  1086. ),
  1087. )
  1088. [ info ] [ HEADER ] array (
  1089. 'accept-encoding' => 'gzip',
  1090. 'content-length' => '42',
  1091. 'content-type' => 'application/x-www-form-urlencoded',
  1092. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1093. 'accept-language' => 'zh-CN,zh;q=0.8',
  1094. 'host' => 'voicechat.lanmaonet.com',
  1095. )
  1096. [ info ] [ PARAM ] array (
  1097. 'token' => '15d3a8b1-5936-477c-80f3-b5f540ff859e',
  1098. )
  1099. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1100. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000078s ]
  1101. [ info ] [ TOKEN ] INIT Mysql
  1102. [ info ] [ DB ] INIT mysql
  1103. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000084s ]
  1104. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1105. [ info ] [ LOG ] INIT File
  1106. ---------------------------------------------------------------
  1107. [ 2021-12-09T09:55:38+08:00 ] 18.158.42.236 GET voicechat.lanmaonet.com/apple-app-site-association
  1108. [运行时间:0.004379s] [吞吐率:228.36req/s] [内存消耗:338.22kb] [文件加载:123]
  1109. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1110. [ info ] [ CACHE ] INIT File
  1111. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000283s ]
  1112. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1113. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  1114. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1115. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  1116. [ info ] [ ROUTE ] array (
  1117. 'type' => 'module',
  1118. 'module' =>
  1119. array (
  1120. 0 => 'apple-app-site-association',
  1121. 1 => NULL,
  1122. 2 => NULL,
  1123. ),
  1124. )
  1125. [ info ] [ HEADER ] array (
  1126. 'accept-encoding' => 'gzip',
  1127. 'user-agent' => 'AASA-Bot/1.0.0',
  1128. 'host' => 'voicechat.lanmaonet.com',
  1129. 'content-type' => '',
  1130. 'content-length' => '',
  1131. )
  1132. [ info ] [ PARAM ] array (
  1133. )
  1134. [ info ] [ LOG ] INIT File
  1135. ---------------------------------------------------------------
  1136. [ 2021-12-09T10:13:35+08:00 ] 45.76.68.204 GET voicechat.lanmaonet.com/apple-app-site-association
  1137. [运行时间:0.004672s] [吞吐率:214.05req/s] [内存消耗:340.17kb] [文件加载:123]
  1138. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1139. [ info ] [ CACHE ] INIT File
  1140. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000256s ]
  1141. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  1142. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  1143. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1144. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1145. [ info ] [ ROUTE ] array (
  1146. 'type' => 'module',
  1147. 'module' =>
  1148. array (
  1149. 0 => 'apple-app-site-association',
  1150. 1 => NULL,
  1151. 2 => NULL,
  1152. ),
  1153. )
  1154. [ info ] [ HEADER ] array (
  1155. 'user-agent' => 'swcd (unknown version) CFNetwork/1128.0.1 Darwin/19.6.0',
  1156. 'accept-encoding' => 'gzip, deflate, br',
  1157. 'connection' => 'keep-alive',
  1158. 'accept-language' => 'zh-cn',
  1159. 'accept' => '*/*',
  1160. 'host' => 'voicechat.lanmaonet.com',
  1161. 'content-type' => '',
  1162. 'content-length' => '',
  1163. )
  1164. [ info ] [ PARAM ] array (
  1165. )
  1166. [ info ] [ LOG ] INIT File
  1167. ---------------------------------------------------------------
  1168. [ 2021-12-09T11:00:54+08:00 ] 157.55.39.9 GET voicechat.lanmaonet.com/
  1169. [运行时间:0.023810s] [吞吐率:42.00req/s] [内存消耗:468.62kb] [文件加载:135]
  1170. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  1171. [ info ] [ CACHE ] INIT File
  1172. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.002565s ]
  1173. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000052s ]
  1174. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  1175. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1176. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.002408s ]
  1177. [ info ] [ ROUTE ] array (
  1178. 'type' => 'module',
  1179. 'module' =>
  1180. array (
  1181. 0 => '',
  1182. 1 => NULL,
  1183. 2 => NULL,
  1184. ),
  1185. )
  1186. [ info ] [ HEADER ] array (
  1187. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  1188. 'host' => 'voicechat.lanmaonet.com',
  1189. 'from' => 'bingbot(at)microsoft.com',
  1190. 'accept-encoding' => 'gzip, deflate',
  1191. 'accept' => '*/*',
  1192. 'pragma' => 'no-cache',
  1193. 'connection' => 'Keep-Alive',
  1194. 'cache-control' => 'no-cache',
  1195. 'content-type' => '',
  1196. 'content-length' => '',
  1197. )
  1198. [ info ] [ PARAM ] array (
  1199. )
  1200. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  1201. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000079s ]
  1202. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000072s ]
  1203. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000063s ]
  1204. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  1205. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1206. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1207. 0 => 'user',
  1208. 1 => 'site',
  1209. 2 => 'config',
  1210. ) ]
  1211. [ info ] [ LOG ] INIT File
  1212. ---------------------------------------------------------------
  1213. [ 2021-12-09T11:50:35+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1214. [运行时间:0.007372s] [吞吐率:135.65req/s] [内存消耗:602.66kb] [文件加载:144]
  1215. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1216. [ info ] [ CACHE ] INIT File
  1217. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000254s ]
  1218. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1219. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  1220. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1221. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  1222. [ info ] [ ROUTE ] array (
  1223. 'type' => 'module',
  1224. 'module' =>
  1225. array (
  1226. 0 => 'api',
  1227. 1 => 'match',
  1228. 2 => 'getVoiceTypeList',
  1229. ),
  1230. )
  1231. [ info ] [ HEADER ] array (
  1232. 'accept-encoding' => 'gzip',
  1233. 'content-length' => '42',
  1234. 'content-type' => 'application/x-www-form-urlencoded',
  1235. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1236. 'accept-language' => 'zh-CN,zh;q=0.8',
  1237. 'host' => 'voicechat.lanmaonet.com',
  1238. )
  1239. [ info ] [ PARAM ] array (
  1240. 'token' => '15d3a8b1-5936-477c-80f3-b5f540ff859e',
  1241. )
  1242. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1243. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1244. [ info ] [ TOKEN ] INIT Mysql
  1245. [ info ] [ DB ] INIT mysql
  1246. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000074s ]
  1247. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1248. [ info ] [ LOG ] INIT File
  1249. ---------------------------------------------------------------
  1250. [ 2021-12-09T12:45:46+08:00 ] 18.158.42.236 GET voicechat.lanmaonet.com/apple-app-site-association
  1251. [运行时间:0.005782s] [吞吐率:172.95req/s] [内存消耗:338.22kb] [文件加载:123]
  1252. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1253. [ info ] [ CACHE ] INIT File
  1254. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000302s ]
  1255. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1256. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  1257. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1258. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000054s ]
  1259. [ info ] [ ROUTE ] array (
  1260. 'type' => 'module',
  1261. 'module' =>
  1262. array (
  1263. 0 => 'apple-app-site-association',
  1264. 1 => NULL,
  1265. 2 => NULL,
  1266. ),
  1267. )
  1268. [ info ] [ HEADER ] array (
  1269. 'accept-encoding' => 'gzip',
  1270. 'user-agent' => 'AASA-Bot/1.0.0',
  1271. 'host' => 'voicechat.lanmaonet.com',
  1272. 'content-type' => '',
  1273. 'content-length' => '',
  1274. )
  1275. [ info ] [ PARAM ] array (
  1276. )
  1277. [ info ] [ LOG ] INIT File
  1278. ---------------------------------------------------------------
  1279. [ 2021-12-09T14:30:31+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1280. [运行时间:0.008374s] [吞吐率:119.42req/s] [内存消耗:602.66kb] [文件加载:144]
  1281. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1282. [ info ] [ CACHE ] INIT File
  1283. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000293s ]
  1284. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1285. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  1286. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1287. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  1288. [ info ] [ ROUTE ] array (
  1289. 'type' => 'module',
  1290. 'module' =>
  1291. array (
  1292. 0 => 'api',
  1293. 1 => 'match',
  1294. 2 => 'getVoiceTypeList',
  1295. ),
  1296. )
  1297. [ info ] [ HEADER ] array (
  1298. 'accept-encoding' => 'gzip',
  1299. 'content-length' => '42',
  1300. 'content-type' => 'application/x-www-form-urlencoded',
  1301. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1302. 'accept-language' => 'zh-CN,zh;q=0.8',
  1303. 'host' => 'voicechat.lanmaonet.com',
  1304. )
  1305. [ info ] [ PARAM ] array (
  1306. 'token' => '15d3a8b1-5936-477c-80f3-b5f540ff859e',
  1307. )
  1308. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1309. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000087s ]
  1310. [ info ] [ TOKEN ] INIT Mysql
  1311. [ info ] [ DB ] INIT mysql
  1312. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000086s ]
  1313. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1314. [ info ] [ LOG ] INIT File
  1315. ---------------------------------------------------------------
  1316. [ 2021-12-09T15:31:37+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  1317. [运行时间:0.007970s] [吞吐率:125.47req/s] [内存消耗:338.22kb] [文件加载:123]
  1318. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1319. [ info ] [ CACHE ] INIT File
  1320. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000220s ]
  1321. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  1322. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  1323. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1324. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  1325. [ info ] [ ROUTE ] array (
  1326. 'type' => 'module',
  1327. 'module' =>
  1328. array (
  1329. 0 => 'apple-app-site-association',
  1330. 1 => NULL,
  1331. 2 => NULL,
  1332. ),
  1333. )
  1334. [ info ] [ HEADER ] array (
  1335. 'accept-encoding' => 'gzip',
  1336. 'user-agent' => 'AASA-Bot/1.0.0',
  1337. 'host' => 'voicechat.lanmaonet.com',
  1338. 'content-type' => '',
  1339. 'content-length' => '',
  1340. )
  1341. [ info ] [ PARAM ] array (
  1342. )
  1343. [ info ] [ LOG ] INIT File
  1344. ---------------------------------------------------------------
  1345. [ 2021-12-09T16:10:25+08:00 ] 52.76.238.126 GET voicechat.lanmaonet.com/apple-app-site-association
  1346. [运行时间:0.004198s] [吞吐率:238.20req/s] [内存消耗:338.22kb] [文件加载:123]
  1347. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1348. [ info ] [ CACHE ] INIT File
  1349. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000256s ]
  1350. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1351. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1352. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1353. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000055s ]
  1354. [ info ] [ ROUTE ] array (
  1355. 'type' => 'module',
  1356. 'module' =>
  1357. array (
  1358. 0 => 'apple-app-site-association',
  1359. 1 => NULL,
  1360. 2 => NULL,
  1361. ),
  1362. )
  1363. [ info ] [ HEADER ] array (
  1364. 'accept-encoding' => 'gzip',
  1365. 'user-agent' => 'AASA-Bot/1.0.0',
  1366. 'host' => 'voicechat.lanmaonet.com',
  1367. 'content-type' => '',
  1368. 'content-length' => '',
  1369. )
  1370. [ info ] [ PARAM ] array (
  1371. )
  1372. [ info ] [ LOG ] INIT File
  1373. ---------------------------------------------------------------
  1374. [ 2021-12-09T16:11:30+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1375. [运行时间:0.007627s] [吞吐率:131.11req/s] [内存消耗:602.76kb] [文件加载:144]
  1376. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1377. [ info ] [ CACHE ] INIT File
  1378. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000247s ]
  1379. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1380. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1381. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1382. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  1383. [ info ] [ ROUTE ] array (
  1384. 'type' => 'module',
  1385. 'module' =>
  1386. array (
  1387. 0 => 'api',
  1388. 1 => 'match',
  1389. 2 => 'getVoiceTypeList',
  1390. ),
  1391. )
  1392. [ info ] [ HEADER ] array (
  1393. 'accept-encoding' => 'gzip',
  1394. 'connection' => 'Keep-Alive',
  1395. 'host' => 'voicechat.lanmaonet.com',
  1396. 'content-length' => '42',
  1397. 'content-type' => 'application/x-www-form-urlencoded',
  1398. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1399. 'accept-language' => 'zh-CN,zh;q=0.8',
  1400. )
  1401. [ info ] [ PARAM ] array (
  1402. 'token' => '893cd26d-f77b-4e27-a4e3-47fd46057803',
  1403. )
  1404. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1405. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000071s ]
  1406. [ info ] [ TOKEN ] INIT Mysql
  1407. [ info ] [ DB ] INIT mysql
  1408. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  1409. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1410. [ info ] [ LOG ] INIT File
  1411. ---------------------------------------------------------------
  1412. [ 2021-12-09T16:39:57+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  1413. [运行时间:0.004108s] [吞吐率:243.42req/s] [内存消耗:338.22kb] [文件加载:123]
  1414. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1415. [ info ] [ CACHE ] INIT File
  1416. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000249s ]
  1417. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1418. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1419. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1420. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  1421. [ info ] [ ROUTE ] array (
  1422. 'type' => 'module',
  1423. 'module' =>
  1424. array (
  1425. 0 => 'apple-app-site-association',
  1426. 1 => NULL,
  1427. 2 => NULL,
  1428. ),
  1429. )
  1430. [ info ] [ HEADER ] array (
  1431. 'accept-encoding' => 'gzip',
  1432. 'user-agent' => 'AASA-Bot/1.0.0',
  1433. 'host' => 'voicechat.lanmaonet.com',
  1434. 'content-type' => '',
  1435. 'content-length' => '',
  1436. )
  1437. [ info ] [ PARAM ] array (
  1438. )
  1439. [ info ] [ LOG ] INIT File
  1440. ---------------------------------------------------------------
  1441. [ 2021-12-09T16:47:29+08:00 ] 20.185.55.42 GET voicechat.lanmaonet.com/.env
  1442. [运行时间:0.004488s] [吞吐率:222.82req/s] [内存消耗:338.77kb] [文件加载:123]
  1443. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1444. [ info ] [ CACHE ] INIT File
  1445. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000294s ]
  1446. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000051s ]
  1447. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000070s ]
  1448. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1449. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  1450. [ info ] [ ROUTE ] array (
  1451. 'type' => 'module',
  1452. 'module' =>
  1453. array (
  1454. 0 => '.env',
  1455. 1 => NULL,
  1456. 2 => NULL,
  1457. ),
  1458. )
  1459. [ info ] [ HEADER ] array (
  1460. 'connection' => 'keep-alive',
  1461. 'accept' => '*/*',
  1462. 'accept-encoding' => 'gzip, deflate',
  1463. 'user-agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',
  1464. 'host' => 'voicechat.lanmaonet.com',
  1465. 'content-type' => '',
  1466. 'content-length' => '',
  1467. )
  1468. [ info ] [ PARAM ] array (
  1469. )
  1470. [ info ] [ LOG ] INIT File
  1471. ---------------------------------------------------------------
  1472. [ 2021-12-09T16:47:31+08:00 ] 20.185.55.42 POST voicechat.lanmaonet.com/
  1473. [运行时间:0.013537s] [吞吐率:73.87req/s] [内存消耗:468.17kb] [文件加载:135]
  1474. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1475. [ info ] [ CACHE ] INIT File
  1476. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000211s ]
  1477. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000053s ]
  1478. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000076s ]
  1479. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1480. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1481. [ info ] [ ROUTE ] array (
  1482. 'type' => 'module',
  1483. 'module' =>
  1484. array (
  1485. 0 => '',
  1486. 1 => NULL,
  1487. 2 => NULL,
  1488. ),
  1489. )
  1490. [ info ] [ HEADER ] array (
  1491. 'content-type' => 'application/x-www-form-urlencoded',
  1492. 'content-length' => '20',
  1493. 'connection' => 'keep-alive',
  1494. 'accept' => '*/*',
  1495. 'accept-encoding' => 'gzip, deflate',
  1496. 'user-agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',
  1497. 'host' => 'voicechat.lanmaonet.com',
  1498. )
  1499. [ info ] [ PARAM ] array (
  1500. '0x' =>
  1501. array (
  1502. 0 => 'androxgh0st',
  1503. ),
  1504. )
  1505. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  1506. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  1507. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  1508. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000043s ]
  1509. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  1510. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1511. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1512. 0 => 'user',
  1513. 1 => 'site',
  1514. 2 => 'config',
  1515. ) ]
  1516. [ info ] [ LOG ] INIT File
  1517. ---------------------------------------------------------------
  1518. [ 2021-12-09T16:47:37+08:00 ] 20.185.55.42 GET voicechat.lanmaonet.com/.env
  1519. [运行时间:0.004207s] [吞吐率:237.70req/s] [内存消耗:338.77kb] [文件加载:123]
  1520. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1521. [ info ] [ CACHE ] INIT File
  1522. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000242s ]
  1523. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000065s ]
  1524. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000082s ]
  1525. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1526. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  1527. [ info ] [ ROUTE ] array (
  1528. 'type' => 'module',
  1529. 'module' =>
  1530. array (
  1531. 0 => '.env',
  1532. 1 => NULL,
  1533. 2 => NULL,
  1534. ),
  1535. )
  1536. [ info ] [ HEADER ] array (
  1537. 'connection' => 'keep-alive',
  1538. 'accept' => '*/*',
  1539. 'accept-encoding' => 'gzip, deflate',
  1540. 'user-agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',
  1541. 'host' => 'voicechat.lanmaonet.com',
  1542. 'content-type' => '',
  1543. 'content-length' => '',
  1544. )
  1545. [ info ] [ PARAM ] array (
  1546. )
  1547. [ info ] [ LOG ] INIT File
  1548. ---------------------------------------------------------------
  1549. [ 2021-12-09T16:47:42+08:00 ] 20.185.55.42 POST voicechat.lanmaonet.com/
  1550. [运行时间:0.009664s] [吞吐率:103.48req/s] [内存消耗:468.17kb] [文件加载:135]
  1551. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1552. [ info ] [ CACHE ] INIT File
  1553. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000259s ]
  1554. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1555. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1556. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1557. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  1558. [ info ] [ ROUTE ] array (
  1559. 'type' => 'module',
  1560. 'module' =>
  1561. array (
  1562. 0 => '',
  1563. 1 => NULL,
  1564. 2 => NULL,
  1565. ),
  1566. )
  1567. [ info ] [ HEADER ] array (
  1568. 'content-type' => 'application/x-www-form-urlencoded',
  1569. 'content-length' => '20',
  1570. 'connection' => 'keep-alive',
  1571. 'accept' => '*/*',
  1572. 'accept-encoding' => 'gzip, deflate',
  1573. 'user-agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',
  1574. 'host' => 'voicechat.lanmaonet.com',
  1575. )
  1576. [ info ] [ PARAM ] array (
  1577. '0x' =>
  1578. array (
  1579. 0 => 'androxgh0st',
  1580. ),
  1581. )
  1582. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  1583. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  1584. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  1585. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000054s ]
  1586. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  1587. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1588. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1589. 0 => 'user',
  1590. 1 => 'site',
  1591. 2 => 'config',
  1592. ) ]
  1593. [ info ] [ LOG ] INIT File
  1594. ---------------------------------------------------------------
  1595. [ 2021-12-09T17:51:07+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1596. [运行时间:0.008037s] [吞吐率:124.43req/s] [内存消耗:602.76kb] [文件加载:144]
  1597. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1598. [ info ] [ CACHE ] INIT File
  1599. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000295s ]
  1600. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1601. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1602. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1603. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  1604. [ info ] [ ROUTE ] array (
  1605. 'type' => 'module',
  1606. 'module' =>
  1607. array (
  1608. 0 => 'api',
  1609. 1 => 'match',
  1610. 2 => 'getVoiceTypeList',
  1611. ),
  1612. )
  1613. [ info ] [ HEADER ] array (
  1614. 'accept-encoding' => 'gzip',
  1615. 'connection' => 'Keep-Alive',
  1616. 'host' => 'voicechat.lanmaonet.com',
  1617. 'content-length' => '42',
  1618. 'content-type' => 'application/x-www-form-urlencoded',
  1619. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1620. 'accept-language' => 'zh-CN,zh;q=0.8',
  1621. )
  1622. [ info ] [ PARAM ] array (
  1623. 'token' => '893cd26d-f77b-4e27-a4e3-47fd46057803',
  1624. )
  1625. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1626. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  1627. [ info ] [ TOKEN ] INIT Mysql
  1628. [ info ] [ DB ] INIT mysql
  1629. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  1630. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1631. [ info ] [ LOG ] INIT File
  1632. ---------------------------------------------------------------
  1633. [ 2021-12-09T18:07:19+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1634. [运行时间:0.008114s] [吞吐率:123.24req/s] [内存消耗:602.76kb] [文件加载:144]
  1635. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1636. [ info ] [ CACHE ] INIT File
  1637. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000275s ]
  1638. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1639. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  1640. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1641. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  1642. [ info ] [ ROUTE ] array (
  1643. 'type' => 'module',
  1644. 'module' =>
  1645. array (
  1646. 0 => 'api',
  1647. 1 => 'match',
  1648. 2 => 'getVoiceTypeList',
  1649. ),
  1650. )
  1651. [ info ] [ HEADER ] array (
  1652. 'accept-encoding' => 'gzip',
  1653. 'connection' => 'Keep-Alive',
  1654. 'host' => 'voicechat.lanmaonet.com',
  1655. 'content-length' => '42',
  1656. 'content-type' => 'application/x-www-form-urlencoded',
  1657. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1658. 'accept-language' => 'zh-CN,zh;q=0.8',
  1659. )
  1660. [ info ] [ PARAM ] array (
  1661. 'token' => '893cd26d-f77b-4e27-a4e3-47fd46057803',
  1662. )
  1663. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1664. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  1665. [ info ] [ TOKEN ] INIT Mysql
  1666. [ info ] [ DB ] INIT mysql
  1667. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000069s ]
  1668. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1669. [ info ] [ LOG ] INIT File
  1670. ---------------------------------------------------------------
  1671. [ 2021-12-09T18:08:59+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1672. [运行时间:0.007770s] [吞吐率:128.70req/s] [内存消耗:602.76kb] [文件加载:144]
  1673. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1674. [ info ] [ CACHE ] INIT File
  1675. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000255s ]
  1676. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  1677. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1678. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1679. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1680. [ info ] [ ROUTE ] array (
  1681. 'type' => 'module',
  1682. 'module' =>
  1683. array (
  1684. 0 => 'api',
  1685. 1 => 'match',
  1686. 2 => 'getVoiceTypeList',
  1687. ),
  1688. )
  1689. [ info ] [ HEADER ] array (
  1690. 'accept-encoding' => 'gzip',
  1691. 'connection' => 'Keep-Alive',
  1692. 'host' => 'voicechat.lanmaonet.com',
  1693. 'content-length' => '42',
  1694. 'content-type' => 'application/x-www-form-urlencoded',
  1695. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1696. 'accept-language' => 'zh-CN,zh;q=0.8',
  1697. )
  1698. [ info ] [ PARAM ] array (
  1699. 'token' => '893cd26d-f77b-4e27-a4e3-47fd46057803',
  1700. )
  1701. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1702. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000075s ]
  1703. [ info ] [ TOKEN ] INIT Mysql
  1704. [ info ] [ DB ] INIT mysql
  1705. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  1706. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1707. [ info ] [ LOG ] INIT File
  1708. ---------------------------------------------------------------
  1709. [ 2021-12-09T18:18:37+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  1710. [运行时间:0.004397s] [吞吐率:227.43req/s] [内存消耗:338.22kb] [文件加载:123]
  1711. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1712. [ info ] [ CACHE ] INIT File
  1713. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000260s ]
  1714. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1715. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  1716. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1717. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1718. [ info ] [ ROUTE ] array (
  1719. 'type' => 'module',
  1720. 'module' =>
  1721. array (
  1722. 0 => 'apple-app-site-association',
  1723. 1 => NULL,
  1724. 2 => NULL,
  1725. ),
  1726. )
  1727. [ info ] [ HEADER ] array (
  1728. 'accept-encoding' => 'gzip',
  1729. 'user-agent' => 'AASA-Bot/1.0.0',
  1730. 'host' => 'voicechat.lanmaonet.com',
  1731. 'content-type' => '',
  1732. 'content-length' => '',
  1733. )
  1734. [ info ] [ PARAM ] array (
  1735. )
  1736. [ info ] [ LOG ] INIT File
  1737. ---------------------------------------------------------------
  1738. [ 2021-12-09T18:34:55+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1739. [运行时间:0.008110s] [吞吐率:123.30req/s] [内存消耗:602.76kb] [文件加载:144]
  1740. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1741. [ info ] [ CACHE ] INIT File
  1742. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000982s ]
  1743. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  1744. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  1745. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1746. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  1747. [ info ] [ ROUTE ] array (
  1748. 'type' => 'module',
  1749. 'module' =>
  1750. array (
  1751. 0 => 'api',
  1752. 1 => 'match',
  1753. 2 => 'getVoiceTypeList',
  1754. ),
  1755. )
  1756. [ info ] [ HEADER ] array (
  1757. 'accept-encoding' => 'gzip',
  1758. 'connection' => 'Keep-Alive',
  1759. 'host' => 'voicechat.lanmaonet.com',
  1760. 'content-length' => '42',
  1761. 'content-type' => 'application/x-www-form-urlencoded',
  1762. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1763. 'accept-language' => 'zh-CN,zh;q=0.8',
  1764. )
  1765. [ info ] [ PARAM ] array (
  1766. 'token' => '893cd26d-f77b-4e27-a4e3-47fd46057803',
  1767. )
  1768. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1769. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000070s ]
  1770. [ info ] [ TOKEN ] INIT Mysql
  1771. [ info ] [ DB ] INIT mysql
  1772. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  1773. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1774. [ info ] [ LOG ] INIT File
  1775. ---------------------------------------------------------------
  1776. [ 2021-12-09T20:22:01+08:00 ] 3.121.247.33 GET voicechat.lanmaonet.com/apple-app-site-association
  1777. [运行时间:0.004438s] [吞吐率:225.32req/s] [内存消耗:338.22kb] [文件加载:123]
  1778. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1779. [ info ] [ CACHE ] INIT File
  1780. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000316s ]
  1781. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000072s ]
  1782. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000094s ]
  1783. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1784. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000047s ]
  1785. [ info ] [ ROUTE ] array (
  1786. 'type' => 'module',
  1787. 'module' =>
  1788. array (
  1789. 0 => 'apple-app-site-association',
  1790. 1 => NULL,
  1791. 2 => NULL,
  1792. ),
  1793. )
  1794. [ info ] [ HEADER ] array (
  1795. 'accept-encoding' => 'gzip',
  1796. 'user-agent' => 'AASA-Bot/1.0.0',
  1797. 'host' => 'voicechat.lanmaonet.com',
  1798. 'content-type' => '',
  1799. 'content-length' => '',
  1800. )
  1801. [ info ] [ PARAM ] array (
  1802. )
  1803. [ info ] [ LOG ] INIT File
  1804. ---------------------------------------------------------------
  1805. [ 2021-12-09T21:08:13+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  1806. [运行时间:0.004451s] [吞吐率:224.67req/s] [内存消耗:338.22kb] [文件加载:123]
  1807. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  1808. [ info ] [ CACHE ] INIT File
  1809. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000286s ]
  1810. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1811. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1812. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1813. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  1814. [ info ] [ ROUTE ] array (
  1815. 'type' => 'module',
  1816. 'module' =>
  1817. array (
  1818. 0 => 'apple-app-site-association',
  1819. 1 => NULL,
  1820. 2 => NULL,
  1821. ),
  1822. )
  1823. [ info ] [ HEADER ] array (
  1824. 'accept-encoding' => 'gzip',
  1825. 'user-agent' => 'AASA-Bot/1.0.0',
  1826. 'host' => 'voicechat.lanmaonet.com',
  1827. 'content-type' => '',
  1828. 'content-length' => '',
  1829. )
  1830. [ info ] [ PARAM ] array (
  1831. )
  1832. [ info ] [ LOG ] INIT File
  1833. ---------------------------------------------------------------
  1834. [ 2021-12-09T21:50:56+08:00 ] 40.77.167.80 GET voicechat.lanmaonet.com/
  1835. [运行时间:0.009687s] [吞吐率:103.23req/s] [内存消耗:468.58kb] [文件加载:135]
  1836. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1837. [ info ] [ CACHE ] INIT File
  1838. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000275s ]
  1839. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1840. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1841. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1842. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1843. [ info ] [ ROUTE ] array (
  1844. 'type' => 'module',
  1845. 'module' =>
  1846. array (
  1847. 0 => '',
  1848. 1 => NULL,
  1849. 2 => NULL,
  1850. ),
  1851. )
  1852. [ info ] [ HEADER ] array (
  1853. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  1854. 'from' => 'bingbot(at)microsoft.com',
  1855. 'accept-encoding' => 'gzip, deflate',
  1856. 'accept' => '*/*',
  1857. 'pragma' => 'no-cache',
  1858. 'cache-control' => 'no-cache',
  1859. 'host' => 'voicechat.lanmaonet.com',
  1860. 'content-type' => '',
  1861. 'content-length' => '',
  1862. )
  1863. [ info ] [ PARAM ] array (
  1864. )
  1865. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  1866. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000079s ]
  1867. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  1868. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000050s ]
  1869. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  1870. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1871. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1872. 0 => 'user',
  1873. 1 => 'site',
  1874. 2 => 'config',
  1875. ) ]
  1876. [ info ] [ LOG ] INIT File
  1877. ---------------------------------------------------------------
  1878. [ 2021-12-09T22:35:24+08:00 ] 18.141.129.183 GET voicechat.lanmaonet.com/apple-app-site-association
  1879. [运行时间:0.004582s] [吞吐率:218.25req/s] [内存消耗:338.22kb] [文件加载:123]
  1880. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1881. [ info ] [ CACHE ] INIT File
  1882. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000281s ]
  1883. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1884. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  1885. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1886. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  1887. [ info ] [ ROUTE ] array (
  1888. 'type' => 'module',
  1889. 'module' =>
  1890. array (
  1891. 0 => 'apple-app-site-association',
  1892. 1 => NULL,
  1893. 2 => NULL,
  1894. ),
  1895. )
  1896. [ info ] [ HEADER ] array (
  1897. 'accept-encoding' => 'gzip',
  1898. 'user-agent' => 'AASA-Bot/1.0.0',
  1899. 'host' => 'voicechat.lanmaonet.com',
  1900. 'content-type' => '',
  1901. 'content-length' => '',
  1902. )
  1903. [ info ] [ PARAM ] array (
  1904. )
  1905. [ info ] [ LOG ] INIT File