21.log 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229
  1. ---------------------------------------------------------------
  2. [ 2023-02-21T00:19:28+08:00 ] 180.101.245.248 GET voicechat.lanmaonet.com/
  3. [运行时间:0.003778s] [吞吐率:264.67req/s] [内存消耗:409.94kb] [文件加载:135]
  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.000170s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  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.000033s ]
  11. [ info ] [ ROUTE ] array (
  12. 'type' => 'module',
  13. 'module' =>
  14. array (
  15. 0 => '',
  16. 1 => NULL,
  17. 2 => NULL,
  18. ),
  19. )
  20. [ info ] [ HEADER ] array (
  21. 'upgrade-insecure-requests' => '1',
  22. 'connection' => 'keep-alive',
  23. 'cache-control' => 'max-age=0',
  24. 'accept-language' => 'zh-CN,zh;q=0.9',
  25. 'accept-encoding' => 'gzip, deflate',
  26. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  27. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45',
  28. 'host' => 'voicechat.lanmaonet.com',
  29. 'content-length' => '',
  30. 'content-type' => '',
  31. )
  32. [ info ] [ PARAM ] array (
  33. )
  34. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  35. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  36. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  37. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000030s ]
  38. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  39. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  40. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  41. 0 => 'user',
  42. 1 => 'site',
  43. 2 => 'config',
  44. ) ]
  45. [ info ] [ LOG ] INIT File
  46. ---------------------------------------------------------------
  47. [ 2023-02-21T00:19:31+08:00 ] 220.196.160.84 GET voicechat.lanmaonet.com/
  48. [运行时间:0.003740s] [吞吐率:267.39req/s] [内存消耗:409.38kb] [文件加载:135]
  49. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  50. [ info ] [ CACHE ] INIT File
  51. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000151s ]
  52. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  53. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  54. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  55. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  56. [ info ] [ ROUTE ] array (
  57. 'type' => 'module',
  58. 'module' =>
  59. array (
  60. 0 => '',
  61. 1 => NULL,
  62. 2 => NULL,
  63. ),
  64. )
  65. [ info ] [ HEADER ] array (
  66. 'upgrade-insecure-requests' => '1',
  67. 'proxy-connection' => 'keep-alive',
  68. 'accept-language' => 'zh-CN,zh;q=0.9',
  69. 'accept-encoding' => 'gzip, deflate',
  70. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  71. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45',
  72. 'host' => 'voicechat.lanmaonet.com',
  73. 'content-length' => '',
  74. 'content-type' => '',
  75. )
  76. [ info ] [ PARAM ] array (
  77. )
  78. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  79. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000069s ]
  80. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  81. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000031s ]
  82. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  83. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  84. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  85. 0 => 'user',
  86. 1 => 'site',
  87. 2 => 'config',
  88. ) ]
  89. [ info ] [ LOG ] INIT File
  90. ---------------------------------------------------------------
  91. [ 2023-02-21T04:57:34+08:00 ] 103.179.242.60 GET voicechat.lanmaonet.com/
  92. [运行时间:0.003657s] [吞吐率:273.46req/s] [内存消耗:408.27kb] [文件加载:135]
  93. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  94. [ info ] [ CACHE ] INIT File
  95. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000171s ]
  96. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  97. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  98. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  99. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  100. [ info ] [ ROUTE ] array (
  101. 'type' => 'module',
  102. 'module' =>
  103. array (
  104. 0 => '',
  105. 1 => NULL,
  106. 2 => NULL,
  107. ),
  108. )
  109. [ info ] [ HEADER ] array (
  110. 'accept-encoding' => 'gzip',
  111. 'accept' => '*/*',
  112. 'user-agent' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16D57 MicroMessenger/7.0.3(0x17000321) NetType/WIFI Language/zh_CN',
  113. 'host' => 'voicechat.lanmaonet.com',
  114. 'content-length' => '',
  115. 'content-type' => '',
  116. )
  117. [ info ] [ PARAM ] array (
  118. )
  119. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  120. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  121. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  122. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000032s ]
  123. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  124. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  125. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  126. 0 => 'user',
  127. 1 => 'site',
  128. 2 => 'config',
  129. ) ]
  130. [ info ] [ LOG ] INIT File
  131. ---------------------------------------------------------------
  132. [ 2023-02-21T05:10:31+08:00 ] 180.101.244.14 GET voicechat.lanmaonet.com/
  133. [运行时间:0.003429s] [吞吐率:291.64req/s] [内存消耗:410.26kb] [文件加载:135]
  134. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  135. [ info ] [ CACHE ] INIT File
  136. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000160s ]
  137. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  138. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  139. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  140. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  141. [ info ] [ ROUTE ] array (
  142. 'type' => 'module',
  143. 'module' =>
  144. array (
  145. 0 => '',
  146. 1 => NULL,
  147. 2 => NULL,
  148. ),
  149. )
  150. [ info ] [ HEADER ] array (
  151. 'upgrade-insecure-requests' => '1',
  152. 'connection' => 'keep-alive',
  153. 'cache-control' => 'max-age=0',
  154. 'accept-language' => 'zh-CN,zh;q=0.9',
  155. 'accept-encoding' => 'gzip, deflate',
  156. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  157. 'user-agent' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16D57 MicroMessenger/7.0.3(0x17000321) NetType/WIFI Language/zh_CN',
  158. 'host' => 'voicechat.lanmaonet.com',
  159. 'content-length' => '',
  160. 'content-type' => '',
  161. )
  162. [ info ] [ PARAM ] array (
  163. )
  164. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  165. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  166. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  167. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000029s ]
  168. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  169. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  170. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  171. 0 => 'user',
  172. 1 => 'site',
  173. 2 => 'config',
  174. ) ]
  175. [ info ] [ LOG ] INIT File
  176. ---------------------------------------------------------------
  177. [ 2023-02-21T08:36:04+08:00 ] 207.46.13.207 GET voicechat.lanmaonet.com/
  178. [运行时间:0.003741s] [吞吐率:267.31req/s] [内存消耗:408.98kb] [文件加载:135]
  179. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  180. [ info ] [ CACHE ] INIT File
  181. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000167s ]
  182. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  183. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  184. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  185. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  186. [ info ] [ ROUTE ] array (
  187. 'type' => 'module',
  188. 'module' =>
  189. array (
  190. 0 => '',
  191. 1 => NULL,
  192. 2 => NULL,
  193. ),
  194. )
  195. [ info ] [ HEADER ] array (
  196. 'user-agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36',
  197. 'from' => 'bingbot(at)microsoft.com',
  198. 'accept-encoding' => 'gzip, deflate',
  199. 'accept' => '*/*',
  200. 'pragma' => 'no-cache',
  201. 'cache-control' => 'no-cache',
  202. 'host' => 'voicechat.lanmaonet.com',
  203. 'content-length' => '',
  204. 'content-type' => '',
  205. )
  206. [ info ] [ PARAM ] array (
  207. )
  208. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  209. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000071s ]
  210. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  211. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000033s ]
  212. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  213. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  214. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  215. 0 => 'user',
  216. 1 => 'site',
  217. 2 => 'config',
  218. ) ]
  219. [ info ] [ LOG ] INIT File
  220. ---------------------------------------------------------------
  221. [ 2023-02-21T10:45:10+08:00 ] 40.77.167.249 GET voicechat.lanmaonet.com/
  222. [运行时间:0.004043s] [吞吐率:247.33req/s] [内存消耗:409.06kb] [文件加载:135]
  223. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  224. [ info ] [ CACHE ] INIT File
  225. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000164s ]
  226. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  227. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  228. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  229. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  230. [ info ] [ ROUTE ] array (
  231. 'type' => 'module',
  232. 'module' =>
  233. array (
  234. 0 => '',
  235. 1 => NULL,
  236. 2 => NULL,
  237. ),
  238. )
  239. [ info ] [ HEADER ] array (
  240. 'user-agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36',
  241. 'host' => 'voicechat.lanmaonet.com',
  242. 'from' => 'bingbot(at)microsoft.com',
  243. 'accept-encoding' => 'gzip, deflate',
  244. 'accept' => '*/*',
  245. 'pragma' => 'no-cache',
  246. 'connection' => 'Keep-Alive',
  247. 'cache-control' => 'no-cache',
  248. 'content-length' => '',
  249. 'content-type' => '',
  250. )
  251. [ info ] [ PARAM ] array (
  252. )
  253. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  254. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  255. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000075s ]
  256. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000035s ]
  257. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  258. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  259. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  260. 0 => 'user',
  261. 1 => 'site',
  262. 2 => 'config',
  263. ) ]
  264. [ info ] [ LOG ] INIT File
  265. ---------------------------------------------------------------
  266. [ 2023-02-21T11:21:48+08:00 ] 36.99.136.128 GET voicechat.lanmaonet.com/
  267. [运行时间:0.003741s] [吞吐率:267.31req/s] [内存消耗:389.79kb] [文件加载:133]
  268. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  269. [ info ] [ CACHE ] INIT File
  270. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000168s ]
  271. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  272. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  273. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  274. [ info ] [ ROUTE ] array (
  275. 'type' => 'module',
  276. 'module' =>
  277. array (
  278. 0 => '',
  279. 1 => NULL,
  280. 2 => NULL,
  281. ),
  282. )
  283. [ info ] [ HEADER ] array (
  284. 'accept-encoding' => 'gzip',
  285. 'upgrade-insecure-requests' => '1',
  286. 'sec-gpc' => '1',
  287. 'dnt' => '1',
  288. 'connection' => 'keep-alive',
  289. 'cache-control' => 'max-age=0',
  290. 'accept-language' => 'en;q=0.9',
  291. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  292. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36',
  293. 'host' => 'voicechat.lanmaonet.com',
  294. 'content-length' => '',
  295. 'content-type' => '',
  296. )
  297. [ info ] [ PARAM ] array (
  298. )
  299. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  300. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  301. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000032s ]
  302. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/en/index.php
  303. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  304. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  305. 0 => 'user',
  306. 1 => 'site',
  307. 2 => 'config',
  308. ) ]
  309. [ info ] [ LOG ] INIT File
  310. ---------------------------------------------------------------
  311. [ 2023-02-21T11:21:49+08:00 ] 36.99.136.128 GET voicechat.lanmaonet.com/
  312. [运行时间:0.002624s] [吞吐率:381.09req/s] [内存消耗:388.81kb] [文件加载:133]
  313. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  314. [ info ] [ CACHE ] INIT File
  315. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000128s ]
  316. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  317. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  318. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  319. [ info ] [ ROUTE ] array (
  320. 'type' => 'module',
  321. 'module' =>
  322. array (
  323. 0 => '',
  324. 1 => NULL,
  325. 2 => NULL,
  326. ),
  327. )
  328. [ info ] [ HEADER ] array (
  329. 'accept-encoding' => 'gzip',
  330. 'upgrade-insecure-requests' => '1',
  331. 'accept-language' => 'en',
  332. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  333. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',
  334. 'host' => 'voicechat.lanmaonet.com',
  335. 'content-length' => '',
  336. 'content-type' => '',
  337. )
  338. [ info ] [ PARAM ] array (
  339. )
  340. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  341. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  342. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000026s ]
  343. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/en/index.php
  344. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  345. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  346. 0 => 'user',
  347. 1 => 'site',
  348. 2 => 'config',
  349. ) ]
  350. [ info ] [ LOG ] INIT File
  351. ---------------------------------------------------------------
  352. [ 2023-02-21T13:43:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/user/mobilelogin
  353. [运行时间:0.037450s] [吞吐率:26.70req/s] [内存消耗:720.52kb] [文件加载:151]
  354. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  355. [ info ] [ CACHE ] INIT File
  356. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  357. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  358. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  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.000029s ]
  361. [ info ] [ ROUTE ] array (
  362. 'type' => 'module',
  363. 'module' =>
  364. array (
  365. 0 => 'Api',
  366. 1 => 'user',
  367. 2 => 'mobilelogin',
  368. ),
  369. )
  370. [ info ] [ HEADER ] array (
  371. 'accept-encoding' => 'gzip',
  372. 'connection' => 'Keep-Alive',
  373. 'host' => 'voicechat.lanmaonet.com',
  374. 'content-length' => '31',
  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. 'mobile' => '17661115827',
  381. 'captcha' => '1212',
  382. )
  383. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  384. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  385. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  386. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn/user.php
  387. [ info ] [ RUN ] app\api\controller\User->mobilelogin[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/User.php ]
  388. [ info ] [ DB ] INIT mysql
  389. [ info ] [ TOKEN ] INIT Mysql
  390. [ info ] [ LOG ] INIT File
  391. ---------------------------------------------------------------
  392. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/tenim/updateSiteInfo
  393. [运行时间:0.139773s] [吞吐率:7.15req/s] [内存消耗:593.02kb] [文件加载:146]
  394. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  395. [ info ] [ CACHE ] INIT File
  396. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000159s ]
  397. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  398. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  399. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  400. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  401. [ info ] [ ROUTE ] array (
  402. 'type' => 'module',
  403. 'module' =>
  404. array (
  405. 0 => 'api',
  406. 1 => 'tenim',
  407. 2 => 'updateSiteInfo',
  408. ),
  409. )
  410. [ info ] [ HEADER ] array (
  411. 'accept-encoding' => 'gzip',
  412. 'connection' => 'Keep-Alive',
  413. 'host' => 'voicechat.lanmaonet.com',
  414. 'content-length' => '79',
  415. 'content-type' => 'application/x-www-form-urlencoded',
  416. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  417. 'accept-language' => 'zh-CN,zh;q=0.8',
  418. )
  419. [ info ] [ PARAM ] array (
  420. 'params_from' => 'android',
  421. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  422. 'user_id' => '26843951',
  423. )
  424. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  425. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  426. [ info ] [ TOKEN ] INIT Mysql
  427. [ info ] [ DB ] INIT mysql
  428. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000074s ]
  429. [ info ] [ RUN ] app\api\controller\Tenim->updateSiteInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  430. [ info ] [ LOG ] INIT File
  431. ---------------------------------------------------------------
  432. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/tenim/getUsersig
  433. [运行时间:0.006252s] [吞吐率:159.95req/s] [内存消耗:590.84kb] [文件加载:144]
  434. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  435. [ info ] [ CACHE ] INIT File
  436. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000134s ]
  437. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  438. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  439. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  440. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  441. [ info ] [ ROUTE ] array (
  442. 'type' => 'module',
  443. 'module' =>
  444. array (
  445. 0 => 'api',
  446. 1 => 'tenim',
  447. 2 => 'getUsersig',
  448. ),
  449. )
  450. [ info ] [ HEADER ] array (
  451. 'accept-encoding' => 'gzip',
  452. 'connection' => 'Keep-Alive',
  453. 'host' => 'voicechat.lanmaonet.com',
  454. 'content-length' => '62',
  455. 'content-type' => 'application/x-www-form-urlencoded',
  456. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  457. 'accept-language' => 'zh-CN,zh;q=0.8',
  458. )
  459. [ info ] [ PARAM ] array (
  460. 'params_from' => 'android',
  461. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  462. )
  463. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  464. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000069s ]
  465. [ info ] [ TOKEN ] INIT Mysql
  466. [ info ] [ DB ] INIT mysql
  467. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  468. [ info ] [ RUN ] app\api\controller\Tenim->getUsersig[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  469. [ info ] [ LOG ] INIT File
  470. ---------------------------------------------------------------
  471. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getEdition
  472. [运行时间:0.006059s] [吞吐率:165.05req/s] [内存消耗:589.48kb] [文件加载:143]
  473. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000028s ]
  474. [ info ] [ CACHE ] INIT File
  475. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  476. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  477. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  478. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  479. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  480. [ info ] [ ROUTE ] array (
  481. 'type' => 'module',
  482. 'module' =>
  483. array (
  484. 0 => 'api',
  485. 1 => 'index',
  486. 2 => 'getEdition',
  487. ),
  488. )
  489. [ info ] [ HEADER ] array (
  490. 'accept-encoding' => 'gzip',
  491. 'connection' => 'Keep-Alive',
  492. 'host' => 'voicechat.lanmaonet.com',
  493. 'content-length' => '62',
  494. 'content-type' => 'application/x-www-form-urlencoded',
  495. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  496. 'accept-language' => 'zh-CN,zh;q=0.8',
  497. )
  498. [ info ] [ PARAM ] array (
  499. 'params_from' => 'android',
  500. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  501. )
  502. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  503. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  504. [ info ] [ TOKEN ] INIT Mysql
  505. [ info ] [ DB ] INIT mysql
  506. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  507. [ info ] [ RUN ] app\api\controller\Index->getEdition[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  508. [ info ] [ LOG ] INIT File
  509. ---------------------------------------------------------------
  510. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  511. [运行时间:0.010798s] [吞吐率:92.61req/s] [内存消耗:636.05kb] [文件加载:147]
  512. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  513. [ info ] [ CACHE ] INIT File
  514. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000158s ]
  515. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  516. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  517. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  518. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  519. [ info ] [ ROUTE ] array (
  520. 'type' => 'module',
  521. 'module' =>
  522. array (
  523. 0 => 'api',
  524. 1 => 'userCenter',
  525. 2 => 'getMyUserInfo',
  526. ),
  527. )
  528. [ info ] [ HEADER ] array (
  529. 'accept-encoding' => 'gzip',
  530. 'connection' => 'Keep-Alive',
  531. 'host' => 'voicechat.lanmaonet.com',
  532. 'content-length' => '74',
  533. 'content-type' => 'application/x-www-form-urlencoded',
  534. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  535. 'accept-language' => 'zh-CN,zh;q=0.8',
  536. )
  537. [ info ] [ PARAM ] array (
  538. 'params_from' => 'android',
  539. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  540. 'user_id' => '122',
  541. )
  542. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  543. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  544. [ info ] [ TOKEN ] INIT Mysql
  545. [ info ] [ DB ] INIT mysql
  546. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  547. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  548. [ info ] [ LOG ] INIT File
  549. ---------------------------------------------------------------
  550. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/tenim/getUsersig
  551. [运行时间:0.006340s] [吞吐率:157.73req/s] [内存消耗:590.84kb] [文件加载:144]
  552. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  553. [ info ] [ CACHE ] INIT File
  554. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000118s ]
  555. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000051s ]
  556. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000065s ]
  557. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  558. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  559. [ info ] [ ROUTE ] array (
  560. 'type' => 'module',
  561. 'module' =>
  562. array (
  563. 0 => 'api',
  564. 1 => 'tenim',
  565. 2 => 'getUsersig',
  566. ),
  567. )
  568. [ info ] [ HEADER ] array (
  569. 'accept-encoding' => 'gzip',
  570. 'connection' => 'Keep-Alive',
  571. 'host' => 'voicechat.lanmaonet.com',
  572. 'content-length' => '62',
  573. 'content-type' => 'application/x-www-form-urlencoded',
  574. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  575. 'accept-language' => 'zh-CN,zh;q=0.8',
  576. )
  577. [ info ] [ PARAM ] array (
  578. 'params_from' => 'android',
  579. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  580. )
  581. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  582. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  583. [ info ] [ TOKEN ] INIT Mysql
  584. [ info ] [ DB ] INIT mysql
  585. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  586. [ info ] [ RUN ] app\api\controller\Tenim->getUsersig[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  587. [ info ] [ LOG ] INIT File
  588. ---------------------------------------------------------------
  589. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  590. [运行时间:0.006720s] [吞吐率:148.81req/s] [内存消耗:606.92kb] [文件加载:146]
  591. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  592. [ info ] [ CACHE ] INIT File
  593. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000138s ]
  594. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  595. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  596. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  597. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  598. [ info ] [ ROUTE ] array (
  599. 'type' => 'module',
  600. 'module' =>
  601. array (
  602. 0 => 'Api',
  603. 1 => 'party',
  604. 2 => 'getPartyRankList',
  605. ),
  606. )
  607. [ info ] [ HEADER ] array (
  608. 'accept-encoding' => 'gzip',
  609. 'connection' => 'Keep-Alive',
  610. 'host' => 'voicechat.lanmaonet.com',
  611. 'content-length' => '114',
  612. 'content-type' => 'application/x-www-form-urlencoded',
  613. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  614. 'accept-language' => 'zh-CN,zh;q=0.8',
  615. )
  616. [ info ] [ PARAM ] array (
  617. 'params_from' => 'android',
  618. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  619. 'type_id' => '',
  620. 'all' => '1',
  621. 'is_recommend' => '0',
  622. 'room_type' => '1',
  623. 'pagenum' => '6',
  624. )
  625. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  626. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  627. [ info ] [ TOKEN ] INIT Mysql
  628. [ info ] [ DB ] INIT mysql
  629. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  630. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  631. [ info ] [ LOG ] INIT File
  632. ---------------------------------------------------------------
  633. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  634. [运行时间:0.010450s] [吞吐率:95.69req/s] [内存消耗:639.06kb] [文件加载:146]
  635. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  636. [ info ] [ CACHE ] INIT File
  637. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000155s ]
  638. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  639. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  640. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  641. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  642. [ info ] [ ROUTE ] array (
  643. 'type' => 'module',
  644. 'module' =>
  645. array (
  646. 0 => 'Api',
  647. 1 => 'party',
  648. 2 => 'getPartyRankList',
  649. ),
  650. )
  651. [ info ] [ HEADER ] array (
  652. 'accept-encoding' => 'gzip',
  653. 'connection' => 'Keep-Alive',
  654. 'host' => 'voicechat.lanmaonet.com',
  655. 'content-length' => '126',
  656. 'content-type' => 'application/x-www-form-urlencoded',
  657. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  658. 'accept-language' => 'zh-CN,zh;q=0.8',
  659. )
  660. [ info ] [ PARAM ] array (
  661. 'params_from' => 'android',
  662. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  663. 'type_id' => '0',
  664. 'all' => '1',
  665. 'is_recommend' => '0',
  666. 'thispage' => '1',
  667. 'room_type' => '2',
  668. 'pagenum' => '6',
  669. )
  670. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  671. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  672. [ info ] [ TOKEN ] INIT Mysql
  673. [ info ] [ DB ] INIT mysql
  674. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  675. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  676. [ info ] [ LOG ] INIT File
  677. ---------------------------------------------------------------
  678. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  679. [运行时间:0.011548s] [吞吐率:86.59req/s] [内存消耗:636.05kb] [文件加载:147]
  680. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  681. [ info ] [ CACHE ] INIT File
  682. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000130s ]
  683. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  684. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  685. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  686. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  687. [ info ] [ ROUTE ] array (
  688. 'type' => 'module',
  689. 'module' =>
  690. array (
  691. 0 => 'api',
  692. 1 => 'userCenter',
  693. 2 => 'getMyUserInfo',
  694. ),
  695. )
  696. [ info ] [ HEADER ] array (
  697. 'accept-encoding' => 'gzip',
  698. 'connection' => 'Keep-Alive',
  699. 'host' => 'voicechat.lanmaonet.com',
  700. 'content-length' => '74',
  701. 'content-type' => 'application/x-www-form-urlencoded',
  702. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  703. 'accept-language' => 'zh-CN,zh;q=0.8',
  704. )
  705. [ info ] [ PARAM ] array (
  706. 'params_from' => 'android',
  707. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  708. 'user_id' => '122',
  709. )
  710. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  711. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  712. [ info ] [ TOKEN ] INIT Mysql
  713. [ info ] [ DB ] INIT mysql
  714. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  715. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  716. [ info ] [ LOG ] INIT File
  717. ---------------------------------------------------------------
  718. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  719. [运行时间:0.006661s] [吞吐率:150.12req/s] [内存消耗:606.92kb] [文件加载:146]
  720. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  721. [ info ] [ CACHE ] INIT File
  722. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000118s ]
  723. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000050s ]
  724. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  725. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  726. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  727. [ info ] [ ROUTE ] array (
  728. 'type' => 'module',
  729. 'module' =>
  730. array (
  731. 0 => 'Api',
  732. 1 => 'party',
  733. 2 => 'getPartyRankList',
  734. ),
  735. )
  736. [ info ] [ HEADER ] array (
  737. 'accept-encoding' => 'gzip',
  738. 'connection' => 'Keep-Alive',
  739. 'host' => 'voicechat.lanmaonet.com',
  740. 'content-length' => '114',
  741. 'content-type' => 'application/x-www-form-urlencoded',
  742. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  743. 'accept-language' => 'zh-CN,zh;q=0.8',
  744. )
  745. [ info ] [ PARAM ] array (
  746. 'params_from' => 'android',
  747. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  748. 'type_id' => '',
  749. 'all' => '1',
  750. 'is_recommend' => '0',
  751. 'room_type' => '1',
  752. 'pagenum' => '6',
  753. )
  754. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  755. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  756. [ info ] [ TOKEN ] INIT Mysql
  757. [ info ] [ DB ] INIT mysql
  758. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  759. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  760. [ info ] [ LOG ] INIT File
  761. ---------------------------------------------------------------
  762. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  763. [运行时间:0.009276s] [吞吐率:107.81req/s] [内存消耗:639.06kb] [文件加载:146]
  764. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  765. [ info ] [ CACHE ] INIT File
  766. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000143s ]
  767. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  768. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  769. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  770. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  771. [ info ] [ ROUTE ] array (
  772. 'type' => 'module',
  773. 'module' =>
  774. array (
  775. 0 => 'Api',
  776. 1 => 'party',
  777. 2 => 'getPartyRankList',
  778. ),
  779. )
  780. [ info ] [ HEADER ] array (
  781. 'accept-encoding' => 'gzip',
  782. 'connection' => 'Keep-Alive',
  783. 'host' => 'voicechat.lanmaonet.com',
  784. 'content-length' => '126',
  785. 'content-type' => 'application/x-www-form-urlencoded',
  786. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  787. 'accept-language' => 'zh-CN,zh;q=0.8',
  788. )
  789. [ info ] [ PARAM ] array (
  790. 'params_from' => 'android',
  791. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  792. 'type_id' => '0',
  793. 'all' => '1',
  794. 'is_recommend' => '0',
  795. 'thispage' => '1',
  796. 'room_type' => '2',
  797. 'pagenum' => '6',
  798. )
  799. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  800. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  801. [ info ] [ TOKEN ] INIT Mysql
  802. [ info ] [ DB ] INIT mysql
  803. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  804. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  805. [ info ] [ LOG ] INIT File
  806. ---------------------------------------------------------------
  807. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  808. [运行时间:0.010746s] [吞吐率:93.06req/s] [内存消耗:636.05kb] [文件加载:147]
  809. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  810. [ info ] [ CACHE ] INIT File
  811. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000127s ]
  812. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  813. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  814. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  815. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  816. [ info ] [ ROUTE ] array (
  817. 'type' => 'module',
  818. 'module' =>
  819. array (
  820. 0 => 'api',
  821. 1 => 'userCenter',
  822. 2 => 'getMyUserInfo',
  823. ),
  824. )
  825. [ info ] [ HEADER ] array (
  826. 'accept-encoding' => 'gzip',
  827. 'connection' => 'Keep-Alive',
  828. 'host' => 'voicechat.lanmaonet.com',
  829. 'content-length' => '74',
  830. 'content-type' => 'application/x-www-form-urlencoded',
  831. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  832. 'accept-language' => 'zh-CN,zh;q=0.8',
  833. )
  834. [ info ] [ PARAM ] array (
  835. 'params_from' => 'android',
  836. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  837. 'user_id' => '122',
  838. )
  839. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  840. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  841. [ info ] [ TOKEN ] INIT Mysql
  842. [ info ] [ DB ] INIT mysql
  843. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  844. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  845. [ info ] [ LOG ] INIT File
  846. ---------------------------------------------------------------
  847. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/index/getMessage
  848. [运行时间:0.007236s] [吞吐率:138.20req/s] [内存消耗:602.66kb] [文件加载:145]
  849. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  850. [ info ] [ CACHE ] INIT File
  851. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000113s ]
  852. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  853. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  854. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  855. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  856. [ info ] [ ROUTE ] array (
  857. 'type' => 'module',
  858. 'module' =>
  859. array (
  860. 0 => 'Api',
  861. 1 => 'index',
  862. 2 => 'getMessage',
  863. ),
  864. )
  865. [ info ] [ HEADER ] array (
  866. 'accept-encoding' => 'gzip',
  867. 'connection' => 'Keep-Alive',
  868. 'host' => 'voicechat.lanmaonet.com',
  869. 'content-length' => '69',
  870. 'content-type' => 'application/x-www-form-urlencoded',
  871. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  872. 'accept-language' => 'zh-CN,zh;q=0.8',
  873. )
  874. [ info ] [ PARAM ] array (
  875. 'params_from' => 'android',
  876. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  877. 'flag' => '1',
  878. )
  879. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  880. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  881. [ info ] [ TOKEN ] INIT Mysql
  882. [ info ] [ DB ] INIT mysql
  883. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  884. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  885. [ info ] [ LOG ] INIT File
  886. ---------------------------------------------------------------
  887. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  888. [运行时间:0.007405s] [吞吐率:135.05req/s] [内存消耗:606.38kb] [文件加载:146]
  889. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  890. [ info ] [ CACHE ] INIT File
  891. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000141s ]
  892. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000044s ]
  893. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  894. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  895. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  896. [ info ] [ ROUTE ] array (
  897. 'type' => 'module',
  898. 'module' =>
  899. array (
  900. 0 => 'Api',
  901. 1 => 'party',
  902. 2 => 'getPatyType',
  903. ),
  904. )
  905. [ info ] [ HEADER ] array (
  906. 'accept-encoding' => 'gzip',
  907. 'connection' => 'Keep-Alive',
  908. 'host' => 'voicechat.lanmaonet.com',
  909. 'content-length' => '74',
  910. 'content-type' => 'application/x-www-form-urlencoded',
  911. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  912. 'accept-language' => 'zh-CN,zh;q=0.8',
  913. )
  914. [ info ] [ PARAM ] array (
  915. 'params_from' => 'android',
  916. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  917. 'room_type' => '2',
  918. )
  919. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  920. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  921. [ info ] [ TOKEN ] INIT Mysql
  922. [ info ] [ DB ] INIT mysql
  923. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  924. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  925. [ info ] [ LOG ] INIT File
  926. ---------------------------------------------------------------
  927. [ 2023-02-21T13:43:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  928. [运行时间:0.006657s] [吞吐率:150.22req/s] [内存消耗:605.92kb] [文件加载:146]
  929. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  930. [ info ] [ CACHE ] INIT File
  931. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000132s ]
  932. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  933. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  934. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  935. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  936. [ info ] [ ROUTE ] array (
  937. 'type' => 'module',
  938. 'module' =>
  939. array (
  940. 0 => 'Api',
  941. 1 => 'party',
  942. 2 => 'getPatyType',
  943. ),
  944. )
  945. [ info ] [ HEADER ] array (
  946. 'accept-encoding' => 'gzip',
  947. 'connection' => 'Keep-Alive',
  948. 'host' => 'voicechat.lanmaonet.com',
  949. 'content-length' => '62',
  950. 'content-type' => 'application/x-www-form-urlencoded',
  951. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  952. 'accept-language' => 'zh-CN,zh;q=0.8',
  953. )
  954. [ info ] [ PARAM ] array (
  955. 'params_from' => 'android',
  956. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  957. )
  958. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  959. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000044s ]
  960. [ info ] [ TOKEN ] INIT Mysql
  961. [ info ] [ DB ] INIT mysql
  962. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  963. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  964. [ info ] [ LOG ] INIT File
  965. ---------------------------------------------------------------
  966. [ 2023-02-21T13:43:33+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2684548648-144115236010360434-Login-Register&SdkAppid=1400556860&contenttype=json
  967. [运行时间:0.012381s] [吞吐率:80.77req/s] [内存消耗:591.64kb] [文件加载:136]
  968. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  969. [ info ] [ CACHE ] INIT File
  970. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000140s ]
  971. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  972. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  973. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  974. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  975. [ info ] [ ROUTE ] array (
  976. 'type' => 'module',
  977. 'module' =>
  978. array (
  979. 0 => 'api',
  980. 1 => 'tenim',
  981. 2 => 'callback',
  982. ),
  983. )
  984. [ info ] [ HEADER ] array (
  985. 'content-type' => 'application/json',
  986. 'content-length' => '130',
  987. 'host' => 'voicechat.lanmaonet.com',
  988. 'connection' => 'keep-alive',
  989. )
  990. [ info ] [ PARAM ] array (
  991. 'CallbackCommand' => 'State.StateChange',
  992. 'ClientIP' => '112.6.63.60',
  993. 'OptPlatform' => 'Android',
  994. 'RequestId' => '2684548648-144115236010360434-Login-Register',
  995. 'SdkAppid' => '1400556860',
  996. 'contenttype' => 'json',
  997. 'EventTime' => 1676958213624,
  998. 'Info' =>
  999. array (
  1000. 'To_Account' => '122',
  1001. 'Action' => 'Login',
  1002. 'Reason' => 'Register',
  1003. ),
  1004. )
  1005. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1006. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  1007. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1008. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1009. [ info ] [ DB ] INIT mysql
  1010. [ info ] [ LOG ] INIT File
  1011. ---------------------------------------------------------------
  1012. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/cellectionPartyList
  1013. [运行时间:0.008076s] [吞吐率:123.82req/s] [内存消耗:605.75kb] [文件加载:146]
  1014. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1015. [ info ] [ CACHE ] INIT File
  1016. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000123s ]
  1017. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1018. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1019. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1020. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1021. [ info ] [ ROUTE ] array (
  1022. 'type' => 'module',
  1023. 'module' =>
  1024. array (
  1025. 0 => 'Api',
  1026. 1 => 'party',
  1027. 2 => 'cellectionPartyList',
  1028. ),
  1029. )
  1030. [ info ] [ HEADER ] array (
  1031. 'accept-encoding' => 'gzip',
  1032. 'connection' => 'Keep-Alive',
  1033. 'host' => 'voicechat.lanmaonet.com',
  1034. 'content-length' => '79',
  1035. 'content-type' => 'application/x-www-form-urlencoded',
  1036. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1037. 'accept-language' => 'zh-CN,zh;q=0.8',
  1038. )
  1039. [ info ] [ PARAM ] array (
  1040. 'params_from' => 'android',
  1041. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1042. 'page' => '1',
  1043. 'pageNum' => '2',
  1044. )
  1045. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1046. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  1047. [ info ] [ TOKEN ] INIT Mysql
  1048. [ info ] [ DB ] INIT mysql
  1049. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  1050. [ info ] [ RUN ] app\api\controller\Party->cellectionPartyList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1051. [ info ] [ LOG ] INIT File
  1052. ---------------------------------------------------------------
  1053. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  1054. [运行时间:0.008092s] [吞吐率:123.58req/s] [内存消耗:606.22kb] [文件加载:146]
  1055. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1056. [ info ] [ CACHE ] INIT File
  1057. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000174s ]
  1058. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1059. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1060. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1061. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1062. [ info ] [ ROUTE ] array (
  1063. 'type' => 'module',
  1064. 'module' =>
  1065. array (
  1066. 0 => 'Api',
  1067. 1 => 'userCenter',
  1068. 2 => 'getFollowsLive',
  1069. ),
  1070. )
  1071. [ info ] [ HEADER ] array (
  1072. 'accept-encoding' => 'gzip',
  1073. 'connection' => 'Keep-Alive',
  1074. 'host' => 'voicechat.lanmaonet.com',
  1075. 'content-length' => '91',
  1076. 'content-type' => 'application/x-www-form-urlencoded',
  1077. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1078. 'accept-language' => 'zh-CN,zh;q=0.8',
  1079. )
  1080. [ info ] [ PARAM ] array (
  1081. 'params_from' => 'android',
  1082. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1083. 'is_online' => '0',
  1084. 'page' => '1',
  1085. 'pageNum' => '2',
  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.000058s ]
  1089. [ info ] [ TOKEN ] INIT Mysql
  1090. [ info ] [ DB ] INIT mysql
  1091. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000115s ]
  1092. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1093. [ info ] [ LOG ] INIT File
  1094. ---------------------------------------------------------------
  1095. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  1096. [运行时间:0.008505s] [吞吐率:117.58req/s] [内存消耗:606.43kb] [文件加载:146]
  1097. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1098. [ info ] [ CACHE ] INIT File
  1099. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  1100. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1101. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  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.000021s ]
  1104. [ info ] [ ROUTE ] array (
  1105. 'type' => 'module',
  1106. 'module' =>
  1107. array (
  1108. 0 => 'Api',
  1109. 1 => 'userCenter',
  1110. 2 => 'getFollowsLive',
  1111. ),
  1112. )
  1113. [ info ] [ HEADER ] array (
  1114. 'accept-encoding' => 'gzip',
  1115. 'connection' => 'Keep-Alive',
  1116. 'host' => 'voicechat.lanmaonet.com',
  1117. 'content-length' => '91',
  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' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1125. 'is_online' => '1',
  1126. 'page' => '1',
  1127. 'pageNum' => '3',
  1128. )
  1129. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1130. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  1131. [ info ] [ TOKEN ] INIT Mysql
  1132. [ info ] [ DB ] INIT mysql
  1133. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  1134. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1135. [ info ] [ LOG ] INIT File
  1136. ---------------------------------------------------------------
  1137. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  1138. [运行时间:0.015959s] [吞吐率:62.66req/s] [内存消耗:648.97kb] [文件加载:148]
  1139. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1140. [ info ] [ CACHE ] INIT File
  1141. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000180s ]
  1142. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1143. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  1144. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1145. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1146. [ info ] [ ROUTE ] array (
  1147. 'type' => 'module',
  1148. 'module' =>
  1149. array (
  1150. 0 => 'Api',
  1151. 1 => 'dynamic',
  1152. 2 => 'getDynamicList',
  1153. ),
  1154. )
  1155. [ info ] [ HEADER ] array (
  1156. 'accept-encoding' => 'gzip',
  1157. 'connection' => 'Keep-Alive',
  1158. 'host' => 'voicechat.lanmaonet.com',
  1159. 'content-length' => '76',
  1160. 'content-type' => 'application/x-www-form-urlencoded',
  1161. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1162. 'accept-language' => 'zh-CN,zh;q=0.8',
  1163. )
  1164. [ info ] [ PARAM ] array (
  1165. 'params_from' => 'android',
  1166. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1167. 'type' => '2',
  1168. 'page' => '1',
  1169. )
  1170. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1171. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  1172. [ info ] [ TOKEN ] INIT Mysql
  1173. [ info ] [ DB ] INIT mysql
  1174. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000074s ]
  1175. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  1176. [ info ] [ LOG ] INIT File
  1177. ---------------------------------------------------------------
  1178. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  1179. [运行时间:0.011380s] [吞吐率:87.87req/s] [内存消耗:647.53kb] [文件加载:148]
  1180. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1181. [ info ] [ CACHE ] INIT File
  1182. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000097s ]
  1183. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1184. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  1185. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1186. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  1187. [ info ] [ ROUTE ] array (
  1188. 'type' => 'module',
  1189. 'module' =>
  1190. array (
  1191. 0 => 'Api',
  1192. 1 => 'dynamic',
  1193. 2 => 'getDynamicList',
  1194. ),
  1195. )
  1196. [ info ] [ HEADER ] array (
  1197. 'accept-encoding' => 'gzip',
  1198. 'connection' => 'Keep-Alive',
  1199. 'host' => 'voicechat.lanmaonet.com',
  1200. 'content-length' => '76',
  1201. 'content-type' => 'application/x-www-form-urlencoded',
  1202. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1203. 'accept-language' => 'zh-CN,zh;q=0.8',
  1204. )
  1205. [ info ] [ PARAM ] array (
  1206. 'params_from' => 'android',
  1207. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1208. 'type' => '1',
  1209. 'page' => '1',
  1210. )
  1211. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1212. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  1213. [ info ] [ TOKEN ] INIT Mysql
  1214. [ info ] [ DB ] INIT mysql
  1215. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1216. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  1217. [ info ] [ LOG ] INIT File
  1218. ---------------------------------------------------------------
  1219. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  1220. [运行时间:0.011248s] [吞吐率:88.90req/s] [内存消耗:636.09kb] [文件加载:147]
  1221. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1222. [ info ] [ CACHE ] INIT File
  1223. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000151s ]
  1224. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  1225. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1226. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1227. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  1228. [ info ] [ ROUTE ] array (
  1229. 'type' => 'module',
  1230. 'module' =>
  1231. array (
  1232. 0 => 'api',
  1233. 1 => 'userCenter',
  1234. 2 => 'getMyUserInfo',
  1235. ),
  1236. )
  1237. [ info ] [ HEADER ] array (
  1238. 'accept-encoding' => 'gzip',
  1239. 'connection' => 'Keep-Alive',
  1240. 'host' => 'voicechat.lanmaonet.com',
  1241. 'content-length' => '74',
  1242. 'content-type' => 'application/x-www-form-urlencoded',
  1243. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1244. 'accept-language' => 'zh-CN,zh;q=0.8',
  1245. )
  1246. [ info ] [ PARAM ] array (
  1247. 'params_from' => 'android',
  1248. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1249. 'user_id' => '122',
  1250. )
  1251. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1252. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  1253. [ info ] [ TOKEN ] INIT Mysql
  1254. [ info ] [ DB ] INIT mysql
  1255. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000066s ]
  1256. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1257. [ info ] [ LOG ] INIT File
  1258. ---------------------------------------------------------------
  1259. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1260. [运行时间:0.009506s] [吞吐率:105.20req/s] [内存消耗:638.73kb] [文件加载:146]
  1261. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1262. [ info ] [ CACHE ] INIT File
  1263. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000110s ]
  1264. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1265. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1266. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1267. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1268. [ info ] [ ROUTE ] array (
  1269. 'type' => 'module',
  1270. 'module' =>
  1271. array (
  1272. 0 => 'Api',
  1273. 1 => 'party',
  1274. 2 => 'getPartyRankList',
  1275. ),
  1276. )
  1277. [ info ] [ HEADER ] array (
  1278. 'accept-encoding' => 'gzip',
  1279. 'connection' => 'Keep-Alive',
  1280. 'host' => 'voicechat.lanmaonet.com',
  1281. 'content-length' => '116',
  1282. 'content-type' => 'application/x-www-form-urlencoded',
  1283. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1284. 'accept-language' => 'zh-CN,zh;q=0.8',
  1285. )
  1286. [ info ] [ PARAM ] array (
  1287. 'params_from' => 'android',
  1288. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1289. 'type_id' => '8',
  1290. 'all' => '0',
  1291. 'is_recommend' => '0',
  1292. 'thispage' => '1',
  1293. 'room_type' => '2',
  1294. )
  1295. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1296. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1297. [ info ] [ TOKEN ] INIT Mysql
  1298. [ info ] [ DB ] INIT mysql
  1299. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  1300. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1301. [ info ] [ LOG ] INIT File
  1302. ---------------------------------------------------------------
  1303. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1304. [运行时间:0.010414s] [吞吐率:96.02req/s] [内存消耗:638.73kb] [文件加载:146]
  1305. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1306. [ info ] [ CACHE ] INIT File
  1307. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000109s ]
  1308. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1309. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  1310. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1311. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1312. [ info ] [ ROUTE ] array (
  1313. 'type' => 'module',
  1314. 'module' =>
  1315. array (
  1316. 0 => 'Api',
  1317. 1 => 'party',
  1318. 2 => 'getPartyRankList',
  1319. ),
  1320. )
  1321. [ info ] [ HEADER ] array (
  1322. 'accept-encoding' => 'gzip',
  1323. 'connection' => 'Keep-Alive',
  1324. 'host' => 'voicechat.lanmaonet.com',
  1325. 'content-length' => '116',
  1326. 'content-type' => 'application/x-www-form-urlencoded',
  1327. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1328. 'accept-language' => 'zh-CN,zh;q=0.8',
  1329. )
  1330. [ info ] [ PARAM ] array (
  1331. 'params_from' => 'android',
  1332. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1333. 'type_id' => '7',
  1334. 'all' => '0',
  1335. 'is_recommend' => '0',
  1336. 'thispage' => '1',
  1337. 'room_type' => '2',
  1338. )
  1339. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1340. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  1341. [ info ] [ TOKEN ] INIT Mysql
  1342. [ info ] [ DB ] INIT mysql
  1343. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000047s ]
  1344. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1345. [ info ] [ LOG ] INIT File
  1346. ---------------------------------------------------------------
  1347. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1348. [运行时间:0.010044s] [吞吐率:99.56req/s] [内存消耗:638.73kb] [文件加载:146]
  1349. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1350. [ info ] [ CACHE ] INIT File
  1351. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000106s ]
  1352. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1353. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1354. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1355. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  1356. [ info ] [ ROUTE ] array (
  1357. 'type' => 'module',
  1358. 'module' =>
  1359. array (
  1360. 0 => 'Api',
  1361. 1 => 'party',
  1362. 2 => 'getPartyRankList',
  1363. ),
  1364. )
  1365. [ info ] [ HEADER ] array (
  1366. 'accept-encoding' => 'gzip',
  1367. 'connection' => 'Keep-Alive',
  1368. 'host' => 'voicechat.lanmaonet.com',
  1369. 'content-length' => '116',
  1370. 'content-type' => 'application/x-www-form-urlencoded',
  1371. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1372. 'accept-language' => 'zh-CN,zh;q=0.8',
  1373. )
  1374. [ info ] [ PARAM ] array (
  1375. 'params_from' => 'android',
  1376. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1377. 'type_id' => '9',
  1378. 'all' => '0',
  1379. 'is_recommend' => '0',
  1380. 'thispage' => '1',
  1381. 'room_type' => '2',
  1382. )
  1383. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1384. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000043s ]
  1385. [ info ] [ TOKEN ] INIT Mysql
  1386. [ info ] [ DB ] INIT mysql
  1387. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  1388. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1389. [ info ] [ LOG ] INIT File
  1390. ---------------------------------------------------------------
  1391. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1392. [运行时间:0.007921s] [吞吐率:126.25req/s] [内存消耗:606.94kb] [文件加载:146]
  1393. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  1394. [ info ] [ CACHE ] INIT File
  1395. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000138s ]
  1396. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1397. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1398. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1399. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  1400. [ info ] [ ROUTE ] array (
  1401. 'type' => 'module',
  1402. 'module' =>
  1403. array (
  1404. 0 => 'Api',
  1405. 1 => 'party',
  1406. 2 => 'getPartyRankList',
  1407. ),
  1408. )
  1409. [ info ] [ HEADER ] array (
  1410. 'accept-encoding' => 'gzip',
  1411. 'connection' => 'Keep-Alive',
  1412. 'host' => 'voicechat.lanmaonet.com',
  1413. 'content-length' => '104',
  1414. 'content-type' => 'application/x-www-form-urlencoded',
  1415. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1416. 'accept-language' => 'zh-CN,zh;q=0.8',
  1417. )
  1418. [ info ] [ PARAM ] array (
  1419. 'params_from' => 'android',
  1420. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1421. 'type_id' => '0',
  1422. 'all' => '1',
  1423. 'is_recommend' => '0',
  1424. 'thispage' => '1',
  1425. )
  1426. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1427. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  1428. [ info ] [ TOKEN ] INIT Mysql
  1429. [ info ] [ DB ] INIT mysql
  1430. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  1431. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1432. [ info ] [ LOG ] INIT File
  1433. ---------------------------------------------------------------
  1434. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1435. [运行时间:0.010505s] [吞吐率:95.19req/s] [内存消耗:638.73kb] [文件加载:146]
  1436. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1437. [ info ] [ CACHE ] INIT File
  1438. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000128s ]
  1439. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1440. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1441. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1442. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  1443. [ info ] [ ROUTE ] array (
  1444. 'type' => 'module',
  1445. 'module' =>
  1446. array (
  1447. 0 => 'Api',
  1448. 1 => 'party',
  1449. 2 => 'getPartyRankList',
  1450. ),
  1451. )
  1452. [ info ] [ HEADER ] array (
  1453. 'accept-encoding' => 'gzip',
  1454. 'connection' => 'Keep-Alive',
  1455. 'host' => 'voicechat.lanmaonet.com',
  1456. 'content-length' => '116',
  1457. 'content-type' => 'application/x-www-form-urlencoded',
  1458. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1459. 'accept-language' => 'zh-CN,zh;q=0.8',
  1460. )
  1461. [ info ] [ PARAM ] array (
  1462. 'params_from' => 'android',
  1463. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1464. 'type_id' => '0',
  1465. 'all' => '1',
  1466. 'is_recommend' => '0',
  1467. 'thispage' => '1',
  1468. 'room_type' => '2',
  1469. )
  1470. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1471. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000044s ]
  1472. [ info ] [ TOKEN ] INIT Mysql
  1473. [ info ] [ DB ] INIT mysql
  1474. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  1475. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1476. [ info ] [ LOG ] INIT File
  1477. ---------------------------------------------------------------
  1478. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1479. [运行时间:0.006612s] [吞吐率:151.24req/s] [内存消耗:606.94kb] [文件加载:146]
  1480. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1481. [ info ] [ CACHE ] INIT File
  1482. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000127s ]
  1483. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1484. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1485. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1486. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1487. [ info ] [ ROUTE ] array (
  1488. 'type' => 'module',
  1489. 'module' =>
  1490. array (
  1491. 0 => 'Api',
  1492. 1 => 'party',
  1493. 2 => 'getPartyRankList',
  1494. ),
  1495. )
  1496. [ info ] [ HEADER ] array (
  1497. 'accept-encoding' => 'gzip',
  1498. 'connection' => 'Keep-Alive',
  1499. 'host' => 'voicechat.lanmaonet.com',
  1500. 'content-length' => '104',
  1501. 'content-type' => 'application/x-www-form-urlencoded',
  1502. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1503. 'accept-language' => 'zh-CN,zh;q=0.8',
  1504. )
  1505. [ info ] [ PARAM ] array (
  1506. 'params_from' => 'android',
  1507. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1508. 'type_id' => '1',
  1509. 'all' => '0',
  1510. 'is_recommend' => '0',
  1511. 'thispage' => '1',
  1512. )
  1513. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1514. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  1515. [ info ] [ TOKEN ] INIT Mysql
  1516. [ info ] [ DB ] INIT mysql
  1517. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  1518. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1519. [ info ] [ LOG ] INIT File
  1520. ---------------------------------------------------------------
  1521. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1522. [运行时间:0.006392s] [吞吐率:156.45req/s] [内存消耗:606.94kb] [文件加载:146]
  1523. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1524. [ info ] [ CACHE ] INIT File
  1525. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000117s ]
  1526. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1527. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1528. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1529. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1530. [ info ] [ ROUTE ] array (
  1531. 'type' => 'module',
  1532. 'module' =>
  1533. array (
  1534. 0 => 'Api',
  1535. 1 => 'party',
  1536. 2 => 'getPartyRankList',
  1537. ),
  1538. )
  1539. [ info ] [ HEADER ] array (
  1540. 'accept-encoding' => 'gzip',
  1541. 'connection' => 'Keep-Alive',
  1542. 'host' => 'voicechat.lanmaonet.com',
  1543. 'content-length' => '104',
  1544. 'content-type' => 'application/x-www-form-urlencoded',
  1545. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1546. 'accept-language' => 'zh-CN,zh;q=0.8',
  1547. )
  1548. [ info ] [ PARAM ] array (
  1549. 'params_from' => 'android',
  1550. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1551. 'type_id' => '3',
  1552. 'all' => '0',
  1553. 'is_recommend' => '0',
  1554. 'thispage' => '1',
  1555. )
  1556. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1557. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1558. [ info ] [ TOKEN ] INIT Mysql
  1559. [ info ] [ DB ] INIT mysql
  1560. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  1561. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1562. [ info ] [ LOG ] INIT File
  1563. ---------------------------------------------------------------
  1564. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1565. [运行时间:0.007264s] [吞吐率:137.66req/s] [内存消耗:606.94kb] [文件加载:146]
  1566. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1567. [ info ] [ CACHE ] INIT File
  1568. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000229s ]
  1569. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1570. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1571. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1572. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000048s ]
  1573. [ info ] [ ROUTE ] array (
  1574. 'type' => 'module',
  1575. 'module' =>
  1576. array (
  1577. 0 => 'Api',
  1578. 1 => 'party',
  1579. 2 => 'getPartyRankList',
  1580. ),
  1581. )
  1582. [ info ] [ HEADER ] array (
  1583. 'accept-encoding' => 'gzip',
  1584. 'connection' => 'Keep-Alive',
  1585. 'host' => 'voicechat.lanmaonet.com',
  1586. 'content-length' => '104',
  1587. 'content-type' => 'application/x-www-form-urlencoded',
  1588. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1589. 'accept-language' => 'zh-CN,zh;q=0.8',
  1590. )
  1591. [ info ] [ PARAM ] array (
  1592. 'params_from' => 'android',
  1593. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1594. 'type_id' => '2',
  1595. 'all' => '0',
  1596. 'is_recommend' => '0',
  1597. 'thispage' => '1',
  1598. )
  1599. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1600. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1601. [ info ] [ TOKEN ] INIT Mysql
  1602. [ info ] [ DB ] INIT mysql
  1603. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1604. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1605. [ info ] [ LOG ] INIT File
  1606. ---------------------------------------------------------------
  1607. [ 2023-02-21T13:43:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1608. [运行时间:0.005956s] [吞吐率:167.90req/s] [内存消耗:606.94kb] [文件加载:146]
  1609. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1610. [ info ] [ CACHE ] INIT File
  1611. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000106s ]
  1612. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1613. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  1614. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1615. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  1616. [ info ] [ ROUTE ] array (
  1617. 'type' => 'module',
  1618. 'module' =>
  1619. array (
  1620. 0 => 'Api',
  1621. 1 => 'party',
  1622. 2 => 'getPartyRankList',
  1623. ),
  1624. )
  1625. [ info ] [ HEADER ] array (
  1626. 'accept-encoding' => 'gzip',
  1627. 'connection' => 'Keep-Alive',
  1628. 'host' => 'voicechat.lanmaonet.com',
  1629. 'content-length' => '104',
  1630. 'content-type' => 'application/x-www-form-urlencoded',
  1631. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1632. 'accept-language' => 'zh-CN,zh;q=0.8',
  1633. )
  1634. [ info ] [ PARAM ] array (
  1635. 'params_from' => 'android',
  1636. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1637. 'type_id' => '4',
  1638. 'all' => '0',
  1639. 'is_recommend' => '0',
  1640. 'thispage' => '1',
  1641. )
  1642. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1643. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  1644. [ info ] [ TOKEN ] INIT Mysql
  1645. [ info ] [ DB ] INIT mysql
  1646. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  1647. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1648. [ info ] [ LOG ] INIT File
  1649. ---------------------------------------------------------------
  1650. [ 2023-02-21T13:43:35+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  1651. [运行时间:0.009384s] [吞吐率:106.57req/s] [内存消耗:606.24kb] [文件加载:146]
  1652. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1653. [ info ] [ CACHE ] INIT File
  1654. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000131s ]
  1655. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1656. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1657. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1658. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1659. [ info ] [ ROUTE ] array (
  1660. 'type' => 'module',
  1661. 'module' =>
  1662. array (
  1663. 0 => 'Api',
  1664. 1 => 'dispatch',
  1665. 2 => 'getSkillList',
  1666. ),
  1667. )
  1668. [ info ] [ HEADER ] array (
  1669. 'accept-encoding' => 'gzip',
  1670. 'connection' => 'Keep-Alive',
  1671. 'host' => 'voicechat.lanmaonet.com',
  1672. 'content-length' => '62',
  1673. 'content-type' => 'application/x-www-form-urlencoded',
  1674. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1675. 'accept-language' => 'zh-CN,zh;q=0.8',
  1676. )
  1677. [ info ] [ PARAM ] array (
  1678. 'params_from' => 'android',
  1679. 'token' => 'ae425900-b49a-438b-a5d8-89975e39b01b',
  1680. )
  1681. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1682. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  1683. [ info ] [ TOKEN ] INIT Mysql
  1684. [ info ] [ DB ] INIT mysql
  1685. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1686. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  1687. [ info ] [ LOG ] INIT File
  1688. ---------------------------------------------------------------
  1689. [ 2023-02-21T13:48:43+08:00 ] 146.56.231.200 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2684564901-144115236010360434-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1690. [运行时间:0.156996s] [吞吐率:6.37req/s] [内存消耗:618.92kb] [文件加载:139]
  1691. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1692. [ info ] [ CACHE ] INIT File
  1693. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000184s ]
  1694. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1695. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1696. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1697. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  1698. [ info ] [ ROUTE ] array (
  1699. 'type' => 'module',
  1700. 'module' =>
  1701. array (
  1702. 0 => 'api',
  1703. 1 => 'tenim',
  1704. 2 => 'callback',
  1705. ),
  1706. )
  1707. [ info ] [ HEADER ] array (
  1708. 'content-type' => 'application/json',
  1709. 'content-length' => '136',
  1710. 'host' => 'voicechat.lanmaonet.com',
  1711. 'connection' => 'keep-alive',
  1712. )
  1713. [ info ] [ PARAM ] array (
  1714. 'CallbackCommand' => 'State.StateChange',
  1715. 'ClientIP' => '112.6.63.60',
  1716. 'OptPlatform' => 'Android',
  1717. 'RequestId' => '2684564901-144115236010360434-Disconnect-LinkClose',
  1718. 'SdkAppid' => '1400556860',
  1719. 'contenttype' => 'json',
  1720. 'EventTime' => 1676958522746,
  1721. 'Info' =>
  1722. array (
  1723. 'To_Account' => '122',
  1724. 'Action' => 'Disconnect',
  1725. 'Reason' => 'LinkClose',
  1726. ),
  1727. )
  1728. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1729. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1730. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  1731. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1732. [ info ] [ DB ] INIT mysql
  1733. [ info ] [ LOG ] INIT File
  1734. ---------------------------------------------------------------
  1735. [ 2023-02-21T13:55:34+08:00 ] 146.56.231.253 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2684586071-144115236010360434-Login-Register&SdkAppid=1400556860&contenttype=json
  1736. [运行时间:0.018562s] [吞吐率:53.87req/s] [内存消耗:591.64kb] [文件加载:136]
  1737. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  1738. [ info ] [ CACHE ] INIT File
  1739. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000198s ]
  1740. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1741. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  1742. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1743. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1744. [ info ] [ ROUTE ] array (
  1745. 'type' => 'module',
  1746. 'module' =>
  1747. array (
  1748. 0 => 'api',
  1749. 1 => 'tenim',
  1750. 2 => 'callback',
  1751. ),
  1752. )
  1753. [ info ] [ HEADER ] array (
  1754. 'content-type' => 'application/json',
  1755. 'content-length' => '130',
  1756. 'connection' => 'keep-alive',
  1757. 'host' => 'voicechat.lanmaonet.com',
  1758. )
  1759. [ info ] [ PARAM ] array (
  1760. 'CallbackCommand' => 'State.StateChange',
  1761. 'ClientIP' => '112.6.63.60',
  1762. 'OptPlatform' => 'Android',
  1763. 'RequestId' => '2684586071-144115236010360434-Login-Register',
  1764. 'SdkAppid' => '1400556860',
  1765. 'contenttype' => 'json',
  1766. 'EventTime' => 1676958934353,
  1767. 'Info' =>
  1768. array (
  1769. 'To_Account' => '122',
  1770. 'Action' => 'Login',
  1771. 'Reason' => 'Register',
  1772. ),
  1773. )
  1774. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1775. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  1776. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1777. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1778. [ info ] [ DB ] INIT mysql
  1779. [ info ] [ LOG ] INIT File
  1780. ---------------------------------------------------------------
  1781. [ 2023-02-21T14:02:14+08:00 ] 119.45.47.127 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2684607285-144115236010360434-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  1782. [运行时间:0.138817s] [吞吐率:7.20req/s] [内存消耗:618.88kb] [文件加载:139]
  1783. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1784. [ info ] [ CACHE ] INIT File
  1785. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000162s ]
  1786. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1787. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1788. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1789. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1790. [ info ] [ ROUTE ] array (
  1791. 'type' => 'module',
  1792. 'module' =>
  1793. array (
  1794. 0 => 'api',
  1795. 1 => 'tenim',
  1796. 2 => 'callback',
  1797. ),
  1798. )
  1799. [ info ] [ HEADER ] array (
  1800. 'content-type' => 'application/json',
  1801. 'content-length' => '134',
  1802. 'connection' => 'keep-alive',
  1803. 'host' => 'voicechat.lanmaonet.com',
  1804. )
  1805. [ info ] [ PARAM ] array (
  1806. 'CallbackCommand' => 'State.StateChange',
  1807. 'ClientIP' => '112.6.63.60',
  1808. 'OptPlatform' => 'Android',
  1809. 'RequestId' => '2684607285-144115236010360434-Disconnect-TimeOut',
  1810. 'SdkAppid' => '1400556860',
  1811. 'contenttype' => 'json',
  1812. 'EventTime' => 1676959334054,
  1813. 'Info' =>
  1814. array (
  1815. 'To_Account' => '122',
  1816. 'Action' => 'Disconnect',
  1817. 'Reason' => 'TimeOut',
  1818. ),
  1819. )
  1820. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1821. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1822. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  1823. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1824. [ info ] [ DB ] INIT mysql
  1825. [ info ] [ LOG ] INIT File
  1826. ---------------------------------------------------------------
  1827. [ 2023-02-21T14:02:14+08:00 ] 119.45.179.117 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2684607290-144115236010360434-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1828. [运行时间:0.159824s] [吞吐率:6.26req/s] [内存消耗:618.92kb] [文件加载:139]
  1829. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1830. [ info ] [ CACHE ] INIT File
  1831. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000129s ]
  1832. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1833. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1834. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1835. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  1836. [ info ] [ ROUTE ] array (
  1837. 'type' => 'module',
  1838. 'module' =>
  1839. array (
  1840. 0 => 'api',
  1841. 1 => 'tenim',
  1842. 2 => 'callback',
  1843. ),
  1844. )
  1845. [ info ] [ HEADER ] array (
  1846. 'content-type' => 'application/json',
  1847. 'content-length' => '136',
  1848. 'host' => 'voicechat.lanmaonet.com',
  1849. 'connection' => 'keep-alive',
  1850. )
  1851. [ info ] [ PARAM ] array (
  1852. 'CallbackCommand' => 'State.StateChange',
  1853. 'ClientIP' => '112.6.63.60',
  1854. 'OptPlatform' => 'Android',
  1855. 'RequestId' => '2684607290-144115236010360434-Disconnect-LinkClose',
  1856. 'SdkAppid' => '1400556860',
  1857. 'contenttype' => 'json',
  1858. 'EventTime' => 1676959334092,
  1859. 'Info' =>
  1860. array (
  1861. 'To_Account' => '122',
  1862. 'Action' => 'Disconnect',
  1863. 'Reason' => 'LinkClose',
  1864. ),
  1865. )
  1866. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1867. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  1868. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  1869. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1870. [ info ] [ DB ] INIT mysql
  1871. [ info ] [ LOG ] INIT File
  1872. ---------------------------------------------------------------
  1873. [ 2023-02-21T14:07:43+08:00 ] 119.45.30.208 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2684625593-144115236010360434-Login-Register&SdkAppid=1400556860&contenttype=json
  1874. [运行时间:0.018820s] [吞吐率:53.14req/s] [内存消耗:591.64kb] [文件加载:136]
  1875. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1876. [ info ] [ CACHE ] INIT File
  1877. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000168s ]
  1878. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1879. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1880. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1881. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  1882. [ info ] [ ROUTE ] array (
  1883. 'type' => 'module',
  1884. 'module' =>
  1885. array (
  1886. 0 => 'api',
  1887. 1 => 'tenim',
  1888. 2 => 'callback',
  1889. ),
  1890. )
  1891. [ info ] [ HEADER ] array (
  1892. 'content-type' => 'application/json',
  1893. 'content-length' => '130',
  1894. 'host' => 'voicechat.lanmaonet.com',
  1895. 'connection' => 'keep-alive',
  1896. )
  1897. [ info ] [ PARAM ] array (
  1898. 'CallbackCommand' => 'State.StateChange',
  1899. 'ClientIP' => '112.6.63.60',
  1900. 'OptPlatform' => 'Android',
  1901. 'RequestId' => '2684625593-144115236010360434-Login-Register',
  1902. 'SdkAppid' => '1400556860',
  1903. 'contenttype' => 'json',
  1904. 'EventTime' => 1676959663221,
  1905. 'Info' =>
  1906. array (
  1907. 'To_Account' => '122',
  1908. 'Action' => 'Login',
  1909. 'Reason' => 'Register',
  1910. ),
  1911. )
  1912. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1913. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1914. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000069s ]
  1915. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1916. [ info ] [ DB ] INIT mysql
  1917. [ info ] [ LOG ] INIT File
  1918. ---------------------------------------------------------------
  1919. [ 2023-02-21T14:07:47+08:00 ] 119.45.160.30 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2684625827-144115236010360434-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1920. [运行时间:0.142395s] [吞吐率:7.02req/s] [内存消耗:618.92kb] [文件加载:139]
  1921. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1922. [ info ] [ CACHE ] INIT File
  1923. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000179s ]
  1924. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000057s ]
  1925. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000070s ]
  1926. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1927. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  1928. [ info ] [ ROUTE ] array (
  1929. 'type' => 'module',
  1930. 'module' =>
  1931. array (
  1932. 0 => 'api',
  1933. 1 => 'tenim',
  1934. 2 => 'callback',
  1935. ),
  1936. )
  1937. [ info ] [ HEADER ] array (
  1938. 'content-type' => 'application/json',
  1939. 'content-length' => '136',
  1940. 'host' => 'voicechat.lanmaonet.com',
  1941. 'connection' => 'keep-alive',
  1942. )
  1943. [ info ] [ PARAM ] array (
  1944. 'CallbackCommand' => 'State.StateChange',
  1945. 'ClientIP' => '112.6.63.60',
  1946. 'OptPlatform' => 'Android',
  1947. 'RequestId' => '2684625827-144115236010360434-Disconnect-LinkClose',
  1948. 'SdkAppid' => '1400556860',
  1949. 'contenttype' => 'json',
  1950. 'EventTime' => 1676959667727,
  1951. 'Info' =>
  1952. array (
  1953. 'To_Account' => '122',
  1954. 'Action' => 'Disconnect',
  1955. 'Reason' => 'LinkClose',
  1956. ),
  1957. )
  1958. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1959. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1960. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  1961. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1962. [ info ] [ DB ] INIT mysql
  1963. [ info ] [ LOG ] INIT File
  1964. ---------------------------------------------------------------
  1965. [ 2023-02-21T14:16:36+08:00 ] 146.56.231.253 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2684653805-144115236010360434-Login-Register&SdkAppid=1400556860&contenttype=json
  1966. [运行时间:0.012494s] [吞吐率:80.04req/s] [内存消耗:591.64kb] [文件加载:136]
  1967. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1968. [ info ] [ CACHE ] INIT File
  1969. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000161s ]
  1970. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1971. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1972. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1973. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  1974. [ info ] [ ROUTE ] array (
  1975. 'type' => 'module',
  1976. 'module' =>
  1977. array (
  1978. 0 => 'api',
  1979. 1 => 'tenim',
  1980. 2 => 'callback',
  1981. ),
  1982. )
  1983. [ info ] [ HEADER ] array (
  1984. 'content-type' => 'application/json',
  1985. 'content-length' => '130',
  1986. 'connection' => 'keep-alive',
  1987. 'host' => 'voicechat.lanmaonet.com',
  1988. )
  1989. [ info ] [ PARAM ] array (
  1990. 'CallbackCommand' => 'State.StateChange',
  1991. 'ClientIP' => '112.6.63.60',
  1992. 'OptPlatform' => 'Android',
  1993. 'RequestId' => '2684653805-144115236010360434-Login-Register',
  1994. 'SdkAppid' => '1400556860',
  1995. 'contenttype' => 'json',
  1996. 'EventTime' => 1676960196352,
  1997. 'Info' =>
  1998. array (
  1999. 'To_Account' => '122',
  2000. 'Action' => 'Login',
  2001. 'Reason' => 'Register',
  2002. ),
  2003. )
  2004. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2005. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  2006. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  2007. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2008. [ info ] [ DB ] INIT mysql
  2009. [ info ] [ LOG ] INIT File
  2010. ---------------------------------------------------------------
  2011. [ 2023-02-21T14:23:16+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2684675151-144115236010360434-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  2012. [运行时间:0.129409s] [吞吐率:7.73req/s] [内存消耗:618.88kb] [文件加载:139]
  2013. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2014. [ info ] [ CACHE ] INIT File
  2015. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000151s ]
  2016. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2017. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2018. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2019. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  2020. [ info ] [ ROUTE ] array (
  2021. 'type' => 'module',
  2022. 'module' =>
  2023. array (
  2024. 0 => 'api',
  2025. 1 => 'tenim',
  2026. 2 => 'callback',
  2027. ),
  2028. )
  2029. [ info ] [ HEADER ] array (
  2030. 'content-type' => 'application/json',
  2031. 'content-length' => '134',
  2032. 'host' => 'voicechat.lanmaonet.com',
  2033. 'connection' => 'keep-alive',
  2034. )
  2035. [ info ] [ PARAM ] array (
  2036. 'CallbackCommand' => 'State.StateChange',
  2037. 'ClientIP' => '112.6.63.60',
  2038. 'OptPlatform' => 'Android',
  2039. 'RequestId' => '2684675151-144115236010360434-Disconnect-TimeOut',
  2040. 'SdkAppid' => '1400556860',
  2041. 'contenttype' => 'json',
  2042. 'EventTime' => 1676960596289,
  2043. 'Info' =>
  2044. array (
  2045. 'To_Account' => '122',
  2046. 'Action' => 'Disconnect',
  2047. 'Reason' => 'TimeOut',
  2048. ),
  2049. )
  2050. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2051. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  2052. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000079s ]
  2053. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2054. [ info ] [ DB ] INIT mysql
  2055. [ info ] [ LOG ] INIT File
  2056. ---------------------------------------------------------------
  2057. [ 2023-02-21T14:23:16+08:00 ] 119.45.30.208 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2684675165-144115236010360434-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2058. [运行时间:0.152171s] [吞吐率:6.57req/s] [内存消耗:618.92kb] [文件加载:139]
  2059. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2060. [ info ] [ CACHE ] INIT File
  2061. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000116s ]
  2062. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2063. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2064. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2065. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2066. [ info ] [ ROUTE ] array (
  2067. 'type' => 'module',
  2068. 'module' =>
  2069. array (
  2070. 0 => 'api',
  2071. 1 => 'tenim',
  2072. 2 => 'callback',
  2073. ),
  2074. )
  2075. [ info ] [ HEADER ] array (
  2076. 'content-type' => 'application/json',
  2077. 'content-length' => '136',
  2078. 'host' => 'voicechat.lanmaonet.com',
  2079. 'connection' => 'keep-alive',
  2080. )
  2081. [ info ] [ PARAM ] array (
  2082. 'CallbackCommand' => 'State.StateChange',
  2083. 'ClientIP' => '112.6.63.60',
  2084. 'OptPlatform' => 'Android',
  2085. 'RequestId' => '2684675165-144115236010360434-Disconnect-LinkClose',
  2086. 'SdkAppid' => '1400556860',
  2087. 'contenttype' => 'json',
  2088. 'EventTime' => 1676960596330,
  2089. 'Info' =>
  2090. array (
  2091. 'To_Account' => '122',
  2092. 'Action' => 'Disconnect',
  2093. 'Reason' => 'LinkClose',
  2094. ),
  2095. )
  2096. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2097. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  2098. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  2099. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2100. [ info ] [ DB ] INIT mysql
  2101. [ info ] [ LOG ] INIT File
  2102. ---------------------------------------------------------------
  2103. [ 2023-02-21T14:31:39+08:00 ] 207.46.13.207 GET voicechat.lanmaonet.com/
  2104. [运行时间:0.003697s] [吞吐率:270.48req/s] [内存消耗:408.98kb] [文件加载:135]
  2105. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2106. [ info ] [ CACHE ] INIT File
  2107. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000153s ]
  2108. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2109. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2110. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2111. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  2112. [ info ] [ ROUTE ] array (
  2113. 'type' => 'module',
  2114. 'module' =>
  2115. array (
  2116. 0 => '',
  2117. 1 => NULL,
  2118. 2 => NULL,
  2119. ),
  2120. )
  2121. [ info ] [ HEADER ] array (
  2122. 'user-agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36',
  2123. 'from' => 'bingbot(at)microsoft.com',
  2124. 'accept-encoding' => 'gzip, deflate',
  2125. 'accept' => '*/*',
  2126. 'pragma' => 'no-cache',
  2127. 'cache-control' => 'no-cache',
  2128. 'host' => 'voicechat.lanmaonet.com',
  2129. 'content-length' => '',
  2130. 'content-type' => '',
  2131. )
  2132. [ info ] [ PARAM ] array (
  2133. )
  2134. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  2135. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  2136. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  2137. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000031s ]
  2138. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  2139. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  2140. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  2141. 0 => 'user',
  2142. 1 => 'site',
  2143. 2 => 'config',
  2144. ) ]
  2145. [ info ] [ LOG ] INIT File
  2146. ---------------------------------------------------------------
  2147. [ 2023-02-21T16:53:16+08:00 ] 40.77.167.249 GET voicechat.lanmaonet.com/
  2148. [运行时间:0.003721s] [吞吐率:268.75req/s] [内存消耗:409.06kb] [文件加载:135]
  2149. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2150. [ info ] [ CACHE ] INIT File
  2151. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000179s ]
  2152. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  2153. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  2154. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2155. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  2156. [ info ] [ ROUTE ] array (
  2157. 'type' => 'module',
  2158. 'module' =>
  2159. array (
  2160. 0 => '',
  2161. 1 => NULL,
  2162. 2 => NULL,
  2163. ),
  2164. )
  2165. [ info ] [ HEADER ] array (
  2166. 'user-agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36',
  2167. 'host' => 'voicechat.lanmaonet.com',
  2168. 'from' => 'bingbot(at)microsoft.com',
  2169. 'accept-encoding' => 'gzip, deflate',
  2170. 'accept' => '*/*',
  2171. 'pragma' => 'no-cache',
  2172. 'connection' => 'Keep-Alive',
  2173. 'cache-control' => 'no-cache',
  2174. 'content-length' => '',
  2175. 'content-type' => '',
  2176. )
  2177. [ info ] [ PARAM ] array (
  2178. )
  2179. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  2180. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000073s ]
  2181. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  2182. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000039s ]
  2183. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  2184. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  2185. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  2186. 0 => 'user',
  2187. 1 => 'site',
  2188. 2 => 'config',
  2189. ) ]
  2190. [ info ] [ LOG ] INIT File
  2191. ---------------------------------------------------------------
  2192. [ 2023-02-21T20:03:26+08:00 ] 205.210.31.135 GET voicechat.lanmaonet.com/
  2193. [运行时间:0.003458s] [吞吐率:289.18req/s] [内存消耗:408.30kb] [文件加载:135]
  2194. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  2195. [ info ] [ CACHE ] INIT File
  2196. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000162s ]
  2197. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2198. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2199. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2200. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  2201. [ info ] [ ROUTE ] array (
  2202. 'type' => 'module',
  2203. 'module' =>
  2204. array (
  2205. 0 => '',
  2206. 1 => NULL,
  2207. 2 => NULL,
  2208. ),
  2209. )
  2210. [ info ] [ HEADER ] array (
  2211. 'user-agent' => 'Expanse, a Palo Alto Networks company, searches across the global IPv4 space multiple times per day to identify customers' presences on the Internet. If you would like to be excluded from our scans, please send IP addresses/domains to: scaninfo@paloaltonetworks.com',
  2212. 'host' => 'voicechat.lanmaonet.com',
  2213. 'content-length' => '',
  2214. 'content-type' => '',
  2215. )
  2216. [ info ] [ PARAM ] array (
  2217. )
  2218. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  2219. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  2220. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  2221. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000031s ]
  2222. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  2223. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  2224. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  2225. 0 => 'user',
  2226. 1 => 'site',
  2227. 2 => 'config',
  2228. ) ]
  2229. [ info ] [ LOG ] INIT File