01.log 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283
  1. ---------------------------------------------------------------
  2. [ 2023-02-01T02:11:00+08:00 ] 40.77.167.27 GET voicechat.lanmaonet.com/
  3. [运行时间:0.003516s] [吞吐率:284.42req/s] [内存消耗:409.00kb] [文件加载:135]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000158s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  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.000026s ]
  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. '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',
  22. 'from' => 'bingbot(at)microsoft.com',
  23. 'accept-encoding' => 'gzip, deflate',
  24. 'accept' => '*/*',
  25. 'pragma' => 'no-cache',
  26. 'cache-control' => 'no-cache',
  27. 'host' => 'voicechat.lanmaonet.com',
  28. 'content-length' => '',
  29. 'content-type' => '',
  30. )
  31. [ info ] [ PARAM ] array (
  32. )
  33. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  34. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  35. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  36. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000029s ]
  37. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  38. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  39. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  40. 0 => 'user',
  41. 1 => 'site',
  42. 2 => 'config',
  43. ) ]
  44. [ info ] [ LOG ] INIT File
  45. ---------------------------------------------------------------
  46. [ 2023-02-01T04:18:53+08:00 ] 40.77.167.51 GET voicechat.lanmaonet.com/
  47. [运行时间:0.003421s] [吞吐率:292.31req/s] [内存消耗:409.06kb] [文件加载:135]
  48. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  49. [ info ] [ CACHE ] INIT File
  50. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000145s ]
  51. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  52. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  53. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  54. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  55. [ info ] [ ROUTE ] array (
  56. 'type' => 'module',
  57. 'module' =>
  58. array (
  59. 0 => '',
  60. 1 => NULL,
  61. 2 => NULL,
  62. ),
  63. )
  64. [ info ] [ HEADER ] array (
  65. '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',
  66. 'host' => 'voicechat.lanmaonet.com',
  67. 'from' => 'bingbot(at)microsoft.com',
  68. 'accept-encoding' => 'gzip, deflate',
  69. 'accept' => '*/*',
  70. 'pragma' => 'no-cache',
  71. 'connection' => 'Keep-Alive',
  72. 'cache-control' => 'no-cache',
  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.000057s ]
  80. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  81. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000030s ]
  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-01T11:32:39+08:00 ] 40.77.167.252 GET voicechat.lanmaonet.com/
  92. [运行时间:0.003795s] [吞吐率:263.49req/s] [内存消耗:408.98kb] [文件加载: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.000151s ]
  96. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  97. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  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.000027s ]
  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. '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',
  111. 'from' => 'bingbot(at)microsoft.com',
  112. 'accept-encoding' => 'gzip, deflate',
  113. 'accept' => '*/*',
  114. 'pragma' => 'no-cache',
  115. 'cache-control' => 'no-cache',
  116. 'host' => 'voicechat.lanmaonet.com',
  117. 'content-length' => '',
  118. 'content-type' => '',
  119. )
  120. [ info ] [ PARAM ] array (
  121. )
  122. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  123. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  124. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  125. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000029s ]
  126. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  127. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  128. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  129. 0 => 'user',
  130. 1 => 'site',
  131. 2 => 'config',
  132. ) ]
  133. [ info ] [ LOG ] INIT File
  134. ---------------------------------------------------------------
  135. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getEdition
  136. [运行时间:0.011807s] [吞吐率:84.70req/s] [内存消耗:537.68kb] [文件加载:142]
  137. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  138. [ info ] [ CACHE ] INIT File
  139. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000137s ]
  140. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  141. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  142. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  143. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  144. [ info ] [ ROUTE ] array (
  145. 'type' => 'module',
  146. 'module' =>
  147. array (
  148. 0 => 'api',
  149. 1 => 'index',
  150. 2 => 'getEdition',
  151. ),
  152. )
  153. [ info ] [ HEADER ] array (
  154. 'accept-encoding' => 'gzip',
  155. 'content-length' => '62',
  156. 'content-type' => 'application/x-www-form-urlencoded',
  157. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  158. 'accept-language' => 'zh-CN,zh;q=0.8',
  159. 'host' => 'voicechat.lanmaonet.com',
  160. )
  161. [ info ] [ PARAM ] array (
  162. 'params_from' => 'android',
  163. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  164. )
  165. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  166. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000070s ]
  167. [ info ] [ TOKEN ] INIT Mysql
  168. [ info ] [ DB ] INIT mysql
  169. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  170. [ info ] [ RUN ] app\api\controller\Index->getEdition[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  171. [ info ] [ LOG ] INIT File
  172. ---------------------------------------------------------------
  173. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/tenim/getUsersig
  174. [运行时间:0.016215s] [吞吐率:61.67req/s] [内存消耗:509.63kb] [文件加载:138]
  175. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  176. [ info ] [ CACHE ] INIT File
  177. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000122s ]
  178. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  179. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000037s ]
  180. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  181. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  182. [ info ] [ ROUTE ] array (
  183. 'type' => 'module',
  184. 'module' =>
  185. array (
  186. 0 => 'api',
  187. 1 => 'tenim',
  188. 2 => 'getUsersig',
  189. ),
  190. )
  191. [ info ] [ HEADER ] array (
  192. 'accept-encoding' => 'gzip',
  193. 'content-length' => '62',
  194. 'content-type' => 'application/x-www-form-urlencoded',
  195. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  196. 'accept-language' => 'zh-CN,zh;q=0.8',
  197. 'host' => 'voicechat.lanmaonet.com',
  198. )
  199. [ info ] [ PARAM ] array (
  200. 'params_from' => 'android',
  201. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  202. )
  203. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  204. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  205. [ info ] [ TOKEN ] INIT Mysql
  206. [ info ] [ DB ] INIT mysql
  207. [ info ] [ LOG ] INIT File
  208. ---------------------------------------------------------------
  209. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  210. [运行时间:0.018805s] [吞吐率:53.18req/s] [内存消耗:514.16kb] [文件加载:139]
  211. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  212. [ info ] [ CACHE ] INIT File
  213. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000119s ]
  214. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  215. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  216. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  217. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  218. [ info ] [ ROUTE ] array (
  219. 'type' => 'module',
  220. 'module' =>
  221. array (
  222. 0 => 'api',
  223. 1 => 'userCenter',
  224. 2 => 'getMyUserInfo',
  225. ),
  226. )
  227. [ info ] [ HEADER ] array (
  228. 'accept-encoding' => 'gzip',
  229. 'content-length' => '74',
  230. 'content-type' => 'application/x-www-form-urlencoded',
  231. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  232. 'accept-language' => 'zh-CN,zh;q=0.8',
  233. 'host' => 'voicechat.lanmaonet.com',
  234. )
  235. [ info ] [ PARAM ] array (
  236. 'params_from' => 'android',
  237. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  238. 'user_id' => '100',
  239. )
  240. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  241. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  242. [ info ] [ TOKEN ] INIT Mysql
  243. [ info ] [ DB ] INIT mysql
  244. [ info ] [ LOG ] INIT File
  245. ---------------------------------------------------------------
  246. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  247. [运行时间:0.014214s] [吞吐率:70.35req/s] [内存消耗:886.69kb] [文件加载:146]
  248. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  249. [ info ] [ CACHE ] INIT File
  250. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000111s ]
  251. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  252. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  253. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  254. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  255. [ info ] [ ROUTE ] array (
  256. 'type' => 'module',
  257. 'module' =>
  258. array (
  259. 0 => 'Api',
  260. 1 => 'party',
  261. 2 => 'getPartyRankList',
  262. ),
  263. )
  264. [ info ] [ HEADER ] array (
  265. 'accept-encoding' => 'gzip',
  266. 'content-length' => '126',
  267. 'content-type' => 'application/x-www-form-urlencoded',
  268. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  269. 'accept-language' => 'zh-CN,zh;q=0.8',
  270. 'host' => 'voicechat.lanmaonet.com',
  271. )
  272. [ info ] [ PARAM ] array (
  273. 'params_from' => 'android',
  274. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  275. 'type_id' => '0',
  276. 'all' => '1',
  277. 'is_recommend' => '0',
  278. 'thispage' => '1',
  279. 'room_type' => '2',
  280. 'pagenum' => '6',
  281. )
  282. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  283. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  284. [ info ] [ TOKEN ] INIT Mysql
  285. [ info ] [ DB ] INIT mysql
  286. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  287. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  288. [ info ] [ LOG ] INIT File
  289. ---------------------------------------------------------------
  290. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  291. [运行时间:0.015011s] [吞吐率:66.62req/s] [内存消耗:642.44kb] [文件加载:146]
  292. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  293. [ info ] [ CACHE ] INIT File
  294. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000111s ]
  295. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  296. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  297. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  298. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  299. [ info ] [ ROUTE ] array (
  300. 'type' => 'module',
  301. 'module' =>
  302. array (
  303. 0 => 'Api',
  304. 1 => 'party',
  305. 2 => 'getPartyRankList',
  306. ),
  307. )
  308. [ info ] [ HEADER ] array (
  309. 'accept-encoding' => 'gzip',
  310. 'content-length' => '114',
  311. 'content-type' => 'application/x-www-form-urlencoded',
  312. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  313. 'accept-language' => 'zh-CN,zh;q=0.8',
  314. 'host' => 'voicechat.lanmaonet.com',
  315. )
  316. [ info ] [ PARAM ] array (
  317. 'params_from' => 'android',
  318. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  319. 'type_id' => '',
  320. 'all' => '1',
  321. 'is_recommend' => '0',
  322. 'room_type' => '1',
  323. 'pagenum' => '6',
  324. )
  325. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  326. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  327. [ info ] [ TOKEN ] INIT Mysql
  328. [ info ] [ DB ] INIT mysql
  329. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  330. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  331. [ info ] [ LOG ] INIT File
  332. ---------------------------------------------------------------
  333. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  334. [运行时间:0.004657s] [吞吐率:214.73req/s] [内存消耗:529.36kb] [文件加载:139]
  335. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  336. [ info ] [ CACHE ] INIT File
  337. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000103s ]
  338. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  339. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  340. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  341. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  342. [ info ] [ ROUTE ] array (
  343. 'type' => 'module',
  344. 'module' =>
  345. array (
  346. 0 => 'api',
  347. 1 => 'userCenter',
  348. 2 => 'getMyUserInfo',
  349. ),
  350. )
  351. [ info ] [ HEADER ] array (
  352. 'accept-encoding' => 'gzip',
  353. 'content-length' => '74',
  354. 'content-type' => 'application/x-www-form-urlencoded',
  355. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  356. 'accept-language' => 'zh-CN,zh;q=0.8',
  357. 'host' => 'voicechat.lanmaonet.com',
  358. )
  359. [ info ] [ PARAM ] array (
  360. 'params_from' => 'android',
  361. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  362. 'user_id' => '100',
  363. )
  364. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  365. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  366. [ info ] [ TOKEN ] INIT Mysql
  367. [ info ] [ DB ] INIT mysql
  368. [ info ] [ LOG ] INIT File
  369. ---------------------------------------------------------------
  370. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  371. [运行时间:0.005387s] [吞吐率:185.64req/s] [内存消耗:572.41kb] [文件加载:145]
  372. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  373. [ info ] [ CACHE ] INIT File
  374. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000096s ]
  375. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  376. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  377. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  378. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  379. [ info ] [ ROUTE ] array (
  380. 'type' => 'module',
  381. 'module' =>
  382. array (
  383. 0 => 'Api',
  384. 1 => 'party',
  385. 2 => 'getPartyRankList',
  386. ),
  387. )
  388. [ info ] [ HEADER ] array (
  389. 'accept-encoding' => 'gzip',
  390. 'content-length' => '114',
  391. 'content-type' => 'application/x-www-form-urlencoded',
  392. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  393. 'accept-language' => 'zh-CN,zh;q=0.8',
  394. 'host' => 'voicechat.lanmaonet.com',
  395. )
  396. [ info ] [ PARAM ] array (
  397. 'params_from' => 'android',
  398. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  399. 'type_id' => '',
  400. 'all' => '1',
  401. 'is_recommend' => '0',
  402. 'room_type' => '1',
  403. 'pagenum' => '6',
  404. )
  405. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  406. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000041s ]
  407. [ info ] [ TOKEN ] INIT Mysql
  408. [ info ] [ DB ] INIT mysql
  409. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  410. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  411. [ info ] [ LOG ] INIT File
  412. ---------------------------------------------------------------
  413. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  414. [运行时间:0.005604s] [吞吐率:178.45req/s] [内存消耗:574.74kb] [文件加载:145]
  415. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  416. [ info ] [ CACHE ] INIT File
  417. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000093s ]
  418. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  419. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  420. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  421. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  422. [ info ] [ ROUTE ] array (
  423. 'type' => 'module',
  424. 'module' =>
  425. array (
  426. 0 => 'Api',
  427. 1 => 'party',
  428. 2 => 'getPatyType',
  429. ),
  430. )
  431. [ info ] [ HEADER ] array (
  432. 'accept-encoding' => 'gzip',
  433. 'content-length' => '62',
  434. 'content-type' => 'application/x-www-form-urlencoded',
  435. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  436. 'accept-language' => 'zh-CN,zh;q=0.8',
  437. 'host' => 'voicechat.lanmaonet.com',
  438. )
  439. [ info ] [ PARAM ] array (
  440. 'params_from' => 'android',
  441. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  442. )
  443. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  444. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000042s ]
  445. [ info ] [ TOKEN ] INIT Mysql
  446. [ info ] [ DB ] INIT mysql
  447. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  448. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  449. [ info ] [ LOG ] INIT File
  450. ---------------------------------------------------------------
  451. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  452. [运行时间:0.005647s] [吞吐率:177.09req/s] [内存消耗:574.82kb] [文件加载:145]
  453. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  454. [ info ] [ CACHE ] INIT File
  455. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000105s ]
  456. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  457. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  458. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  459. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  460. [ info ] [ ROUTE ] array (
  461. 'type' => 'module',
  462. 'module' =>
  463. array (
  464. 0 => 'Api',
  465. 1 => 'party',
  466. 2 => 'getPatyType',
  467. ),
  468. )
  469. [ info ] [ HEADER ] array (
  470. 'accept-encoding' => 'gzip',
  471. 'content-length' => '74',
  472. 'content-type' => 'application/x-www-form-urlencoded',
  473. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  474. 'accept-language' => 'zh-CN,zh;q=0.8',
  475. 'host' => 'voicechat.lanmaonet.com',
  476. )
  477. [ info ] [ PARAM ] array (
  478. 'params_from' => 'android',
  479. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  480. 'room_type' => '2',
  481. )
  482. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  483. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000044s ]
  484. [ info ] [ TOKEN ] INIT Mysql
  485. [ info ] [ DB ] INIT mysql
  486. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  487. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  488. [ info ] [ LOG ] INIT File
  489. ---------------------------------------------------------------
  490. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  491. [运行时间:0.007816s] [吞吐率:127.94req/s] [内存消耗:631.37kb] [文件加载:146]
  492. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  493. [ info ] [ CACHE ] INIT File
  494. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000121s ]
  495. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  496. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  497. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  498. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  499. [ info ] [ ROUTE ] array (
  500. 'type' => 'module',
  501. 'module' =>
  502. array (
  503. 0 => 'Api',
  504. 1 => 'party',
  505. 2 => 'getPartyRankList',
  506. ),
  507. )
  508. [ info ] [ HEADER ] array (
  509. 'accept-encoding' => 'gzip',
  510. 'content-length' => '126',
  511. 'content-type' => 'application/x-www-form-urlencoded',
  512. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  513. 'accept-language' => 'zh-CN,zh;q=0.8',
  514. 'host' => 'voicechat.lanmaonet.com',
  515. )
  516. [ info ] [ PARAM ] array (
  517. 'params_from' => 'android',
  518. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  519. 'type_id' => '0',
  520. 'all' => '1',
  521. 'is_recommend' => '0',
  522. 'thispage' => '1',
  523. 'room_type' => '2',
  524. 'pagenum' => '6',
  525. )
  526. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  527. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  528. [ info ] [ TOKEN ] INIT Mysql
  529. [ info ] [ DB ] INIT mysql
  530. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  531. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  532. [ info ] [ LOG ] INIT File
  533. ---------------------------------------------------------------
  534. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  535. [运行时间:0.004207s] [吞吐率:237.69req/s] [内存消耗:529.36kb] [文件加载:139]
  536. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  537. [ info ] [ CACHE ] INIT File
  538. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000118s ]
  539. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  540. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  541. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  542. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  543. [ info ] [ ROUTE ] array (
  544. 'type' => 'module',
  545. 'module' =>
  546. array (
  547. 0 => 'api',
  548. 1 => 'userCenter',
  549. 2 => 'getMyUserInfo',
  550. ),
  551. )
  552. [ info ] [ HEADER ] array (
  553. 'accept-encoding' => 'gzip',
  554. 'content-length' => '74',
  555. 'content-type' => 'application/x-www-form-urlencoded',
  556. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  557. 'accept-language' => 'zh-CN,zh;q=0.8',
  558. 'host' => 'voicechat.lanmaonet.com',
  559. )
  560. [ info ] [ PARAM ] array (
  561. 'params_from' => 'android',
  562. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  563. 'user_id' => '100',
  564. )
  565. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  566. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  567. [ info ] [ TOKEN ] INIT Mysql
  568. [ info ] [ DB ] INIT mysql
  569. [ info ] [ LOG ] INIT File
  570. ---------------------------------------------------------------
  571. [ 2023-02-01T11:59:25+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/index/getMessage
  572. [运行时间:0.004269s] [吞吐率:234.25req/s] [内存消耗:527.38kb] [文件加载:139]
  573. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  574. [ info ] [ CACHE ] INIT File
  575. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000108s ]
  576. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  577. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  578. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  579. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  580. [ info ] [ ROUTE ] array (
  581. 'type' => 'module',
  582. 'module' =>
  583. array (
  584. 0 => 'Api',
  585. 1 => 'index',
  586. 2 => 'getMessage',
  587. ),
  588. )
  589. [ info ] [ HEADER ] array (
  590. 'accept-encoding' => 'gzip',
  591. 'content-length' => '69',
  592. 'content-type' => 'application/x-www-form-urlencoded',
  593. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  594. 'accept-language' => 'zh-CN,zh;q=0.8',
  595. 'host' => 'voicechat.lanmaonet.com',
  596. )
  597. [ info ] [ PARAM ] array (
  598. 'params_from' => 'android',
  599. 'token' => 'b24d5221-e13b-4e2a-ad43-9cb54c9c6cb4',
  600. 'flag' => '1',
  601. )
  602. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  603. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000044s ]
  604. [ info ] [ TOKEN ] INIT Mysql
  605. [ info ] [ DB ] INIT mysql
  606. [ info ] [ LOG ] INIT File
  607. ---------------------------------------------------------------
  608. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/cellectionPartyList
  609. [运行时间:0.004715s] [吞吐率:212.09req/s] [内存消耗:530.34kb] [文件加载:140]
  610. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  611. [ info ] [ CACHE ] INIT File
  612. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000117s ]
  613. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  614. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  615. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  616. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  617. [ info ] [ ROUTE ] array (
  618. 'type' => 'module',
  619. 'module' =>
  620. array (
  621. 0 => 'Api',
  622. 1 => 'party',
  623. 2 => 'cellectionPartyList',
  624. ),
  625. )
  626. [ info ] [ HEADER ] array (
  627. 'accept-encoding' => 'gzip',
  628. 'content-length' => '16',
  629. 'content-type' => 'application/x-www-form-urlencoded',
  630. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  631. 'accept-language' => 'zh-CN,zh;q=0.8',
  632. 'host' => 'voicechat.lanmaonet.com',
  633. )
  634. [ info ] [ PARAM ] array (
  635. 'page' => '1',
  636. 'pageNum' => '2',
  637. )
  638. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  639. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  640. [ info ] [ TOKEN ] INIT Mysql
  641. [ info ] [ DB ] INIT mysql
  642. [ info ] [ LOG ] INIT File
  643. ---------------------------------------------------------------
  644. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  645. [运行时间:0.004784s] [吞吐率:209.03req/s] [内存消耗:530.63kb] [文件加载:140]
  646. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  647. [ info ] [ CACHE ] INIT File
  648. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000112s ]
  649. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  650. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  651. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  652. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  653. [ info ] [ ROUTE ] array (
  654. 'type' => 'module',
  655. 'module' =>
  656. array (
  657. 0 => 'Api',
  658. 1 => 'userCenter',
  659. 2 => 'getFollowsLive',
  660. ),
  661. )
  662. [ info ] [ HEADER ] array (
  663. 'accept-encoding' => 'gzip',
  664. 'content-length' => '28',
  665. 'content-type' => 'application/x-www-form-urlencoded',
  666. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  667. 'accept-language' => 'zh-CN,zh;q=0.8',
  668. 'host' => 'voicechat.lanmaonet.com',
  669. )
  670. [ info ] [ PARAM ] array (
  671. 'is_online' => '1',
  672. 'page' => '1',
  673. 'pageNum' => '3',
  674. )
  675. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  676. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000040s ]
  677. [ info ] [ TOKEN ] INIT Mysql
  678. [ info ] [ DB ] INIT mysql
  679. [ info ] [ LOG ] INIT File
  680. ---------------------------------------------------------------
  681. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  682. [运行时间:0.005541s] [吞吐率:180.47req/s] [内存消耗:530.63kb] [文件加载:140]
  683. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  684. [ info ] [ CACHE ] INIT File
  685. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000133s ]
  686. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  687. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  688. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  689. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  690. [ info ] [ ROUTE ] array (
  691. 'type' => 'module',
  692. 'module' =>
  693. array (
  694. 0 => 'Api',
  695. 1 => 'userCenter',
  696. 2 => 'getFollowsLive',
  697. ),
  698. )
  699. [ info ] [ HEADER ] array (
  700. 'accept-encoding' => 'gzip',
  701. 'content-length' => '28',
  702. 'content-type' => 'application/x-www-form-urlencoded',
  703. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  704. 'accept-language' => 'zh-CN,zh;q=0.8',
  705. 'host' => 'voicechat.lanmaonet.com',
  706. )
  707. [ info ] [ PARAM ] array (
  708. 'is_online' => '0',
  709. 'page' => '1',
  710. 'pageNum' => '2',
  711. )
  712. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  713. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000042s ]
  714. [ info ] [ TOKEN ] INIT Mysql
  715. [ info ] [ DB ] INIT mysql
  716. [ info ] [ LOG ] INIT File
  717. ---------------------------------------------------------------
  718. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  719. [运行时间:0.005653s] [吞吐率:176.90req/s] [内存消耗:528.05kb] [文件加载:139]
  720. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  721. [ info ] [ CACHE ] INIT File
  722. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000117s ]
  723. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  724. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  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 => 'dynamic',
  733. 2 => 'getDynamicList',
  734. ),
  735. )
  736. [ info ] [ HEADER ] array (
  737. 'accept-encoding' => 'gzip',
  738. 'content-length' => '13',
  739. 'content-type' => 'application/x-www-form-urlencoded',
  740. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  741. 'accept-language' => 'zh-CN,zh;q=0.8',
  742. 'host' => 'voicechat.lanmaonet.com',
  743. )
  744. [ info ] [ PARAM ] array (
  745. 'type' => '1',
  746. 'page' => '1',
  747. )
  748. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  749. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  750. [ info ] [ TOKEN ] INIT Mysql
  751. [ info ] [ DB ] INIT mysql
  752. [ info ] [ LOG ] INIT File
  753. ---------------------------------------------------------------
  754. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  755. [运行时间:0.006084s] [吞吐率:164.36req/s] [内存消耗:580.19kb] [文件加载:139]
  756. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
  757. [ info ] [ CACHE ] INIT File
  758. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000112s ]
  759. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  760. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  761. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  762. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  763. [ info ] [ ROUTE ] array (
  764. 'type' => 'module',
  765. 'module' =>
  766. array (
  767. 0 => 'Api',
  768. 1 => 'dynamic',
  769. 2 => 'getDynamicList',
  770. ),
  771. )
  772. [ info ] [ HEADER ] array (
  773. 'accept-encoding' => 'gzip',
  774. 'content-length' => '13',
  775. 'content-type' => 'application/x-www-form-urlencoded',
  776. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  777. 'accept-language' => 'zh-CN,zh;q=0.8',
  778. 'host' => 'voicechat.lanmaonet.com',
  779. )
  780. [ info ] [ PARAM ] array (
  781. 'type' => '2',
  782. 'page' => '1',
  783. )
  784. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  785. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000042s ]
  786. [ info ] [ TOKEN ] INIT Mysql
  787. [ info ] [ DB ] INIT mysql
  788. [ info ] [ LOG ] INIT File
  789. ---------------------------------------------------------------
  790. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  791. [运行时间:0.002677s] [吞吐率:373.56req/s] [内存消耗:502.87kb] [文件加载:142]
  792. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  793. [ info ] [ CACHE ] INIT File
  794. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000130s ]
  795. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  796. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  797. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  798. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  799. [ info ] [ ROUTE ] array (
  800. 'type' => 'module',
  801. 'module' =>
  802. array (
  803. 0 => 'Api',
  804. 1 => 'party',
  805. 2 => 'getPartyRankList',
  806. ),
  807. )
  808. [ info ] [ HEADER ] array (
  809. 'accept-encoding' => 'gzip',
  810. 'content-length' => '41',
  811. 'content-type' => 'application/x-www-form-urlencoded',
  812. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  813. 'accept-language' => 'zh-CN,zh;q=0.8',
  814. 'host' => 'voicechat.lanmaonet.com',
  815. )
  816. [ info ] [ PARAM ] array (
  817. 'type_id' => '0',
  818. 'all' => '1',
  819. 'is_recommend' => '0',
  820. 'thispage' => '1',
  821. )
  822. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  823. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000040s ]
  824. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000039s ]
  825. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  826. [ info ] [ DB ] INIT mysql
  827. [ info ] [ LOG ] INIT File
  828. ---------------------------------------------------------------
  829. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  830. [运行时间:0.007411s] [吞吐率:134.93req/s] [内存消耗:623.73kb] [文件加载:143]
  831. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  832. [ info ] [ CACHE ] INIT File
  833. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000120s ]
  834. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  835. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  836. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  837. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  838. [ info ] [ ROUTE ] array (
  839. 'type' => 'module',
  840. 'module' =>
  841. array (
  842. 0 => 'Api',
  843. 1 => 'party',
  844. 2 => 'getPartyRankList',
  845. ),
  846. )
  847. [ info ] [ HEADER ] array (
  848. 'accept-encoding' => 'gzip',
  849. 'content-length' => '53',
  850. 'content-type' => 'application/x-www-form-urlencoded',
  851. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  852. 'accept-language' => 'zh-CN,zh;q=0.8',
  853. 'host' => 'voicechat.lanmaonet.com',
  854. )
  855. [ info ] [ PARAM ] array (
  856. 'type_id' => '8',
  857. 'all' => '0',
  858. 'is_recommend' => '0',
  859. 'thispage' => '1',
  860. 'room_type' => '2',
  861. )
  862. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  863. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  864. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000042s ]
  865. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  866. [ info ] [ DB ] INIT mysql
  867. [ info ] [ LOG ] INIT File
  868. ---------------------------------------------------------------
  869. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  870. [运行时间:0.007471s] [吞吐率:133.85req/s] [内存消耗:623.73kb] [文件加载:143]
  871. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  872. [ info ] [ CACHE ] INIT File
  873. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000128s ]
  874. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  875. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  876. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  877. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  878. [ info ] [ ROUTE ] array (
  879. 'type' => 'module',
  880. 'module' =>
  881. array (
  882. 0 => 'Api',
  883. 1 => 'party',
  884. 2 => 'getPartyRankList',
  885. ),
  886. )
  887. [ info ] [ HEADER ] array (
  888. 'accept-encoding' => 'gzip',
  889. 'content-length' => '53',
  890. 'content-type' => 'application/x-www-form-urlencoded',
  891. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  892. 'accept-language' => 'zh-CN,zh;q=0.8',
  893. 'host' => 'voicechat.lanmaonet.com',
  894. )
  895. [ info ] [ PARAM ] array (
  896. 'type_id' => '0',
  897. 'all' => '1',
  898. 'is_recommend' => '0',
  899. 'thispage' => '1',
  900. 'room_type' => '2',
  901. )
  902. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  903. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  904. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000039s ]
  905. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  906. [ info ] [ DB ] INIT mysql
  907. [ info ] [ LOG ] INIT File
  908. ---------------------------------------------------------------
  909. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  910. [运行时间:0.007542s] [吞吐率:132.59req/s] [内存消耗:623.73kb] [文件加载:143]
  911. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  912. [ info ] [ CACHE ] INIT File
  913. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000126s ]
  914. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  915. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  916. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  917. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  918. [ info ] [ ROUTE ] array (
  919. 'type' => 'module',
  920. 'module' =>
  921. array (
  922. 0 => 'Api',
  923. 1 => 'party',
  924. 2 => 'getPartyRankList',
  925. ),
  926. )
  927. [ info ] [ HEADER ] array (
  928. 'accept-encoding' => 'gzip',
  929. 'content-length' => '53',
  930. 'content-type' => 'application/x-www-form-urlencoded',
  931. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  932. 'accept-language' => 'zh-CN,zh;q=0.8',
  933. 'host' => 'voicechat.lanmaonet.com',
  934. )
  935. [ info ] [ PARAM ] array (
  936. 'type_id' => '7',
  937. 'all' => '0',
  938. 'is_recommend' => '0',
  939. 'thispage' => '1',
  940. 'room_type' => '2',
  941. )
  942. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  943. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  944. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  945. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  946. [ info ] [ DB ] INIT mysql
  947. [ info ] [ LOG ] INIT File
  948. ---------------------------------------------------------------
  949. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  950. [运行时间:0.007895s] [吞吐率:126.66req/s] [内存消耗:623.73kb] [文件加载:143]
  951. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  952. [ info ] [ CACHE ] INIT File
  953. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000116s ]
  954. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  955. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  956. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  957. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  958. [ info ] [ ROUTE ] array (
  959. 'type' => 'module',
  960. 'module' =>
  961. array (
  962. 0 => 'Api',
  963. 1 => 'party',
  964. 2 => 'getPartyRankList',
  965. ),
  966. )
  967. [ info ] [ HEADER ] array (
  968. 'accept-encoding' => 'gzip',
  969. 'content-length' => '53',
  970. 'content-type' => 'application/x-www-form-urlencoded',
  971. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  972. 'accept-language' => 'zh-CN,zh;q=0.8',
  973. 'host' => 'voicechat.lanmaonet.com',
  974. )
  975. [ info ] [ PARAM ] array (
  976. 'type_id' => '9',
  977. 'all' => '0',
  978. 'is_recommend' => '0',
  979. 'thispage' => '1',
  980. 'room_type' => '2',
  981. )
  982. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  983. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000042s ]
  984. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000047s ]
  985. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  986. [ info ] [ DB ] INIT mysql
  987. [ info ] [ LOG ] INIT File
  988. ---------------------------------------------------------------
  989. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  990. [运行时间:0.002728s] [吞吐率:366.57req/s] [内存消耗:502.87kb] [文件加载:142]
  991. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  992. [ info ] [ CACHE ] INIT File
  993. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000132s ]
  994. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  995. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  996. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  997. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  998. [ info ] [ ROUTE ] array (
  999. 'type' => 'module',
  1000. 'module' =>
  1001. array (
  1002. 0 => 'Api',
  1003. 1 => 'party',
  1004. 2 => 'getPartyRankList',
  1005. ),
  1006. )
  1007. [ info ] [ HEADER ] array (
  1008. 'accept-encoding' => 'gzip',
  1009. 'content-length' => '41',
  1010. 'content-type' => 'application/x-www-form-urlencoded',
  1011. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1012. 'accept-language' => 'zh-CN,zh;q=0.8',
  1013. 'host' => 'voicechat.lanmaonet.com',
  1014. )
  1015. [ info ] [ PARAM ] array (
  1016. 'type_id' => '4',
  1017. 'all' => '0',
  1018. 'is_recommend' => '0',
  1019. 'thispage' => '1',
  1020. )
  1021. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1022. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  1023. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  1024. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1025. [ info ] [ DB ] INIT mysql
  1026. [ info ] [ LOG ] INIT File
  1027. ---------------------------------------------------------------
  1028. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1029. [运行时间:0.002779s] [吞吐率:359.84req/s] [内存消耗:502.87kb] [文件加载:142]
  1030. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1031. [ info ] [ CACHE ] INIT File
  1032. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000111s ]
  1033. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1034. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  1035. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1036. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1037. [ info ] [ ROUTE ] array (
  1038. 'type' => 'module',
  1039. 'module' =>
  1040. array (
  1041. 0 => 'Api',
  1042. 1 => 'party',
  1043. 2 => 'getPartyRankList',
  1044. ),
  1045. )
  1046. [ info ] [ HEADER ] array (
  1047. 'accept-encoding' => 'gzip',
  1048. 'content-length' => '41',
  1049. 'content-type' => 'application/x-www-form-urlencoded',
  1050. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1051. 'accept-language' => 'zh-CN,zh;q=0.8',
  1052. 'host' => 'voicechat.lanmaonet.com',
  1053. )
  1054. [ info ] [ PARAM ] array (
  1055. 'type_id' => '1',
  1056. 'all' => '0',
  1057. 'is_recommend' => '0',
  1058. 'thispage' => '1',
  1059. )
  1060. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1061. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  1062. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  1063. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1064. [ info ] [ DB ] INIT mysql
  1065. [ info ] [ LOG ] INIT File
  1066. ---------------------------------------------------------------
  1067. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1068. [运行时间:0.003010s] [吞吐率:332.22req/s] [内存消耗:502.87kb] [文件加载:142]
  1069. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  1070. [ info ] [ CACHE ] INIT File
  1071. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000116s ]
  1072. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1073. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1074. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1075. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  1076. [ info ] [ ROUTE ] array (
  1077. 'type' => 'module',
  1078. 'module' =>
  1079. array (
  1080. 0 => 'Api',
  1081. 1 => 'party',
  1082. 2 => 'getPartyRankList',
  1083. ),
  1084. )
  1085. [ info ] [ HEADER ] array (
  1086. 'accept-encoding' => 'gzip',
  1087. 'content-length' => '41',
  1088. 'content-type' => 'application/x-www-form-urlencoded',
  1089. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1090. 'accept-language' => 'zh-CN,zh;q=0.8',
  1091. 'host' => 'voicechat.lanmaonet.com',
  1092. )
  1093. [ info ] [ PARAM ] array (
  1094. 'type_id' => '2',
  1095. 'all' => '0',
  1096. 'is_recommend' => '0',
  1097. 'thispage' => '1',
  1098. )
  1099. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1100. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000043s ]
  1101. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  1102. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1103. [ info ] [ DB ] INIT mysql
  1104. [ info ] [ LOG ] INIT File
  1105. ---------------------------------------------------------------
  1106. [ 2023-02-01T11:59:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1107. [运行时间:0.003128s] [吞吐率:319.69req/s] [内存消耗:502.87kb] [文件加载:142]
  1108. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1109. [ info ] [ CACHE ] INIT File
  1110. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000128s ]
  1111. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1112. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  1113. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1114. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1115. [ info ] [ ROUTE ] array (
  1116. 'type' => 'module',
  1117. 'module' =>
  1118. array (
  1119. 0 => 'Api',
  1120. 1 => 'party',
  1121. 2 => 'getPartyRankList',
  1122. ),
  1123. )
  1124. [ info ] [ HEADER ] array (
  1125. 'accept-encoding' => 'gzip',
  1126. 'content-length' => '41',
  1127. 'content-type' => 'application/x-www-form-urlencoded',
  1128. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1129. 'accept-language' => 'zh-CN,zh;q=0.8',
  1130. 'host' => 'voicechat.lanmaonet.com',
  1131. )
  1132. [ info ] [ PARAM ] array (
  1133. 'type_id' => '3',
  1134. 'all' => '0',
  1135. 'is_recommend' => '0',
  1136. 'thispage' => '1',
  1137. )
  1138. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1139. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  1140. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000043s ]
  1141. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1142. [ info ] [ DB ] INIT mysql
  1143. [ info ] [ LOG ] INIT File
  1144. ---------------------------------------------------------------
  1145. [ 2023-02-01T11:59:27+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  1146. [运行时间:0.006352s] [吞吐率:157.43req/s] [内存消耗:566.29kb] [文件加载:142]
  1147. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1148. [ info ] [ CACHE ] INIT File
  1149. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000124s ]
  1150. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1151. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1152. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1153. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  1154. [ info ] [ ROUTE ] array (
  1155. 'type' => 'module',
  1156. 'module' =>
  1157. array (
  1158. 0 => 'Api',
  1159. 1 => 'dispatch',
  1160. 2 => 'getSkillList',
  1161. ),
  1162. )
  1163. [ info ] [ HEADER ] array (
  1164. 'accept-encoding' => 'gzip',
  1165. 'content-length' => '0',
  1166. 'content-type' => 'application/x-www-form-urlencoded',
  1167. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1168. 'accept-language' => 'zh-CN,zh;q=0.8',
  1169. 'host' => 'voicechat.lanmaonet.com',
  1170. )
  1171. [ info ] [ PARAM ] array (
  1172. )
  1173. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1174. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1175. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1176. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  1177. [ info ] [ DB ] INIT mysql
  1178. [ info ] [ LOG ] INIT File
  1179. ---------------------------------------------------------------
  1180. [ 2023-02-01T12:53:04+08:00 ] 211.95.50.5 GET voicechat.lanmaonet.com/
  1181. [运行时间:0.003473s] [吞吐率:287.93req/s] [内存消耗:389.79kb] [文件加载:133]
  1182. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1183. [ info ] [ CACHE ] INIT File
  1184. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000164s ]
  1185. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  1186. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1187. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1188. [ info ] [ ROUTE ] array (
  1189. 'type' => 'module',
  1190. 'module' =>
  1191. array (
  1192. 0 => '',
  1193. 1 => NULL,
  1194. 2 => NULL,
  1195. ),
  1196. )
  1197. [ info ] [ HEADER ] array (
  1198. 'accept-encoding' => 'gzip',
  1199. 'upgrade-insecure-requests' => '1',
  1200. 'sec-gpc' => '1',
  1201. 'dnt' => '1',
  1202. 'connection' => 'keep-alive',
  1203. 'cache-control' => 'max-age=0',
  1204. 'accept-language' => 'en;q=0.9',
  1205. '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',
  1206. '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',
  1207. 'host' => 'voicechat.lanmaonet.com',
  1208. 'content-length' => '',
  1209. 'content-type' => '',
  1210. )
  1211. [ info ] [ PARAM ] array (
  1212. )
  1213. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1214. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1215. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000041s ]
  1216. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/en/index.php
  1217. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1218. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1219. 0 => 'user',
  1220. 1 => 'site',
  1221. 2 => 'config',
  1222. ) ]
  1223. [ info ] [ LOG ] INIT File
  1224. ---------------------------------------------------------------
  1225. [ 2023-02-01T12:53:04+08:00 ] 211.95.50.4 GET voicechat.lanmaonet.com/
  1226. [运行时间:0.002516s] [吞吐率:397.45req/s] [内存消耗:388.81kb] [文件加载:133]
  1227. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1228. [ info ] [ CACHE ] INIT File
  1229. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000115s ]
  1230. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1231. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1232. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000016s ]
  1233. [ info ] [ ROUTE ] array (
  1234. 'type' => 'module',
  1235. 'module' =>
  1236. array (
  1237. 0 => '',
  1238. 1 => NULL,
  1239. 2 => NULL,
  1240. ),
  1241. )
  1242. [ info ] [ HEADER ] array (
  1243. 'accept-encoding' => 'gzip',
  1244. 'upgrade-insecure-requests' => '1',
  1245. 'accept-language' => 'en',
  1246. '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',
  1247. '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',
  1248. 'host' => 'voicechat.lanmaonet.com',
  1249. 'content-length' => '',
  1250. 'content-type' => '',
  1251. )
  1252. [ info ] [ PARAM ] array (
  1253. )
  1254. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  1255. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  1256. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000038s ]
  1257. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/en/index.php
  1258. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1259. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1260. 0 => 'user',
  1261. 1 => 'site',
  1262. 2 => 'config',
  1263. ) ]
  1264. [ info ] [ LOG ] INIT File
  1265. ---------------------------------------------------------------
  1266. [ 2023-02-01T16:47:12+08:00 ] 102.165.14.162 POST voicechat.lanmaonet.com/
  1267. [运行时间:0.003465s] [吞吐率:288.59req/s] [内存消耗:407.30kb] [文件加载:135]
  1268. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1269. [ info ] [ CACHE ] INIT File
  1270. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000147s ]
  1271. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1272. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1273. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1274. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  1275. [ info ] [ ROUTE ] array (
  1276. 'type' => 'module',
  1277. 'module' =>
  1278. array (
  1279. 0 => '',
  1280. 1 => NULL,
  1281. 2 => NULL,
  1282. ),
  1283. )
  1284. [ info ] [ HEADER ] array (
  1285. 'content-type' => 'application/x-www-form-urlencoded',
  1286. 'content-length' => '10',
  1287. 'connection' => 'keep-alive',
  1288. 'accept' => '*/*',
  1289. 'accept-encoding' => 'gzip, deflate',
  1290. 'user-agent' => 'python-requests/2.28.2',
  1291. 'host' => 'voicechat.lanmaonet.com',
  1292. )
  1293. [ info ] [ PARAM ] array (
  1294. 'debug' => 'true',
  1295. )
  1296. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  1297. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000071s ]
  1298. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  1299. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000028s ]
  1300. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  1301. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1302. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1303. 0 => 'user',
  1304. 1 => 'site',
  1305. 2 => 'config',
  1306. ) ]
  1307. [ info ] [ LOG ] INIT File
  1308. ---------------------------------------------------------------
  1309. [ 2023-02-01T19:24:14+08:00 ] 185.191.171.44 GET voicechat.lanmaonet.com/
  1310. [运行时间:0.003382s] [吞吐率:295.69req/s] [内存消耗:408.40kb] [文件加载:135]
  1311. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1312. [ info ] [ CACHE ] INIT File
  1313. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000146s ]
  1314. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1315. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1316. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1317. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1318. [ info ] [ ROUTE ] array (
  1319. 'type' => 'module',
  1320. 'module' =>
  1321. array (
  1322. 0 => '',
  1323. 1 => NULL,
  1324. 2 => NULL,
  1325. ),
  1326. )
  1327. [ info ] [ HEADER ] array (
  1328. 'user-agent' => 'Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',
  1329. 'connection' => 'close',
  1330. 'accept-encoding' => 'gzip,deflate',
  1331. 'accept' => 'text/html, application/rss+xml, application/atom+xml, text/xml, text/rss+xml, application/xhtml+xml',
  1332. 'host' => 'voicechat.lanmaonet.com',
  1333. 'content-length' => '',
  1334. 'content-type' => '',
  1335. )
  1336. [ info ] [ PARAM ] array (
  1337. )
  1338. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  1339. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  1340. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  1341. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000030s ]
  1342. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  1343. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1344. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1345. 0 => 'user',
  1346. 1 => 'site',
  1347. 2 => 'config',
  1348. ) ]
  1349. [ info ] [ LOG ] INIT File
  1350. ---------------------------------------------------------------
  1351. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/api/tenim/getUsersig
  1352. [运行时间:0.013270s] [吞吐率:75.36req/s] [内存消耗:509.63kb] [文件加载:138]
  1353. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1354. [ info ] [ CACHE ] INIT File
  1355. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000146s ]
  1356. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1357. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1358. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1359. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  1360. [ info ] [ ROUTE ] array (
  1361. 'type' => 'module',
  1362. 'module' =>
  1363. array (
  1364. 0 => 'api',
  1365. 1 => 'tenim',
  1366. 2 => 'getUsersig',
  1367. ),
  1368. )
  1369. [ info ] [ HEADER ] array (
  1370. 'accept-encoding' => 'gzip',
  1371. 'content-length' => '62',
  1372. 'content-type' => 'application/x-www-form-urlencoded',
  1373. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1374. 'accept-language' => 'zh-CN,zh;q=0.8',
  1375. 'host' => 'voicechat.lanmaonet.com',
  1376. )
  1377. [ info ] [ PARAM ] array (
  1378. 'params_from' => 'android',
  1379. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1380. )
  1381. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1382. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  1383. [ info ] [ TOKEN ] INIT Mysql
  1384. [ info ] [ DB ] INIT mysql
  1385. [ info ] [ LOG ] INIT File
  1386. ---------------------------------------------------------------
  1387. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/api/index/getSwitch
  1388. [运行时间:0.018757s] [吞吐率:53.31req/s] [内存消耗:537.67kb] [文件加载:142]
  1389. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1390. [ info ] [ CACHE ] INIT File
  1391. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000154s ]
  1392. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1393. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1394. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1395. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  1396. [ info ] [ ROUTE ] array (
  1397. 'type' => 'module',
  1398. 'module' =>
  1399. array (
  1400. 0 => 'api',
  1401. 1 => 'index',
  1402. 2 => 'getSwitch',
  1403. ),
  1404. )
  1405. [ info ] [ HEADER ] array (
  1406. 'accept-encoding' => 'gzip',
  1407. 'content-length' => '62',
  1408. 'content-type' => 'application/x-www-form-urlencoded',
  1409. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1410. 'accept-language' => 'zh-CN,zh;q=0.8',
  1411. 'host' => 'voicechat.lanmaonet.com',
  1412. )
  1413. [ info ] [ PARAM ] array (
  1414. 'params_from' => 'android',
  1415. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1416. )
  1417. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1418. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  1419. [ info ] [ TOKEN ] INIT Mysql
  1420. [ info ] [ DB ] INIT mysql
  1421. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000075s ]
  1422. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1423. [ info ] [ LOG ] INIT File
  1424. ---------------------------------------------------------------
  1425. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/api/index/getEdition
  1426. [运行时间:0.019453s] [吞吐率:51.41req/s] [内存消耗:537.68kb] [文件加载:142]
  1427. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1428. [ info ] [ CACHE ] INIT File
  1429. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000134s ]
  1430. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1431. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1432. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1433. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1434. [ info ] [ ROUTE ] array (
  1435. 'type' => 'module',
  1436. 'module' =>
  1437. array (
  1438. 0 => 'api',
  1439. 1 => 'index',
  1440. 2 => 'getEdition',
  1441. ),
  1442. )
  1443. [ info ] [ HEADER ] array (
  1444. 'accept-encoding' => 'gzip',
  1445. 'content-length' => '62',
  1446. 'content-type' => 'application/x-www-form-urlencoded',
  1447. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1448. 'accept-language' => 'zh-CN,zh;q=0.8',
  1449. 'host' => 'voicechat.lanmaonet.com',
  1450. )
  1451. [ info ] [ PARAM ] array (
  1452. 'params_from' => 'android',
  1453. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1454. )
  1455. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1456. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  1457. [ info ] [ TOKEN ] INIT Mysql
  1458. [ info ] [ DB ] INIT mysql
  1459. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  1460. [ info ] [ RUN ] app\api\controller\Index->getEdition[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1461. [ info ] [ LOG ] INIT File
  1462. ---------------------------------------------------------------
  1463. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1464. [运行时间:0.024813s] [吞吐率:40.30req/s] [内存消耗:556.11kb] [文件加载:145]
  1465. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1466. [ info ] [ CACHE ] INIT File
  1467. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000139s ]
  1468. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1469. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1470. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1471. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1472. [ info ] [ ROUTE ] array (
  1473. 'type' => 'module',
  1474. 'module' =>
  1475. array (
  1476. 0 => 'Api',
  1477. 1 => 'party',
  1478. 2 => 'getPartyRankList',
  1479. ),
  1480. )
  1481. [ info ] [ HEADER ] array (
  1482. 'accept-encoding' => 'gzip',
  1483. 'content-length' => '114',
  1484. 'content-type' => 'application/x-www-form-urlencoded',
  1485. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1486. 'accept-language' => 'zh-CN,zh;q=0.8',
  1487. 'host' => 'voicechat.lanmaonet.com',
  1488. )
  1489. [ info ] [ PARAM ] array (
  1490. 'params_from' => 'android',
  1491. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1492. 'type_id' => '',
  1493. 'all' => '1',
  1494. 'is_recommend' => '1',
  1495. 'room_type' => '1',
  1496. 'pagenum' => '3',
  1497. )
  1498. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1499. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  1500. [ info ] [ TOKEN ] INIT Mysql
  1501. [ info ] [ DB ] INIT mysql
  1502. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1503. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1504. [ info ] [ LOG ] INIT File
  1505. ---------------------------------------------------------------
  1506. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  1507. [运行时间:0.026960s] [吞吐率:37.09req/s] [内存消耗:513.05kb] [文件加载:139]
  1508. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  1509. [ info ] [ CACHE ] INIT File
  1510. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000165s ]
  1511. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000075s ]
  1512. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000088s ]
  1513. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1514. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1515. [ info ] [ ROUTE ] array (
  1516. 'type' => 'module',
  1517. 'module' =>
  1518. array (
  1519. 0 => 'api',
  1520. 1 => 'userCenter',
  1521. 2 => 'getMyUserInfo',
  1522. ),
  1523. )
  1524. [ info ] [ HEADER ] array (
  1525. 'accept-encoding' => 'gzip',
  1526. 'content-length' => '73',
  1527. 'content-type' => 'application/x-www-form-urlencoded',
  1528. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1529. 'accept-language' => 'zh-CN,zh;q=0.8',
  1530. 'host' => 'voicechat.lanmaonet.com',
  1531. )
  1532. [ info ] [ PARAM ] array (
  1533. 'params_from' => 'android',
  1534. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1535. 'user_id' => '15',
  1536. )
  1537. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1538. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000078s ]
  1539. [ info ] [ TOKEN ] INIT Mysql
  1540. [ info ] [ DB ] INIT mysql
  1541. [ info ] [ LOG ] INIT File
  1542. ---------------------------------------------------------------
  1543. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/api/index/getSwitch
  1544. [运行时间:0.004423s] [吞吐率:226.08req/s] [内存消耗:553.98kb] [文件加载:142]
  1545. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1546. [ info ] [ CACHE ] INIT File
  1547. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000125s ]
  1548. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1549. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1550. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1551. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  1552. [ info ] [ ROUTE ] array (
  1553. 'type' => 'module',
  1554. 'module' =>
  1555. array (
  1556. 0 => 'api',
  1557. 1 => 'index',
  1558. 2 => 'getSwitch',
  1559. ),
  1560. )
  1561. [ info ] [ HEADER ] array (
  1562. 'accept-encoding' => 'gzip',
  1563. 'content-length' => '62',
  1564. 'content-type' => 'application/x-www-form-urlencoded',
  1565. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1566. 'accept-language' => 'zh-CN,zh;q=0.8',
  1567. 'host' => 'voicechat.lanmaonet.com',
  1568. )
  1569. [ info ] [ PARAM ] array (
  1570. 'params_from' => 'android',
  1571. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1572. )
  1573. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1574. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  1575. [ info ] [ TOKEN ] INIT Mysql
  1576. [ info ] [ DB ] INIT mysql
  1577. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000075s ]
  1578. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1579. [ info ] [ LOG ] INIT File
  1580. ---------------------------------------------------------------
  1581. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1582. [运行时间:0.004932s] [吞吐率:202.76req/s] [内存消耗:572.41kb] [文件加载:145]
  1583. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1584. [ info ] [ CACHE ] INIT File
  1585. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000129s ]
  1586. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1587. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1588. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1589. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1590. [ info ] [ ROUTE ] array (
  1591. 'type' => 'module',
  1592. 'module' =>
  1593. array (
  1594. 0 => 'Api',
  1595. 1 => 'party',
  1596. 2 => 'getPartyRankList',
  1597. ),
  1598. )
  1599. [ info ] [ HEADER ] array (
  1600. 'accept-encoding' => 'gzip',
  1601. 'content-length' => '114',
  1602. 'content-type' => 'application/x-www-form-urlencoded',
  1603. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1604. 'accept-language' => 'zh-CN,zh;q=0.8',
  1605. 'host' => 'voicechat.lanmaonet.com',
  1606. )
  1607. [ info ] [ PARAM ] array (
  1608. 'params_from' => 'android',
  1609. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1610. 'type_id' => '',
  1611. 'all' => '1',
  1612. 'is_recommend' => '0',
  1613. 'room_type' => '1',
  1614. 'pagenum' => '6',
  1615. )
  1616. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1617. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1618. [ info ] [ TOKEN ] INIT Mysql
  1619. [ info ] [ DB ] INIT mysql
  1620. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1621. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1622. [ info ] [ LOG ] INIT File
  1623. ---------------------------------------------------------------
  1624. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1625. [运行时间:0.009863s] [吞吐率:101.39req/s] [内存消耗:631.37kb] [文件加载:146]
  1626. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000030s ]
  1627. [ info ] [ CACHE ] INIT File
  1628. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000156s ]
  1629. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  1630. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  1631. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1632. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  1633. [ info ] [ ROUTE ] array (
  1634. 'type' => 'module',
  1635. 'module' =>
  1636. array (
  1637. 0 => 'Api',
  1638. 1 => 'party',
  1639. 2 => 'getPartyRankList',
  1640. ),
  1641. )
  1642. [ info ] [ HEADER ] array (
  1643. 'accept-encoding' => 'gzip',
  1644. 'content-length' => '126',
  1645. 'content-type' => 'application/x-www-form-urlencoded',
  1646. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1647. 'accept-language' => 'zh-CN,zh;q=0.8',
  1648. 'host' => 'voicechat.lanmaonet.com',
  1649. )
  1650. [ info ] [ PARAM ] array (
  1651. 'params_from' => 'android',
  1652. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1653. 'type_id' => '0',
  1654. 'all' => '1',
  1655. 'is_recommend' => '0',
  1656. 'thispage' => '1',
  1657. 'room_type' => '2',
  1658. 'pagenum' => '6',
  1659. )
  1660. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1661. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  1662. [ info ] [ TOKEN ] INIT Mysql
  1663. [ info ] [ DB ] INIT mysql
  1664. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000074s ]
  1665. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1666. [ info ] [ LOG ] INIT File
  1667. ---------------------------------------------------------------
  1668. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1669. [运行时间:0.005077s] [吞吐率:196.96req/s] [内存消耗:572.41kb] [文件加载:145]
  1670. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1671. [ info ] [ CACHE ] INIT File
  1672. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000120s ]
  1673. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1674. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1675. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1676. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  1677. [ info ] [ ROUTE ] array (
  1678. 'type' => 'module',
  1679. 'module' =>
  1680. array (
  1681. 0 => 'Api',
  1682. 1 => 'party',
  1683. 2 => 'getPartyRankList',
  1684. ),
  1685. )
  1686. [ info ] [ HEADER ] array (
  1687. 'accept-encoding' => 'gzip',
  1688. 'content-length' => '114',
  1689. 'content-type' => 'application/x-www-form-urlencoded',
  1690. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1691. 'accept-language' => 'zh-CN,zh;q=0.8',
  1692. 'host' => 'voicechat.lanmaonet.com',
  1693. )
  1694. [ info ] [ PARAM ] array (
  1695. 'params_from' => 'android',
  1696. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1697. 'type_id' => '',
  1698. 'all' => '1',
  1699. 'is_recommend' => '1',
  1700. 'room_type' => '1',
  1701. 'pagenum' => '3',
  1702. )
  1703. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1704. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  1705. [ info ] [ TOKEN ] INIT Mysql
  1706. [ info ] [ DB ] INIT mysql
  1707. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  1708. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1709. [ info ] [ LOG ] INIT File
  1710. ---------------------------------------------------------------
  1711. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1712. [运行时间:0.005759s] [吞吐率:173.64req/s] [内存消耗:572.41kb] [文件加载:145]
  1713. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1714. [ info ] [ CACHE ] INIT File
  1715. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000136s ]
  1716. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1717. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  1718. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1719. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  1720. [ info ] [ ROUTE ] array (
  1721. 'type' => 'module',
  1722. 'module' =>
  1723. array (
  1724. 0 => 'Api',
  1725. 1 => 'party',
  1726. 2 => 'getPartyRankList',
  1727. ),
  1728. )
  1729. [ info ] [ HEADER ] array (
  1730. 'accept-encoding' => 'gzip',
  1731. 'content-length' => '114',
  1732. 'content-type' => 'application/x-www-form-urlencoded',
  1733. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1734. 'accept-language' => 'zh-CN,zh;q=0.8',
  1735. 'host' => 'voicechat.lanmaonet.com',
  1736. )
  1737. [ info ] [ PARAM ] array (
  1738. 'params_from' => 'android',
  1739. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1740. 'type_id' => '',
  1741. 'all' => '1',
  1742. 'is_recommend' => '0',
  1743. 'room_type' => '1',
  1744. 'pagenum' => '6',
  1745. )
  1746. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1747. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  1748. [ info ] [ TOKEN ] INIT Mysql
  1749. [ info ] [ DB ] INIT mysql
  1750. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  1751. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1752. [ info ] [ LOG ] INIT File
  1753. ---------------------------------------------------------------
  1754. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/party/getPatyType
  1755. [运行时间:0.005654s] [吞吐率:176.87req/s] [内存消耗:574.40kb] [文件加载:145]
  1756. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1757. [ info ] [ CACHE ] INIT File
  1758. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000104s ]
  1759. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1760. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  1761. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1762. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1763. [ info ] [ ROUTE ] array (
  1764. 'type' => 'module',
  1765. 'module' =>
  1766. array (
  1767. 0 => 'Api',
  1768. 1 => 'party',
  1769. 2 => 'getPatyType',
  1770. ),
  1771. )
  1772. [ info ] [ HEADER ] array (
  1773. 'accept-encoding' => 'gzip',
  1774. 'content-length' => '74',
  1775. 'content-type' => 'application/x-www-form-urlencoded',
  1776. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1777. 'accept-language' => 'zh-CN,zh;q=0.8',
  1778. 'host' => 'voicechat.lanmaonet.com',
  1779. )
  1780. [ info ] [ PARAM ] array (
  1781. 'params_from' => 'android',
  1782. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1783. 'room_type' => '2',
  1784. )
  1785. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1786. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  1787. [ info ] [ TOKEN ] INIT Mysql
  1788. [ info ] [ DB ] INIT mysql
  1789. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  1790. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1791. [ info ] [ LOG ] INIT File
  1792. ---------------------------------------------------------------
  1793. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1794. [运行时间:0.008342s] [吞吐率:119.87req/s] [内存消耗:631.37kb] [文件加载:146]
  1795. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1796. [ info ] [ CACHE ] INIT File
  1797. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000110s ]
  1798. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1799. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  1800. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1801. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1802. [ info ] [ ROUTE ] array (
  1803. 'type' => 'module',
  1804. 'module' =>
  1805. array (
  1806. 0 => 'Api',
  1807. 1 => 'party',
  1808. 2 => 'getPartyRankList',
  1809. ),
  1810. )
  1811. [ info ] [ HEADER ] array (
  1812. 'accept-encoding' => 'gzip',
  1813. 'content-length' => '126',
  1814. 'content-type' => 'application/x-www-form-urlencoded',
  1815. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1816. 'accept-language' => 'zh-CN,zh;q=0.8',
  1817. 'host' => 'voicechat.lanmaonet.com',
  1818. )
  1819. [ info ] [ PARAM ] array (
  1820. 'params_from' => 'android',
  1821. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1822. 'type_id' => '0',
  1823. 'all' => '1',
  1824. 'is_recommend' => '0',
  1825. 'thispage' => '1',
  1826. 'room_type' => '2',
  1827. 'pagenum' => '6',
  1828. )
  1829. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1830. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  1831. [ info ] [ TOKEN ] INIT Mysql
  1832. [ info ] [ DB ] INIT mysql
  1833. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  1834. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1835. [ info ] [ LOG ] INIT File
  1836. ---------------------------------------------------------------
  1837. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  1838. [运行时间:0.004235s] [吞吐率:236.13req/s] [内存消耗:529.36kb] [文件加载:139]
  1839. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1840. [ info ] [ CACHE ] INIT File
  1841. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000111s ]
  1842. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1843. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1844. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1845. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  1846. [ info ] [ ROUTE ] array (
  1847. 'type' => 'module',
  1848. 'module' =>
  1849. array (
  1850. 0 => 'api',
  1851. 1 => 'userCenter',
  1852. 2 => 'getMyUserInfo',
  1853. ),
  1854. )
  1855. [ info ] [ HEADER ] array (
  1856. 'accept-encoding' => 'gzip',
  1857. 'content-length' => '73',
  1858. 'content-type' => 'application/x-www-form-urlencoded',
  1859. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1860. 'accept-language' => 'zh-CN,zh;q=0.8',
  1861. 'host' => 'voicechat.lanmaonet.com',
  1862. )
  1863. [ info ] [ PARAM ] array (
  1864. 'params_from' => 'android',
  1865. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1866. 'user_id' => '15',
  1867. )
  1868. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1869. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1870. [ info ] [ TOKEN ] INIT Mysql
  1871. [ info ] [ DB ] INIT mysql
  1872. [ info ] [ LOG ] INIT File
  1873. ---------------------------------------------------------------
  1874. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  1875. [运行时间:0.004253s] [吞吐率:235.12req/s] [内存消耗:529.36kb] [文件加载:139]
  1876. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1877. [ info ] [ CACHE ] INIT File
  1878. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000118s ]
  1879. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1880. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1881. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1882. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  1883. [ info ] [ ROUTE ] array (
  1884. 'type' => 'module',
  1885. 'module' =>
  1886. array (
  1887. 0 => 'api',
  1888. 1 => 'userCenter',
  1889. 2 => 'getMyUserInfo',
  1890. ),
  1891. )
  1892. [ info ] [ HEADER ] array (
  1893. 'accept-encoding' => 'gzip',
  1894. 'content-length' => '73',
  1895. 'content-type' => 'application/x-www-form-urlencoded',
  1896. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1897. 'accept-language' => 'zh-CN,zh;q=0.8',
  1898. 'host' => 'voicechat.lanmaonet.com',
  1899. )
  1900. [ info ] [ PARAM ] array (
  1901. 'params_from' => 'android',
  1902. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1903. 'user_id' => '15',
  1904. )
  1905. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1906. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  1907. [ info ] [ TOKEN ] INIT Mysql
  1908. [ info ] [ DB ] INIT mysql
  1909. [ info ] [ LOG ] INIT File
  1910. ---------------------------------------------------------------
  1911. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/party/getPatyType
  1912. [运行时间:0.005622s] [吞吐率:177.88req/s] [内存消耗:574.12kb] [文件加载:145]
  1913. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1914. [ info ] [ CACHE ] INIT File
  1915. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000108s ]
  1916. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1917. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  1918. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1919. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  1920. [ info ] [ ROUTE ] array (
  1921. 'type' => 'module',
  1922. 'module' =>
  1923. array (
  1924. 0 => 'Api',
  1925. 1 => 'party',
  1926. 2 => 'getPatyType',
  1927. ),
  1928. )
  1929. [ info ] [ HEADER ] array (
  1930. 'accept-encoding' => 'gzip',
  1931. 'content-length' => '62',
  1932. 'content-type' => 'application/x-www-form-urlencoded',
  1933. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1934. 'accept-language' => 'zh-CN,zh;q=0.8',
  1935. 'host' => 'voicechat.lanmaonet.com',
  1936. )
  1937. [ info ] [ PARAM ] array (
  1938. 'params_from' => 'android',
  1939. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1940. )
  1941. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1942. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000043s ]
  1943. [ info ] [ TOKEN ] INIT Mysql
  1944. [ info ] [ DB ] INIT mysql
  1945. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1946. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1947. [ info ] [ LOG ] INIT File
  1948. ---------------------------------------------------------------
  1949. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/index/getMessage
  1950. [运行时间:0.004060s] [吞吐率:246.30req/s] [内存消耗:527.38kb] [文件加载:139]
  1951. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1952. [ info ] [ CACHE ] INIT File
  1953. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000132s ]
  1954. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1955. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1956. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1957. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  1958. [ info ] [ ROUTE ] array (
  1959. 'type' => 'module',
  1960. 'module' =>
  1961. array (
  1962. 0 => 'Api',
  1963. 1 => 'index',
  1964. 2 => 'getMessage',
  1965. ),
  1966. )
  1967. [ info ] [ HEADER ] array (
  1968. 'accept-encoding' => 'gzip',
  1969. 'content-length' => '69',
  1970. 'content-type' => 'application/x-www-form-urlencoded',
  1971. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1972. 'accept-language' => 'zh-CN,zh;q=0.8',
  1973. 'host' => 'voicechat.lanmaonet.com',
  1974. )
  1975. [ info ] [ PARAM ] array (
  1976. 'params_from' => 'android',
  1977. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  1978. 'flag' => '1',
  1979. )
  1980. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1981. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1982. [ info ] [ TOKEN ] INIT Mysql
  1983. [ info ] [ DB ] INIT mysql
  1984. [ info ] [ LOG ] INIT File
  1985. ---------------------------------------------------------------
  1986. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  1987. [运行时间:0.004119s] [吞吐率:242.78req/s] [内存消耗:530.88kb] [文件加载:140]
  1988. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1989. [ info ] [ CACHE ] INIT File
  1990. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000160s ]
  1991. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1992. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1993. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1994. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  1995. [ info ] [ ROUTE ] array (
  1996. 'type' => 'module',
  1997. 'module' =>
  1998. array (
  1999. 0 => 'Api',
  2000. 1 => 'userCenter',
  2001. 2 => 'getFollowsLive',
  2002. ),
  2003. )
  2004. [ info ] [ HEADER ] array (
  2005. 'accept-encoding' => 'gzip',
  2006. 'content-length' => '91',
  2007. 'content-type' => 'application/x-www-form-urlencoded',
  2008. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2009. 'accept-language' => 'zh-CN,zh;q=0.8',
  2010. 'host' => 'voicechat.lanmaonet.com',
  2011. )
  2012. [ info ] [ PARAM ] array (
  2013. 'params_from' => 'android',
  2014. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  2015. 'is_online' => '1',
  2016. 'page' => '1',
  2017. 'pageNum' => '3',
  2018. )
  2019. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2020. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2021. [ info ] [ TOKEN ] INIT Mysql
  2022. [ info ] [ DB ] INIT mysql
  2023. [ info ] [ LOG ] INIT File
  2024. ---------------------------------------------------------------
  2025. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  2026. [运行时间:0.004064s] [吞吐率:246.07req/s] [内存消耗:530.88kb] [文件加载:140]
  2027. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2028. [ info ] [ CACHE ] INIT File
  2029. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000138s ]
  2030. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2031. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  2032. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2033. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  2034. [ info ] [ ROUTE ] array (
  2035. 'type' => 'module',
  2036. 'module' =>
  2037. array (
  2038. 0 => 'Api',
  2039. 1 => 'userCenter',
  2040. 2 => 'getFollowsLive',
  2041. ),
  2042. )
  2043. [ info ] [ HEADER ] array (
  2044. 'accept-encoding' => 'gzip',
  2045. 'content-length' => '91',
  2046. 'content-type' => 'application/x-www-form-urlencoded',
  2047. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2048. 'accept-language' => 'zh-CN,zh;q=0.8',
  2049. 'host' => 'voicechat.lanmaonet.com',
  2050. )
  2051. [ info ] [ PARAM ] array (
  2052. 'params_from' => 'android',
  2053. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  2054. 'is_online' => '0',
  2055. 'page' => '1',
  2056. 'pageNum' => '2',
  2057. )
  2058. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2059. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  2060. [ info ] [ TOKEN ] INIT Mysql
  2061. [ info ] [ DB ] INIT mysql
  2062. [ info ] [ LOG ] INIT File
  2063. ---------------------------------------------------------------
  2064. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/party/cellectionPartyList
  2065. [运行时间:0.004156s] [吞吐率:240.62req/s] [内存消耗:530.84kb] [文件加载:140]
  2066. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2067. [ info ] [ CACHE ] INIT File
  2068. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000128s ]
  2069. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  2070. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2071. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2072. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  2073. [ info ] [ ROUTE ] array (
  2074. 'type' => 'module',
  2075. 'module' =>
  2076. array (
  2077. 0 => 'Api',
  2078. 1 => 'party',
  2079. 2 => 'cellectionPartyList',
  2080. ),
  2081. )
  2082. [ info ] [ HEADER ] array (
  2083. 'accept-encoding' => 'gzip',
  2084. 'content-length' => '79',
  2085. 'content-type' => 'application/x-www-form-urlencoded',
  2086. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2087. 'accept-language' => 'zh-CN,zh;q=0.8',
  2088. 'host' => 'voicechat.lanmaonet.com',
  2089. )
  2090. [ info ] [ PARAM ] array (
  2091. 'params_from' => 'android',
  2092. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  2093. 'page' => '1',
  2094. 'pageNum' => '2',
  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.000047s ]
  2098. [ info ] [ TOKEN ] INIT Mysql
  2099. [ info ] [ DB ] INIT mysql
  2100. [ info ] [ LOG ] INIT File
  2101. ---------------------------------------------------------------
  2102. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  2103. [运行时间:0.004172s] [吞吐率:239.70req/s] [内存消耗:527.47kb] [文件加载:139]
  2104. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2105. [ info ] [ CACHE ] INIT File
  2106. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000118s ]
  2107. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2108. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2109. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2110. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2111. [ info ] [ ROUTE ] array (
  2112. 'type' => 'module',
  2113. 'module' =>
  2114. array (
  2115. 0 => 'Api',
  2116. 1 => 'dynamic',
  2117. 2 => 'getDynamicList',
  2118. ),
  2119. )
  2120. [ info ] [ HEADER ] array (
  2121. 'accept-encoding' => 'gzip',
  2122. 'content-length' => '76',
  2123. 'content-type' => 'application/x-www-form-urlencoded',
  2124. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2125. 'accept-language' => 'zh-CN,zh;q=0.8',
  2126. 'host' => 'voicechat.lanmaonet.com',
  2127. )
  2128. [ info ] [ PARAM ] array (
  2129. 'params_from' => 'android',
  2130. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  2131. 'type' => '1',
  2132. 'page' => '1',
  2133. )
  2134. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2135. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  2136. [ info ] [ TOKEN ] INIT Mysql
  2137. [ info ] [ DB ] INIT mysql
  2138. [ info ] [ LOG ] INIT File
  2139. ---------------------------------------------------------------
  2140. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2141. [运行时间:0.004334s] [吞吐率:230.74req/s] [内存消耗:529.36kb] [文件加载:139]
  2142. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2143. [ info ] [ CACHE ] INIT File
  2144. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000130s ]
  2145. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000053s ]
  2146. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000070s ]
  2147. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2148. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  2149. [ info ] [ ROUTE ] array (
  2150. 'type' => 'module',
  2151. 'module' =>
  2152. array (
  2153. 0 => 'api',
  2154. 1 => 'userCenter',
  2155. 2 => 'getMyUserInfo',
  2156. ),
  2157. )
  2158. [ info ] [ HEADER ] array (
  2159. 'accept-encoding' => 'gzip',
  2160. 'content-length' => '73',
  2161. 'content-type' => 'application/x-www-form-urlencoded',
  2162. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2163. 'accept-language' => 'zh-CN,zh;q=0.8',
  2164. 'host' => 'voicechat.lanmaonet.com',
  2165. )
  2166. [ info ] [ PARAM ] array (
  2167. 'params_from' => 'android',
  2168. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  2169. 'user_id' => '15',
  2170. )
  2171. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2172. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  2173. [ info ] [ TOKEN ] INIT Mysql
  2174. [ info ] [ DB ] INIT mysql
  2175. [ info ] [ LOG ] INIT File
  2176. ---------------------------------------------------------------
  2177. [ 2023-02-01T21:43:56+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  2178. [运行时间:0.004400s] [吞吐率:227.27req/s] [内存消耗:527.47kb] [文件加载:139]
  2179. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2180. [ info ] [ CACHE ] INIT File
  2181. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  2182. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  2183. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  2184. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2185. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2186. [ info ] [ ROUTE ] array (
  2187. 'type' => 'module',
  2188. 'module' =>
  2189. array (
  2190. 0 => 'Api',
  2191. 1 => 'dynamic',
  2192. 2 => 'getDynamicList',
  2193. ),
  2194. )
  2195. [ info ] [ HEADER ] array (
  2196. 'accept-encoding' => 'gzip',
  2197. 'content-length' => '76',
  2198. 'content-type' => 'application/x-www-form-urlencoded',
  2199. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2200. 'accept-language' => 'zh-CN,zh;q=0.8',
  2201. 'host' => 'voicechat.lanmaonet.com',
  2202. )
  2203. [ info ] [ PARAM ] array (
  2204. 'params_from' => 'android',
  2205. 'token' => 'f176e6a9-ed19-4415-ad61-82854fc31757',
  2206. 'type' => '2',
  2207. 'page' => '1',
  2208. )
  2209. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2210. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  2211. [ info ] [ TOKEN ] INIT Mysql
  2212. [ info ] [ DB ] INIT mysql
  2213. [ info ] [ LOG ] INIT File
  2214. ---------------------------------------------------------------
  2215. [ 2023-02-01T21:43:57+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  2216. [运行时间:0.004810s] [吞吐率:207.90req/s] [内存消耗:565.07kb] [文件加载:142]
  2217. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2218. [ info ] [ CACHE ] INIT File
  2219. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000133s ]
  2220. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2221. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2222. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2223. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  2224. [ info ] [ ROUTE ] array (
  2225. 'type' => 'module',
  2226. 'module' =>
  2227. array (
  2228. 0 => 'Api',
  2229. 1 => 'dispatch',
  2230. 2 => 'getSkillList',
  2231. ),
  2232. )
  2233. [ info ] [ HEADER ] array (
  2234. 'accept-encoding' => 'gzip',
  2235. 'content-length' => '0',
  2236. 'content-type' => 'application/x-www-form-urlencoded',
  2237. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2238. 'accept-language' => 'zh-CN,zh;q=0.8',
  2239. 'host' => 'voicechat.lanmaonet.com',
  2240. )
  2241. [ info ] [ PARAM ] array (
  2242. )
  2243. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2244. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  2245. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  2246. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  2247. [ info ] [ DB ] INIT mysql
  2248. [ info ] [ LOG ] INIT File
  2249. ---------------------------------------------------------------
  2250. [ 2023-02-01T21:43:57+08:00 ] 112.8.59.100 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  2251. [运行时间:0.004822s] [吞吐率:207.38req/s] [内存消耗:565.07kb] [文件加载:142]
  2252. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  2253. [ info ] [ CACHE ] INIT File
  2254. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000140s ]
  2255. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  2256. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  2257. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2258. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  2259. [ info ] [ ROUTE ] array (
  2260. 'type' => 'module',
  2261. 'module' =>
  2262. array (
  2263. 0 => 'Api',
  2264. 1 => 'dispatch',
  2265. 2 => 'getSkillList',
  2266. ),
  2267. )
  2268. [ info ] [ HEADER ] array (
  2269. 'accept-encoding' => 'gzip',
  2270. 'content-length' => '0',
  2271. 'content-type' => 'application/x-www-form-urlencoded',
  2272. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2273. 'accept-language' => 'zh-CN,zh;q=0.8',
  2274. 'host' => 'voicechat.lanmaonet.com',
  2275. )
  2276. [ info ] [ PARAM ] array (
  2277. )
  2278. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2279. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  2280. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000047s ]
  2281. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  2282. [ info ] [ DB ] INIT mysql
  2283. [ info ] [ LOG ] INIT File