13.log 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625
  1. ---------------------------------------------------------------
  2. [ 2021-12-13T05:56:52+08:00 ] 40.77.167.80 GET voicechat.lanmaonet.com/
  3. [运行时间:0.028244s] [吞吐率:35.41req/s] [内存消耗:468.57kb] [文件加载:135]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000260s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  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.000056s ]
  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 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  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-type' => '',
  29. 'content-length' => '',
  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.000074s ]
  35. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000069s ]
  36. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000041s ]
  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. [ 2021-12-13T08:23:38+08:00 ] 40.77.167.71 GET voicechat.lanmaonet.com/
  47. [运行时间:0.005210s] [吞吐率:191.93req/s] [内存消耗:468.62kb] [文件加载:135]
  48. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  49. [ info ] [ CACHE ] INIT File
  50. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000240s ]
  51. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  52. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  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.000035s ]
  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 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  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-type' => '',
  74. 'content-length' => '',
  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.000065s ]
  80. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  81. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000033s ]
  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. [ 2021-12-13T10:02:06+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  92. [运行时间:0.010123s] [吞吐率:98.78req/s] [内存消耗:338.22kb] [文件加载:123]
  93. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  94. [ info ] [ CACHE ] INIT File
  95. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000304s ]
  96. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  97. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  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.000039s ]
  100. [ info ] [ ROUTE ] array (
  101. 'type' => 'module',
  102. 'module' =>
  103. array (
  104. 0 => 'apple-app-site-association',
  105. 1 => NULL,
  106. 2 => NULL,
  107. ),
  108. )
  109. [ info ] [ HEADER ] array (
  110. 'accept-encoding' => 'gzip',
  111. 'user-agent' => 'AASA-Bot/1.0.0',
  112. 'host' => 'voicechat.lanmaonet.com',
  113. 'content-type' => '',
  114. 'content-length' => '',
  115. )
  116. [ info ] [ PARAM ] array (
  117. )
  118. [ info ] [ LOG ] INIT File
  119. ---------------------------------------------------------------
  120. [ 2021-12-13T14:19:11+08:00 ] 3.121.247.33 GET voicechat.lanmaonet.com/apple-app-site-association
  121. [运行时间:0.018408s] [吞吐率:54.32req/s] [内存消耗:338.22kb] [文件加载:123]
  122. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  123. [ info ] [ CACHE ] INIT File
  124. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000256s ]
  125. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  126. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  127. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  128. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  129. [ info ] [ ROUTE ] array (
  130. 'type' => 'module',
  131. 'module' =>
  132. array (
  133. 0 => 'apple-app-site-association',
  134. 1 => NULL,
  135. 2 => NULL,
  136. ),
  137. )
  138. [ info ] [ HEADER ] array (
  139. 'accept-encoding' => 'gzip',
  140. 'user-agent' => 'AASA-Bot/1.0.0',
  141. 'host' => 'voicechat.lanmaonet.com',
  142. 'content-type' => '',
  143. 'content-length' => '',
  144. )
  145. [ info ] [ PARAM ] array (
  146. )
  147. [ info ] [ LOG ] INIT File
  148. ---------------------------------------------------------------
  149. [ 2021-12-13T14:30:49+08:00 ] 213.180.203.23 GET voicechat.lanmaonet.com/
  150. [运行时间:0.013423s] [吞吐率:74.50req/s] [内存消耗:448.22kb] [文件加载:132]
  151. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  152. [ info ] [ CACHE ] INIT File
  153. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000233s ]
  154. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  155. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  156. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  157. [ info ] [ ROUTE ] array (
  158. 'type' => 'module',
  159. 'module' =>
  160. array (
  161. 0 => '',
  162. 1 => NULL,
  163. 2 => NULL,
  164. ),
  165. )
  166. [ info ] [ HEADER ] array (
  167. 'accept' => '*/*',
  168. 'accept-language' => 'ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01',
  169. 'accept-encoding' => 'gzip,deflate',
  170. 'from' => 'support@search.yandex.ru',
  171. 'user-agent' => 'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',
  172. 'connection' => 'Keep-Alive',
  173. 'host' => 'voicechat.lanmaonet.com',
  174. 'content-type' => '',
  175. 'content-length' => '',
  176. )
  177. [ info ] [ PARAM ] array (
  178. )
  179. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000128s ]
  180. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  181. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000046s ]
  182. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  183. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  184. 0 => 'user',
  185. 1 => 'site',
  186. 2 => 'config',
  187. ) ]
  188. [ info ] [ LOG ] INIT File
  189. ---------------------------------------------------------------
  190. [ 2021-12-13T14:30:50+08:00 ] 141.8.142.78 GET voicechat.lanmaonet.com/
  191. [运行时间:0.002854s] [吞吐率:350.37req/s] [内存消耗:448.22kb] [文件加载:132]
  192. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  193. [ info ] [ CACHE ] INIT File
  194. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  195. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  196. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  197. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000016s ]
  198. [ info ] [ ROUTE ] array (
  199. 'type' => 'module',
  200. 'module' =>
  201. array (
  202. 0 => '',
  203. 1 => NULL,
  204. 2 => NULL,
  205. ),
  206. )
  207. [ info ] [ HEADER ] array (
  208. 'accept' => '*/*',
  209. 'accept-language' => 'ru, uk;q=0.8, be;q=0.8, en;q=0.7, *;q=0.01',
  210. 'accept-encoding' => 'gzip,deflate',
  211. 'from' => 'support@search.yandex.ru',
  212. 'user-agent' => 'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',
  213. 'connection' => 'Keep-Alive',
  214. 'host' => 'voicechat.lanmaonet.com',
  215. 'content-type' => '',
  216. 'content-length' => '',
  217. )
  218. [ info ] [ PARAM ] array (
  219. )
  220. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  221. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  222. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000023s ]
  223. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  224. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  225. 0 => 'user',
  226. 1 => 'site',
  227. 2 => 'config',
  228. ) ]
  229. [ info ] [ LOG ] INIT File
  230. ---------------------------------------------------------------
  231. [ 2021-12-13T14:53:04+08:00 ] 3.127.119.25 GET voicechat.lanmaonet.com/apple-app-site-association
  232. [运行时间:0.003959s] [吞吐率:252.59req/s] [内存消耗:338.22kb] [文件加载:123]
  233. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  234. [ info ] [ CACHE ] INIT File
  235. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000190s ]
  236. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  237. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  238. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  239. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  240. [ info ] [ ROUTE ] array (
  241. 'type' => 'module',
  242. 'module' =>
  243. array (
  244. 0 => 'apple-app-site-association',
  245. 1 => NULL,
  246. 2 => NULL,
  247. ),
  248. )
  249. [ info ] [ HEADER ] array (
  250. 'accept-encoding' => 'gzip',
  251. 'user-agent' => 'AASA-Bot/1.0.0',
  252. 'host' => 'voicechat.lanmaonet.com',
  253. 'content-type' => '',
  254. 'content-length' => '',
  255. )
  256. [ info ] [ PARAM ] array (
  257. )
  258. [ info ] [ LOG ] INIT File
  259. ---------------------------------------------------------------
  260. [ 2021-12-13T17:12:57+08:00 ] 54.222.162.101 GET voicechat.lanmaonet.com/
  261. [运行时间:0.005154s] [吞吐率:194.03req/s] [内存消耗:448.62kb] [文件加载:132]
  262. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  263. [ info ] [ CACHE ] INIT File
  264. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000274s ]
  265. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000050s ]
  266. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000068s ]
  267. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000054s ]
  268. [ info ] [ ROUTE ] array (
  269. 'type' => 'module',
  270. 'module' =>
  271. array (
  272. 0 => '',
  273. 1 => NULL,
  274. 2 => NULL,
  275. ),
  276. )
  277. [ info ] [ HEADER ] array (
  278. 'connection' => 'Keep-Alive',
  279. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
  280. 'accept-encoding' => 'gzip, deflate',
  281. 'accept-language' => 'zh,zh-CN;q=0.9',
  282. 'user-agent' => 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.8148.1007 Mobile Safari/537.36',
  283. 'upgrade-insecure-requests' => '1',
  284. 'host' => 'voicechat.lanmaonet.com',
  285. 'content-type' => '',
  286. 'content-length' => '',
  287. )
  288. [ info ] [ PARAM ] array (
  289. )
  290. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000072s ]
  291. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  292. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000034s ]
  293. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  294. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  295. 0 => 'user',
  296. 1 => 'site',
  297. 2 => 'config',
  298. ) ]
  299. [ info ] [ LOG ] INIT File
  300. ---------------------------------------------------------------
  301. [ 2021-12-13T18:26:04+08:00 ] 40.77.167.80 GET voicechat.lanmaonet.com/
  302. [运行时间:0.012557s] [吞吐率:79.64req/s] [内存消耗:468.58kb] [文件加载:135]
  303. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  304. [ info ] [ CACHE ] INIT File
  305. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000219s ]
  306. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  307. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  308. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  309. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  310. [ info ] [ ROUTE ] array (
  311. 'type' => 'module',
  312. 'module' =>
  313. array (
  314. 0 => '',
  315. 1 => NULL,
  316. 2 => NULL,
  317. ),
  318. )
  319. [ info ] [ HEADER ] array (
  320. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  321. 'from' => 'bingbot(at)microsoft.com',
  322. 'accept-encoding' => 'gzip, deflate',
  323. 'accept' => '*/*',
  324. 'pragma' => 'no-cache',
  325. 'cache-control' => 'no-cache',
  326. 'host' => 'voicechat.lanmaonet.com',
  327. 'content-type' => '',
  328. 'content-length' => '',
  329. )
  330. [ info ] [ PARAM ] array (
  331. )
  332. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  333. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  334. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  335. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000042s ]
  336. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  337. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  338. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  339. 0 => 'user',
  340. 1 => 'site',
  341. 2 => 'config',
  342. ) ]
  343. [ info ] [ LOG ] INIT File
  344. ---------------------------------------------------------------
  345. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/index/getSwitch
  346. [运行时间:0.035305s] [吞吐率:28.32req/s] [内存消耗:632.95kb] [文件加载:143]
  347. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  348. [ info ] [ CACHE ] INIT File
  349. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000309s ]
  350. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000052s ]
  351. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000074s ]
  352. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  353. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000059s ]
  354. [ info ] [ ROUTE ] array (
  355. 'type' => 'module',
  356. 'module' =>
  357. array (
  358. 0 => 'api',
  359. 1 => 'index',
  360. 2 => 'getSwitch',
  361. ),
  362. )
  363. [ info ] [ HEADER ] array (
  364. 'accept-encoding' => 'gzip',
  365. 'content-length' => '62',
  366. 'content-type' => 'application/x-www-form-urlencoded',
  367. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  368. 'accept-language' => 'zh-CN,zh;q=0.8',
  369. 'host' => 'voicechat.lanmaonet.com',
  370. )
  371. [ info ] [ PARAM ] array (
  372. 'params_from' => 'android',
  373. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  374. )
  375. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  376. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  377. [ info ] [ TOKEN ] INIT Mysql
  378. [ info ] [ DB ] INIT mysql
  379. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000079s ]
  380. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  381. [ info ] [ LOG ] INIT File
  382. ---------------------------------------------------------------
  383. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/tenim/getUsersig
  384. [运行时间:0.034673s] [吞吐率:28.84req/s] [内存消耗:634.29kb] [文件加载:144]
  385. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  386. [ info ] [ CACHE ] INIT File
  387. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000161s ]
  388. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  389. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  390. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  391. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  392. [ info ] [ ROUTE ] array (
  393. 'type' => 'module',
  394. 'module' =>
  395. array (
  396. 0 => 'api',
  397. 1 => 'tenim',
  398. 2 => 'getUsersig',
  399. ),
  400. )
  401. [ info ] [ HEADER ] array (
  402. 'accept-encoding' => 'gzip',
  403. 'content-length' => '62',
  404. 'content-type' => 'application/x-www-form-urlencoded',
  405. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  406. 'accept-language' => 'zh-CN,zh;q=0.8',
  407. 'host' => 'voicechat.lanmaonet.com',
  408. )
  409. [ info ] [ PARAM ] array (
  410. 'params_from' => 'android',
  411. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  412. )
  413. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  414. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  415. [ info ] [ TOKEN ] INIT Mysql
  416. [ info ] [ DB ] INIT mysql
  417. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  418. [ info ] [ RUN ] app\api\controller\Tenim->getUsersig[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  419. [ info ] [ LOG ] INIT File
  420. ---------------------------------------------------------------
  421. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/index/getEdition
  422. [运行时间:0.007110s] [吞吐率:140.64req/s] [内存消耗:632.95kb] [文件加载:143]
  423. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  424. [ info ] [ CACHE ] INIT File
  425. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000139s ]
  426. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000057s ]
  427. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000076s ]
  428. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  429. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  430. [ info ] [ ROUTE ] array (
  431. 'type' => 'module',
  432. 'module' =>
  433. array (
  434. 0 => 'api',
  435. 1 => 'index',
  436. 2 => 'getEdition',
  437. ),
  438. )
  439. [ info ] [ HEADER ] array (
  440. 'accept-encoding' => 'gzip',
  441. 'content-length' => '62',
  442. 'content-type' => 'application/x-www-form-urlencoded',
  443. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  444. 'accept-language' => 'zh-CN,zh;q=0.8',
  445. 'host' => 'voicechat.lanmaonet.com',
  446. )
  447. [ info ] [ PARAM ] array (
  448. 'params_from' => 'android',
  449. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  450. )
  451. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  452. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  453. [ info ] [ TOKEN ] INIT Mysql
  454. [ info ] [ DB ] INIT mysql
  455. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  456. [ info ] [ RUN ] app\api\controller\Index->getEdition[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  457. [ info ] [ LOG ] INIT File
  458. ---------------------------------------------------------------
  459. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  460. [运行时间:0.049697s] [吞吐率:20.12req/s] [内存消耗:731.23kb] [文件加载:147]
  461. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  462. [ info ] [ CACHE ] INIT File
  463. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000095s ]
  464. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000024s ]
  465. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000036s ]
  466. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  467. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000016s ]
  468. [ info ] [ ROUTE ] array (
  469. 'type' => 'module',
  470. 'module' =>
  471. array (
  472. 0 => 'api',
  473. 1 => 'userCenter',
  474. 2 => 'getMyUserInfo',
  475. ),
  476. )
  477. [ info ] [ HEADER ] array (
  478. 'accept-encoding' => 'gzip',
  479. 'content-length' => '73',
  480. 'content-type' => 'application/x-www-form-urlencoded',
  481. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  482. 'accept-language' => 'zh-CN,zh;q=0.8',
  483. 'host' => 'voicechat.lanmaonet.com',
  484. )
  485. [ info ] [ PARAM ] array (
  486. 'params_from' => 'android',
  487. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  488. 'user_id' => '15',
  489. )
  490. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  491. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000103s ]
  492. [ info ] [ TOKEN ] INIT Mysql
  493. [ info ] [ DB ] INIT mysql
  494. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000076s ]
  495. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  496. [ info ] [ LOG ] INIT File
  497. ---------------------------------------------------------------
  498. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  499. [运行时间:0.059259s] [吞吐率:16.88req/s] [内存消耗:714.02kb] [文件加载:146]
  500. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000031s ]
  501. [ info ] [ CACHE ] INIT File
  502. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000129s ]
  503. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000026s ]
  504. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  505. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  506. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  507. [ info ] [ ROUTE ] array (
  508. 'type' => 'module',
  509. 'module' =>
  510. array (
  511. 0 => 'Api',
  512. 1 => 'party',
  513. 2 => 'getPartyRankList',
  514. ),
  515. )
  516. [ info ] [ HEADER ] array (
  517. 'accept-encoding' => 'gzip',
  518. 'content-length' => '114',
  519. 'content-type' => 'application/x-www-form-urlencoded',
  520. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  521. 'accept-language' => 'zh-CN,zh;q=0.8',
  522. 'host' => 'voicechat.lanmaonet.com',
  523. )
  524. [ info ] [ PARAM ] array (
  525. 'params_from' => 'android',
  526. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  527. 'type_id' => '',
  528. 'all' => '1',
  529. 'is_recommend' => '1',
  530. 'room_type' => '1',
  531. 'pagenum' => '3',
  532. )
  533. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  534. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000103s ]
  535. [ info ] [ TOKEN ] INIT Mysql
  536. [ info ] [ DB ] INIT mysql
  537. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  538. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  539. [ info ] [ LOG ] INIT File
  540. ---------------------------------------------------------------
  541. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  542. [运行时间:0.011562s] [吞吐率:86.49req/s] [内存消耗:714.40kb] [文件加载:146]
  543. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  544. [ info ] [ CACHE ] INIT File
  545. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000168s ]
  546. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  547. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  548. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  549. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  550. [ info ] [ ROUTE ] array (
  551. 'type' => 'module',
  552. 'module' =>
  553. array (
  554. 0 => 'Api',
  555. 1 => 'party',
  556. 2 => 'getPartyRankList',
  557. ),
  558. )
  559. [ info ] [ HEADER ] array (
  560. 'accept-encoding' => 'gzip',
  561. 'content-length' => '126',
  562. 'content-type' => 'application/x-www-form-urlencoded',
  563. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  564. 'accept-language' => 'zh-CN,zh;q=0.8',
  565. 'host' => 'voicechat.lanmaonet.com',
  566. )
  567. [ info ] [ PARAM ] array (
  568. 'params_from' => 'android',
  569. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  570. 'type_id' => '0',
  571. 'all' => '1',
  572. 'is_recommend' => '0',
  573. 'thispage' => '1',
  574. 'room_type' => '2',
  575. 'pagenum' => '6',
  576. )
  577. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  578. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  579. [ info ] [ TOKEN ] INIT Mysql
  580. [ info ] [ DB ] INIT mysql
  581. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  582. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  583. [ info ] [ LOG ] INIT File
  584. ---------------------------------------------------------------
  585. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/index/getSwitch
  586. [运行时间:0.011498s] [吞吐率:86.97req/s] [内存消耗:632.95kb] [文件加载:143]
  587. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  588. [ info ] [ CACHE ] INIT File
  589. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  590. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  591. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  592. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  593. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  594. [ info ] [ ROUTE ] array (
  595. 'type' => 'module',
  596. 'module' =>
  597. array (
  598. 0 => 'api',
  599. 1 => 'index',
  600. 2 => 'getSwitch',
  601. ),
  602. )
  603. [ info ] [ HEADER ] array (
  604. 'accept-encoding' => 'gzip',
  605. 'content-length' => '62',
  606. 'content-type' => 'application/x-www-form-urlencoded',
  607. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  608. 'accept-language' => 'zh-CN,zh;q=0.8',
  609. 'host' => 'voicechat.lanmaonet.com',
  610. )
  611. [ info ] [ PARAM ] array (
  612. 'params_from' => 'android',
  613. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  614. )
  615. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  616. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  617. [ info ] [ TOKEN ] INIT Mysql
  618. [ info ] [ DB ] INIT mysql
  619. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  620. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  621. [ info ] [ LOG ] INIT File
  622. ---------------------------------------------------------------
  623. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  624. [运行时间:0.011681s] [吞吐率:85.61req/s] [内存消耗:714.02kb] [文件加载:146]
  625. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000031s ]
  626. [ info ] [ CACHE ] INIT File
  627. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000147s ]
  628. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  629. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  630. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  631. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  632. [ info ] [ ROUTE ] array (
  633. 'type' => 'module',
  634. 'module' =>
  635. array (
  636. 0 => 'Api',
  637. 1 => 'party',
  638. 2 => 'getPartyRankList',
  639. ),
  640. )
  641. [ info ] [ HEADER ] array (
  642. 'accept-encoding' => 'gzip',
  643. 'content-length' => '114',
  644. 'content-type' => 'application/x-www-form-urlencoded',
  645. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  646. 'accept-language' => 'zh-CN,zh;q=0.8',
  647. 'host' => 'voicechat.lanmaonet.com',
  648. )
  649. [ info ] [ PARAM ] array (
  650. 'params_from' => 'android',
  651. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  652. 'type_id' => '',
  653. 'all' => '1',
  654. 'is_recommend' => '1',
  655. 'room_type' => '1',
  656. 'pagenum' => '3',
  657. )
  658. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  659. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  660. [ info ] [ TOKEN ] INIT Mysql
  661. [ info ] [ DB ] INIT mysql
  662. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  663. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  664. [ info ] [ LOG ] INIT File
  665. ---------------------------------------------------------------
  666. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  667. [运行时间:0.014974s] [吞吐率:66.78req/s] [内存消耗:714.02kb] [文件加载:146]
  668. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  669. [ info ] [ CACHE ] INIT File
  670. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000155s ]
  671. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  672. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  673. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  674. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  675. [ info ] [ ROUTE ] array (
  676. 'type' => 'module',
  677. 'module' =>
  678. array (
  679. 0 => 'Api',
  680. 1 => 'party',
  681. 2 => 'getPartyRankList',
  682. ),
  683. )
  684. [ info ] [ HEADER ] array (
  685. 'accept-encoding' => 'gzip',
  686. 'content-length' => '114',
  687. 'content-type' => 'application/x-www-form-urlencoded',
  688. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  689. 'accept-language' => 'zh-CN,zh;q=0.8',
  690. 'host' => 'voicechat.lanmaonet.com',
  691. )
  692. [ info ] [ PARAM ] array (
  693. 'params_from' => 'android',
  694. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  695. 'type_id' => '',
  696. 'all' => '1',
  697. 'is_recommend' => '0',
  698. 'room_type' => '1',
  699. 'pagenum' => '6',
  700. )
  701. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  702. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  703. [ info ] [ TOKEN ] INIT Mysql
  704. [ info ] [ DB ] INIT mysql
  705. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  706. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  707. [ info ] [ LOG ] INIT File
  708. ---------------------------------------------------------------
  709. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  710. [运行时间:0.006069s] [吞吐率:164.77req/s] [内存消耗:714.02kb] [文件加载:146]
  711. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  712. [ info ] [ CACHE ] INIT File
  713. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000135s ]
  714. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  715. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  716. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  717. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  718. [ info ] [ ROUTE ] array (
  719. 'type' => 'module',
  720. 'module' =>
  721. array (
  722. 0 => 'Api',
  723. 1 => 'party',
  724. 2 => 'getPartyRankList',
  725. ),
  726. )
  727. [ info ] [ HEADER ] array (
  728. 'accept-encoding' => 'gzip',
  729. 'content-length' => '114',
  730. 'content-type' => 'application/x-www-form-urlencoded',
  731. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  732. 'accept-language' => 'zh-CN,zh;q=0.8',
  733. 'host' => 'voicechat.lanmaonet.com',
  734. )
  735. [ info ] [ PARAM ] array (
  736. 'params_from' => 'android',
  737. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  738. 'type_id' => '',
  739. 'all' => '1',
  740. 'is_recommend' => '0',
  741. 'room_type' => '1',
  742. 'pagenum' => '6',
  743. )
  744. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  745. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  746. [ info ] [ TOKEN ] INIT Mysql
  747. [ info ] [ DB ] INIT mysql
  748. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  749. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  750. [ info ] [ LOG ] INIT File
  751. ---------------------------------------------------------------
  752. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPatyType
  753. [运行时间:0.012502s] [吞吐率:79.99req/s] [内存消耗:701.37kb] [文件加载:146]
  754. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  755. [ info ] [ CACHE ] INIT File
  756. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000158s ]
  757. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  758. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  759. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  760. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  761. [ info ] [ ROUTE ] array (
  762. 'type' => 'module',
  763. 'module' =>
  764. array (
  765. 0 => 'Api',
  766. 1 => 'party',
  767. 2 => 'getPatyType',
  768. ),
  769. )
  770. [ info ] [ HEADER ] array (
  771. 'accept-encoding' => 'gzip',
  772. 'content-length' => '74',
  773. 'content-type' => 'application/x-www-form-urlencoded',
  774. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  775. 'accept-language' => 'zh-CN,zh;q=0.8',
  776. 'host' => 'voicechat.lanmaonet.com',
  777. )
  778. [ info ] [ PARAM ] array (
  779. 'params_from' => 'android',
  780. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  781. 'room_type' => '2',
  782. )
  783. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  784. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  785. [ info ] [ TOKEN ] INIT Mysql
  786. [ info ] [ DB ] INIT mysql
  787. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  788. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  789. [ info ] [ LOG ] INIT File
  790. ---------------------------------------------------------------
  791. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPatyType
  792. [运行时间:0.013999s] [吞吐率:71.43req/s] [内存消耗:701.07kb] [文件加载:146]
  793. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  794. [ info ] [ CACHE ] INIT File
  795. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000165s ]
  796. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  797. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  798. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  799. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  800. [ info ] [ ROUTE ] array (
  801. 'type' => 'module',
  802. 'module' =>
  803. array (
  804. 0 => 'Api',
  805. 1 => 'party',
  806. 2 => 'getPatyType',
  807. ),
  808. )
  809. [ info ] [ HEADER ] array (
  810. 'accept-encoding' => 'gzip',
  811. 'content-length' => '62',
  812. 'content-type' => 'application/x-www-form-urlencoded',
  813. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  814. 'accept-language' => 'zh-CN,zh;q=0.8',
  815. 'host' => 'voicechat.lanmaonet.com',
  816. )
  817. [ info ] [ PARAM ] array (
  818. 'params_from' => 'android',
  819. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  820. )
  821. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  822. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000069s ]
  823. [ info ] [ TOKEN ] INIT Mysql
  824. [ info ] [ DB ] INIT mysql
  825. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  826. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  827. [ info ] [ LOG ] INIT File
  828. ---------------------------------------------------------------
  829. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  830. [运行时间:0.016352s] [吞吐率:61.15req/s] [内存消耗:714.40kb] [文件加载:146]
  831. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  832. [ info ] [ CACHE ] INIT File
  833. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000142s ]
  834. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  835. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  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.000024s ]
  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' => '126',
  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. 'params_from' => 'android',
  857. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  858. 'type_id' => '0',
  859. 'all' => '1',
  860. 'is_recommend' => '0',
  861. 'thispage' => '1',
  862. 'room_type' => '2',
  863. 'pagenum' => '6',
  864. )
  865. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  866. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  867. [ info ] [ TOKEN ] INIT Mysql
  868. [ info ] [ DB ] INIT mysql
  869. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  870. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  871. [ info ] [ LOG ] INIT File
  872. ---------------------------------------------------------------
  873. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  874. [运行时间:0.015551s] [吞吐率:64.30req/s] [内存消耗:731.23kb] [文件加载:147]
  875. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  876. [ info ] [ CACHE ] INIT File
  877. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000143s ]
  878. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  879. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  880. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  881. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  882. [ info ] [ ROUTE ] array (
  883. 'type' => 'module',
  884. 'module' =>
  885. array (
  886. 0 => 'api',
  887. 1 => 'userCenter',
  888. 2 => 'getMyUserInfo',
  889. ),
  890. )
  891. [ info ] [ HEADER ] array (
  892. 'accept-encoding' => 'gzip',
  893. 'content-length' => '73',
  894. 'content-type' => 'application/x-www-form-urlencoded',
  895. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  896. 'accept-language' => 'zh-CN,zh;q=0.8',
  897. 'host' => 'voicechat.lanmaonet.com',
  898. )
  899. [ info ] [ PARAM ] array (
  900. 'params_from' => 'android',
  901. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  902. 'user_id' => '15',
  903. )
  904. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  905. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  906. [ info ] [ TOKEN ] INIT Mysql
  907. [ info ] [ DB ] INIT mysql
  908. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  909. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  910. [ info ] [ LOG ] INIT File
  911. ---------------------------------------------------------------
  912. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  913. [运行时间:0.008352s] [吞吐率:119.73req/s] [内存消耗:731.23kb] [文件加载:147]
  914. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  915. [ info ] [ CACHE ] INIT File
  916. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000159s ]
  917. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  918. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  919. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  920. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  921. [ info ] [ ROUTE ] array (
  922. 'type' => 'module',
  923. 'module' =>
  924. array (
  925. 0 => 'api',
  926. 1 => 'userCenter',
  927. 2 => 'getMyUserInfo',
  928. ),
  929. )
  930. [ info ] [ HEADER ] array (
  931. 'accept-encoding' => 'gzip',
  932. 'content-length' => '73',
  933. 'content-type' => 'application/x-www-form-urlencoded',
  934. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  935. 'accept-language' => 'zh-CN,zh;q=0.8',
  936. 'host' => 'voicechat.lanmaonet.com',
  937. )
  938. [ info ] [ PARAM ] array (
  939. 'params_from' => 'android',
  940. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  941. 'user_id' => '15',
  942. )
  943. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  944. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  945. [ info ] [ TOKEN ] INIT Mysql
  946. [ info ] [ DB ] INIT mysql
  947. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  948. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  949. [ info ] [ LOG ] INIT File
  950. ---------------------------------------------------------------
  951. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  952. [运行时间:0.011687s] [吞吐率:85.56req/s] [内存消耗:702.41kb] [文件加载:146]
  953. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  954. [ info ] [ CACHE ] INIT File
  955. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000165s ]
  956. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  957. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  958. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  959. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  960. [ info ] [ ROUTE ] array (
  961. 'type' => 'module',
  962. 'module' =>
  963. array (
  964. 0 => 'Api',
  965. 1 => 'userCenter',
  966. 2 => 'getFollowsLive',
  967. ),
  968. )
  969. [ info ] [ HEADER ] array (
  970. 'accept-encoding' => 'gzip',
  971. 'content-length' => '91',
  972. 'content-type' => 'application/x-www-form-urlencoded',
  973. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  974. 'accept-language' => 'zh-CN,zh;q=0.8',
  975. 'host' => 'voicechat.lanmaonet.com',
  976. )
  977. [ info ] [ PARAM ] array (
  978. 'params_from' => 'android',
  979. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  980. 'is_online' => '1',
  981. 'page' => '1',
  982. 'pageNum' => '3',
  983. )
  984. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  985. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  986. [ info ] [ TOKEN ] INIT Mysql
  987. [ info ] [ DB ] INIT mysql
  988. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  989. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  990. [ info ] [ LOG ] INIT File
  991. ---------------------------------------------------------------
  992. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  993. [运行时间:0.015226s] [吞吐率:65.68req/s] [内存消耗:702.74kb] [文件加载:146]
  994. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  995. [ info ] [ CACHE ] INIT File
  996. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000148s ]
  997. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  998. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  999. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1000. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1001. [ info ] [ ROUTE ] array (
  1002. 'type' => 'module',
  1003. 'module' =>
  1004. array (
  1005. 0 => 'Api',
  1006. 1 => 'userCenter',
  1007. 2 => 'getFollowsLive',
  1008. ),
  1009. )
  1010. [ info ] [ HEADER ] array (
  1011. 'accept-encoding' => 'gzip',
  1012. 'content-length' => '91',
  1013. 'content-type' => 'application/x-www-form-urlencoded',
  1014. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1015. 'accept-language' => 'zh-CN,zh;q=0.8',
  1016. 'host' => 'voicechat.lanmaonet.com',
  1017. )
  1018. [ info ] [ PARAM ] array (
  1019. 'params_from' => 'android',
  1020. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1021. 'is_online' => '0',
  1022. 'page' => '1',
  1023. 'pageNum' => '2',
  1024. )
  1025. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1026. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  1027. [ info ] [ TOKEN ] INIT Mysql
  1028. [ info ] [ DB ] INIT mysql
  1029. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000074s ]
  1030. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1031. [ info ] [ LOG ] INIT File
  1032. ---------------------------------------------------------------
  1033. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/cellectionPartyList
  1034. [运行时间:0.014904s] [吞吐率:67.10req/s] [内存消耗:714.62kb] [文件加载:147]
  1035. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1036. [ info ] [ CACHE ] INIT File
  1037. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  1038. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1039. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  1040. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1041. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  1042. [ info ] [ ROUTE ] array (
  1043. 'type' => 'module',
  1044. 'module' =>
  1045. array (
  1046. 0 => 'Api',
  1047. 1 => 'party',
  1048. 2 => 'cellectionPartyList',
  1049. ),
  1050. )
  1051. [ info ] [ HEADER ] array (
  1052. 'accept-encoding' => 'gzip',
  1053. 'content-length' => '79',
  1054. 'content-type' => 'application/x-www-form-urlencoded',
  1055. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1056. 'accept-language' => 'zh-CN,zh;q=0.8',
  1057. 'host' => 'voicechat.lanmaonet.com',
  1058. )
  1059. [ info ] [ PARAM ] array (
  1060. 'params_from' => 'android',
  1061. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1062. 'page' => '1',
  1063. 'pageNum' => '2',
  1064. )
  1065. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1066. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1067. [ info ] [ TOKEN ] INIT Mysql
  1068. [ info ] [ DB ] INIT mysql
  1069. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000079s ]
  1070. [ info ] [ RUN ] app\api\controller\Party->cellectionPartyList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1071. [ info ] [ LOG ] INIT File
  1072. ---------------------------------------------------------------
  1073. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/index/getMessage
  1074. [运行时间:0.017681s] [吞吐率:56.56req/s] [内存消耗:698.53kb] [文件加载:145]
  1075. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1076. [ info ] [ CACHE ] INIT File
  1077. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000155s ]
  1078. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1079. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  1080. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1081. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  1082. [ info ] [ ROUTE ] array (
  1083. 'type' => 'module',
  1084. 'module' =>
  1085. array (
  1086. 0 => 'Api',
  1087. 1 => 'index',
  1088. 2 => 'getMessage',
  1089. ),
  1090. )
  1091. [ info ] [ HEADER ] array (
  1092. 'accept-encoding' => 'gzip',
  1093. 'content-length' => '69',
  1094. 'content-type' => 'application/x-www-form-urlencoded',
  1095. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1096. 'accept-language' => 'zh-CN,zh;q=0.8',
  1097. 'host' => 'voicechat.lanmaonet.com',
  1098. )
  1099. [ info ] [ PARAM ] array (
  1100. 'params_from' => 'android',
  1101. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1102. 'flag' => '1',
  1103. )
  1104. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1105. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  1106. [ info ] [ TOKEN ] INIT Mysql
  1107. [ info ] [ DB ] INIT mysql
  1108. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  1109. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1110. [ info ] [ LOG ] INIT File
  1111. ---------------------------------------------------------------
  1112. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  1113. [运行时间:0.016479s] [吞吐率:60.68req/s] [内存消耗:680.79kb] [文件加载:148]
  1114. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1115. [ info ] [ CACHE ] INIT File
  1116. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000145s ]
  1117. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1118. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1119. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1120. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  1121. [ info ] [ ROUTE ] array (
  1122. 'type' => 'module',
  1123. 'module' =>
  1124. array (
  1125. 0 => 'Api',
  1126. 1 => 'dynamic',
  1127. 2 => 'getDynamicList',
  1128. ),
  1129. )
  1130. [ info ] [ HEADER ] array (
  1131. 'accept-encoding' => 'gzip',
  1132. 'content-length' => '76',
  1133. 'content-type' => 'application/x-www-form-urlencoded',
  1134. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1135. 'accept-language' => 'zh-CN,zh;q=0.8',
  1136. 'host' => 'voicechat.lanmaonet.com',
  1137. )
  1138. [ info ] [ PARAM ] array (
  1139. 'params_from' => 'android',
  1140. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1141. 'type' => '1',
  1142. 'page' => '1',
  1143. )
  1144. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1145. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  1146. [ info ] [ TOKEN ] INIT Mysql
  1147. [ info ] [ DB ] INIT mysql
  1148. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  1149. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  1150. [ info ] [ LOG ] INIT File
  1151. ---------------------------------------------------------------
  1152. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  1153. [运行时间:0.008757s] [吞吐率:114.20req/s] [内存消耗:701.02kb] [文件加载:146]
  1154. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1155. [ info ] [ CACHE ] INIT File
  1156. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000174s ]
  1157. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  1158. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  1159. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1160. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1161. [ info ] [ ROUTE ] array (
  1162. 'type' => 'module',
  1163. 'module' =>
  1164. array (
  1165. 0 => 'Api',
  1166. 1 => 'dispatch',
  1167. 2 => 'getSkillList',
  1168. ),
  1169. )
  1170. [ info ] [ HEADER ] array (
  1171. 'accept-encoding' => 'gzip',
  1172. 'content-length' => '62',
  1173. 'content-type' => 'application/x-www-form-urlencoded',
  1174. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1175. 'accept-language' => 'zh-CN,zh;q=0.8',
  1176. 'host' => 'voicechat.lanmaonet.com',
  1177. )
  1178. [ info ] [ PARAM ] array (
  1179. 'params_from' => 'android',
  1180. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1181. )
  1182. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1183. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  1184. [ info ] [ TOKEN ] INIT Mysql
  1185. [ info ] [ DB ] INIT mysql
  1186. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  1187. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  1188. [ info ] [ LOG ] INIT File
  1189. ---------------------------------------------------------------
  1190. [ 2021-12-13T19:53:33+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  1191. [运行时间:0.011887s] [吞吐率:84.12req/s] [内存消耗:680.79kb] [文件加载:148]
  1192. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1193. [ info ] [ CACHE ] INIT File
  1194. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000174s ]
  1195. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  1196. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  1197. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1198. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1199. [ info ] [ ROUTE ] array (
  1200. 'type' => 'module',
  1201. 'module' =>
  1202. array (
  1203. 0 => 'Api',
  1204. 1 => 'dynamic',
  1205. 2 => 'getDynamicList',
  1206. ),
  1207. )
  1208. [ info ] [ HEADER ] array (
  1209. 'accept-encoding' => 'gzip',
  1210. 'content-length' => '76',
  1211. 'content-type' => 'application/x-www-form-urlencoded',
  1212. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1213. 'accept-language' => 'zh-CN,zh;q=0.8',
  1214. 'host' => 'voicechat.lanmaonet.com',
  1215. )
  1216. [ info ] [ PARAM ] array (
  1217. 'params_from' => 'android',
  1218. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1219. 'type' => '2',
  1220. 'page' => '1',
  1221. )
  1222. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1223. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  1224. [ info ] [ TOKEN ] INIT Mysql
  1225. [ info ] [ DB ] INIT mysql
  1226. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  1227. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  1228. [ info ] [ LOG ] INIT File
  1229. ---------------------------------------------------------------
  1230. [ 2021-12-13T19:53:34+08:00 ] 154.8.246.209 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.8.59.199&OptPlatform=Android&RequestId=2499946892-144115264421372130-Login-Register&SdkAppid=1400556860&contenttype=json
  1231. [运行时间:0.008650s] [吞吐率:115.61req/s] [内存消耗:620.98kb] [文件加载:136]
  1232. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1233. [ info ] [ CACHE ] INIT File
  1234. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000170s ]
  1235. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1236. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1237. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1238. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  1239. [ info ] [ ROUTE ] array (
  1240. 'type' => 'module',
  1241. 'module' =>
  1242. array (
  1243. 0 => 'api',
  1244. 1 => 'tenim',
  1245. 2 => 'callback',
  1246. ),
  1247. )
  1248. [ info ] [ HEADER ] array (
  1249. 'content-type' => 'application/json',
  1250. 'content-length' => '129',
  1251. 'connection' => 'keep-alive',
  1252. 'host' => 'voicechat.lanmaonet.com',
  1253. )
  1254. [ info ] [ PARAM ] array (
  1255. 'CallbackCommand' => 'State.StateChange',
  1256. 'ClientIP' => '112.8.59.199',
  1257. 'OptPlatform' => 'Android',
  1258. 'RequestId' => '2499946892-144115264421372130-Login-Register',
  1259. 'SdkAppid' => '1400556860',
  1260. 'contenttype' => 'json',
  1261. 'EventTime' => 1639396413689,
  1262. 'Info' =>
  1263. array (
  1264. 'To_Account' => '15',
  1265. 'Action' => 'Login',
  1266. 'Reason' => 'Register',
  1267. ),
  1268. )
  1269. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1270. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1271. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  1272. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1273. [ info ] [ DB ] INIT mysql
  1274. [ info ] [ LOG ] INIT File
  1275. ---------------------------------------------------------------
  1276. [ 2021-12-13T19:53:34+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  1277. [运行时间:0.008861s] [吞吐率:112.85req/s] [内存消耗:701.02kb] [文件加载:146]
  1278. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1279. [ info ] [ CACHE ] INIT File
  1280. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000175s ]
  1281. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1282. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  1283. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1284. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1285. [ info ] [ ROUTE ] array (
  1286. 'type' => 'module',
  1287. 'module' =>
  1288. array (
  1289. 0 => 'Api',
  1290. 1 => 'dispatch',
  1291. 2 => 'getSkillList',
  1292. ),
  1293. )
  1294. [ info ] [ HEADER ] array (
  1295. 'accept-encoding' => 'gzip',
  1296. 'content-length' => '62',
  1297. 'content-type' => 'application/x-www-form-urlencoded',
  1298. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1299. 'accept-language' => 'zh-CN,zh;q=0.8',
  1300. 'host' => 'voicechat.lanmaonet.com',
  1301. )
  1302. [ info ] [ PARAM ] array (
  1303. 'params_from' => 'android',
  1304. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1305. )
  1306. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1307. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  1308. [ info ] [ TOKEN ] INIT Mysql
  1309. [ info ] [ DB ] INIT mysql
  1310. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  1311. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  1312. [ info ] [ LOG ] INIT File
  1313. ---------------------------------------------------------------
  1314. [ 2021-12-13T19:53:34+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  1315. [运行时间:0.011813s] [吞吐率:84.65req/s] [内存消耗:731.23kb] [文件加载:147]
  1316. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1317. [ info ] [ CACHE ] INIT File
  1318. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000124s ]
  1319. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1320. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  1321. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1322. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1323. [ info ] [ ROUTE ] array (
  1324. 'type' => 'module',
  1325. 'module' =>
  1326. array (
  1327. 0 => 'api',
  1328. 1 => 'userCenter',
  1329. 2 => 'getMyUserInfo',
  1330. ),
  1331. )
  1332. [ info ] [ HEADER ] array (
  1333. 'accept-encoding' => 'gzip',
  1334. 'content-length' => '73',
  1335. 'content-type' => 'application/x-www-form-urlencoded',
  1336. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1337. 'accept-language' => 'zh-CN,zh;q=0.8',
  1338. 'host' => 'voicechat.lanmaonet.com',
  1339. )
  1340. [ info ] [ PARAM ] array (
  1341. 'params_from' => 'android',
  1342. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1343. 'user_id' => '15',
  1344. )
  1345. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1346. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000069s ]
  1347. [ info ] [ TOKEN ] INIT Mysql
  1348. [ info ] [ DB ] INIT mysql
  1349. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  1350. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1351. [ info ] [ LOG ] INIT File
  1352. ---------------------------------------------------------------
  1353. [ 2021-12-13T19:53:35+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/guild/guildAssistantList
  1354. [运行时间:0.015907s] [吞吐率:62.87req/s] [内存消耗:794.25kb] [文件加载:146]
  1355. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1356. [ info ] [ CACHE ] INIT File
  1357. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000151s ]
  1358. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1359. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1360. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1361. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1362. [ info ] [ ROUTE ] array (
  1363. 'type' => 'module',
  1364. 'module' =>
  1365. array (
  1366. 0 => 'api',
  1367. 1 => 'guild',
  1368. 2 => 'guildAssistantList',
  1369. ),
  1370. )
  1371. [ info ] [ HEADER ] array (
  1372. 'accept-encoding' => 'gzip',
  1373. 'content-length' => '62',
  1374. 'content-type' => 'application/x-www-form-urlencoded',
  1375. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1376. 'accept-language' => 'zh-CN,zh;q=0.8',
  1377. 'host' => 'voicechat.lanmaonet.com',
  1378. )
  1379. [ info ] [ PARAM ] array (
  1380. 'params_from' => 'android',
  1381. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1382. )
  1383. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1384. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1385. [ info ] [ TOKEN ] INIT Mysql
  1386. [ info ] [ DB ] INIT mysql
  1387. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000072s ]
  1388. [ info ] [ RUN ] app\api\controller\Guild->guildAssistantList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Guild.php ]
  1389. [ info ] [ LOG ] INIT File
  1390. ---------------------------------------------------------------
  1391. [ 2021-12-13T19:53:35+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1392. [运行时间:0.014445s] [吞吐率:69.23req/s] [内存消耗:714.02kb] [文件加载:146]
  1393. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1394. [ info ] [ CACHE ] INIT File
  1395. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000169s ]
  1396. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  1397. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  1398. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1399. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1400. [ info ] [ ROUTE ] array (
  1401. 'type' => 'module',
  1402. 'module' =>
  1403. array (
  1404. 0 => 'Api',
  1405. 1 => 'party',
  1406. 2 => 'getPartyRankList',
  1407. ),
  1408. )
  1409. [ info ] [ HEADER ] array (
  1410. 'accept-encoding' => 'gzip',
  1411. 'content-length' => '116',
  1412. 'content-type' => 'application/x-www-form-urlencoded',
  1413. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1414. 'accept-language' => 'zh-CN,zh;q=0.8',
  1415. 'host' => 'voicechat.lanmaonet.com',
  1416. )
  1417. [ info ] [ PARAM ] array (
  1418. 'params_from' => 'android',
  1419. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1420. 'type_id' => '7',
  1421. 'all' => '0',
  1422. 'is_recommend' => '0',
  1423. 'thispage' => '1',
  1424. 'room_type' => '2',
  1425. )
  1426. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1427. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  1428. [ info ] [ TOKEN ] INIT Mysql
  1429. [ info ] [ DB ] INIT mysql
  1430. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  1431. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1432. [ info ] [ LOG ] INIT File
  1433. ---------------------------------------------------------------
  1434. [ 2021-12-13T19:53:35+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1435. [运行时间:0.014446s] [吞吐率:69.22req/s] [内存消耗:713.93kb] [文件加载:146]
  1436. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  1437. [ info ] [ CACHE ] INIT File
  1438. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000156s ]
  1439. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1440. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  1441. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1442. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1443. [ info ] [ ROUTE ] array (
  1444. 'type' => 'module',
  1445. 'module' =>
  1446. array (
  1447. 0 => 'Api',
  1448. 1 => 'party',
  1449. 2 => 'getPartyRankList',
  1450. ),
  1451. )
  1452. [ info ] [ HEADER ] array (
  1453. 'accept-encoding' => 'gzip',
  1454. 'content-length' => '103',
  1455. 'content-type' => 'application/x-www-form-urlencoded',
  1456. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1457. 'accept-language' => 'zh-CN,zh;q=0.8',
  1458. 'host' => 'voicechat.lanmaonet.com',
  1459. )
  1460. [ info ] [ PARAM ] array (
  1461. 'params_from' => 'android',
  1462. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1463. 'type_id' => '',
  1464. 'all' => '1',
  1465. 'is_recommend' => '0',
  1466. 'thispage' => '1',
  1467. )
  1468. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1469. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  1470. [ info ] [ TOKEN ] INIT Mysql
  1471. [ info ] [ DB ] INIT mysql
  1472. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  1473. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1474. [ info ] [ LOG ] INIT File
  1475. ---------------------------------------------------------------
  1476. [ 2021-12-13T19:53:35+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1477. [运行时间:0.014656s] [吞吐率:68.23req/s] [内存消耗:713.96kb] [文件加载:146]
  1478. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1479. [ info ] [ CACHE ] INIT File
  1480. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000151s ]
  1481. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1482. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  1483. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1484. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1485. [ info ] [ ROUTE ] array (
  1486. 'type' => 'module',
  1487. 'module' =>
  1488. array (
  1489. 0 => 'Api',
  1490. 1 => 'party',
  1491. 2 => 'getPartyRankList',
  1492. ),
  1493. )
  1494. [ info ] [ HEADER ] array (
  1495. 'accept-encoding' => 'gzip',
  1496. 'content-length' => '104',
  1497. 'content-type' => 'application/x-www-form-urlencoded',
  1498. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1499. 'accept-language' => 'zh-CN,zh;q=0.8',
  1500. 'host' => 'voicechat.lanmaonet.com',
  1501. )
  1502. [ info ] [ PARAM ] array (
  1503. 'params_from' => 'android',
  1504. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1505. 'type_id' => '1',
  1506. 'all' => '0',
  1507. 'is_recommend' => '0',
  1508. 'thispage' => '1',
  1509. )
  1510. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1511. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  1512. [ info ] [ TOKEN ] INIT Mysql
  1513. [ info ] [ DB ] INIT mysql
  1514. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1515. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1516. [ info ] [ LOG ] INIT File
  1517. ---------------------------------------------------------------
  1518. [ 2021-12-13T19:53:35+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1519. [运行时间:0.015663s] [吞吐率:63.85req/s] [内存消耗:713.96kb] [文件加载:146]
  1520. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1521. [ info ] [ CACHE ] INIT File
  1522. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000140s ]
  1523. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1524. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  1525. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1526. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  1527. [ info ] [ ROUTE ] array (
  1528. 'type' => 'module',
  1529. 'module' =>
  1530. array (
  1531. 0 => 'Api',
  1532. 1 => 'party',
  1533. 2 => 'getPartyRankList',
  1534. ),
  1535. )
  1536. [ info ] [ HEADER ] array (
  1537. 'accept-encoding' => 'gzip',
  1538. 'content-length' => '104',
  1539. 'content-type' => 'application/x-www-form-urlencoded',
  1540. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1541. 'accept-language' => 'zh-CN,zh;q=0.8',
  1542. 'host' => 'voicechat.lanmaonet.com',
  1543. )
  1544. [ info ] [ PARAM ] array (
  1545. 'params_from' => 'android',
  1546. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1547. 'type_id' => '2',
  1548. 'all' => '0',
  1549. 'is_recommend' => '0',
  1550. 'thispage' => '1',
  1551. )
  1552. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1553. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  1554. [ info ] [ TOKEN ] INIT Mysql
  1555. [ info ] [ DB ] INIT mysql
  1556. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  1557. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1558. [ info ] [ LOG ] INIT File
  1559. ---------------------------------------------------------------
  1560. [ 2021-12-13T19:53:35+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1561. [运行时间:0.018920s] [吞吐率:52.85req/s] [内存消耗:714.02kb] [文件加载:146]
  1562. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1563. [ info ] [ CACHE ] INIT File
  1564. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000190s ]
  1565. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  1566. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  1567. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1568. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  1569. [ info ] [ ROUTE ] array (
  1570. 'type' => 'module',
  1571. 'module' =>
  1572. array (
  1573. 0 => 'Api',
  1574. 1 => 'party',
  1575. 2 => 'getPartyRankList',
  1576. ),
  1577. )
  1578. [ info ] [ HEADER ] array (
  1579. 'accept-encoding' => 'gzip',
  1580. 'content-length' => '116',
  1581. 'content-type' => 'application/x-www-form-urlencoded',
  1582. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1583. 'accept-language' => 'zh-CN,zh;q=0.8',
  1584. 'host' => 'voicechat.lanmaonet.com',
  1585. )
  1586. [ info ] [ PARAM ] array (
  1587. 'params_from' => 'android',
  1588. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1589. 'type_id' => '0',
  1590. 'all' => '1',
  1591. 'is_recommend' => '0',
  1592. 'thispage' => '1',
  1593. 'room_type' => '2',
  1594. )
  1595. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1596. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000072s ]
  1597. [ info ] [ TOKEN ] INIT Mysql
  1598. [ info ] [ DB ] INIT mysql
  1599. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  1600. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1601. [ info ] [ LOG ] INIT File
  1602. ---------------------------------------------------------------
  1603. [ 2021-12-13T19:53:35+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1604. [运行时间:0.007513s] [吞吐率:133.11req/s] [内存消耗:713.96kb] [文件加载:146]
  1605. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000033s ]
  1606. [ info ] [ CACHE ] INIT File
  1607. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000164s ]
  1608. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1609. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  1610. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1611. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1612. [ info ] [ ROUTE ] array (
  1613. 'type' => 'module',
  1614. 'module' =>
  1615. array (
  1616. 0 => 'Api',
  1617. 1 => 'party',
  1618. 2 => 'getPartyRankList',
  1619. ),
  1620. )
  1621. [ info ] [ HEADER ] array (
  1622. 'accept-encoding' => 'gzip',
  1623. 'content-length' => '104',
  1624. 'content-type' => 'application/x-www-form-urlencoded',
  1625. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1626. 'accept-language' => 'zh-CN,zh;q=0.8',
  1627. 'host' => 'voicechat.lanmaonet.com',
  1628. )
  1629. [ info ] [ PARAM ] array (
  1630. 'params_from' => 'android',
  1631. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1632. 'type_id' => '4',
  1633. 'all' => '0',
  1634. 'is_recommend' => '0',
  1635. 'thispage' => '1',
  1636. )
  1637. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1638. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000116s ]
  1639. [ info ] [ TOKEN ] INIT Mysql
  1640. [ info ] [ DB ] INIT mysql
  1641. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  1642. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1643. [ info ] [ LOG ] INIT File
  1644. ---------------------------------------------------------------
  1645. [ 2021-12-13T19:53:35+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1646. [运行时间:0.008481s] [吞吐率:117.91req/s] [内存消耗:713.96kb] [文件加载:146]
  1647. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000033s ]
  1648. [ info ] [ CACHE ] INIT File
  1649. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000113s ]
  1650. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1651. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000065s ]
  1652. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1653. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1654. [ info ] [ ROUTE ] array (
  1655. 'type' => 'module',
  1656. 'module' =>
  1657. array (
  1658. 0 => 'Api',
  1659. 1 => 'party',
  1660. 2 => 'getPartyRankList',
  1661. ),
  1662. )
  1663. [ info ] [ HEADER ] array (
  1664. 'accept-encoding' => 'gzip',
  1665. 'content-length' => '104',
  1666. 'content-type' => 'application/x-www-form-urlencoded',
  1667. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1668. 'accept-language' => 'zh-CN,zh;q=0.8',
  1669. 'host' => 'voicechat.lanmaonet.com',
  1670. )
  1671. [ info ] [ PARAM ] array (
  1672. 'params_from' => 'android',
  1673. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1674. 'type_id' => '3',
  1675. 'all' => '0',
  1676. 'is_recommend' => '0',
  1677. 'thispage' => '1',
  1678. )
  1679. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1680. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000088s ]
  1681. [ info ] [ TOKEN ] INIT Mysql
  1682. [ info ] [ DB ] INIT mysql
  1683. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  1684. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1685. [ info ] [ LOG ] INIT File
  1686. ---------------------------------------------------------------
  1687. [ 2021-12-13T19:53:37+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/party/getPatyIspass
  1688. [运行时间:0.007440s] [吞吐率:134.41req/s] [内存消耗:700.60kb] [文件加载:144]
  1689. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1690. [ info ] [ CACHE ] INIT File
  1691. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000224s ]
  1692. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1693. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  1694. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1695. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1696. [ info ] [ ROUTE ] array (
  1697. 'type' => 'module',
  1698. 'module' =>
  1699. array (
  1700. 0 => 'api',
  1701. 1 => 'party',
  1702. 2 => 'getPatyIspass',
  1703. ),
  1704. )
  1705. [ info ] [ HEADER ] array (
  1706. 'accept-encoding' => 'gzip',
  1707. 'content-length' => '86',
  1708. 'content-type' => 'application/x-www-form-urlencoded',
  1709. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1710. 'accept-language' => 'zh-CN,zh;q=0.8',
  1711. 'host' => 'voicechat.lanmaonet.com',
  1712. )
  1713. [ info ] [ PARAM ] array (
  1714. 'params_from' => 'android',
  1715. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1716. 'party_id' => '29',
  1717. 'room_type' => '1',
  1718. )
  1719. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1720. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1721. [ info ] [ TOKEN ] INIT Mysql
  1722. [ info ] [ DB ] INIT mysql
  1723. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  1724. [ info ] [ RUN ] app\api\controller\Party->getPatyIspass[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1725. [ info ] [ LOG ] INIT File
  1726. ---------------------------------------------------------------
  1727. [ 2021-12-13T19:53:37+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/joinParty
  1728. [运行时间:0.010174s] [吞吐率:98.29req/s] [内存消耗:723.91kb] [文件加载:147]
  1729. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1730. [ info ] [ CACHE ] INIT File
  1731. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000157s ]
  1732. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1733. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1734. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1735. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  1736. [ info ] [ ROUTE ] array (
  1737. 'type' => 'module',
  1738. 'module' =>
  1739. array (
  1740. 0 => 'Api',
  1741. 1 => 'party',
  1742. 2 => 'joinParty',
  1743. ),
  1744. )
  1745. [ info ] [ HEADER ] array (
  1746. 'accept-encoding' => 'gzip',
  1747. 'content-length' => '86',
  1748. 'content-type' => 'application/x-www-form-urlencoded',
  1749. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1750. 'accept-language' => 'zh-CN,zh;q=0.8',
  1751. 'host' => 'voicechat.lanmaonet.com',
  1752. )
  1753. [ info ] [ PARAM ] array (
  1754. 'params_from' => 'android',
  1755. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1756. 'party_id' => '29',
  1757. 'room_type' => '1',
  1758. )
  1759. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1760. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  1761. [ info ] [ TOKEN ] INIT Mysql
  1762. [ info ] [ DB ] INIT mysql
  1763. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  1764. [ info ] [ RUN ] app\api\controller\Party->joinParty[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1765. [ info ] [ LOG ] INIT File
  1766. ---------------------------------------------------------------
  1767. [ 2021-12-13T19:53:38+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/joinParty
  1768. [运行时间:0.010049s] [吞吐率:99.51req/s] [内存消耗:723.98kb] [文件加载:147]
  1769. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1770. [ info ] [ CACHE ] INIT File
  1771. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000183s ]
  1772. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000045s ]
  1773. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000066s ]
  1774. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1775. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  1776. [ info ] [ ROUTE ] array (
  1777. 'type' => 'module',
  1778. 'module' =>
  1779. array (
  1780. 0 => 'Api',
  1781. 1 => 'party',
  1782. 2 => 'joinParty',
  1783. ),
  1784. )
  1785. [ info ] [ HEADER ] array (
  1786. 'accept-encoding' => 'gzip',
  1787. 'content-length' => '98',
  1788. 'content-type' => 'application/x-www-form-urlencoded',
  1789. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1790. 'accept-language' => 'zh-CN,zh;q=0.8',
  1791. 'host' => 'voicechat.lanmaonet.com',
  1792. )
  1793. [ info ] [ PARAM ] array (
  1794. 'params_from' => 'android',
  1795. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1796. 'party_id' => '29',
  1797. 'room_type' => '1',
  1798. 'party_pass' => '',
  1799. )
  1800. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1801. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  1802. [ info ] [ TOKEN ] INIT Mysql
  1803. [ info ] [ DB ] INIT mysql
  1804. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1805. [ info ] [ RUN ] app\api\controller\Party->joinParty[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1806. [ info ] [ LOG ] INIT File
  1807. ---------------------------------------------------------------
  1808. [ 2021-12-13T19:53:38+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/lineUpList
  1809. [运行时间:0.010231s] [吞吐率:97.74req/s] [内存消耗:637.41kb] [文件加载:145]
  1810. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1811. [ info ] [ CACHE ] INIT File
  1812. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000172s ]
  1813. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1814. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  1815. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1816. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1817. [ info ] [ ROUTE ] array (
  1818. 'type' => 'module',
  1819. 'module' =>
  1820. array (
  1821. 0 => 'Api',
  1822. 1 => 'party',
  1823. 2 => 'lineUpList',
  1824. ),
  1825. )
  1826. [ info ] [ HEADER ] array (
  1827. 'accept-encoding' => 'gzip',
  1828. 'content-length' => '86',
  1829. 'content-type' => 'application/x-www-form-urlencoded',
  1830. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1831. 'accept-language' => 'zh-CN,zh;q=0.8',
  1832. 'host' => 'voicechat.lanmaonet.com',
  1833. )
  1834. [ info ] [ PARAM ] array (
  1835. 'params_from' => 'android',
  1836. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1837. 'party_id' => '29',
  1838. 'room_type' => '1',
  1839. )
  1840. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1841. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1842. [ info ] [ TOKEN ] INIT Mysql
  1843. [ info ] [ DB ] INIT mysql
  1844. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  1845. [ info ] [ RUN ] app\api\controller\Party->lineUpList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1846. [ info ] [ LOG ] INIT File
  1847. ---------------------------------------------------------------
  1848. [ 2021-12-13T19:53:38+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyInfo
  1849. [运行时间:0.021428s] [吞吐率:46.67req/s] [内存消耗:733.10kb] [文件加载:148]
  1850. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1851. [ info ] [ CACHE ] INIT File
  1852. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000193s ]
  1853. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1854. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  1855. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1856. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  1857. [ info ] [ ROUTE ] array (
  1858. 'type' => 'module',
  1859. 'module' =>
  1860. array (
  1861. 0 => 'Api',
  1862. 1 => 'party',
  1863. 2 => 'getPartyInfo',
  1864. ),
  1865. )
  1866. [ info ] [ HEADER ] array (
  1867. 'accept-encoding' => 'gzip',
  1868. 'content-length' => '86',
  1869. 'content-type' => 'application/x-www-form-urlencoded',
  1870. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1871. 'accept-language' => 'zh-CN,zh;q=0.8',
  1872. 'host' => 'voicechat.lanmaonet.com',
  1873. )
  1874. [ info ] [ PARAM ] array (
  1875. 'params_from' => 'android',
  1876. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1877. 'party_id' => '29',
  1878. 'room_type' => '1',
  1879. )
  1880. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1881. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000077s ]
  1882. [ info ] [ TOKEN ] INIT Mysql
  1883. [ info ] [ DB ] INIT mysql
  1884. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  1885. [ info ] [ RUN ] app\api\controller\Party->getPartyInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1886. [ info ] [ LOG ] INIT File
  1887. ---------------------------------------------------------------
  1888. [ 2021-12-13T19:53:38+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/gift/getGiftType
  1889. [运行时间:0.007947s] [吞吐率:125.83req/s] [内存消耗:645.35kb] [文件加载:146]
  1890. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1891. [ info ] [ CACHE ] INIT File
  1892. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000165s ]
  1893. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1894. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1895. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1896. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1897. [ info ] [ ROUTE ] array (
  1898. 'type' => 'module',
  1899. 'module' =>
  1900. array (
  1901. 0 => 'Api',
  1902. 1 => 'gift',
  1903. 2 => 'getGiftType',
  1904. ),
  1905. )
  1906. [ info ] [ HEADER ] array (
  1907. 'accept-encoding' => 'gzip',
  1908. 'content-length' => '62',
  1909. 'content-type' => 'application/x-www-form-urlencoded',
  1910. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1911. 'accept-language' => 'zh-CN,zh;q=0.8',
  1912. 'host' => 'voicechat.lanmaonet.com',
  1913. )
  1914. [ info ] [ PARAM ] array (
  1915. 'params_from' => 'android',
  1916. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  1917. )
  1918. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1919. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  1920. [ info ] [ TOKEN ] INIT Mysql
  1921. [ info ] [ DB ] INIT mysql
  1922. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1923. [ info ] [ RUN ] app\api\controller\Gift->getGiftType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Gift.php ]
  1924. [ info ] [ LOG ] INIT File
  1925. ---------------------------------------------------------------
  1926. [ 2021-12-13T19:53:38+08:00 ] 81.71.6.166 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=Group.CallbackAfterNewMemberJoin&ClientIP=112.8.59.199&OptPlatform=Android&RequestID=65241c22-7244-4443-818d-c61534fd9f93&SdkAppid=1400556860&contenttype=json
  1927. [运行时间:0.001798s] [吞吐率:556.20req/s] [内存消耗:488.31kb] [文件加载:129]
  1928. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1929. [ info ] [ CACHE ] INIT File
  1930. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000137s ]
  1931. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1932. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1933. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1934. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1935. [ info ] [ ROUTE ] array (
  1936. 'type' => 'module',
  1937. 'module' =>
  1938. array (
  1939. 0 => 'api',
  1940. 1 => 'tenim',
  1941. 2 => 'callback',
  1942. ),
  1943. )
  1944. [ info ] [ HEADER ] array (
  1945. 'content-type' => 'application/json',
  1946. 'content-length' => '200',
  1947. 'connection' => 'keep-alive',
  1948. 'host' => 'voicechat.lanmaonet.com',
  1949. )
  1950. [ info ] [ PARAM ] array (
  1951. 'CallbackCommand' => 'Group.CallbackAfterNewMemberJoin',
  1952. 'ClientIP' => '112.8.59.199',
  1953. 'OptPlatform' => 'Android',
  1954. 'RequestID' => '65241c22-7244-4443-818d-c61534fd9f93',
  1955. 'SdkAppid' => '1400556860',
  1956. 'contenttype' => 'json',
  1957. 'EventTime' => 1639396418610,
  1958. 'GroupId' => '29',
  1959. 'JoinType' => 'Apply',
  1960. 'NewMemberList' =>
  1961. array (
  1962. 0 =>
  1963. array (
  1964. 'Member_Account' => '15',
  1965. ),
  1966. ),
  1967. 'Operator_Account' => '15',
  1968. 'Type' => 'AVChatRoom',
  1969. )
  1970. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1971. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000044s ]
  1972. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000047s ]
  1973. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1974. [ info ] [ LOG ] INIT File
  1975. ---------------------------------------------------------------
  1976. [ 2021-12-13T19:53:42+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/index/getSwitch
  1977. [运行时间:0.010483s] [吞吐率:95.39req/s] [内存消耗:632.95kb] [文件加载:143]
  1978. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1979. [ info ] [ CACHE ] INIT File
  1980. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000159s ]
  1981. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1982. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  1983. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1984. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1985. [ info ] [ ROUTE ] array (
  1986. 'type' => 'module',
  1987. 'module' =>
  1988. array (
  1989. 0 => 'api',
  1990. 1 => 'index',
  1991. 2 => 'getSwitch',
  1992. ),
  1993. )
  1994. [ info ] [ HEADER ] array (
  1995. 'accept-encoding' => 'gzip',
  1996. 'content-length' => '62',
  1997. 'content-type' => 'application/x-www-form-urlencoded',
  1998. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1999. 'accept-language' => 'zh-CN,zh;q=0.8',
  2000. 'host' => 'voicechat.lanmaonet.com',
  2001. )
  2002. [ info ] [ PARAM ] array (
  2003. 'params_from' => 'android',
  2004. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2005. )
  2006. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2007. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  2008. [ info ] [ TOKEN ] INIT Mysql
  2009. [ info ] [ DB ] INIT mysql
  2010. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  2011. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  2012. [ info ] [ LOG ] INIT File
  2013. ---------------------------------------------------------------
  2014. [ 2021-12-13T19:53:42+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2015. [运行时间:0.013081s] [吞吐率:76.45req/s] [内存消耗:714.02kb] [文件加载:146]
  2016. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2017. [ info ] [ CACHE ] INIT File
  2018. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000151s ]
  2019. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2020. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  2021. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2022. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  2023. [ info ] [ ROUTE ] array (
  2024. 'type' => 'module',
  2025. 'module' =>
  2026. array (
  2027. 0 => 'Api',
  2028. 1 => 'party',
  2029. 2 => 'getPartyRankList',
  2030. ),
  2031. )
  2032. [ info ] [ HEADER ] array (
  2033. 'accept-encoding' => 'gzip',
  2034. 'content-length' => '114',
  2035. 'content-type' => 'application/x-www-form-urlencoded',
  2036. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2037. 'accept-language' => 'zh-CN,zh;q=0.8',
  2038. 'host' => 'voicechat.lanmaonet.com',
  2039. )
  2040. [ info ] [ PARAM ] array (
  2041. 'params_from' => 'android',
  2042. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2043. 'type_id' => '',
  2044. 'all' => '1',
  2045. 'is_recommend' => '0',
  2046. 'room_type' => '1',
  2047. 'pagenum' => '6',
  2048. )
  2049. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2050. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  2051. [ info ] [ TOKEN ] INIT Mysql
  2052. [ info ] [ DB ] INIT mysql
  2053. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  2054. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2055. [ info ] [ LOG ] INIT File
  2056. ---------------------------------------------------------------
  2057. [ 2021-12-13T19:53:42+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2058. [运行时间:0.015041s] [吞吐率:66.49req/s] [内存消耗:714.02kb] [文件加载:146]
  2059. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2060. [ info ] [ CACHE ] INIT File
  2061. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000136s ]
  2062. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  2063. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  2064. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2065. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  2066. [ info ] [ ROUTE ] array (
  2067. 'type' => 'module',
  2068. 'module' =>
  2069. array (
  2070. 0 => 'Api',
  2071. 1 => 'party',
  2072. 2 => 'getPartyRankList',
  2073. ),
  2074. )
  2075. [ info ] [ HEADER ] array (
  2076. 'accept-encoding' => 'gzip',
  2077. 'content-length' => '114',
  2078. 'content-type' => 'application/x-www-form-urlencoded',
  2079. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2080. 'accept-language' => 'zh-CN,zh;q=0.8',
  2081. 'host' => 'voicechat.lanmaonet.com',
  2082. )
  2083. [ info ] [ PARAM ] array (
  2084. 'params_from' => 'android',
  2085. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2086. 'type_id' => '',
  2087. 'all' => '1',
  2088. 'is_recommend' => '1',
  2089. 'room_type' => '1',
  2090. 'pagenum' => '3',
  2091. )
  2092. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2093. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  2094. [ info ] [ TOKEN ] INIT Mysql
  2095. [ info ] [ DB ] INIT mysql
  2096. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  2097. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2098. [ info ] [ LOG ] INIT File
  2099. ---------------------------------------------------------------
  2100. [ 2021-12-13T19:53:42+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2101. [运行时间:0.019550s] [吞吐率:51.15req/s] [内存消耗:714.40kb] [文件加载:146]
  2102. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2103. [ info ] [ CACHE ] INIT File
  2104. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000220s ]
  2105. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  2106. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  2107. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2108. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  2109. [ info ] [ ROUTE ] array (
  2110. 'type' => 'module',
  2111. 'module' =>
  2112. array (
  2113. 0 => 'Api',
  2114. 1 => 'party',
  2115. 2 => 'getPartyRankList',
  2116. ),
  2117. )
  2118. [ info ] [ HEADER ] array (
  2119. 'accept-encoding' => 'gzip',
  2120. 'content-length' => '126',
  2121. 'content-type' => 'application/x-www-form-urlencoded',
  2122. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2123. 'accept-language' => 'zh-CN,zh;q=0.8',
  2124. 'host' => 'voicechat.lanmaonet.com',
  2125. )
  2126. [ info ] [ PARAM ] array (
  2127. 'params_from' => 'android',
  2128. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2129. 'type_id' => '0',
  2130. 'all' => '1',
  2131. 'is_recommend' => '0',
  2132. 'thispage' => '1',
  2133. 'room_type' => '2',
  2134. 'pagenum' => '6',
  2135. )
  2136. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2137. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  2138. [ info ] [ TOKEN ] INIT Mysql
  2139. [ info ] [ DB ] INIT mysql
  2140. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  2141. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2142. [ info ] [ LOG ] INIT File
  2143. ---------------------------------------------------------------
  2144. [ 2021-12-13T19:53:42+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/index/getMessage
  2145. [运行时间:0.020875s] [吞吐率:47.90req/s] [内存消耗:698.53kb] [文件加载:145]
  2146. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2147. [ info ] [ CACHE ] INIT File
  2148. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000138s ]
  2149. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2150. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  2151. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2152. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  2153. [ info ] [ ROUTE ] array (
  2154. 'type' => 'module',
  2155. 'module' =>
  2156. array (
  2157. 0 => 'Api',
  2158. 1 => 'index',
  2159. 2 => 'getMessage',
  2160. ),
  2161. )
  2162. [ info ] [ HEADER ] array (
  2163. 'accept-encoding' => 'gzip',
  2164. 'content-length' => '69',
  2165. 'content-type' => 'application/x-www-form-urlencoded',
  2166. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2167. 'accept-language' => 'zh-CN,zh;q=0.8',
  2168. 'host' => 'voicechat.lanmaonet.com',
  2169. )
  2170. [ info ] [ PARAM ] array (
  2171. 'params_from' => 'android',
  2172. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2173. 'flag' => '1',
  2174. )
  2175. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2176. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  2177. [ info ] [ TOKEN ] INIT Mysql
  2178. [ info ] [ DB ] INIT mysql
  2179. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  2180. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  2181. [ info ] [ LOG ] INIT File
  2182. ---------------------------------------------------------------
  2183. [ 2021-12-13T19:53:42+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2184. [运行时间:0.009273s] [吞吐率:107.84req/s] [内存消耗:731.23kb] [文件加载:147]
  2185. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  2186. [ info ] [ CACHE ] INIT File
  2187. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000140s ]
  2188. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2189. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  2190. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2191. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  2192. [ info ] [ ROUTE ] array (
  2193. 'type' => 'module',
  2194. 'module' =>
  2195. array (
  2196. 0 => 'api',
  2197. 1 => 'userCenter',
  2198. 2 => 'getMyUserInfo',
  2199. ),
  2200. )
  2201. [ info ] [ HEADER ] array (
  2202. 'accept-encoding' => 'gzip',
  2203. 'content-length' => '73',
  2204. 'content-type' => 'application/x-www-form-urlencoded',
  2205. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2206. 'accept-language' => 'zh-CN,zh;q=0.8',
  2207. 'host' => 'voicechat.lanmaonet.com',
  2208. )
  2209. [ info ] [ PARAM ] array (
  2210. 'params_from' => 'android',
  2211. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2212. 'user_id' => '15',
  2213. )
  2214. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2215. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  2216. [ info ] [ TOKEN ] INIT Mysql
  2217. [ info ] [ DB ] INIT mysql
  2218. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  2219. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2220. [ info ] [ LOG ] INIT File
  2221. ---------------------------------------------------------------
  2222. [ 2021-12-13T19:53:43+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  2223. [运行时间:0.008074s] [吞吐率:123.85req/s] [内存消耗:701.02kb] [文件加载:146]
  2224. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2225. [ info ] [ CACHE ] INIT File
  2226. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000124s ]
  2227. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  2228. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  2229. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2230. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2231. [ info ] [ ROUTE ] array (
  2232. 'type' => 'module',
  2233. 'module' =>
  2234. array (
  2235. 0 => 'Api',
  2236. 1 => 'dispatch',
  2237. 2 => 'getSkillList',
  2238. ),
  2239. )
  2240. [ info ] [ HEADER ] array (
  2241. 'accept-encoding' => 'gzip',
  2242. 'content-length' => '62',
  2243. 'content-type' => 'application/x-www-form-urlencoded',
  2244. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2245. 'accept-language' => 'zh-CN,zh;q=0.8',
  2246. 'host' => 'voicechat.lanmaonet.com',
  2247. )
  2248. [ info ] [ PARAM ] array (
  2249. 'params_from' => 'android',
  2250. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2251. )
  2252. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2253. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  2254. [ info ] [ TOKEN ] INIT Mysql
  2255. [ info ] [ DB ] INIT mysql
  2256. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000068s ]
  2257. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  2258. [ info ] [ LOG ] INIT File
  2259. ---------------------------------------------------------------
  2260. [ 2021-12-13T19:53:43+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/guild/guildAssistantList
  2261. [运行时间:0.010824s] [吞吐率:92.39req/s] [内存消耗:794.25kb] [文件加载:146]
  2262. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2263. [ info ] [ CACHE ] INIT File
  2264. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000170s ]
  2265. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  2266. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  2267. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2268. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  2269. [ info ] [ ROUTE ] array (
  2270. 'type' => 'module',
  2271. 'module' =>
  2272. array (
  2273. 0 => 'api',
  2274. 1 => 'guild',
  2275. 2 => 'guildAssistantList',
  2276. ),
  2277. )
  2278. [ info ] [ HEADER ] array (
  2279. 'accept-encoding' => 'gzip',
  2280. 'content-length' => '62',
  2281. 'content-type' => 'application/x-www-form-urlencoded',
  2282. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2283. 'accept-language' => 'zh-CN,zh;q=0.8',
  2284. 'host' => 'voicechat.lanmaonet.com',
  2285. )
  2286. [ info ] [ PARAM ] array (
  2287. 'params_from' => 'android',
  2288. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2289. )
  2290. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2291. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000069s ]
  2292. [ info ] [ TOKEN ] INIT Mysql
  2293. [ info ] [ DB ] INIT mysql
  2294. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  2295. [ info ] [ RUN ] app\api\controller\Guild->guildAssistantList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Guild.php ]
  2296. [ info ] [ LOG ] INIT File
  2297. ---------------------------------------------------------------
  2298. [ 2021-12-13T19:53:43+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2299. [运行时间:0.008741s] [吞吐率:114.40req/s] [内存消耗:731.23kb] [文件加载:147]
  2300. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2301. [ info ] [ CACHE ] INIT File
  2302. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000139s ]
  2303. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2304. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2305. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2306. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2307. [ info ] [ ROUTE ] array (
  2308. 'type' => 'module',
  2309. 'module' =>
  2310. array (
  2311. 0 => 'api',
  2312. 1 => 'userCenter',
  2313. 2 => 'getMyUserInfo',
  2314. ),
  2315. )
  2316. [ info ] [ HEADER ] array (
  2317. 'accept-encoding' => 'gzip',
  2318. 'content-length' => '73',
  2319. 'content-type' => 'application/x-www-form-urlencoded',
  2320. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2321. 'accept-language' => 'zh-CN,zh;q=0.8',
  2322. 'host' => 'voicechat.lanmaonet.com',
  2323. )
  2324. [ info ] [ PARAM ] array (
  2325. 'params_from' => 'android',
  2326. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2327. 'user_id' => '15',
  2328. )
  2329. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2330. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  2331. [ info ] [ TOKEN ] INIT Mysql
  2332. [ info ] [ DB ] INIT mysql
  2333. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  2334. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2335. [ info ] [ LOG ] INIT File
  2336. ---------------------------------------------------------------
  2337. [ 2021-12-13T19:53:46+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/cancelLineUp
  2338. [运行时间:0.010040s] [吞吐率:99.60req/s] [内存消耗:701.50kb] [文件加载:145]
  2339. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2340. [ info ] [ CACHE ] INIT File
  2341. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000234s ]
  2342. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2343. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  2344. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2345. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  2346. [ info ] [ ROUTE ] array (
  2347. 'type' => 'module',
  2348. 'module' =>
  2349. array (
  2350. 0 => 'Api',
  2351. 1 => 'party',
  2352. 2 => 'cancelLineUp',
  2353. ),
  2354. )
  2355. [ info ] [ HEADER ] array (
  2356. 'accept-encoding' => 'gzip',
  2357. 'content-length' => '108',
  2358. 'content-type' => 'application/x-www-form-urlencoded',
  2359. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2360. 'accept-language' => 'zh-CN,zh;q=0.8',
  2361. 'host' => 'voicechat.lanmaonet.com',
  2362. )
  2363. [ info ] [ PARAM ] array (
  2364. 'params_from' => 'android',
  2365. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2366. 'party_id' => '29',
  2367. 'user_id' => '15',
  2368. 'room_type' => '1',
  2369. 'is_empty' => '0',
  2370. )
  2371. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2372. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  2373. [ info ] [ TOKEN ] INIT Mysql
  2374. [ info ] [ DB ] INIT mysql
  2375. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000084s ]
  2376. [ info ] [ RUN ] app\api\controller\Party->cancelLineUp[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2377. [ info ] [ LOG ] INIT File
  2378. ---------------------------------------------------------------
  2379. [ 2021-12-13T19:53:46+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/api/party/outParty
  2380. [运行时间:0.016301s] [吞吐率:61.35req/s] [内存消耗:687.53kb] [文件加载:145]
  2381. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2382. [ info ] [ CACHE ] INIT File
  2383. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000124s ]
  2384. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2385. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  2386. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2387. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  2388. [ info ] [ ROUTE ] array (
  2389. 'type' => 'module',
  2390. 'module' =>
  2391. array (
  2392. 0 => 'api',
  2393. 1 => 'party',
  2394. 2 => 'outParty',
  2395. ),
  2396. )
  2397. [ info ] [ HEADER ] array (
  2398. 'accept-encoding' => 'gzip',
  2399. 'content-length' => '74',
  2400. 'content-type' => 'application/x-www-form-urlencoded',
  2401. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2402. 'accept-language' => 'zh-CN,zh;q=0.8',
  2403. 'host' => 'voicechat.lanmaonet.com',
  2404. )
  2405. [ info ] [ PARAM ] array (
  2406. 'params_from' => 'android',
  2407. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2408. 'party_id' => '29',
  2409. )
  2410. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2411. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  2412. [ info ] [ TOKEN ] INIT Mysql
  2413. [ info ] [ DB ] INIT mysql
  2414. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  2415. [ info ] [ RUN ] app\api\controller\Party->outParty[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2416. [ info ] [ LOG ] INIT File
  2417. ---------------------------------------------------------------
  2418. [ 2021-12-13T19:53:46+08:00 ] 112.8.59.199 POST voicechat.lanmaonet.com/Api/party/lineUpList
  2419. [运行时间:0.005558s] [吞吐率:179.92req/s] [内存消耗:637.35kb] [文件加载:145]
  2420. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2421. [ info ] [ CACHE ] INIT File
  2422. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000158s ]
  2423. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  2424. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  2425. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2426. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2427. [ info ] [ ROUTE ] array (
  2428. 'type' => 'module',
  2429. 'module' =>
  2430. array (
  2431. 0 => 'Api',
  2432. 1 => 'party',
  2433. 2 => 'lineUpList',
  2434. ),
  2435. )
  2436. [ info ] [ HEADER ] array (
  2437. 'accept-encoding' => 'gzip',
  2438. 'content-length' => '74',
  2439. 'content-type' => 'application/x-www-form-urlencoded',
  2440. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2441. 'accept-language' => 'zh-CN,zh;q=0.8',
  2442. 'host' => 'voicechat.lanmaonet.com',
  2443. )
  2444. [ info ] [ PARAM ] array (
  2445. 'params_from' => 'android',
  2446. 'token' => 'ad28b863-0417-4220-908c-b2a100a7b00f',
  2447. 'party_id' => '29',
  2448. )
  2449. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2450. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2451. [ info ] [ TOKEN ] INIT Mysql
  2452. [ info ] [ DB ] INIT mysql
  2453. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  2454. [ info ] [ RUN ] app\api\controller\Party->lineUpList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2455. [ info ] [ LOG ] INIT File
  2456. ---------------------------------------------------------------
  2457. [ 2021-12-13T19:53:46+08:00 ] 106.55.253.232 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=Group.CallbackAfterMemberExit&ClientIP=112.8.59.199&OptPlatform=Android&RequestID=273eea21-efe8-4197-86d3-bfcb32ca3829&SdkAppid=1400556860&contenttype=json
  2458. [运行时间:0.001710s] [吞吐率:584.82req/s] [内存消耗:488.27kb] [文件加载:129]
  2459. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2460. [ info ] [ CACHE ] INIT File
  2461. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000147s ]
  2462. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2463. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2464. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2465. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  2466. [ info ] [ ROUTE ] array (
  2467. 'type' => 'module',
  2468. 'module' =>
  2469. array (
  2470. 0 => 'api',
  2471. 1 => 'tenim',
  2472. 2 => 'callback',
  2473. ),
  2474. )
  2475. [ info ] [ HEADER ] array (
  2476. 'content-type' => 'application/json',
  2477. 'content-length' => '197',
  2478. 'connection' => 'keep-alive',
  2479. 'host' => 'voicechat.lanmaonet.com',
  2480. )
  2481. [ info ] [ PARAM ] array (
  2482. 'CallbackCommand' => 'Group.CallbackAfterMemberExit',
  2483. 'ClientIP' => '112.8.59.199',
  2484. 'OptPlatform' => 'Android',
  2485. 'RequestID' => '273eea21-efe8-4197-86d3-bfcb32ca3829',
  2486. 'SdkAppid' => '1400556860',
  2487. 'contenttype' => 'json',
  2488. 'EventTime' => 1639396426800,
  2489. 'ExitMemberList' =>
  2490. array (
  2491. 0 =>
  2492. array (
  2493. 'Member_Account' => '15',
  2494. ),
  2495. ),
  2496. 'ExitType' => 'Quit',
  2497. 'GroupId' => '29',
  2498. 'Operator_Account' => '15',
  2499. 'Type' => 'AVChatRoom',
  2500. )
  2501. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2502. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2503. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  2504. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2505. [ info ] [ LOG ] INIT File
  2506. ---------------------------------------------------------------
  2507. [ 2021-12-13T20:02:14+08:00 ] 106.52.138.148 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.8.59.199&OptPlatform=Android&RequestId=2499978988-144115264421372130-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  2508. [运行时间:0.193945s] [吞吐率:5.16req/s] [内存消耗:648.15kb] [文件加载:139]
  2509. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2510. [ info ] [ CACHE ] INIT File
  2511. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000192s ]
  2512. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2513. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  2514. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2515. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  2516. [ info ] [ ROUTE ] array (
  2517. 'type' => 'module',
  2518. 'module' =>
  2519. array (
  2520. 0 => 'api',
  2521. 1 => 'tenim',
  2522. 2 => 'callback',
  2523. ),
  2524. )
  2525. [ info ] [ HEADER ] array (
  2526. 'content-type' => 'application/json',
  2527. 'content-length' => '133',
  2528. 'connection' => 'keep-alive',
  2529. 'host' => 'voicechat.lanmaonet.com',
  2530. )
  2531. [ info ] [ PARAM ] array (
  2532. 'CallbackCommand' => 'State.StateChange',
  2533. 'ClientIP' => '112.8.59.199',
  2534. 'OptPlatform' => 'Android',
  2535. 'RequestId' => '2499978988-144115264421372130-Disconnect-TimeOut',
  2536. 'SdkAppid' => '1400556860',
  2537. 'contenttype' => 'json',
  2538. 'EventTime' => 1639396933657,
  2539. 'Info' =>
  2540. array (
  2541. 'To_Account' => '15',
  2542. 'Action' => 'Disconnect',
  2543. 'Reason' => 'TimeOut',
  2544. ),
  2545. )
  2546. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2547. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  2548. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  2549. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2550. [ info ] [ DB ] INIT mysql
  2551. [ info ] [ LOG ] INIT File
  2552. ---------------------------------------------------------------
  2553. [ 2021-12-13T21:22:12+08:00 ] 40.77.167.71 GET voicechat.lanmaonet.com/
  2554. [运行时间:0.005356s] [吞吐率:186.70req/s] [内存消耗:468.62kb] [文件加载:135]
  2555. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2556. [ info ] [ CACHE ] INIT File
  2557. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000254s ]
  2558. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  2559. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  2560. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2561. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  2562. [ info ] [ ROUTE ] array (
  2563. 'type' => 'module',
  2564. 'module' =>
  2565. array (
  2566. 0 => '',
  2567. 1 => NULL,
  2568. 2 => NULL,
  2569. ),
  2570. )
  2571. [ info ] [ HEADER ] array (
  2572. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  2573. 'host' => 'voicechat.lanmaonet.com',
  2574. 'from' => 'bingbot(at)microsoft.com',
  2575. 'accept-encoding' => 'gzip, deflate',
  2576. 'accept' => '*/*',
  2577. 'pragma' => 'no-cache',
  2578. 'connection' => 'Keep-Alive',
  2579. 'cache-control' => 'no-cache',
  2580. 'content-type' => '',
  2581. 'content-length' => '',
  2582. )
  2583. [ info ] [ PARAM ] array (
  2584. )
  2585. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  2586. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  2587. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  2588. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000041s ]
  2589. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  2590. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  2591. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  2592. 0 => 'user',
  2593. 1 => 'site',
  2594. 2 => 'config',
  2595. ) ]
  2596. [ info ] [ LOG ] INIT File
  2597. ---------------------------------------------------------------
  2598. [ 2021-12-13T23:50:25+08:00 ] 3.121.247.33 GET voicechat.lanmaonet.com/apple-app-site-association
  2599. [运行时间:0.004109s] [吞吐率:243.37req/s] [内存消耗:338.22kb] [文件加载:123]
  2600. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2601. [ info ] [ CACHE ] INIT File
  2602. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000242s ]
  2603. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  2604. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  2605. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2606. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000047s ]
  2607. [ info ] [ ROUTE ] array (
  2608. 'type' => 'module',
  2609. 'module' =>
  2610. array (
  2611. 0 => 'apple-app-site-association',
  2612. 1 => NULL,
  2613. 2 => NULL,
  2614. ),
  2615. )
  2616. [ info ] [ HEADER ] array (
  2617. 'accept-encoding' => 'gzip',
  2618. 'user-agent' => 'AASA-Bot/1.0.0',
  2619. 'host' => 'voicechat.lanmaonet.com',
  2620. 'content-type' => '',
  2621. 'content-length' => '',
  2622. )
  2623. [ info ] [ PARAM ] array (
  2624. )
  2625. [ info ] [ LOG ] INIT File