03.log 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926
  1. ---------------------------------------------------------------
  2. [ 2021-11-03T18:09:15+08:00 ] 106.52.142.171 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=223.104.191.160&OptPlatform=Android&RequestId=2534221791-144115261377338092-Login-Register&SdkAppid=1400556860&contenttype=json
  3. [运行时间:0.011341s] [吞吐率:88.18req/s] [内存消耗:645.17kb] [文件加载:136]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000235s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  9. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  10. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  11. [ info ] [ ROUTE ] array (
  12. 'type' => 'module',
  13. 'module' =>
  14. array (
  15. 0 => 'api',
  16. 1 => 'tenim',
  17. 2 => 'callback',
  18. ),
  19. )
  20. [ info ] [ HEADER ] array (
  21. 'content-type' => 'application/json',
  22. 'content-length' => '129',
  23. 'connection' => 'keep-alive',
  24. 'host' => 'voicechat.lanmaonet.com',
  25. )
  26. [ info ] [ PARAM ] array (
  27. 'CallbackCommand' => 'State.StateChange',
  28. 'ClientIP' => '223.104.191.160',
  29. 'OptPlatform' => 'Android',
  30. 'RequestId' => '2534221791-144115261377338092-Login-Register',
  31. 'SdkAppid' => '1400556860',
  32. 'contenttype' => 'json',
  33. 'EventTime' => 1635934155879,
  34. 'Info' =>
  35. array (
  36. 'To_Account' => '95',
  37. 'Action' => 'Login',
  38. 'Reason' => 'Register',
  39. ),
  40. )
  41. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  42. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  43. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  44. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  45. [ info ] [ DB ] INIT mysql
  46. [ info ] [ LOG ] INIT File
  47. ---------------------------------------------------------------
  48. [ 2021-11-03T18:10:04+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  49. [运行时间:0.007455s] [吞吐率:134.14req/s] [内存消耗:626.52kb] [文件加载:144]
  50. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  51. [ info ] [ CACHE ] INIT File
  52. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000226s ]
  53. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  54. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  55. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  56. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  57. [ info ] [ ROUTE ] array (
  58. 'type' => 'module',
  59. 'module' =>
  60. array (
  61. 0 => 'api',
  62. 1 => 'match',
  63. 2 => 'getVoiceTypeList',
  64. ),
  65. )
  66. [ info ] [ HEADER ] array (
  67. 'accept-encoding' => 'gzip',
  68. 'connection' => 'Keep-Alive',
  69. 'host' => 'voicechat.lanmaonet.com',
  70. 'content-length' => '42',
  71. 'content-type' => 'application/x-www-form-urlencoded',
  72. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  73. 'accept-language' => 'zh-CN,zh;q=0.8',
  74. )
  75. [ info ] [ PARAM ] array (
  76. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  77. )
  78. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  79. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  80. [ info ] [ TOKEN ] INIT Mysql
  81. [ info ] [ DB ] INIT mysql
  82. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000069s ]
  83. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  84. [ info ] [ LOG ] INIT File
  85. ---------------------------------------------------------------
  86. [ 2021-11-03T18:10:13+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  87. [运行时间:0.007378s] [吞吐率:135.54req/s] [内存消耗:626.52kb] [文件加载:144]
  88. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  89. [ info ] [ CACHE ] INIT File
  90. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000244s ]
  91. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  92. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  93. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  94. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000044s ]
  95. [ info ] [ ROUTE ] array (
  96. 'type' => 'module',
  97. 'module' =>
  98. array (
  99. 0 => 'api',
  100. 1 => 'match',
  101. 2 => 'getVoiceTypeList',
  102. ),
  103. )
  104. [ info ] [ HEADER ] array (
  105. 'accept-encoding' => 'gzip',
  106. 'connection' => 'Keep-Alive',
  107. 'host' => 'voicechat.lanmaonet.com',
  108. 'content-length' => '42',
  109. 'content-type' => 'application/x-www-form-urlencoded',
  110. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  111. 'accept-language' => 'zh-CN,zh;q=0.8',
  112. )
  113. [ info ] [ PARAM ] array (
  114. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  115. )
  116. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  117. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  118. [ info ] [ TOKEN ] INIT Mysql
  119. [ info ] [ DB ] INIT mysql
  120. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  121. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  122. [ info ] [ LOG ] INIT File
  123. ---------------------------------------------------------------
  124. [ 2021-11-03T18:10:13+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  125. [运行时间:0.005973s] [吞吐率:167.42req/s] [内存消耗:626.52kb] [文件加载:144]
  126. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  127. [ info ] [ CACHE ] INIT File
  128. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000178s ]
  129. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  130. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  131. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  132. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  133. [ info ] [ ROUTE ] array (
  134. 'type' => 'module',
  135. 'module' =>
  136. array (
  137. 0 => 'api',
  138. 1 => 'match',
  139. 2 => 'getVoiceTypeList',
  140. ),
  141. )
  142. [ info ] [ HEADER ] array (
  143. 'accept-encoding' => 'gzip',
  144. 'connection' => 'Keep-Alive',
  145. 'host' => 'voicechat.lanmaonet.com',
  146. 'content-length' => '42',
  147. 'content-type' => 'application/x-www-form-urlencoded',
  148. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  149. 'accept-language' => 'zh-CN,zh;q=0.8',
  150. )
  151. [ info ] [ PARAM ] array (
  152. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  153. )
  154. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  155. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  156. [ info ] [ TOKEN ] INIT Mysql
  157. [ info ] [ DB ] INIT mysql
  158. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000079s ]
  159. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  160. [ info ] [ LOG ] INIT File
  161. ---------------------------------------------------------------
  162. [ 2021-11-03T18:10:13+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  163. [运行时间:0.005436s] [吞吐率:183.95req/s] [内存消耗:626.52kb] [文件加载:144]
  164. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  165. [ info ] [ CACHE ] INIT File
  166. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000212s ]
  167. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  168. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  169. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  170. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  171. [ info ] [ ROUTE ] array (
  172. 'type' => 'module',
  173. 'module' =>
  174. array (
  175. 0 => 'api',
  176. 1 => 'match',
  177. 2 => 'getVoiceTypeList',
  178. ),
  179. )
  180. [ info ] [ HEADER ] array (
  181. 'accept-encoding' => 'gzip',
  182. 'connection' => 'Keep-Alive',
  183. 'host' => 'voicechat.lanmaonet.com',
  184. 'content-length' => '42',
  185. 'content-type' => 'application/x-www-form-urlencoded',
  186. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  187. 'accept-language' => 'zh-CN,zh;q=0.8',
  188. )
  189. [ info ] [ PARAM ] array (
  190. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  191. )
  192. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  193. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  194. [ info ] [ TOKEN ] INIT Mysql
  195. [ info ] [ DB ] INIT mysql
  196. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  197. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  198. [ info ] [ LOG ] INIT File
  199. ---------------------------------------------------------------
  200. [ 2021-11-03T18:10:19+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  201. [运行时间:0.007665s] [吞吐率:130.46req/s] [内存消耗:626.52kb] [文件加载:144]
  202. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  203. [ info ] [ CACHE ] INIT File
  204. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000269s ]
  205. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000054s ]
  206. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000074s ]
  207. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  208. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000059s ]
  209. [ info ] [ ROUTE ] array (
  210. 'type' => 'module',
  211. 'module' =>
  212. array (
  213. 0 => 'api',
  214. 1 => 'match',
  215. 2 => 'getVoiceTypeList',
  216. ),
  217. )
  218. [ info ] [ HEADER ] array (
  219. 'accept-encoding' => 'gzip',
  220. 'connection' => 'Keep-Alive',
  221. 'host' => 'voicechat.lanmaonet.com',
  222. 'content-length' => '42',
  223. 'content-type' => 'application/x-www-form-urlencoded',
  224. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  225. 'accept-language' => 'zh-CN,zh;q=0.8',
  226. )
  227. [ info ] [ PARAM ] array (
  228. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  229. )
  230. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  231. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  232. [ info ] [ TOKEN ] INIT Mysql
  233. [ info ] [ DB ] INIT mysql
  234. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  235. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  236. [ info ] [ LOG ] INIT File
  237. ---------------------------------------------------------------
  238. [ 2021-11-03T18:11:09+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  239. [运行时间:0.005805s] [吞吐率:172.26req/s] [内存消耗:626.52kb] [文件加载:144]
  240. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  241. [ info ] [ CACHE ] INIT File
  242. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000162s ]
  243. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  244. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  245. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  246. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  247. [ info ] [ ROUTE ] array (
  248. 'type' => 'module',
  249. 'module' =>
  250. array (
  251. 0 => 'api',
  252. 1 => 'match',
  253. 2 => 'getVoiceTypeList',
  254. ),
  255. )
  256. [ info ] [ HEADER ] array (
  257. 'accept-encoding' => 'gzip',
  258. 'connection' => 'Keep-Alive',
  259. 'host' => 'voicechat.lanmaonet.com',
  260. 'content-length' => '42',
  261. 'content-type' => 'application/x-www-form-urlencoded',
  262. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  263. 'accept-language' => 'zh-CN,zh;q=0.8',
  264. )
  265. [ info ] [ PARAM ] array (
  266. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  267. )
  268. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  269. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  270. [ info ] [ TOKEN ] INIT Mysql
  271. [ info ] [ DB ] INIT mysql
  272. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000075s ]
  273. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  274. [ info ] [ LOG ] INIT File
  275. ---------------------------------------------------------------
  276. [ 2021-11-03T18:11:09+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  277. [运行时间:0.009117s] [吞吐率:109.68req/s] [内存消耗:626.52kb] [文件加载:144]
  278. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  279. [ info ] [ CACHE ] INIT File
  280. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000279s ]
  281. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000047s ]
  282. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000067s ]
  283. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  284. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000048s ]
  285. [ info ] [ ROUTE ] array (
  286. 'type' => 'module',
  287. 'module' =>
  288. array (
  289. 0 => 'api',
  290. 1 => 'match',
  291. 2 => 'getVoiceTypeList',
  292. ),
  293. )
  294. [ info ] [ HEADER ] array (
  295. 'accept-encoding' => 'gzip',
  296. 'connection' => 'Keep-Alive',
  297. 'host' => 'voicechat.lanmaonet.com',
  298. 'content-length' => '42',
  299. 'content-type' => 'application/x-www-form-urlencoded',
  300. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  301. 'accept-language' => 'zh-CN,zh;q=0.8',
  302. )
  303. [ info ] [ PARAM ] array (
  304. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  305. )
  306. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  307. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000085s ]
  308. [ info ] [ TOKEN ] INIT Mysql
  309. [ info ] [ DB ] INIT mysql
  310. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  311. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  312. [ info ] [ LOG ] INIT File
  313. ---------------------------------------------------------------
  314. [ 2021-11-03T18:11:09+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  315. [运行时间:0.004625s] [吞吐率:216.21req/s] [内存消耗:626.52kb] [文件加载:144]
  316. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  317. [ info ] [ CACHE ] INIT File
  318. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  319. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  320. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  321. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  322. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  323. [ info ] [ ROUTE ] array (
  324. 'type' => 'module',
  325. 'module' =>
  326. array (
  327. 0 => 'api',
  328. 1 => 'match',
  329. 2 => 'getVoiceTypeList',
  330. ),
  331. )
  332. [ info ] [ HEADER ] array (
  333. 'accept-encoding' => 'gzip',
  334. 'connection' => 'Keep-Alive',
  335. 'host' => 'voicechat.lanmaonet.com',
  336. 'content-length' => '42',
  337. 'content-type' => 'application/x-www-form-urlencoded',
  338. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  339. 'accept-language' => 'zh-CN,zh;q=0.8',
  340. )
  341. [ info ] [ PARAM ] array (
  342. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  343. )
  344. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  345. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  346. [ info ] [ TOKEN ] INIT Mysql
  347. [ info ] [ DB ] INIT mysql
  348. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  349. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  350. [ info ] [ LOG ] INIT File
  351. ---------------------------------------------------------------
  352. [ 2021-11-03T18:11:18+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  353. [运行时间:0.007275s] [吞吐率:137.46req/s] [内存消耗:626.52kb] [文件加载:144]
  354. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  355. [ info ] [ CACHE ] INIT File
  356. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000267s ]
  357. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  358. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  359. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  360. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  361. [ info ] [ ROUTE ] array (
  362. 'type' => 'module',
  363. 'module' =>
  364. array (
  365. 0 => 'api',
  366. 1 => 'match',
  367. 2 => 'getVoiceTypeList',
  368. ),
  369. )
  370. [ info ] [ HEADER ] array (
  371. 'accept-encoding' => 'gzip',
  372. 'connection' => 'Keep-Alive',
  373. 'host' => 'voicechat.lanmaonet.com',
  374. 'content-length' => '42',
  375. 'content-type' => 'application/x-www-form-urlencoded',
  376. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  377. 'accept-language' => 'zh-CN,zh;q=0.8',
  378. )
  379. [ info ] [ PARAM ] array (
  380. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  381. )
  382. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  383. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  384. [ info ] [ TOKEN ] INIT Mysql
  385. [ info ] [ DB ] INIT mysql
  386. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000068s ]
  387. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  388. [ info ] [ LOG ] INIT File
  389. ---------------------------------------------------------------
  390. [ 2021-11-03T18:12:36+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  391. [运行时间:0.007220s] [吞吐率:138.50req/s] [内存消耗:626.52kb] [文件加载:144]
  392. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  393. [ info ] [ CACHE ] INIT File
  394. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000239s ]
  395. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  396. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  397. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  398. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  399. [ info ] [ ROUTE ] array (
  400. 'type' => 'module',
  401. 'module' =>
  402. array (
  403. 0 => 'api',
  404. 1 => 'match',
  405. 2 => 'getVoiceTypeList',
  406. ),
  407. )
  408. [ info ] [ HEADER ] array (
  409. 'accept-encoding' => 'gzip',
  410. 'connection' => 'Keep-Alive',
  411. 'host' => 'voicechat.lanmaonet.com',
  412. 'content-length' => '42',
  413. 'content-type' => 'application/x-www-form-urlencoded',
  414. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  415. 'accept-language' => 'zh-CN,zh;q=0.8',
  416. )
  417. [ info ] [ PARAM ] array (
  418. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  419. )
  420. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  421. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  422. [ info ] [ TOKEN ] INIT Mysql
  423. [ info ] [ DB ] INIT mysql
  424. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  425. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  426. [ info ] [ LOG ] INIT File
  427. ---------------------------------------------------------------
  428. [ 2021-11-03T18:12:36+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  429. [运行时间:0.005278s] [吞吐率:189.46req/s] [内存消耗:626.52kb] [文件加载:144]
  430. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  431. [ info ] [ CACHE ] INIT File
  432. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000134s ]
  433. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  434. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  435. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  436. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  437. [ info ] [ ROUTE ] array (
  438. 'type' => 'module',
  439. 'module' =>
  440. array (
  441. 0 => 'api',
  442. 1 => 'match',
  443. 2 => 'getVoiceTypeList',
  444. ),
  445. )
  446. [ info ] [ HEADER ] array (
  447. 'accept-encoding' => 'gzip',
  448. 'connection' => 'Keep-Alive',
  449. 'host' => 'voicechat.lanmaonet.com',
  450. 'content-length' => '42',
  451. 'content-type' => 'application/x-www-form-urlencoded',
  452. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  453. 'accept-language' => 'zh-CN,zh;q=0.8',
  454. )
  455. [ info ] [ PARAM ] array (
  456. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  457. )
  458. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  459. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  460. [ info ] [ TOKEN ] INIT Mysql
  461. [ info ] [ DB ] INIT mysql
  462. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  463. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  464. [ info ] [ LOG ] INIT File
  465. ---------------------------------------------------------------
  466. [ 2021-11-03T18:12:36+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  467. [运行时间:0.005328s] [吞吐率:187.68req/s] [内存消耗:626.52kb] [文件加载:144]
  468. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  469. [ info ] [ CACHE ] INIT File
  470. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000157s ]
  471. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  472. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  473. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  474. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  475. [ info ] [ ROUTE ] array (
  476. 'type' => 'module',
  477. 'module' =>
  478. array (
  479. 0 => 'api',
  480. 1 => 'match',
  481. 2 => 'getVoiceTypeList',
  482. ),
  483. )
  484. [ info ] [ HEADER ] array (
  485. 'accept-encoding' => 'gzip',
  486. 'connection' => 'Keep-Alive',
  487. 'host' => 'voicechat.lanmaonet.com',
  488. 'content-length' => '42',
  489. 'content-type' => 'application/x-www-form-urlencoded',
  490. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  491. 'accept-language' => 'zh-CN,zh;q=0.8',
  492. )
  493. [ info ] [ PARAM ] array (
  494. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  495. )
  496. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  497. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  498. [ info ] [ TOKEN ] INIT Mysql
  499. [ info ] [ DB ] INIT mysql
  500. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  501. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  502. [ info ] [ LOG ] INIT File
  503. ---------------------------------------------------------------
  504. [ 2021-11-03T18:14:49+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  505. [运行时间:0.008021s] [吞吐率:124.67req/s] [内存消耗:626.52kb] [文件加载:144]
  506. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  507. [ info ] [ CACHE ] INIT File
  508. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000287s ]
  509. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000051s ]
  510. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000070s ]
  511. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  512. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000048s ]
  513. [ info ] [ ROUTE ] array (
  514. 'type' => 'module',
  515. 'module' =>
  516. array (
  517. 0 => 'api',
  518. 1 => 'match',
  519. 2 => 'getVoiceTypeList',
  520. ),
  521. )
  522. [ info ] [ HEADER ] array (
  523. 'accept-encoding' => 'gzip',
  524. 'connection' => 'Keep-Alive',
  525. 'host' => 'voicechat.lanmaonet.com',
  526. 'content-length' => '42',
  527. 'content-type' => 'application/x-www-form-urlencoded',
  528. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  529. 'accept-language' => 'zh-CN,zh;q=0.8',
  530. )
  531. [ info ] [ PARAM ] array (
  532. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  533. )
  534. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  535. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  536. [ info ] [ TOKEN ] INIT Mysql
  537. [ info ] [ DB ] INIT mysql
  538. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000080s ]
  539. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  540. [ info ] [ LOG ] INIT File
  541. ---------------------------------------------------------------
  542. [ 2021-11-03T18:14:49+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  543. [运行时间:0.005985s] [吞吐率:167.08req/s] [内存消耗:626.52kb] [文件加载:144]
  544. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  545. [ info ] [ CACHE ] INIT File
  546. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000193s ]
  547. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  548. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  549. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  550. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  551. [ info ] [ ROUTE ] array (
  552. 'type' => 'module',
  553. 'module' =>
  554. array (
  555. 0 => 'api',
  556. 1 => 'match',
  557. 2 => 'getVoiceTypeList',
  558. ),
  559. )
  560. [ info ] [ HEADER ] array (
  561. 'accept-encoding' => 'gzip',
  562. 'connection' => 'Keep-Alive',
  563. 'host' => 'voicechat.lanmaonet.com',
  564. 'content-length' => '42',
  565. 'content-type' => 'application/x-www-form-urlencoded',
  566. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  567. 'accept-language' => 'zh-CN,zh;q=0.8',
  568. )
  569. [ info ] [ PARAM ] array (
  570. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  571. )
  572. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  573. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000081s ]
  574. [ info ] [ TOKEN ] INIT Mysql
  575. [ info ] [ DB ] INIT mysql
  576. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  577. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  578. [ info ] [ LOG ] INIT File
  579. ---------------------------------------------------------------
  580. [ 2021-11-03T18:14:50+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  581. [运行时间:0.005263s] [吞吐率:190.01req/s] [内存消耗:626.52kb] [文件加载:144]
  582. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  583. [ info ] [ CACHE ] INIT File
  584. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000179s ]
  585. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  586. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  587. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  588. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  589. [ info ] [ ROUTE ] array (
  590. 'type' => 'module',
  591. 'module' =>
  592. array (
  593. 0 => 'api',
  594. 1 => 'match',
  595. 2 => 'getVoiceTypeList',
  596. ),
  597. )
  598. [ info ] [ HEADER ] array (
  599. 'accept-encoding' => 'gzip',
  600. 'connection' => 'Keep-Alive',
  601. 'host' => 'voicechat.lanmaonet.com',
  602. 'content-length' => '42',
  603. 'content-type' => 'application/x-www-form-urlencoded',
  604. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  605. 'accept-language' => 'zh-CN,zh;q=0.8',
  606. )
  607. [ info ] [ PARAM ] array (
  608. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  609. )
  610. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  611. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  612. [ info ] [ TOKEN ] INIT Mysql
  613. [ info ] [ DB ] INIT mysql
  614. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  615. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  616. [ info ] [ LOG ] INIT File
  617. ---------------------------------------------------------------
  618. [ 2021-11-03T18:14:52+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  619. [运行时间:0.004997s] [吞吐率:200.12req/s] [内存消耗:626.52kb] [文件加载:144]
  620. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  621. [ info ] [ CACHE ] INIT File
  622. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000163s ]
  623. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  624. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  625. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  626. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  627. [ info ] [ ROUTE ] array (
  628. 'type' => 'module',
  629. 'module' =>
  630. array (
  631. 0 => 'api',
  632. 1 => 'match',
  633. 2 => 'getVoiceTypeList',
  634. ),
  635. )
  636. [ info ] [ HEADER ] array (
  637. 'accept-encoding' => 'gzip',
  638. 'connection' => 'Keep-Alive',
  639. 'host' => 'voicechat.lanmaonet.com',
  640. 'content-length' => '42',
  641. 'content-type' => 'application/x-www-form-urlencoded',
  642. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  643. 'accept-language' => 'zh-CN,zh;q=0.8',
  644. )
  645. [ info ] [ PARAM ] array (
  646. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  647. )
  648. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  649. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  650. [ info ] [ TOKEN ] INIT Mysql
  651. [ info ] [ DB ] INIT mysql
  652. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  653. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  654. [ info ] [ LOG ] INIT File
  655. ---------------------------------------------------------------
  656. [ 2021-11-03T18:15:38+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  657. [运行时间:0.007422s] [吞吐率:134.74req/s] [内存消耗:626.52kb] [文件加载:144]
  658. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  659. [ info ] [ CACHE ] INIT File
  660. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000264s ]
  661. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  662. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  663. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  664. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  665. [ info ] [ ROUTE ] array (
  666. 'type' => 'module',
  667. 'module' =>
  668. array (
  669. 0 => 'api',
  670. 1 => 'match',
  671. 2 => 'getVoiceTypeList',
  672. ),
  673. )
  674. [ info ] [ HEADER ] array (
  675. 'accept-encoding' => 'gzip',
  676. 'connection' => 'Keep-Alive',
  677. 'host' => 'voicechat.lanmaonet.com',
  678. 'content-length' => '42',
  679. 'content-type' => 'application/x-www-form-urlencoded',
  680. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  681. 'accept-language' => 'zh-CN,zh;q=0.8',
  682. )
  683. [ info ] [ PARAM ] array (
  684. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  685. )
  686. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  687. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  688. [ info ] [ TOKEN ] INIT Mysql
  689. [ info ] [ DB ] INIT mysql
  690. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  691. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  692. [ info ] [ LOG ] INIT File
  693. ---------------------------------------------------------------
  694. [ 2021-11-03T18:15:39+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  695. [运行时间:0.005069s] [吞吐率:197.28req/s] [内存消耗:626.52kb] [文件加载:144]
  696. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  697. [ info ] [ CACHE ] INIT File
  698. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000206s ]
  699. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  700. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  701. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  702. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  703. [ info ] [ ROUTE ] array (
  704. 'type' => 'module',
  705. 'module' =>
  706. array (
  707. 0 => 'api',
  708. 1 => 'match',
  709. 2 => 'getVoiceTypeList',
  710. ),
  711. )
  712. [ info ] [ HEADER ] array (
  713. 'accept-encoding' => 'gzip',
  714. 'connection' => 'Keep-Alive',
  715. 'host' => 'voicechat.lanmaonet.com',
  716. 'content-length' => '42',
  717. 'content-type' => 'application/x-www-form-urlencoded',
  718. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  719. 'accept-language' => 'zh-CN,zh;q=0.8',
  720. )
  721. [ info ] [ PARAM ] array (
  722. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  723. )
  724. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  725. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  726. [ info ] [ TOKEN ] INIT Mysql
  727. [ info ] [ DB ] INIT mysql
  728. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  729. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  730. [ info ] [ LOG ] INIT File
  731. ---------------------------------------------------------------
  732. [ 2021-11-03T18:15:39+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  733. [运行时间:0.004611s] [吞吐率:216.87req/s] [内存消耗:626.52kb] [文件加载:144]
  734. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  735. [ info ] [ CACHE ] INIT File
  736. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000171s ]
  737. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  738. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  739. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  740. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  741. [ info ] [ ROUTE ] array (
  742. 'type' => 'module',
  743. 'module' =>
  744. array (
  745. 0 => 'api',
  746. 1 => 'match',
  747. 2 => 'getVoiceTypeList',
  748. ),
  749. )
  750. [ info ] [ HEADER ] array (
  751. 'accept-encoding' => 'gzip',
  752. 'connection' => 'Keep-Alive',
  753. 'host' => 'voicechat.lanmaonet.com',
  754. 'content-length' => '42',
  755. 'content-type' => 'application/x-www-form-urlencoded',
  756. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  757. 'accept-language' => 'zh-CN,zh;q=0.8',
  758. )
  759. [ info ] [ PARAM ] array (
  760. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  761. )
  762. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  763. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  764. [ info ] [ TOKEN ] INIT Mysql
  765. [ info ] [ DB ] INIT mysql
  766. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  767. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  768. [ info ] [ LOG ] INIT File
  769. ---------------------------------------------------------------
  770. [ 2021-11-03T18:15:56+08:00 ] 106.52.148.50 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=223.104.191.160&OptPlatform=Android&RequestId=2534242072-144115261377338092-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  771. [运行时间:0.252361s] [吞吐率:3.96req/s] [内存消耗:705.64kb] [文件加载:140]
  772. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  773. [ info ] [ CACHE ] INIT File
  774. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000250s ]
  775. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  776. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  777. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  778. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  779. [ info ] [ ROUTE ] array (
  780. 'type' => 'module',
  781. 'module' =>
  782. array (
  783. 0 => 'api',
  784. 1 => 'tenim',
  785. 2 => 'callback',
  786. ),
  787. )
  788. [ info ] [ HEADER ] array (
  789. 'content-type' => 'application/json',
  790. 'content-length' => '133',
  791. 'connection' => 'keep-alive',
  792. 'host' => 'voicechat.lanmaonet.com',
  793. )
  794. [ info ] [ PARAM ] array (
  795. 'CallbackCommand' => 'State.StateChange',
  796. 'ClientIP' => '223.104.191.160',
  797. 'OptPlatform' => 'Android',
  798. 'RequestId' => '2534242072-144115261377338092-Disconnect-TimeOut',
  799. 'SdkAppid' => '1400556860',
  800. 'contenttype' => 'json',
  801. 'EventTime' => 1635934555851,
  802. 'Info' =>
  803. array (
  804. 'To_Account' => '95',
  805. 'Action' => 'Disconnect',
  806. 'Reason' => 'TimeOut',
  807. ),
  808. )
  809. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  810. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  811. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  812. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  813. [ info ] [ DB ] INIT mysql
  814. [ info ] [ LOG ] INIT File
  815. ---------------------------------------------------------------
  816. [ 2021-11-03T18:16:37+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  817. [运行时间:0.007189s] [吞吐率:139.10req/s] [内存消耗:626.52kb] [文件加载:144]
  818. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  819. [ info ] [ CACHE ] INIT File
  820. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000281s ]
  821. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  822. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  823. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  824. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  825. [ info ] [ ROUTE ] array (
  826. 'type' => 'module',
  827. 'module' =>
  828. array (
  829. 0 => 'api',
  830. 1 => 'match',
  831. 2 => 'getVoiceTypeList',
  832. ),
  833. )
  834. [ info ] [ HEADER ] array (
  835. 'accept-encoding' => 'gzip',
  836. 'connection' => 'Keep-Alive',
  837. 'host' => 'voicechat.lanmaonet.com',
  838. 'content-length' => '42',
  839. 'content-type' => 'application/x-www-form-urlencoded',
  840. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  841. 'accept-language' => 'zh-CN,zh;q=0.8',
  842. )
  843. [ info ] [ PARAM ] array (
  844. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  845. )
  846. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  847. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  848. [ info ] [ TOKEN ] INIT Mysql
  849. [ info ] [ DB ] INIT mysql
  850. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000068s ]
  851. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  852. [ info ] [ LOG ] INIT File
  853. ---------------------------------------------------------------
  854. [ 2021-11-03T18:16:38+08:00 ] 52.77.61.48 GET voicechat.lanmaonet.com/apple-app-site-association
  855. [运行时间:0.002407s] [吞吐率:415.44req/s] [内存消耗:362.48kb] [文件加载:123]
  856. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  857. [ info ] [ CACHE ] INIT File
  858. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000198s ]
  859. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  860. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  861. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  862. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  863. [ info ] [ ROUTE ] array (
  864. 'type' => 'module',
  865. 'module' =>
  866. array (
  867. 0 => 'apple-app-site-association',
  868. 1 => NULL,
  869. 2 => NULL,
  870. ),
  871. )
  872. [ info ] [ HEADER ] array (
  873. 'accept-encoding' => 'gzip',
  874. 'user-agent' => 'AASA-Bot/1.0.0',
  875. 'host' => 'voicechat.lanmaonet.com',
  876. 'content-type' => '',
  877. 'content-length' => '',
  878. )
  879. [ info ] [ PARAM ] array (
  880. )
  881. [ info ] [ LOG ] INIT File
  882. ---------------------------------------------------------------
  883. [ 2021-11-03T18:18:59+08:00 ] 223.104.191.160 POST voicechat.lanmaonet.com/Api/index/getMessage
  884. [运行时间:0.010770s] [吞吐率:92.85req/s] [内存消耗:722.34kb] [文件加载:145]
  885. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  886. [ info ] [ CACHE ] INIT File
  887. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000270s ]
  888. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  889. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  890. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  891. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000049s ]
  892. [ info ] [ ROUTE ] array (
  893. 'type' => 'module',
  894. 'module' =>
  895. array (
  896. 0 => 'Api',
  897. 1 => 'index',
  898. 2 => 'getMessage',
  899. ),
  900. )
  901. [ info ] [ HEADER ] array (
  902. 'accept-encoding' => 'gzip',
  903. 'connection' => 'Keep-Alive',
  904. 'host' => 'voicechat.lanmaonet.com',
  905. 'content-length' => '69',
  906. 'content-type' => 'application/x-www-form-urlencoded',
  907. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  908. 'accept-language' => 'zh-CN,zh;q=0.8',
  909. )
  910. [ info ] [ PARAM ] array (
  911. 'params_from' => 'android',
  912. 'token' => 'bcfc665f-2e94-499f-833c-bcf22323bf91',
  913. 'flag' => '1',
  914. )
  915. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  916. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000090s ]
  917. [ info ] [ TOKEN ] INIT Mysql
  918. [ info ] [ DB ] INIT mysql
  919. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000077s ]
  920. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  921. [ info ] [ LOG ] INIT File
  922. ---------------------------------------------------------------
  923. [ 2021-11-03T18:18:59+08:00 ] 223.104.191.160 POST voicechat.lanmaonet.com/api/index/getSwitch
  924. [运行时间:0.007497s] [吞吐率:133.39req/s] [内存消耗:657.03kb] [文件加载:143]
  925. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  926. [ info ] [ CACHE ] INIT File
  927. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000171s ]
  928. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000044s ]
  929. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  930. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  931. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  932. [ info ] [ ROUTE ] array (
  933. 'type' => 'module',
  934. 'module' =>
  935. array (
  936. 0 => 'api',
  937. 1 => 'index',
  938. 2 => 'getSwitch',
  939. ),
  940. )
  941. [ info ] [ HEADER ] array (
  942. 'accept-encoding' => 'gzip',
  943. 'connection' => 'Keep-Alive',
  944. 'host' => 'voicechat.lanmaonet.com',
  945. 'content-length' => '62',
  946. 'content-type' => 'application/x-www-form-urlencoded',
  947. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  948. 'accept-language' => 'zh-CN,zh;q=0.8',
  949. )
  950. [ info ] [ PARAM ] array (
  951. 'params_from' => 'android',
  952. 'token' => 'bcfc665f-2e94-499f-833c-bcf22323bf91',
  953. )
  954. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  955. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  956. [ info ] [ TOKEN ] INIT Mysql
  957. [ info ] [ DB ] INIT mysql
  958. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  959. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  960. [ info ] [ LOG ] INIT File
  961. ---------------------------------------------------------------
  962. [ 2021-11-03T18:18:59+08:00 ] 223.104.191.160 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  963. [运行时间:0.016792s] [吞吐率:59.55req/s] [内存消耗:738.23kb] [文件加载:146]
  964. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  965. [ info ] [ CACHE ] INIT File
  966. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000292s ]
  967. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  968. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  969. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  970. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000049s ]
  971. [ info ] [ ROUTE ] array (
  972. 'type' => 'module',
  973. 'module' =>
  974. array (
  975. 0 => 'Api',
  976. 1 => 'party',
  977. 2 => 'getPartyRankList',
  978. ),
  979. )
  980. [ info ] [ HEADER ] array (
  981. 'accept-encoding' => 'gzip',
  982. 'connection' => 'Keep-Alive',
  983. 'host' => 'voicechat.lanmaonet.com',
  984. 'content-length' => '126',
  985. 'content-type' => 'application/x-www-form-urlencoded',
  986. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  987. 'accept-language' => 'zh-CN,zh;q=0.8',
  988. )
  989. [ info ] [ PARAM ] array (
  990. 'params_from' => 'android',
  991. 'token' => 'bcfc665f-2e94-499f-833c-bcf22323bf91',
  992. 'type_id' => '0',
  993. 'all' => '1',
  994. 'is_recommend' => '0',
  995. 'thispage' => '1',
  996. 'room_type' => '2',
  997. 'pagenum' => '6',
  998. )
  999. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1000. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  1001. [ info ] [ TOKEN ] INIT Mysql
  1002. [ info ] [ DB ] INIT mysql
  1003. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1004. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1005. [ info ] [ LOG ] INIT File
  1006. ---------------------------------------------------------------
  1007. [ 2021-11-03T18:18:59+08:00 ] 223.104.191.160 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1008. [运行时间:0.006127s] [吞吐率:163.22req/s] [内存消耗:737.86kb] [文件加载:146]
  1009. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1010. [ info ] [ CACHE ] INIT File
  1011. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000146s ]
  1012. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  1013. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  1014. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1015. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  1016. [ info ] [ ROUTE ] array (
  1017. 'type' => 'module',
  1018. 'module' =>
  1019. array (
  1020. 0 => 'Api',
  1021. 1 => 'party',
  1022. 2 => 'getPartyRankList',
  1023. ),
  1024. )
  1025. [ info ] [ HEADER ] array (
  1026. 'accept-encoding' => 'gzip',
  1027. 'connection' => 'Keep-Alive',
  1028. 'host' => 'voicechat.lanmaonet.com',
  1029. 'content-length' => '114',
  1030. 'content-type' => 'application/x-www-form-urlencoded',
  1031. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1032. 'accept-language' => 'zh-CN,zh;q=0.8',
  1033. )
  1034. [ info ] [ PARAM ] array (
  1035. 'params_from' => 'android',
  1036. 'token' => 'bcfc665f-2e94-499f-833c-bcf22323bf91',
  1037. 'type_id' => '',
  1038. 'all' => '1',
  1039. 'is_recommend' => '1',
  1040. 'room_type' => '1',
  1041. 'pagenum' => '3',
  1042. )
  1043. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1044. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  1045. [ info ] [ TOKEN ] INIT Mysql
  1046. [ info ] [ DB ] INIT mysql
  1047. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000069s ]
  1048. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1049. [ info ] [ LOG ] INIT File
  1050. ---------------------------------------------------------------
  1051. [ 2021-11-03T18:18:59+08:00 ] 223.104.191.160 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1052. [运行时间:0.005101s] [吞吐率:196.04req/s] [内存消耗:737.86kb] [文件加载:146]
  1053. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
  1054. [ info ] [ CACHE ] INIT File
  1055. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000138s ]
  1056. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1057. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1058. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1059. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1060. [ info ] [ ROUTE ] array (
  1061. 'type' => 'module',
  1062. 'module' =>
  1063. array (
  1064. 0 => 'Api',
  1065. 1 => 'party',
  1066. 2 => 'getPartyRankList',
  1067. ),
  1068. )
  1069. [ info ] [ HEADER ] array (
  1070. 'accept-encoding' => 'gzip',
  1071. 'connection' => 'Keep-Alive',
  1072. 'host' => 'voicechat.lanmaonet.com',
  1073. 'content-length' => '114',
  1074. 'content-type' => 'application/x-www-form-urlencoded',
  1075. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1076. 'accept-language' => 'zh-CN,zh;q=0.8',
  1077. )
  1078. [ info ] [ PARAM ] array (
  1079. 'params_from' => 'android',
  1080. 'token' => 'bcfc665f-2e94-499f-833c-bcf22323bf91',
  1081. 'type_id' => '',
  1082. 'all' => '1',
  1083. 'is_recommend' => '0',
  1084. 'room_type' => '1',
  1085. 'pagenum' => '6',
  1086. )
  1087. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1088. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000043s ]
  1089. [ info ] [ TOKEN ] INIT Mysql
  1090. [ info ] [ DB ] INIT mysql
  1091. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000041s ]
  1092. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1093. [ info ] [ LOG ] INIT File
  1094. ---------------------------------------------------------------
  1095. [ 2021-11-03T18:19:00+08:00 ] 223.104.191.160 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  1096. [运行时间:0.009447s] [吞吐率:105.85req/s] [内存消耗:755.04kb] [文件加载:147]
  1097. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1098. [ info ] [ CACHE ] INIT File
  1099. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000169s ]
  1100. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1101. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1102. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1103. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1104. [ info ] [ ROUTE ] array (
  1105. 'type' => 'module',
  1106. 'module' =>
  1107. array (
  1108. 0 => 'api',
  1109. 1 => 'userCenter',
  1110. 2 => 'getMyUserInfo',
  1111. ),
  1112. )
  1113. [ info ] [ HEADER ] array (
  1114. 'accept-encoding' => 'gzip',
  1115. 'connection' => 'Keep-Alive',
  1116. 'host' => 'voicechat.lanmaonet.com',
  1117. 'content-length' => '73',
  1118. 'content-type' => 'application/x-www-form-urlencoded',
  1119. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1120. 'accept-language' => 'zh-CN,zh;q=0.8',
  1121. )
  1122. [ info ] [ PARAM ] array (
  1123. 'params_from' => 'android',
  1124. 'token' => 'bcfc665f-2e94-499f-833c-bcf22323bf91',
  1125. 'user_id' => '95',
  1126. )
  1127. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1128. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1129. [ info ] [ TOKEN ] INIT Mysql
  1130. [ info ] [ DB ] INIT mysql
  1131. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  1132. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1133. [ info ] [ LOG ] INIT File
  1134. ---------------------------------------------------------------
  1135. [ 2021-11-03T18:19:00+08:00 ] 223.104.191.160 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  1136. [运行时间:0.005609s] [吞吐率:178.28req/s] [内存消耗:725.07kb] [文件加载:146]
  1137. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  1138. [ info ] [ CACHE ] INIT File
  1139. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000187s ]
  1140. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  1141. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1142. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1143. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1144. [ info ] [ ROUTE ] array (
  1145. 'type' => 'module',
  1146. 'module' =>
  1147. array (
  1148. 0 => 'Api',
  1149. 1 => 'dispatch',
  1150. 2 => 'getSkillList',
  1151. ),
  1152. )
  1153. [ info ] [ HEADER ] array (
  1154. 'accept-encoding' => 'gzip',
  1155. 'connection' => 'Keep-Alive',
  1156. 'host' => 'voicechat.lanmaonet.com',
  1157. 'content-length' => '62',
  1158. 'content-type' => 'application/x-www-form-urlencoded',
  1159. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1160. 'accept-language' => 'zh-CN,zh;q=0.8',
  1161. )
  1162. [ info ] [ PARAM ] array (
  1163. 'params_from' => 'android',
  1164. 'token' => 'bcfc665f-2e94-499f-833c-bcf22323bf91',
  1165. )
  1166. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1167. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  1168. [ info ] [ TOKEN ] INIT Mysql
  1169. [ info ] [ DB ] INIT mysql
  1170. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  1171. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  1172. [ info ] [ LOG ] INIT File
  1173. ---------------------------------------------------------------
  1174. [ 2021-11-03T18:19:00+08:00 ] 42.194.134.116 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=223.104.191.160&OptPlatform=Android&RequestId=2534251561-144115261377338092-Login-Register&SdkAppid=1400556860&contenttype=json
  1175. [运行时间:0.008910s] [吞吐率:112.23req/s] [内存消耗:645.23kb] [文件加载:136]
  1176. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1177. [ info ] [ CACHE ] INIT File
  1178. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000219s ]
  1179. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1180. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1181. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1182. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  1183. [ info ] [ ROUTE ] array (
  1184. 'type' => 'module',
  1185. 'module' =>
  1186. array (
  1187. 0 => 'api',
  1188. 1 => 'tenim',
  1189. 2 => 'callback',
  1190. ),
  1191. )
  1192. [ info ] [ HEADER ] array (
  1193. 'content-type' => 'application/json',
  1194. 'content-length' => '129',
  1195. 'connection' => 'keep-alive',
  1196. 'host' => 'voicechat.lanmaonet.com',
  1197. )
  1198. [ info ] [ PARAM ] array (
  1199. 'CallbackCommand' => 'State.StateChange',
  1200. 'ClientIP' => '223.104.191.160',
  1201. 'OptPlatform' => 'Android',
  1202. 'RequestId' => '2534251561-144115261377338092-Login-Register',
  1203. 'SdkAppid' => '1400556860',
  1204. 'contenttype' => 'json',
  1205. 'EventTime' => 1635934740519,
  1206. 'Info' =>
  1207. array (
  1208. 'To_Account' => '95',
  1209. 'Action' => 'Login',
  1210. 'Reason' => 'Register',
  1211. ),
  1212. )
  1213. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1214. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1215. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  1216. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1217. [ info ] [ DB ] INIT mysql
  1218. [ info ] [ LOG ] INIT File
  1219. ---------------------------------------------------------------
  1220. [ 2021-11-03T18:19:00+08:00 ] 223.104.191.160 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  1221. [运行时间:0.008976s] [吞吐率:111.41req/s] [内存消耗:755.04kb] [文件加载:147]
  1222. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1223. [ info ] [ CACHE ] INIT File
  1224. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000188s ]
  1225. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1226. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  1227. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1228. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1229. [ info ] [ ROUTE ] array (
  1230. 'type' => 'module',
  1231. 'module' =>
  1232. array (
  1233. 0 => 'api',
  1234. 1 => 'userCenter',
  1235. 2 => 'getMyUserInfo',
  1236. ),
  1237. )
  1238. [ info ] [ HEADER ] array (
  1239. 'accept-encoding' => 'gzip',
  1240. 'connection' => 'Keep-Alive',
  1241. 'host' => 'voicechat.lanmaonet.com',
  1242. 'content-length' => '73',
  1243. 'content-type' => 'application/x-www-form-urlencoded',
  1244. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1245. 'accept-language' => 'zh-CN,zh;q=0.8',
  1246. )
  1247. [ info ] [ PARAM ] array (
  1248. 'params_from' => 'android',
  1249. 'token' => 'bcfc665f-2e94-499f-833c-bcf22323bf91',
  1250. 'user_id' => '95',
  1251. )
  1252. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1253. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  1254. [ info ] [ TOKEN ] INIT Mysql
  1255. [ info ] [ DB ] INIT mysql
  1256. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  1257. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1258. [ info ] [ LOG ] INIT File
  1259. ---------------------------------------------------------------
  1260. [ 2021-11-03T18:19:56+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1261. [运行时间:0.007156s] [吞吐率:139.74req/s] [内存消耗:626.52kb] [文件加载:144]
  1262. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1263. [ info ] [ CACHE ] INIT File
  1264. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000246s ]
  1265. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1266. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1267. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1268. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  1269. [ info ] [ ROUTE ] array (
  1270. 'type' => 'module',
  1271. 'module' =>
  1272. array (
  1273. 0 => 'api',
  1274. 1 => 'match',
  1275. 2 => 'getVoiceTypeList',
  1276. ),
  1277. )
  1278. [ info ] [ HEADER ] array (
  1279. 'accept-encoding' => 'gzip',
  1280. 'connection' => 'Keep-Alive',
  1281. 'host' => 'voicechat.lanmaonet.com',
  1282. 'content-length' => '42',
  1283. 'content-type' => 'application/x-www-form-urlencoded',
  1284. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1285. 'accept-language' => 'zh-CN,zh;q=0.8',
  1286. )
  1287. [ info ] [ PARAM ] array (
  1288. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  1289. )
  1290. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1291. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1292. [ info ] [ TOKEN ] INIT Mysql
  1293. [ info ] [ DB ] INIT mysql
  1294. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  1295. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1296. [ info ] [ LOG ] INIT File
  1297. ---------------------------------------------------------------
  1298. [ 2021-11-03T18:19:56+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1299. [运行时间:0.004832s] [吞吐率:206.95req/s] [内存消耗:626.52kb] [文件加载:144]
  1300. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1301. [ info ] [ CACHE ] INIT File
  1302. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000167s ]
  1303. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000046s ]
  1304. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000065s ]
  1305. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1306. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  1307. [ info ] [ ROUTE ] array (
  1308. 'type' => 'module',
  1309. 'module' =>
  1310. array (
  1311. 0 => 'api',
  1312. 1 => 'match',
  1313. 2 => 'getVoiceTypeList',
  1314. ),
  1315. )
  1316. [ info ] [ HEADER ] array (
  1317. 'accept-encoding' => 'gzip',
  1318. 'connection' => 'Keep-Alive',
  1319. 'host' => 'voicechat.lanmaonet.com',
  1320. 'content-length' => '42',
  1321. 'content-type' => 'application/x-www-form-urlencoded',
  1322. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1323. 'accept-language' => 'zh-CN,zh;q=0.8',
  1324. )
  1325. [ info ] [ PARAM ] array (
  1326. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  1327. )
  1328. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1329. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  1330. [ info ] [ TOKEN ] INIT Mysql
  1331. [ info ] [ DB ] INIT mysql
  1332. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1333. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1334. [ info ] [ LOG ] INIT File
  1335. ---------------------------------------------------------------
  1336. [ 2021-11-03T18:19:56+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1337. [运行时间:0.004517s] [吞吐率:221.38req/s] [内存消耗:626.52kb] [文件加载:144]
  1338. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1339. [ info ] [ CACHE ] INIT File
  1340. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000139s ]
  1341. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1342. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1343. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1344. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  1345. [ info ] [ ROUTE ] array (
  1346. 'type' => 'module',
  1347. 'module' =>
  1348. array (
  1349. 0 => 'api',
  1350. 1 => 'match',
  1351. 2 => 'getVoiceTypeList',
  1352. ),
  1353. )
  1354. [ info ] [ HEADER ] array (
  1355. 'accept-encoding' => 'gzip',
  1356. 'connection' => 'Keep-Alive',
  1357. 'host' => 'voicechat.lanmaonet.com',
  1358. 'content-length' => '42',
  1359. 'content-type' => 'application/x-www-form-urlencoded',
  1360. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1361. 'accept-language' => 'zh-CN,zh;q=0.8',
  1362. )
  1363. [ info ] [ PARAM ] array (
  1364. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  1365. )
  1366. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1367. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  1368. [ info ] [ TOKEN ] INIT Mysql
  1369. [ info ] [ DB ] INIT mysql
  1370. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  1371. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1372. [ info ] [ LOG ] INIT File
  1373. ---------------------------------------------------------------
  1374. [ 2021-11-03T18:19:59+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1375. [运行时间:0.006241s] [吞吐率:160.23req/s] [内存消耗:626.52kb] [文件加载:144]
  1376. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1377. [ info ] [ CACHE ] INIT File
  1378. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000205s ]
  1379. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000050s ]
  1380. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  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.000033s ]
  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' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  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.000070s ]
  1406. [ info ] [ TOKEN ] INIT Mysql
  1407. [ info ] [ DB ] INIT mysql
  1408. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000088s ]
  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-11-03T18:25:41+08:00 ] 119.29.130.139 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=223.104.191.160&OptPlatform=Android&RequestId=2534272922-144115261377338092-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  1413. [运行时间:0.267774s] [吞吐率:3.73req/s] [内存消耗:705.64kb] [文件加载:140]
  1414. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1415. [ info ] [ CACHE ] INIT File
  1416. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000262s ]
  1417. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  1418. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  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.000043s ]
  1421. [ info ] [ ROUTE ] array (
  1422. 'type' => 'module',
  1423. 'module' =>
  1424. array (
  1425. 0 => 'api',
  1426. 1 => 'tenim',
  1427. 2 => 'callback',
  1428. ),
  1429. )
  1430. [ info ] [ HEADER ] array (
  1431. 'content-type' => 'application/json',
  1432. 'content-length' => '133',
  1433. 'connection' => 'keep-alive',
  1434. 'host' => 'voicechat.lanmaonet.com',
  1435. )
  1436. [ info ] [ PARAM ] array (
  1437. 'CallbackCommand' => 'State.StateChange',
  1438. 'ClientIP' => '223.104.191.160',
  1439. 'OptPlatform' => 'Android',
  1440. 'RequestId' => '2534272922-144115261377338092-Disconnect-TimeOut',
  1441. 'SdkAppid' => '1400556860',
  1442. 'contenttype' => 'json',
  1443. 'EventTime' => 1635935140956,
  1444. 'Info' =>
  1445. array (
  1446. 'To_Account' => '95',
  1447. 'Action' => 'Disconnect',
  1448. 'Reason' => 'TimeOut',
  1449. ),
  1450. )
  1451. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1452. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1453. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  1454. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1455. [ info ] [ DB ] INIT mysql
  1456. [ info ] [ LOG ] INIT File
  1457. ---------------------------------------------------------------
  1458. [ 2021-11-03T18:31:00+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1459. [运行时间:0.007184s] [吞吐率:139.20req/s] [内存消耗:626.52kb] [文件加载:144]
  1460. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1461. [ info ] [ CACHE ] INIT File
  1462. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000285s ]
  1463. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1464. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  1465. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1466. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  1467. [ info ] [ ROUTE ] array (
  1468. 'type' => 'module',
  1469. 'module' =>
  1470. array (
  1471. 0 => 'api',
  1472. 1 => 'match',
  1473. 2 => 'getVoiceTypeList',
  1474. ),
  1475. )
  1476. [ info ] [ HEADER ] array (
  1477. 'accept-encoding' => 'gzip',
  1478. 'connection' => 'Keep-Alive',
  1479. 'host' => 'voicechat.lanmaonet.com',
  1480. 'content-length' => '42',
  1481. 'content-type' => 'application/x-www-form-urlencoded',
  1482. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1483. 'accept-language' => 'zh-CN,zh;q=0.8',
  1484. )
  1485. [ info ] [ PARAM ] array (
  1486. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  1487. )
  1488. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1489. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1490. [ info ] [ TOKEN ] INIT Mysql
  1491. [ info ] [ DB ] INIT mysql
  1492. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  1493. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1494. [ info ] [ LOG ] INIT File
  1495. ---------------------------------------------------------------
  1496. [ 2021-11-03T18:32:07+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1497. [运行时间:0.005880s] [吞吐率:170.07req/s] [内存消耗:626.52kb] [文件加载:144]
  1498. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1499. [ info ] [ CACHE ] INIT File
  1500. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000152s ]
  1501. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1502. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  1503. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1504. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  1505. [ info ] [ ROUTE ] array (
  1506. 'type' => 'module',
  1507. 'module' =>
  1508. array (
  1509. 0 => 'api',
  1510. 1 => 'match',
  1511. 2 => 'getVoiceTypeList',
  1512. ),
  1513. )
  1514. [ info ] [ HEADER ] array (
  1515. 'accept-encoding' => 'gzip',
  1516. 'connection' => 'Keep-Alive',
  1517. 'host' => 'voicechat.lanmaonet.com',
  1518. 'content-length' => '42',
  1519. 'content-type' => 'application/x-www-form-urlencoded',
  1520. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1521. 'accept-language' => 'zh-CN,zh;q=0.8',
  1522. )
  1523. [ info ] [ PARAM ] array (
  1524. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  1525. )
  1526. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1527. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000069s ]
  1528. [ info ] [ TOKEN ] INIT Mysql
  1529. [ info ] [ DB ] INIT mysql
  1530. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1531. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1532. [ info ] [ LOG ] INIT File
  1533. ---------------------------------------------------------------
  1534. [ 2021-11-03T18:32:07+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1535. [运行时间:0.012736s] [吞吐率:78.52req/s] [内存消耗:626.52kb] [文件加载:144]
  1536. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1537. [ info ] [ CACHE ] INIT File
  1538. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000295s ]
  1539. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  1540. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  1541. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1542. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000049s ]
  1543. [ info ] [ ROUTE ] array (
  1544. 'type' => 'module',
  1545. 'module' =>
  1546. array (
  1547. 0 => 'api',
  1548. 1 => 'match',
  1549. 2 => 'getVoiceTypeList',
  1550. ),
  1551. )
  1552. [ info ] [ HEADER ] array (
  1553. 'accept-encoding' => 'gzip',
  1554. 'connection' => 'Keep-Alive',
  1555. 'host' => 'voicechat.lanmaonet.com',
  1556. 'content-length' => '42',
  1557. 'content-type' => 'application/x-www-form-urlencoded',
  1558. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1559. 'accept-language' => 'zh-CN,zh;q=0.8',
  1560. )
  1561. [ info ] [ PARAM ] array (
  1562. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  1563. )
  1564. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1565. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000077s ]
  1566. [ info ] [ TOKEN ] INIT Mysql
  1567. [ info ] [ DB ] INIT mysql
  1568. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  1569. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1570. [ info ] [ LOG ] INIT File
  1571. ---------------------------------------------------------------
  1572. [ 2021-11-03T18:32:07+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1573. [运行时间:0.012577s] [吞吐率:79.51req/s] [内存消耗:626.52kb] [文件加载:144]
  1574. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  1575. [ info ] [ CACHE ] INIT File
  1576. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000270s ]
  1577. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000044s ]
  1578. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  1579. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1580. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000049s ]
  1581. [ info ] [ ROUTE ] array (
  1582. 'type' => 'module',
  1583. 'module' =>
  1584. array (
  1585. 0 => 'api',
  1586. 1 => 'match',
  1587. 2 => 'getVoiceTypeList',
  1588. ),
  1589. )
  1590. [ info ] [ HEADER ] array (
  1591. 'accept-encoding' => 'gzip',
  1592. 'connection' => 'Keep-Alive',
  1593. 'host' => 'voicechat.lanmaonet.com',
  1594. 'content-length' => '42',
  1595. 'content-type' => 'application/x-www-form-urlencoded',
  1596. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1597. 'accept-language' => 'zh-CN,zh;q=0.8',
  1598. )
  1599. [ info ] [ PARAM ] array (
  1600. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  1601. )
  1602. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1603. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000077s ]
  1604. [ info ] [ TOKEN ] INIT Mysql
  1605. [ info ] [ DB ] INIT mysql
  1606. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000079s ]
  1607. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1608. [ info ] [ LOG ] INIT File
  1609. ---------------------------------------------------------------
  1610. [ 2021-11-03T18:32:13+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  1611. [运行时间:0.007240s] [吞吐率:138.12req/s] [内存消耗:626.52kb] [文件加载:144]
  1612. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1613. [ info ] [ CACHE ] INIT File
  1614. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000216s ]
  1615. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1616. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1617. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1618. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1619. [ info ] [ ROUTE ] array (
  1620. 'type' => 'module',
  1621. 'module' =>
  1622. array (
  1623. 0 => 'api',
  1624. 1 => 'match',
  1625. 2 => 'getVoiceTypeList',
  1626. ),
  1627. )
  1628. [ info ] [ HEADER ] array (
  1629. 'accept-encoding' => 'gzip',
  1630. 'connection' => 'Keep-Alive',
  1631. 'host' => 'voicechat.lanmaonet.com',
  1632. 'content-length' => '42',
  1633. 'content-type' => 'application/x-www-form-urlencoded',
  1634. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1635. 'accept-language' => 'zh-CN,zh;q=0.8',
  1636. )
  1637. [ info ] [ PARAM ] array (
  1638. 'token' => '7138586e-94ae-4d3d-ad6a-8225a4950f0c',
  1639. )
  1640. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1641. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1642. [ info ] [ TOKEN ] INIT Mysql
  1643. [ info ] [ DB ] INIT mysql
  1644. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  1645. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  1646. [ info ] [ LOG ] INIT File
  1647. ---------------------------------------------------------------
  1648. [ 2021-11-03T19:01:34+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  1649. [运行时间:0.004080s] [吞吐率:245.09req/s] [内存消耗:362.48kb] [文件加载:123]
  1650. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1651. [ info ] [ CACHE ] INIT File
  1652. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000248s ]
  1653. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1654. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1655. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1656. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  1657. [ info ] [ ROUTE ] array (
  1658. 'type' => 'module',
  1659. 'module' =>
  1660. array (
  1661. 0 => 'apple-app-site-association',
  1662. 1 => NULL,
  1663. 2 => NULL,
  1664. ),
  1665. )
  1666. [ info ] [ HEADER ] array (
  1667. 'accept-encoding' => 'gzip',
  1668. 'user-agent' => 'AASA-Bot/1.0.0',
  1669. 'host' => 'voicechat.lanmaonet.com',
  1670. 'content-type' => '',
  1671. 'content-length' => '',
  1672. )
  1673. [ info ] [ PARAM ] array (
  1674. )
  1675. [ info ] [ LOG ] INIT File
  1676. ---------------------------------------------------------------
  1677. [ 2021-11-03T20:04:52+08:00 ] 207.46.13.136 GET voicechat.lanmaonet.com/
  1678. [运行时间:0.007568s] [吞吐率:132.14req/s] [内存消耗:493.02kb] [文件加载:135]
  1679. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1680. [ info ] [ CACHE ] INIT File
  1681. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000264s ]
  1682. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1683. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1684. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1685. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  1686. [ info ] [ ROUTE ] array (
  1687. 'type' => 'module',
  1688. 'module' =>
  1689. array (
  1690. 0 => '',
  1691. 1 => NULL,
  1692. 2 => NULL,
  1693. ),
  1694. )
  1695. [ info ] [ HEADER ] array (
  1696. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  1697. 'host' => 'voicechat.lanmaonet.com',
  1698. 'from' => 'bingbot(at)microsoft.com',
  1699. 'accept-encoding' => 'gzip, deflate',
  1700. 'accept' => '*/*',
  1701. 'pragma' => 'no-cache',
  1702. 'connection' => 'Keep-Alive',
  1703. 'cache-control' => 'no-cache',
  1704. 'content-type' => '',
  1705. 'content-length' => '',
  1706. )
  1707. [ info ] [ PARAM ] array (
  1708. )
  1709. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  1710. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1711. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000078s ]
  1712. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000046s ]
  1713. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  1714. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1715. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1716. 0 => 'user',
  1717. 1 => 'site',
  1718. 2 => 'config',
  1719. ) ]
  1720. [ info ] [ LOG ] INIT File
  1721. ---------------------------------------------------------------
  1722. [ 2021-11-03T21:27:57+08:00 ] 66.249.69.36 GET voicechat.lanmaonet.com/
  1723. [运行时间:0.005389s] [吞吐率:185.56req/s] [内存消耗:493.88kb] [文件加载:135]
  1724. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1725. [ info ] [ CACHE ] INIT File
  1726. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000300s ]
  1727. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  1728. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  1729. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1730. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  1731. [ info ] [ ROUTE ] array (
  1732. 'type' => 'module',
  1733. 'module' =>
  1734. array (
  1735. 0 => '',
  1736. 1 => NULL,
  1737. 2 => NULL,
  1738. ),
  1739. )
  1740. [ info ] [ HEADER ] array (
  1741. 'if-modified-since' => 'Mon, 01 Nov 2021 22:54:44 GMT',
  1742. 'accept-encoding' => 'gzip, deflate, br',
  1743. 'user-agent' => 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',
  1744. 'from' => 'googlebot(at)googlebot.com',
  1745. 'accept' => 'text/html,application/xhtml+xml,application/signed-exchange;v=b3,application/xml;q=0.9,*/*;q=0.8,text/html,application/xhtml+xml,application/signed-exchange;v=b3,application/xml;q=0.9,*/*;q=0.8',
  1746. 'connection' => 'keep-alive',
  1747. 'host' => 'voicechat.lanmaonet.com',
  1748. 'content-type' => '',
  1749. 'content-length' => '',
  1750. )
  1751. [ info ] [ PARAM ] array (
  1752. )
  1753. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  1754. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  1755. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1756. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000038s ]
  1757. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  1758. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1759. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1760. 0 => 'user',
  1761. 1 => 'site',
  1762. 2 => 'config',
  1763. ) ]
  1764. [ info ] [ LOG ] INIT File
  1765. ---------------------------------------------------------------
  1766. [ 2021-11-03T22:43:44+08:00 ] 3.127.119.25 GET voicechat.lanmaonet.com/apple-app-site-association
  1767. [运行时间:0.003941s] [吞吐率:253.74req/s] [内存消耗:362.48kb] [文件加载:123]
  1768. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1769. [ info ] [ CACHE ] INIT File
  1770. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000237s ]
  1771. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  1772. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1773. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1774. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1775. [ info ] [ ROUTE ] array (
  1776. 'type' => 'module',
  1777. 'module' =>
  1778. array (
  1779. 0 => 'apple-app-site-association',
  1780. 1 => NULL,
  1781. 2 => NULL,
  1782. ),
  1783. )
  1784. [ info ] [ HEADER ] array (
  1785. 'accept-encoding' => 'gzip',
  1786. 'user-agent' => 'AASA-Bot/1.0.0',
  1787. 'host' => 'voicechat.lanmaonet.com',
  1788. 'content-type' => '',
  1789. 'content-length' => '',
  1790. )
  1791. [ info ] [ PARAM ] array (
  1792. )
  1793. [ info ] [ LOG ] INIT File
  1794. ---------------------------------------------------------------
  1795. [ 2021-11-03T23:22:15+08:00 ] 18.141.129.183 GET voicechat.lanmaonet.com/apple-app-site-association
  1796. [运行时间:0.003825s] [吞吐率:261.44req/s] [内存消耗:362.48kb] [文件加载:123]
  1797. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1798. [ info ] [ CACHE ] INIT File
  1799. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000252s ]
  1800. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1801. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1802. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1803. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  1804. [ info ] [ ROUTE ] array (
  1805. 'type' => 'module',
  1806. 'module' =>
  1807. array (
  1808. 0 => 'apple-app-site-association',
  1809. 1 => NULL,
  1810. 2 => NULL,
  1811. ),
  1812. )
  1813. [ info ] [ HEADER ] array (
  1814. 'accept-encoding' => 'gzip',
  1815. 'user-agent' => 'AASA-Bot/1.0.0',
  1816. 'host' => 'voicechat.lanmaonet.com',
  1817. 'content-type' => '',
  1818. 'content-length' => '',
  1819. )
  1820. [ info ] [ PARAM ] array (
  1821. )
  1822. [ info ] [ LOG ] INIT File
  1823. ---------------------------------------------------------------
  1824. [ 2021-11-03T23:51:09+08:00 ] 120.235.135.28 GET voicechat.lanmaonet.com/apple-app-site-association
  1825. [运行时间:0.003969s] [吞吐率:251.96req/s] [内存消耗:364.43kb] [文件加载:123]
  1826. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1827. [ info ] [ CACHE ] INIT File
  1828. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000258s ]
  1829. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1830. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1831. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1832. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  1833. [ info ] [ ROUTE ] array (
  1834. 'type' => 'module',
  1835. 'module' =>
  1836. array (
  1837. 0 => 'apple-app-site-association',
  1838. 1 => NULL,
  1839. 2 => NULL,
  1840. ),
  1841. )
  1842. [ info ] [ HEADER ] array (
  1843. 'user-agent' => 'swcd (unknown version) CFNetwork/1126 Darwin/19.5.0',
  1844. 'accept-encoding' => 'gzip, deflate, br',
  1845. 'connection' => 'keep-alive',
  1846. 'accept-language' => 'zh-cn',
  1847. 'accept' => '*/*',
  1848. 'host' => 'voicechat.lanmaonet.com',
  1849. 'content-type' => '',
  1850. 'content-length' => '',
  1851. )
  1852. [ info ] [ PARAM ] array (
  1853. )
  1854. [ info ] [ LOG ] INIT File
  1855. ---------------------------------------------------------------
  1856. [ 2021-11-03T23:51:57+08:00 ] 54.218.111.88 GET voicechat.lanmaonet.com/
  1857. [运行时间:0.007582s] [吞吐率:131.89req/s] [内存消耗:492.53kb] [文件加载:135]
  1858. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1859. [ info ] [ CACHE ] INIT File
  1860. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000257s ]
  1861. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1862. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1863. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1864. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  1865. [ info ] [ ROUTE ] array (
  1866. 'type' => 'module',
  1867. 'module' =>
  1868. array (
  1869. 0 => '',
  1870. 1 => NULL,
  1871. 2 => NULL,
  1872. ),
  1873. )
  1874. [ info ] [ HEADER ] array (
  1875. 'user-agent' => 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MS-RTC LM 8; InfoPath.3; .NET4.0C; .NET4.0E) chromeframe/8.0.552.224',
  1876. 'accept' => '*/*',
  1877. 'host' => 'voicechat.lanmaonet.com',
  1878. 'content-type' => '',
  1879. 'content-length' => '',
  1880. )
  1881. [ info ] [ PARAM ] array (
  1882. )
  1883. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  1884. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000071s ]
  1885. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  1886. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000041s ]
  1887. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  1888. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1889. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1890. 0 => 'user',
  1891. 1 => 'site',
  1892. 2 => 'config',
  1893. ) ]
  1894. [ info ] [ LOG ] INIT File
  1895. ---------------------------------------------------------------
  1896. [ 2021-11-03T23:56:33+08:00 ] 118.247.121.64 GET voicechat.lanmaonet.com/apple-app-site-association
  1897. [运行时间:0.003989s] [吞吐率:250.69req/s] [内存消耗:364.43kb] [文件加载:123]
  1898. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1899. [ info ] [ CACHE ] INIT File
  1900. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000241s ]
  1901. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1902. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  1903. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1904. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  1905. [ info ] [ ROUTE ] array (
  1906. 'type' => 'module',
  1907. 'module' =>
  1908. array (
  1909. 0 => 'apple-app-site-association',
  1910. 1 => NULL,
  1911. 2 => NULL,
  1912. ),
  1913. )
  1914. [ info ] [ HEADER ] array (
  1915. 'user-agent' => 'swcd (unknown version) CFNetwork/975.0.3 Darwin/18.2.0',
  1916. 'accept-encoding' => 'br, gzip, deflate',
  1917. 'connection' => 'keep-alive',
  1918. 'accept-language' => 'zh-cn',
  1919. 'accept' => '*/*',
  1920. 'host' => 'voicechat.lanmaonet.com',
  1921. 'content-type' => '',
  1922. 'content-length' => '',
  1923. )
  1924. [ info ] [ PARAM ] array (
  1925. )
  1926. [ info ] [ LOG ] INIT File