20.log 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129
  1. ---------------------------------------------------------------
  2. [ 2022-04-20T07:19:14+08:00 ] 11.149.140.202 GET voicechat.lanmaonet.com/
  3. [运行时间:0.020543s] [吞吐率:48.68req/s] [内存消耗:469.87kb] [文件加载: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.000288s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  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.000050s ]
  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. 'via' => 'http/1.1 traffic_server[a0f03a7f-1c0a-41f5-9845-f284638910d4] (ApacheTrafficServer/9.0.0)',
  22. 'x-forwarded-for' => '11.149.140.202',
  23. 'client-ip' => '11.149.140.202',
  24. 'upgrade-insecure-requests' => '1',
  25. 'cache-control' => 'max-age=0',
  26. 'accept-language' => 'zh-CN,zh;q=0.9',
  27. 'accept-encoding' => 'gzip',
  28. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  29. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',
  30. 'host' => 'voicechat.lanmaonet.com',
  31. 'content-type' => '',
  32. 'content-length' => '',
  33. )
  34. [ info ] [ PARAM ] array (
  35. )
  36. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  37. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000075s ]
  38. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000074s ]
  39. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000062s ]
  40. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  41. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  42. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  43. 0 => 'user',
  44. 1 => 'site',
  45. 2 => 'config',
  46. ) ]
  47. [ info ] [ LOG ] INIT File
  48. ---------------------------------------------------------------
  49. [ 2022-04-20T08:25:51+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  50. [运行时间:0.004901s] [吞吐率:204.04req/s] [内存消耗:338.22kb] [文件加载:123]
  51. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  52. [ info ] [ CACHE ] INIT File
  53. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000236s ]
  54. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  55. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  56. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  57. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  58. [ info ] [ ROUTE ] array (
  59. 'type' => 'module',
  60. 'module' =>
  61. array (
  62. 0 => 'apple-app-site-association',
  63. 1 => NULL,
  64. 2 => NULL,
  65. ),
  66. )
  67. [ info ] [ HEADER ] array (
  68. 'accept-encoding' => 'gzip',
  69. 'user-agent' => 'AASA-Bot/1.0.0',
  70. 'host' => 'voicechat.lanmaonet.com',
  71. 'content-type' => '',
  72. 'content-length' => '',
  73. )
  74. [ info ] [ PARAM ] array (
  75. )
  76. [ info ] [ LOG ] INIT File
  77. ---------------------------------------------------------------
  78. [ 2022-04-20T08:26:30+08:00 ] 175.27.65.207 GET voicechat.lanmaonet.com/
  79. [运行时间:0.006432s] [吞吐率:155.47req/s] [内存消耗:469.55kb] [文件加载:135]
  80. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  81. [ info ] [ CACHE ] INIT File
  82. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000244s ]
  83. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  84. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  85. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  86. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  87. [ info ] [ ROUTE ] array (
  88. 'type' => 'module',
  89. 'module' =>
  90. array (
  91. 0 => '',
  92. 1 => NULL,
  93. 2 => NULL,
  94. ),
  95. )
  96. [ info ] [ HEADER ] array (
  97. 'upgrade-insecure-requests' => '1',
  98. 'connection' => 'keep-alive',
  99. 'cache-control' => 'max-age=0',
  100. 'accept-language' => 'zh-CN,zh;q=0.9',
  101. 'accept-encoding' => 'gzip, deflate',
  102. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  103. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',
  104. 'host' => 'voicechat.lanmaonet.com',
  105. 'content-type' => '',
  106. 'content-length' => '',
  107. )
  108. [ info ] [ PARAM ] array (
  109. )
  110. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  111. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  112. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  113. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000102s ]
  114. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  115. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  116. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  117. 0 => 'user',
  118. 1 => 'site',
  119. 2 => 'config',
  120. ) ]
  121. [ info ] [ LOG ] INIT File
  122. ---------------------------------------------------------------
  123. [ 2022-04-20T09:17:50+08:00 ] 40.77.167.46 GET voicechat.lanmaonet.com/
  124. [运行时间:0.009511s] [吞吐率:105.14req/s] [内存消耗:468.62kb] [文件加载:135]
  125. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  126. [ info ] [ CACHE ] INIT File
  127. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000290s ]
  128. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000051s ]
  129. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000070s ]
  130. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  131. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000047s ]
  132. [ info ] [ ROUTE ] array (
  133. 'type' => 'module',
  134. 'module' =>
  135. array (
  136. 0 => '',
  137. 1 => NULL,
  138. 2 => NULL,
  139. ),
  140. )
  141. [ info ] [ HEADER ] array (
  142. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  143. 'host' => 'voicechat.lanmaonet.com',
  144. 'from' => 'bingbot(at)microsoft.com',
  145. 'accept-encoding' => 'gzip, deflate',
  146. 'accept' => '*/*',
  147. 'pragma' => 'no-cache',
  148. 'connection' => 'Keep-Alive',
  149. 'cache-control' => 'no-cache',
  150. 'content-type' => '',
  151. 'content-length' => '',
  152. )
  153. [ info ] [ PARAM ] array (
  154. )
  155. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  156. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000089s ]
  157. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000085s ]
  158. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000048s ]
  159. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  160. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  161. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  162. 0 => 'user',
  163. 1 => 'site',
  164. 2 => 'config',
  165. ) ]
  166. [ info ] [ LOG ] INIT File
  167. ---------------------------------------------------------------
  168. [ 2022-04-20T11:09:07+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/guild/apply?ref=addtabs
  169. [运行时间:0.151711s] [吞吐率:6.59req/s] [内存消耗:453.91kb] [文件加载:134]
  170. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  171. [ info ] [ CACHE ] INIT File
  172. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000287s ]
  173. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  174. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  175. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  176. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000063s ]
  177. [ info ] [ ROUTE ] array (
  178. 'type' => 'module',
  179. 'module' =>
  180. array (
  181. 0 => 'admin',
  182. 1 => 'guild.apply',
  183. 2 => NULL,
  184. ),
  185. )
  186. [ info ] [ HEADER ] array (
  187. 'cookie' => '_ga=GA1.2.302920899.1627459988',
  188. 'accept-language' => 'zh-CN,zh;q=0.9',
  189. 'accept-encoding' => 'gzip, deflate, br',
  190. 'sec-fetch-dest' => 'document',
  191. 'sec-fetch-user' => '?1',
  192. 'sec-fetch-mode' => 'navigate',
  193. 'sec-fetch-site' => 'none',
  194. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  195. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  196. 'upgrade-insecure-requests' => '1',
  197. 'sec-ch-ua-platform' => '"macOS"',
  198. 'sec-ch-ua-mobile' => '?0',
  199. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  200. 'host' => 'voicechat.lanmaonet.com',
  201. 'content-type' => '',
  202. 'content-length' => '',
  203. )
  204. [ info ] [ PARAM ] array (
  205. 'ref' => 'addtabs',
  206. )
  207. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  208. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000744s ]
  209. [ info ] [ SESSION ] INIT array (
  210. 'id' => '',
  211. 'var_session_id' => '',
  212. 'prefix' => 'think',
  213. 'type' => '',
  214. 'auto_start' => true,
  215. )
  216. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/common/view/tpl/dispatch_jump.tpl [ array (
  217. 0 => 'code',
  218. 1 => 'msg',
  219. 2 => 'data',
  220. 3 => 'url',
  221. 4 => 'wait',
  222. ) ]
  223. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.002003s ]
  224. [ info ] [ LOG ] INIT File
  225. ---------------------------------------------------------------
  226. [ 2022-04-20T11:09:08+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/index/login?url=%2FlcFzdPIjLH.php%2Fguild%2Fapply%3Fref%3Daddtabs
  227. [运行时间:0.019092s] [吞吐率:52.38req/s] [内存消耗:554.56kb] [文件加载:139]
  228. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  229. [ info ] [ CACHE ] INIT File
  230. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000191s ]
  231. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000054s ]
  232. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000079s ]
  233. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  234. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  235. [ info ] [ ROUTE ] array (
  236. 'type' => 'module',
  237. 'module' =>
  238. array (
  239. 0 => 'admin',
  240. 1 => 'index',
  241. 2 => 'login',
  242. ),
  243. )
  244. [ info ] [ HEADER ] array (
  245. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv',
  246. 'accept-language' => 'zh-CN,zh;q=0.9',
  247. 'accept-encoding' => 'gzip, deflate, br',
  248. 'referer' => 'https://voicechat.lanmaonet.com/lcFzdPIjLH.php/guild/apply?ref=addtabs',
  249. 'sec-fetch-dest' => 'document',
  250. 'sec-fetch-user' => '?1',
  251. 'sec-fetch-mode' => 'navigate',
  252. 'sec-fetch-site' => 'same-origin',
  253. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  254. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  255. 'upgrade-insecure-requests' => '1',
  256. 'sec-ch-ua-platform' => '"macOS"',
  257. 'sec-ch-ua-mobile' => '?0',
  258. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  259. 'host' => 'voicechat.lanmaonet.com',
  260. 'content-type' => '',
  261. 'content-length' => '',
  262. )
  263. [ info ] [ PARAM ] array (
  264. 'url' => '/lcFzdPIjLH.php/guild/apply?ref=addtabs',
  265. )
  266. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  267. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000081s ]
  268. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  269. [ info ] [ SESSION ] INIT array (
  270. 'id' => '',
  271. 'var_session_id' => '',
  272. 'prefix' => 'think',
  273. 'type' => '',
  274. 'auto_start' => true,
  275. )
  276. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000039s ]
  277. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  278. [ info ] [ RUN ] app\admin\controller\Index->login[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Index.php ]
  279. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/index/login.html [ array (
  280. 0 => 'breadcrumb',
  281. 1 => 'site',
  282. 2 => 'config',
  283. 3 => 'auth',
  284. 4 => 'admin',
  285. 5 => 'background',
  286. 6 => 'title',
  287. ) ]
  288. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000016s ]
  289. [ info ] [ LOG ] INIT File
  290. ---------------------------------------------------------------
  291. [ 2022-04-20T11:09:09+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/index.php?s=/captcha
  292. [运行时间:0.049005s] [吞吐率:20.41req/s] [内存消耗:346.38kb] [文件加载:122]
  293. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  294. [ info ] [ CACHE ] INIT File
  295. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000183s ]
  296. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  297. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  298. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  299. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  300. [ info ] [ ROUTE ] array (
  301. 'type' => 'method',
  302. 'method' =>
  303. array (
  304. 0 => '\\think\\captcha\\CaptchaController',
  305. 1 => 'index',
  306. ),
  307. 'var' =>
  308. array (
  309. ),
  310. )
  311. [ info ] [ HEADER ] array (
  312. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv',
  313. 'accept-language' => 'zh-CN,zh;q=0.9',
  314. 'accept-encoding' => 'gzip, deflate, br',
  315. 'sec-fetch-dest' => 'image',
  316. 'sec-fetch-mode' => 'no-cors',
  317. 'sec-fetch-site' => 'same-origin',
  318. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  319. 'sec-ch-ua-platform' => '"macOS"',
  320. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  321. 'sec-ch-ua-mobile' => '?0',
  322. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  323. 'host' => 'voicechat.lanmaonet.com',
  324. 'content-type' => '',
  325. 'content-length' => '',
  326. )
  327. [ info ] [ PARAM ] array (
  328. 'id' => NULL,
  329. )
  330. [ info ] [ RUN ] think\captcha\CaptchaController->index[ /www/wwwroot/voicechat.lanmaonet.com/vendor/topthink/think-captcha/src/CaptchaController.php ]
  331. [ info ] [ SESSION ] INIT array (
  332. 'id' => '',
  333. 'var_session_id' => '',
  334. 'prefix' => 'think',
  335. 'type' => '',
  336. 'auto_start' => true,
  337. )
  338. [ info ] [ LOG ] INIT File
  339. ---------------------------------------------------------------
  340. [ 2022-04-20T11:09:09+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1650424148&v=1650424148
  341. [运行时间:0.035251s] [吞吐率:28.37req/s] [内存消耗:554.24kb] [文件加载:140]
  342. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  343. [ info ] [ CACHE ] INIT File
  344. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000190s ]
  345. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  346. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  347. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  348. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  349. [ info ] [ ROUTE ] array (
  350. 'type' => 'module',
  351. 'module' =>
  352. array (
  353. 0 => 'admin',
  354. 1 => 'ajax',
  355. 2 => 'lang',
  356. ),
  357. )
  358. [ info ] [ HEADER ] array (
  359. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv',
  360. 'accept-language' => 'zh-CN,zh;q=0.9',
  361. 'accept-encoding' => 'gzip, deflate, br',
  362. 'sec-fetch-dest' => 'script',
  363. 'sec-fetch-mode' => 'no-cors',
  364. 'sec-fetch-site' => 'same-origin',
  365. 'accept' => '*/*',
  366. 'sec-ch-ua-platform' => '"macOS"',
  367. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  368. 'sec-ch-ua-mobile' => '?0',
  369. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  370. 'host' => 'voicechat.lanmaonet.com',
  371. 'content-type' => '',
  372. 'content-length' => '',
  373. )
  374. [ info ] [ PARAM ] array (
  375. 'callback' => 'define',
  376. 'controllername' => 'index',
  377. 'lang' => 'zh-cn',
  378. 'v' => '1650424148',
  379. )
  380. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  381. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  382. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  383. [ info ] [ SESSION ] INIT array (
  384. 'id' => '',
  385. 'var_session_id' => '',
  386. 'prefix' => 'think',
  387. 'type' => '',
  388. 'auto_start' => true,
  389. )
  390. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000026s ]
  391. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  392. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  393. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  394. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000034s ]
  395. [ info ] [ LOG ] INIT File
  396. ---------------------------------------------------------------
  397. [ 2022-04-20T11:09:12+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/index.php?s=/captcha&r=0.8501646657807806
  398. [运行时间:0.023792s] [吞吐率:42.03req/s] [内存消耗:345.30kb] [文件加载:122]
  399. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  400. [ info ] [ CACHE ] INIT File
  401. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000218s ]
  402. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  403. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  404. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  405. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  406. [ info ] [ ROUTE ] array (
  407. 'type' => 'method',
  408. 'method' =>
  409. array (
  410. 0 => '\\think\\captcha\\CaptchaController',
  411. 1 => 'index',
  412. ),
  413. 'var' =>
  414. array (
  415. ),
  416. )
  417. [ info ] [ HEADER ] array (
  418. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  419. 'accept-language' => 'zh-CN,zh;q=0.9',
  420. 'accept-encoding' => 'gzip, deflate, br',
  421. 'sec-fetch-dest' => 'image',
  422. 'sec-fetch-mode' => 'no-cors',
  423. 'sec-fetch-site' => 'same-origin',
  424. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  425. 'sec-ch-ua-platform' => '"macOS"',
  426. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  427. 'sec-ch-ua-mobile' => '?0',
  428. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  429. 'host' => 'voicechat.lanmaonet.com',
  430. 'content-type' => '',
  431. 'content-length' => '',
  432. )
  433. [ info ] [ PARAM ] array (
  434. 'r' => '0.8501646657807806',
  435. 'id' => NULL,
  436. )
  437. [ info ] [ RUN ] think\captcha\CaptchaController->index[ /www/wwwroot/voicechat.lanmaonet.com/vendor/topthink/think-captcha/src/CaptchaController.php ]
  438. [ info ] [ SESSION ] INIT array (
  439. 'id' => '',
  440. 'var_session_id' => '',
  441. 'prefix' => 'think',
  442. 'type' => '',
  443. 'auto_start' => true,
  444. )
  445. [ info ] [ LOG ] INIT File
  446. ---------------------------------------------------------------
  447. [ 2022-04-20T11:09:13+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/index.php?s=/captcha&r=0.2758483233743865
  448. [运行时间:0.005523s] [吞吐率:181.05req/s] [内存消耗:345.30kb] [文件加载:122]
  449. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  450. [ info ] [ CACHE ] INIT File
  451. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000263s ]
  452. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  453. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  454. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  455. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  456. [ info ] [ ROUTE ] array (
  457. 'type' => 'method',
  458. 'method' =>
  459. array (
  460. 0 => '\\think\\captcha\\CaptchaController',
  461. 1 => 'index',
  462. ),
  463. 'var' =>
  464. array (
  465. ),
  466. )
  467. [ info ] [ HEADER ] array (
  468. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  469. 'accept-language' => 'zh-CN,zh;q=0.9',
  470. 'accept-encoding' => 'gzip, deflate, br',
  471. 'sec-fetch-dest' => 'image',
  472. 'sec-fetch-mode' => 'no-cors',
  473. 'sec-fetch-site' => 'same-origin',
  474. 'accept' => 'image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8',
  475. 'sec-ch-ua-platform' => '"macOS"',
  476. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  477. 'sec-ch-ua-mobile' => '?0',
  478. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  479. 'host' => 'voicechat.lanmaonet.com',
  480. 'content-type' => '',
  481. 'content-length' => '',
  482. )
  483. [ info ] [ PARAM ] array (
  484. 'r' => '0.2758483233743865',
  485. 'id' => NULL,
  486. )
  487. [ info ] [ RUN ] think\captcha\CaptchaController->index[ /www/wwwroot/voicechat.lanmaonet.com/vendor/topthink/think-captcha/src/CaptchaController.php ]
  488. [ info ] [ SESSION ] INIT array (
  489. 'id' => '',
  490. 'var_session_id' => '',
  491. 'prefix' => 'think',
  492. 'type' => '',
  493. 'auto_start' => true,
  494. )
  495. [ info ] [ LOG ] INIT File
  496. ---------------------------------------------------------------
  497. [ 2022-04-20T11:09:19+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/lcFzdPIjLH.php/index/login?url=%2FlcFzdPIjLH.php%2Fguild%2Fapply%3Fref%3Daddtabs
  498. [运行时间:0.080947s] [吞吐率:12.35req/s] [内存消耗:768.84kb] [文件加载:149]
  499. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  500. [ info ] [ CACHE ] INIT File
  501. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000242s ]
  502. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  503. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  504. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  505. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  506. [ info ] [ ROUTE ] array (
  507. 'type' => 'module',
  508. 'module' =>
  509. array (
  510. 0 => 'admin',
  511. 1 => 'index',
  512. 2 => 'login',
  513. ),
  514. )
  515. [ info ] [ HEADER ] array (
  516. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  517. 'accept-language' => 'zh-CN,zh;q=0.9',
  518. 'accept-encoding' => 'gzip, deflate, br',
  519. 'sec-fetch-dest' => 'empty',
  520. 'sec-fetch-mode' => 'cors',
  521. 'sec-fetch-site' => 'same-origin',
  522. 'origin' => 'https://voicechat.lanmaonet.com',
  523. 'sec-ch-ua-platform' => '"macOS"',
  524. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  525. 'sec-ch-ua-mobile' => '?0',
  526. 'x-requested-with' => 'XMLHttpRequest',
  527. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  528. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  529. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  530. 'content-length' => '86',
  531. 'host' => 'voicechat.lanmaonet.com',
  532. )
  533. [ info ] [ PARAM ] array (
  534. 'url' => '/lcFzdPIjLH.php/guild/apply?ref=addtabs',
  535. '__token__' => 'c61a81981adf5f7a7f7deb8c6d56b7d5',
  536. 'username' => 'admin',
  537. 'password' => '123456',
  538. 'captcha' => 'ge7v',
  539. )
  540. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  541. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  542. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  543. [ info ] [ SESSION ] INIT array (
  544. 'id' => '',
  545. 'var_session_id' => '',
  546. 'prefix' => 'think',
  547. 'type' => '',
  548. 'auto_start' => true,
  549. )
  550. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000041s ]
  551. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  552. [ info ] [ RUN ] app\admin\controller\Index->login[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Index.php ]
  553. [ info ] [ DB ] INIT mysql
  554. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.011192s ]
  555. [ info ] [ LOG ] INIT File
  556. ---------------------------------------------------------------
  557. [ 2022-04-20T11:09:19+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/guild/apply?ref=addtabs
  558. [运行时间:0.036477s] [吞吐率:27.41req/s] [内存消耗:1,231.40kb] [文件加载:141]
  559. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  560. [ info ] [ CACHE ] INIT File
  561. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000166s ]
  562. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000076s ]
  563. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000098s ]
  564. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  565. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  566. [ info ] [ ROUTE ] array (
  567. 'type' => 'module',
  568. 'module' =>
  569. array (
  570. 0 => 'admin',
  571. 1 => 'guild.apply',
  572. 2 => NULL,
  573. ),
  574. )
  575. [ info ] [ HEADER ] array (
  576. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  577. 'accept-language' => 'zh-CN,zh;q=0.9',
  578. 'accept-encoding' => 'gzip, deflate, br',
  579. 'sec-fetch-dest' => 'document',
  580. 'sec-fetch-user' => '?1',
  581. 'sec-fetch-mode' => 'navigate',
  582. 'sec-fetch-site' => 'same-origin',
  583. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  584. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  585. 'upgrade-insecure-requests' => '1',
  586. 'sec-ch-ua-platform' => '"macOS"',
  587. 'sec-ch-ua-mobile' => '?0',
  588. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  589. 'host' => 'voicechat.lanmaonet.com',
  590. 'content-type' => '',
  591. 'content-length' => '',
  592. )
  593. [ info ] [ PARAM ] array (
  594. 'ref' => 'addtabs',
  595. )
  596. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  597. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  598. [ info ] [ SESSION ] INIT array (
  599. 'id' => '',
  600. 'var_session_id' => '',
  601. 'prefix' => 'think',
  602. 'type' => '',
  603. 'auto_start' => true,
  604. )
  605. [ info ] [ DB ] INIT mysql
  606. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000020s ]
  607. [ info ] [ LOG ] INIT File
  608. ---------------------------------------------------------------
  609. [ 2022-04-20T11:09:19+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/index/index
  610. [运行时间:0.190302s] [吞吐率:5.25req/s] [内存消耗:1,379.47kb] [文件加载:158]
  611. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  612. [ info ] [ CACHE ] INIT File
  613. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000155s ]
  614. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  615. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  616. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  617. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  618. [ info ] [ ROUTE ] array (
  619. 'type' => 'module',
  620. 'module' =>
  621. array (
  622. 0 => 'admin',
  623. 1 => 'index',
  624. 2 => 'index',
  625. ),
  626. )
  627. [ info ] [ HEADER ] array (
  628. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  629. 'accept-language' => 'zh-CN,zh;q=0.9',
  630. 'accept-encoding' => 'gzip, deflate, br',
  631. 'sec-ch-ua-platform' => '"macOS"',
  632. 'sec-ch-ua-mobile' => '?0',
  633. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  634. 'sec-fetch-dest' => 'document',
  635. 'sec-fetch-user' => '?1',
  636. 'sec-fetch-mode' => 'navigate',
  637. 'sec-fetch-site' => 'same-origin',
  638. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  639. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  640. 'upgrade-insecure-requests' => '1',
  641. 'host' => 'voicechat.lanmaonet.com',
  642. 'content-type' => '',
  643. 'content-length' => '',
  644. )
  645. [ info ] [ PARAM ] array (
  646. )
  647. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  648. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  649. [ info ] [ SESSION ] INIT array (
  650. 'id' => '',
  651. 'var_session_id' => '',
  652. 'prefix' => 'think',
  653. 'type' => '',
  654. 'auto_start' => true,
  655. )
  656. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  657. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000023s ]
  658. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  659. [ info ] [ RUN ] app\admin\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Index.php ]
  660. [ info ] [ DB ] INIT mysql
  661. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/index/index.html [ array (
  662. 0 => 'breadcrumb',
  663. 1 => 'site',
  664. 2 => 'config',
  665. 3 => 'auth',
  666. 4 => 'admin',
  667. 5 => 'menulist',
  668. 6 => 'navlist',
  669. 7 => 'fixedmenu',
  670. 8 => 'referermenu',
  671. 9 => 'title',
  672. ) ]
  673. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000022s ]
  674. [ info ] [ LOG ] INIT File
  675. ---------------------------------------------------------------
  676. [ 2022-04-20T11:09:19+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/guild/apply?addtabs=1
  677. [运行时间:0.032870s] [吞吐率:30.42req/s] [内存消耗:1,131.60kb] [文件加载:146]
  678. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  679. [ info ] [ CACHE ] INIT File
  680. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000200s ]
  681. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  682. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  683. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  684. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  685. [ info ] [ ROUTE ] array (
  686. 'type' => 'module',
  687. 'module' =>
  688. array (
  689. 0 => 'admin',
  690. 1 => 'guild.apply',
  691. 2 => NULL,
  692. ),
  693. )
  694. [ info ] [ HEADER ] array (
  695. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  696. 'accept-language' => 'zh-CN,zh;q=0.9',
  697. 'accept-encoding' => 'gzip, deflate, br',
  698. 'sec-fetch-dest' => 'iframe',
  699. 'sec-fetch-mode' => 'navigate',
  700. 'sec-fetch-site' => 'same-origin',
  701. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  702. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  703. 'upgrade-insecure-requests' => '1',
  704. 'sec-ch-ua-platform' => '"macOS"',
  705. 'sec-ch-ua-mobile' => '?0',
  706. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  707. 'host' => 'voicechat.lanmaonet.com',
  708. 'content-type' => '',
  709. 'content-length' => '',
  710. )
  711. [ info ] [ PARAM ] array (
  712. 'addtabs' => '1',
  713. )
  714. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  715. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  716. [ info ] [ SESSION ] INIT array (
  717. 'id' => '',
  718. 'var_session_id' => '',
  719. 'prefix' => 'think',
  720. 'type' => '',
  721. 'auto_start' => true,
  722. )
  723. [ info ] [ DB ] INIT mysql
  724. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  725. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000025s ]
  726. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/guild/apply.php
  727. [ info ] [ RUN ] app\admin\controller\guild\Apply->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/guild/Apply.php ]
  728. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/guild/apply/index.html [ array (
  729. 0 => 'breadcrumb',
  730. 1 => 'site',
  731. 2 => 'config',
  732. 3 => 'auth',
  733. 4 => 'admin',
  734. 5 => 'statusList',
  735. ) ]
  736. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000022s ]
  737. [ info ] [ LOG ] INIT File
  738. ---------------------------------------------------------------
  739. [ 2022-04-20T11:09:19+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/dashboard?addtabs=1
  740. [运行时间:0.094448s] [吞吐率:10.59req/s] [内存消耗:1,140.55kb] [文件加载:146]
  741. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  742. [ info ] [ CACHE ] INIT File
  743. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000173s ]
  744. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  745. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  746. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  747. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  748. [ info ] [ ROUTE ] array (
  749. 'type' => 'module',
  750. 'module' =>
  751. array (
  752. 0 => 'admin',
  753. 1 => 'dashboard',
  754. 2 => NULL,
  755. ),
  756. )
  757. [ info ] [ HEADER ] array (
  758. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  759. 'accept-language' => 'zh-CN,zh;q=0.9',
  760. 'accept-encoding' => 'gzip, deflate, br',
  761. 'sec-fetch-dest' => 'iframe',
  762. 'sec-fetch-mode' => 'navigate',
  763. 'sec-fetch-site' => 'same-origin',
  764. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  765. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  766. 'upgrade-insecure-requests' => '1',
  767. 'sec-ch-ua-platform' => '"macOS"',
  768. 'sec-ch-ua-mobile' => '?0',
  769. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  770. 'host' => 'voicechat.lanmaonet.com',
  771. 'content-type' => '',
  772. 'content-length' => '',
  773. )
  774. [ info ] [ PARAM ] array (
  775. 'addtabs' => '1',
  776. )
  777. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  778. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  779. [ info ] [ SESSION ] INIT array (
  780. 'id' => '',
  781. 'var_session_id' => '',
  782. 'prefix' => 'think',
  783. 'type' => '',
  784. 'auto_start' => true,
  785. )
  786. [ info ] [ DB ] INIT mysql
  787. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  788. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000026s ]
  789. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/dashboard.php
  790. [ info ] [ RUN ] app\admin\controller\Dashboard->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Dashboard.php ]
  791. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/dashboard/index.html [ array (
  792. 0 => 'breadcrumb',
  793. 1 => 'site',
  794. 2 => 'config',
  795. 3 => 'auth',
  796. 4 => 'admin',
  797. 5 => 'todayRechargeMoney',
  798. 6 => 'yesterdayRechargeMoney',
  799. 7 => 'monthRechargeMoney',
  800. 8 => 'lastMonthRechargeMoney',
  801. ) ]
  802. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000035s ]
  803. [ info ] [ LOG ] INIT File
  804. ---------------------------------------------------------------
  805. [ 2022-04-20T11:09:19+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1650424159&v=1650424159
  806. [运行时间:0.003556s] [吞吐率:281.21req/s] [内存消耗:554.44kb] [文件加载:140]
  807. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  808. [ info ] [ CACHE ] INIT File
  809. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000177s ]
  810. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  811. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  812. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  813. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  814. [ info ] [ ROUTE ] array (
  815. 'type' => 'module',
  816. 'module' =>
  817. array (
  818. 0 => 'admin',
  819. 1 => 'ajax',
  820. 2 => 'lang',
  821. ),
  822. )
  823. [ info ] [ HEADER ] array (
  824. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  825. 'accept-language' => 'zh-CN,zh;q=0.9',
  826. 'accept-encoding' => 'gzip, deflate, br',
  827. 'sec-fetch-dest' => 'script',
  828. 'sec-fetch-mode' => 'no-cors',
  829. 'sec-fetch-site' => 'same-origin',
  830. 'accept' => '*/*',
  831. 'sec-ch-ua-platform' => '"macOS"',
  832. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  833. 'sec-ch-ua-mobile' => '?0',
  834. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  835. 'host' => 'voicechat.lanmaonet.com',
  836. 'content-type' => '',
  837. 'content-length' => '',
  838. )
  839. [ info ] [ PARAM ] array (
  840. 'callback' => 'define',
  841. 'controllername' => 'index',
  842. 'lang' => 'zh-cn',
  843. 'v' => '1650424159',
  844. )
  845. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  846. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000111s ]
  847. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  848. [ info ] [ SESSION ] INIT array (
  849. 'id' => '',
  850. 'var_session_id' => '',
  851. 'prefix' => 'think',
  852. 'type' => '',
  853. 'auto_start' => true,
  854. )
  855. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000038s ]
  856. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  857. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  858. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  859. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000019s ]
  860. [ info ] [ LOG ] INIT File
  861. ---------------------------------------------------------------
  862. [ 2022-04-20T11:09:19+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=guild.apply&lang=zh-cn&v=1650424159&v=1650424159
  863. [运行时间:0.003930s] [吞吐率:254.46req/s] [内存消耗:552.20kb] [文件加载:140]
  864. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  865. [ info ] [ CACHE ] INIT File
  866. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000146s ]
  867. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000055s ]
  868. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000073s ]
  869. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  870. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  871. [ info ] [ ROUTE ] array (
  872. 'type' => 'module',
  873. 'module' =>
  874. array (
  875. 0 => 'admin',
  876. 1 => 'ajax',
  877. 2 => 'lang',
  878. ),
  879. )
  880. [ info ] [ HEADER ] array (
  881. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  882. 'accept-language' => 'zh-CN,zh;q=0.9',
  883. 'accept-encoding' => 'gzip, deflate, br',
  884. 'sec-fetch-dest' => 'script',
  885. 'sec-fetch-mode' => 'no-cors',
  886. 'sec-fetch-site' => 'same-origin',
  887. 'accept' => '*/*',
  888. 'sec-ch-ua-platform' => '"macOS"',
  889. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  890. 'sec-ch-ua-mobile' => '?0',
  891. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  892. 'host' => 'voicechat.lanmaonet.com',
  893. 'content-type' => '',
  894. 'content-length' => '',
  895. )
  896. [ info ] [ PARAM ] array (
  897. 'callback' => 'define',
  898. 'controllername' => 'guild.apply',
  899. 'lang' => 'zh-cn',
  900. 'v' => '1650424159',
  901. )
  902. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  903. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000087s ]
  904. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  905. [ info ] [ SESSION ] INIT array (
  906. 'id' => '',
  907. 'var_session_id' => '',
  908. 'prefix' => 'think',
  909. 'type' => '',
  910. 'auto_start' => true,
  911. )
  912. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000035s ]
  913. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  914. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  915. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/guild/apply.php
  916. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000014s ]
  917. [ info ] [ LOG ] INIT File
  918. ---------------------------------------------------------------
  919. [ 2022-04-20T11:09:19+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=dashboard&lang=zh-cn&v=1650424159&v=1650424159
  920. [运行时间:0.006245s] [吞吐率:160.12req/s] [内存消耗:553.56kb] [文件加载:140]
  921. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  922. [ info ] [ CACHE ] INIT File
  923. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000141s ]
  924. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  925. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  926. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  927. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000015s ]
  928. [ info ] [ ROUTE ] array (
  929. 'type' => 'module',
  930. 'module' =>
  931. array (
  932. 0 => 'admin',
  933. 1 => 'ajax',
  934. 2 => 'lang',
  935. ),
  936. )
  937. [ info ] [ HEADER ] array (
  938. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  939. 'accept-language' => 'zh-CN,zh;q=0.9',
  940. 'accept-encoding' => 'gzip, deflate, br',
  941. 'sec-fetch-dest' => 'script',
  942. 'sec-fetch-mode' => 'no-cors',
  943. 'sec-fetch-site' => 'same-origin',
  944. 'accept' => '*/*',
  945. 'sec-ch-ua-platform' => '"macOS"',
  946. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  947. 'sec-ch-ua-mobile' => '?0',
  948. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  949. 'host' => 'voicechat.lanmaonet.com',
  950. 'content-type' => '',
  951. 'content-length' => '',
  952. )
  953. [ info ] [ PARAM ] array (
  954. 'callback' => 'define',
  955. 'controllername' => 'dashboard',
  956. 'lang' => 'zh-cn',
  957. 'v' => '1650424159',
  958. )
  959. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  960. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  961. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000037s ]
  962. [ info ] [ SESSION ] INIT array (
  963. 'id' => '',
  964. 'var_session_id' => '',
  965. 'prefix' => 'think',
  966. 'type' => '',
  967. 'auto_start' => true,
  968. )
  969. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000024s ]
  970. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  971. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  972. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/dashboard.php
  973. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000012s ]
  974. [ info ] [ LOG ] INIT File
  975. ---------------------------------------------------------------
  976. [ 2022-04-20T11:09:20+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/guild/apply/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1650424159626
  977. [运行时间:0.102602s] [吞吐率:9.75req/s] [内存消耗:1,287.08kb] [文件加载:153]
  978. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  979. [ info ] [ CACHE ] INIT File
  980. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000154s ]
  981. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  982. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000085s ]
  983. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  984. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  985. [ info ] [ ROUTE ] array (
  986. 'type' => 'module',
  987. 'module' =>
  988. array (
  989. 0 => 'admin',
  990. 1 => 'guild.apply',
  991. 2 => 'index',
  992. ),
  993. )
  994. [ info ] [ HEADER ] array (
  995. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  996. 'accept-language' => 'zh-CN,zh;q=0.9',
  997. 'accept-encoding' => 'gzip, deflate, br',
  998. 'sec-fetch-dest' => 'empty',
  999. 'sec-fetch-mode' => 'cors',
  1000. 'sec-fetch-site' => 'same-origin',
  1001. 'sec-ch-ua-platform' => '"macOS"',
  1002. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  1003. 'sec-ch-ua-mobile' => '?0',
  1004. 'x-requested-with' => 'XMLHttpRequest',
  1005. 'content-type' => 'application/json',
  1006. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1007. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  1008. 'host' => 'voicechat.lanmaonet.com',
  1009. 'content-length' => '',
  1010. )
  1011. [ info ] [ PARAM ] array (
  1012. 'addtabs' => '1',
  1013. 'sort' => 'id',
  1014. 'order' => 'desc',
  1015. 'offset' => '0',
  1016. 'limit' => '10',
  1017. 'filter' => '{}',
  1018. 'op' => '{}',
  1019. '_' => '1650424159626',
  1020. )
  1021. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1022. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  1023. [ info ] [ SESSION ] INIT array (
  1024. 'id' => '',
  1025. 'var_session_id' => '',
  1026. 'prefix' => 'think',
  1027. 'type' => '',
  1028. 'auto_start' => true,
  1029. )
  1030. [ info ] [ DB ] INIT mysql
  1031. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  1032. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000024s ]
  1033. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/guild/apply.php
  1034. [ info ] [ RUN ] app\admin\controller\guild\Apply->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/guild/Apply.php ]
  1035. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000021s ]
  1036. [ info ] [ LOG ] INIT File
  1037. ---------------------------------------------------------------
  1038. [ 2022-04-20T11:09:29+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/user?addtabs=1
  1039. [运行时间:0.060011s] [吞吐率:16.66req/s] [内存消耗:1,133.59kb] [文件加载:146]
  1040. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1041. [ info ] [ CACHE ] INIT File
  1042. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000237s ]
  1043. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1044. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1045. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1046. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  1047. [ info ] [ ROUTE ] array (
  1048. 'type' => 'module',
  1049. 'module' =>
  1050. array (
  1051. 0 => 'admin',
  1052. 1 => 'user.user',
  1053. 2 => NULL,
  1054. ),
  1055. )
  1056. [ info ] [ HEADER ] array (
  1057. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  1058. 'accept-language' => 'zh-CN,zh;q=0.9',
  1059. 'accept-encoding' => 'gzip, deflate, br',
  1060. 'sec-fetch-dest' => 'iframe',
  1061. 'sec-fetch-mode' => 'navigate',
  1062. 'sec-fetch-site' => 'same-origin',
  1063. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  1064. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  1065. 'upgrade-insecure-requests' => '1',
  1066. 'sec-ch-ua-platform' => '"macOS"',
  1067. 'sec-ch-ua-mobile' => '?0',
  1068. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  1069. 'host' => 'voicechat.lanmaonet.com',
  1070. 'content-type' => '',
  1071. 'content-length' => '',
  1072. )
  1073. [ info ] [ PARAM ] array (
  1074. 'addtabs' => '1',
  1075. )
  1076. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1077. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  1078. [ info ] [ SESSION ] INIT array (
  1079. 'id' => '',
  1080. 'var_session_id' => '',
  1081. 'prefix' => 'think',
  1082. 'type' => '',
  1083. 'auto_start' => true,
  1084. )
  1085. [ info ] [ DB ] INIT mysql
  1086. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000074s ]
  1087. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000034s ]
  1088. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1089. [ info ] [ RUN ] app\admin\controller\user\User->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/User.php ]
  1090. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/user/user/index.html [ array (
  1091. 0 => 'breadcrumb',
  1092. 1 => 'site',
  1093. 2 => 'config',
  1094. 3 => 'auth',
  1095. 4 => 'admin',
  1096. ) ]
  1097. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000034s ]
  1098. [ info ] [ LOG ] INIT File
  1099. ---------------------------------------------------------------
  1100. [ 2022-04-20T11:09:30+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=user.user&lang=zh-cn&v=1650424169&v=1650424169
  1101. [运行时间:0.002591s] [吞吐率:385.93req/s] [内存消耗:552.93kb] [文件加载:140]
  1102. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1103. [ info ] [ CACHE ] INIT File
  1104. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000158s ]
  1105. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1106. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1107. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1108. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  1109. [ info ] [ ROUTE ] array (
  1110. 'type' => 'module',
  1111. 'module' =>
  1112. array (
  1113. 0 => 'admin',
  1114. 1 => 'ajax',
  1115. 2 => 'lang',
  1116. ),
  1117. )
  1118. [ info ] [ HEADER ] array (
  1119. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  1120. 'accept-language' => 'zh-CN,zh;q=0.9',
  1121. 'accept-encoding' => 'gzip, deflate, br',
  1122. 'sec-fetch-dest' => 'script',
  1123. 'sec-fetch-mode' => 'no-cors',
  1124. 'sec-fetch-site' => 'same-origin',
  1125. 'accept' => '*/*',
  1126. 'sec-ch-ua-platform' => '"macOS"',
  1127. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  1128. 'sec-ch-ua-mobile' => '?0',
  1129. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  1130. 'host' => 'voicechat.lanmaonet.com',
  1131. 'content-type' => '',
  1132. 'content-length' => '',
  1133. )
  1134. [ info ] [ PARAM ] array (
  1135. 'callback' => 'define',
  1136. 'controllername' => 'user.user',
  1137. 'lang' => 'zh-cn',
  1138. 'v' => '1650424169',
  1139. )
  1140. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1141. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  1142. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  1143. [ info ] [ SESSION ] INIT array (
  1144. 'id' => '',
  1145. 'var_session_id' => '',
  1146. 'prefix' => 'think',
  1147. 'type' => '',
  1148. 'auto_start' => true,
  1149. )
  1150. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000027s ]
  1151. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1152. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1153. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1154. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000020s ]
  1155. [ info ] [ LOG ] INIT File
  1156. ---------------------------------------------------------------
  1157. [ 2022-04-20T11:09:30+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/user/index?sort=user.id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1650424169753
  1158. [运行时间:0.098802s] [吞吐率:10.12req/s] [内存消耗:1,349.08kb] [文件加载:154]
  1159. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  1160. [ info ] [ CACHE ] INIT File
  1161. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000202s ]
  1162. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  1163. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  1164. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1165. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1166. [ info ] [ ROUTE ] array (
  1167. 'type' => 'module',
  1168. 'module' =>
  1169. array (
  1170. 0 => 'admin',
  1171. 1 => 'user.user',
  1172. 2 => 'index',
  1173. ),
  1174. )
  1175. [ info ] [ HEADER ] array (
  1176. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  1177. 'accept-language' => 'zh-CN,zh;q=0.9',
  1178. 'accept-encoding' => 'gzip, deflate, br',
  1179. 'sec-fetch-dest' => 'empty',
  1180. 'sec-fetch-mode' => 'cors',
  1181. 'sec-fetch-site' => 'same-origin',
  1182. 'sec-ch-ua-platform' => '"macOS"',
  1183. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  1184. 'sec-ch-ua-mobile' => '?0',
  1185. 'x-requested-with' => 'XMLHttpRequest',
  1186. 'content-type' => 'application/json',
  1187. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1188. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  1189. 'host' => 'voicechat.lanmaonet.com',
  1190. 'content-length' => '',
  1191. )
  1192. [ info ] [ PARAM ] array (
  1193. 'sort' => 'user.id',
  1194. 'order' => 'desc',
  1195. 'offset' => '0',
  1196. 'limit' => '10',
  1197. 'filter' => '{}',
  1198. 'op' => '{}',
  1199. '_' => '1650424169753',
  1200. )
  1201. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1202. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000072s ]
  1203. [ info ] [ SESSION ] INIT array (
  1204. 'id' => '',
  1205. 'var_session_id' => '',
  1206. 'prefix' => 'think',
  1207. 'type' => '',
  1208. 'auto_start' => true,
  1209. )
  1210. [ info ] [ DB ] INIT mysql
  1211. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000072s ]
  1212. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000035s ]
  1213. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1214. [ info ] [ RUN ] app\admin\controller\user\User->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/User.php ]
  1215. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000022s ]
  1216. [ info ] [ LOG ] INIT File
  1217. ---------------------------------------------------------------
  1218. [ 2022-04-20T11:09:46+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/user/index?sort=user.id&order=desc&offset=10&limit=10&filter=%7B%7D&op=%7B%7D&_=1650424169754
  1219. [运行时间:0.026963s] [吞吐率:37.09req/s] [内存消耗:1,347.36kb] [文件加载:154]
  1220. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1221. [ info ] [ CACHE ] INIT File
  1222. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000208s ]
  1223. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1224. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1225. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1226. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1227. [ info ] [ ROUTE ] array (
  1228. 'type' => 'module',
  1229. 'module' =>
  1230. array (
  1231. 0 => 'admin',
  1232. 1 => 'user.user',
  1233. 2 => 'index',
  1234. ),
  1235. )
  1236. [ info ] [ HEADER ] array (
  1237. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  1238. 'accept-language' => 'zh-CN,zh;q=0.9',
  1239. 'accept-encoding' => 'gzip, deflate, br',
  1240. 'sec-fetch-dest' => 'empty',
  1241. 'sec-fetch-mode' => 'cors',
  1242. 'sec-fetch-site' => 'same-origin',
  1243. 'sec-ch-ua-platform' => '"macOS"',
  1244. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  1245. 'sec-ch-ua-mobile' => '?0',
  1246. 'x-requested-with' => 'XMLHttpRequest',
  1247. 'content-type' => 'application/json',
  1248. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1249. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  1250. 'host' => 'voicechat.lanmaonet.com',
  1251. 'content-length' => '',
  1252. )
  1253. [ info ] [ PARAM ] array (
  1254. 'sort' => 'user.id',
  1255. 'order' => 'desc',
  1256. 'offset' => '10',
  1257. 'limit' => '10',
  1258. 'filter' => '{}',
  1259. 'op' => '{}',
  1260. '_' => '1650424169754',
  1261. )
  1262. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1263. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  1264. [ info ] [ SESSION ] INIT array (
  1265. 'id' => '',
  1266. 'var_session_id' => '',
  1267. 'prefix' => 'think',
  1268. 'type' => '',
  1269. 'auto_start' => true,
  1270. )
  1271. [ info ] [ DB ] INIT mysql
  1272. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000066s ]
  1273. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000034s ]
  1274. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1275. [ info ] [ RUN ] app\admin\controller\user\User->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/User.php ]
  1276. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000033s ]
  1277. [ info ] [ LOG ] INIT File
  1278. ---------------------------------------------------------------
  1279. [ 2022-04-20T11:09:55+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/user/edit/ids/84?dialog=1
  1280. [运行时间:0.028143s] [吞吐率:35.53req/s] [内存消耗:1,170.78kb] [文件加载:146]
  1281. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1282. [ info ] [ CACHE ] INIT File
  1283. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000220s ]
  1284. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1285. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1286. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1287. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1288. [ info ] [ ROUTE ] array (
  1289. 'type' => 'module',
  1290. 'module' =>
  1291. array (
  1292. 0 => 'admin',
  1293. 1 => 'user.user',
  1294. 2 => 'edit',
  1295. ),
  1296. )
  1297. [ info ] [ HEADER ] array (
  1298. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  1299. 'accept-language' => 'zh-CN,zh;q=0.9',
  1300. 'accept-encoding' => 'gzip, deflate, br',
  1301. 'sec-fetch-dest' => 'iframe',
  1302. 'sec-fetch-mode' => 'navigate',
  1303. 'sec-fetch-site' => 'same-origin',
  1304. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  1305. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  1306. 'upgrade-insecure-requests' => '1',
  1307. 'sec-ch-ua-platform' => '"macOS"',
  1308. 'sec-ch-ua-mobile' => '?0',
  1309. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  1310. 'host' => 'voicechat.lanmaonet.com',
  1311. 'content-type' => '',
  1312. 'content-length' => '',
  1313. )
  1314. [ info ] [ PARAM ] array (
  1315. 'dialog' => '1',
  1316. 'ids' => '84',
  1317. )
  1318. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1319. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000082s ]
  1320. [ info ] [ SESSION ] INIT array (
  1321. 'id' => '',
  1322. 'var_session_id' => '',
  1323. 'prefix' => 'think',
  1324. 'type' => '',
  1325. 'auto_start' => true,
  1326. )
  1327. [ info ] [ DB ] INIT mysql
  1328. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  1329. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000032s ]
  1330. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1331. [ info ] [ RUN ] app\admin\controller\user\User->edit[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/User.php ]
  1332. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/user/user/edit.html [ array (
  1333. 0 => 'breadcrumb',
  1334. 1 => 'site',
  1335. 2 => 'config',
  1336. 3 => 'auth',
  1337. 4 => 'admin',
  1338. 5 => 'row',
  1339. ) ]
  1340. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000027s ]
  1341. [ info ] [ LOG ] INIT File
  1342. ---------------------------------------------------------------
  1343. [ 2022-04-20T11:09:55+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=user.user&lang=zh-cn&v=1650424195&v=1650424195
  1344. [运行时间:0.002448s] [吞吐率:408.52req/s] [内存消耗:553.16kb] [文件加载:140]
  1345. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1346. [ info ] [ CACHE ] INIT File
  1347. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000193s ]
  1348. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1349. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1350. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1351. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  1352. [ info ] [ ROUTE ] array (
  1353. 'type' => 'module',
  1354. 'module' =>
  1355. array (
  1356. 0 => 'admin',
  1357. 1 => 'ajax',
  1358. 2 => 'lang',
  1359. ),
  1360. )
  1361. [ info ] [ HEADER ] array (
  1362. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  1363. 'accept-language' => 'zh-CN,zh;q=0.9',
  1364. 'accept-encoding' => 'gzip, deflate, br',
  1365. 'sec-fetch-dest' => 'script',
  1366. 'sec-fetch-mode' => 'no-cors',
  1367. 'sec-fetch-site' => 'same-origin',
  1368. 'accept' => '*/*',
  1369. 'sec-ch-ua-platform' => '"macOS"',
  1370. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  1371. 'sec-ch-ua-mobile' => '?0',
  1372. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  1373. 'host' => 'voicechat.lanmaonet.com',
  1374. 'content-type' => '',
  1375. 'content-length' => '',
  1376. )
  1377. [ info ] [ PARAM ] array (
  1378. 'callback' => 'define',
  1379. 'controllername' => 'user.user',
  1380. 'lang' => 'zh-cn',
  1381. 'v' => '1650424195',
  1382. )
  1383. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1384. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  1385. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  1386. [ info ] [ SESSION ] INIT array (
  1387. 'id' => '',
  1388. 'var_session_id' => '',
  1389. 'prefix' => 'think',
  1390. 'type' => '',
  1391. 'auto_start' => true,
  1392. )
  1393. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000025s ]
  1394. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1395. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1396. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1397. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000014s ]
  1398. [ info ] [ LOG ] INIT File
  1399. ---------------------------------------------------------------
  1400. [ 2022-04-20T11:09:59+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/lcFzdPIjLH.php/user/user/edit/ids/84?dialog=1
  1401. [运行时间:0.040777s] [吞吐率:24.52req/s] [内存消耗:1,162.53kb] [文件加载:149]
  1402. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  1403. [ info ] [ CACHE ] INIT File
  1404. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000272s ]
  1405. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000050s ]
  1406. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  1407. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1408. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  1409. [ info ] [ ROUTE ] array (
  1410. 'type' => 'module',
  1411. 'module' =>
  1412. array (
  1413. 0 => 'admin',
  1414. 1 => 'user.user',
  1415. 2 => 'edit',
  1416. ),
  1417. )
  1418. [ info ] [ HEADER ] array (
  1419. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  1420. 'accept-language' => 'zh-CN,zh;q=0.9',
  1421. 'accept-encoding' => 'gzip, deflate, br',
  1422. 'sec-fetch-dest' => 'empty',
  1423. 'sec-fetch-mode' => 'cors',
  1424. 'sec-fetch-site' => 'same-origin',
  1425. 'origin' => 'https://voicechat.lanmaonet.com',
  1426. 'sec-ch-ua-platform' => '"macOS"',
  1427. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  1428. 'sec-ch-ua-mobile' => '?0',
  1429. 'x-requested-with' => 'XMLHttpRequest',
  1430. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  1431. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1432. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  1433. 'content-length' => '274',
  1434. 'host' => 'voicechat.lanmaonet.com',
  1435. )
  1436. [ info ] [ PARAM ] array (
  1437. 'dialog' => '1',
  1438. '__token__' => '62aff66c8c8018aded9c4a486cbebd20',
  1439. 'row' =>
  1440. array (
  1441. 'id' => '84',
  1442. 'nickname' => '陈冲',
  1443. 'mobile' => '13792965609',
  1444. 'avatar' => 'http://bansheng-1304213176.cos.ap-guangzhou.myqcloud.com/android/162143204825036.jpg',
  1445. 'gender' => '1',
  1446. 'status' => 'hidden',
  1447. ),
  1448. 'ids' => '84',
  1449. )
  1450. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1451. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000084s ]
  1452. [ info ] [ SESSION ] INIT array (
  1453. 'id' => '',
  1454. 'var_session_id' => '',
  1455. 'prefix' => 'think',
  1456. 'type' => '',
  1457. 'auto_start' => true,
  1458. )
  1459. [ info ] [ DB ] INIT mysql
  1460. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000098s ]
  1461. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000048s ]
  1462. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1463. [ info ] [ RUN ] app\admin\controller\user\User->edit[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/User.php ]
  1464. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.007275s ]
  1465. [ info ] [ LOG ] INIT File
  1466. ---------------------------------------------------------------
  1467. [ 2022-04-20T11:09:59+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/user/index?sort=user.id&order=desc&offset=10&limit=10&filter=%7B%7D&op=%7B%7D&_=1650424169755
  1468. [运行时间:0.024096s] [吞吐率:41.50req/s] [内存消耗:1,347.59kb] [文件加载:154]
  1469. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1470. [ info ] [ CACHE ] INIT File
  1471. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000156s ]
  1472. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1473. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1474. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1475. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  1476. [ info ] [ ROUTE ] array (
  1477. 'type' => 'module',
  1478. 'module' =>
  1479. array (
  1480. 0 => 'admin',
  1481. 1 => 'user.user',
  1482. 2 => 'index',
  1483. ),
  1484. )
  1485. [ info ] [ HEADER ] array (
  1486. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  1487. 'accept-language' => 'zh-CN,zh;q=0.9',
  1488. 'accept-encoding' => 'gzip, deflate, br',
  1489. 'sec-fetch-dest' => 'empty',
  1490. 'sec-fetch-mode' => 'cors',
  1491. 'sec-fetch-site' => 'same-origin',
  1492. 'sec-ch-ua-platform' => '"macOS"',
  1493. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  1494. 'sec-ch-ua-mobile' => '?0',
  1495. 'x-requested-with' => 'XMLHttpRequest',
  1496. 'content-type' => 'application/json',
  1497. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1498. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  1499. 'host' => 'voicechat.lanmaonet.com',
  1500. 'content-length' => '',
  1501. )
  1502. [ info ] [ PARAM ] array (
  1503. 'sort' => 'user.id',
  1504. 'order' => 'desc',
  1505. 'offset' => '10',
  1506. 'limit' => '10',
  1507. 'filter' => '{}',
  1508. 'op' => '{}',
  1509. '_' => '1650424169755',
  1510. )
  1511. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1512. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  1513. [ info ] [ SESSION ] INIT array (
  1514. 'id' => '',
  1515. 'var_session_id' => '',
  1516. 'prefix' => 'think',
  1517. 'type' => '',
  1518. 'auto_start' => true,
  1519. )
  1520. [ info ] [ DB ] INIT mysql
  1521. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  1522. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000047s ]
  1523. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1524. [ info ] [ RUN ] app\admin\controller\user\User->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/User.php ]
  1525. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000017s ]
  1526. [ info ] [ LOG ] INIT File
  1527. ---------------------------------------------------------------
  1528. [ 2022-04-20T11:10:37+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/user/index?search=&sort=user.id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1650424169756
  1529. [运行时间:0.025393s] [吞吐率:39.38req/s] [内存消耗:1,349.24kb] [文件加载:154]
  1530. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1531. [ info ] [ CACHE ] INIT File
  1532. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000219s ]
  1533. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1534. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1535. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1536. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  1537. [ info ] [ ROUTE ] array (
  1538. 'type' => 'module',
  1539. 'module' =>
  1540. array (
  1541. 0 => 'admin',
  1542. 1 => 'user.user',
  1543. 2 => 'index',
  1544. ),
  1545. )
  1546. [ info ] [ HEADER ] array (
  1547. 'cookie' => '_ga=GA1.2.302920899.1627459988; PHPSESSID=2la0odqv88a5hl42turj8599dv; think_var=zh-cn',
  1548. 'accept-language' => 'zh-CN,zh;q=0.9',
  1549. 'accept-encoding' => 'gzip, deflate, br',
  1550. 'sec-fetch-dest' => 'empty',
  1551. 'sec-fetch-mode' => 'cors',
  1552. 'sec-fetch-site' => 'same-origin',
  1553. 'sec-ch-ua-platform' => '"macOS"',
  1554. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',
  1555. 'sec-ch-ua-mobile' => '?0',
  1556. 'x-requested-with' => 'XMLHttpRequest',
  1557. 'content-type' => 'application/json',
  1558. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1559. 'sec-ch-ua' => '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"',
  1560. 'host' => 'voicechat.lanmaonet.com',
  1561. 'content-length' => '',
  1562. )
  1563. [ info ] [ PARAM ] array (
  1564. 'search' => '',
  1565. 'sort' => 'user.id',
  1566. 'order' => 'desc',
  1567. 'offset' => '0',
  1568. 'limit' => '10',
  1569. 'filter' => '{}',
  1570. 'op' => '{}',
  1571. '_' => '1650424169756',
  1572. )
  1573. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1574. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  1575. [ info ] [ SESSION ] INIT array (
  1576. 'id' => '',
  1577. 'var_session_id' => '',
  1578. 'prefix' => 'think',
  1579. 'type' => '',
  1580. 'auto_start' => true,
  1581. )
  1582. [ info ] [ DB ] INIT mysql
  1583. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  1584. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000033s ]
  1585. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1586. [ info ] [ RUN ] app\admin\controller\user\User->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/User.php ]
  1587. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000028s ]
  1588. [ info ] [ LOG ] INIT File
  1589. ---------------------------------------------------------------
  1590. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getSwitch
  1591. [运行时间:0.045708s] [吞吐率:21.88req/s] [内存消耗:722.09kb] [文件加载:143]
  1592. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  1593. [ info ] [ CACHE ] INIT File
  1594. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000140s ]
  1595. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  1596. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  1597. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1598. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  1599. [ info ] [ ROUTE ] array (
  1600. 'type' => 'module',
  1601. 'module' =>
  1602. array (
  1603. 0 => 'api',
  1604. 1 => 'index',
  1605. 2 => 'getSwitch',
  1606. ),
  1607. )
  1608. [ info ] [ HEADER ] array (
  1609. 'accept-encoding' => 'gzip',
  1610. 'connection' => 'Keep-Alive',
  1611. 'host' => 'voicechat.lanmaonet.com',
  1612. 'content-length' => '62',
  1613. 'content-type' => 'application/x-www-form-urlencoded',
  1614. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1615. 'accept-language' => 'zh-CN,zh;q=0.8',
  1616. )
  1617. [ info ] [ PARAM ] array (
  1618. 'params_from' => 'android',
  1619. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  1620. )
  1621. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1622. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000104s ]
  1623. [ info ] [ TOKEN ] INIT Mysql
  1624. [ info ] [ DB ] INIT mysql
  1625. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  1626. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1627. [ info ] [ LOG ] INIT File
  1628. ---------------------------------------------------------------
  1629. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getEdition
  1630. [运行时间:0.055184s] [吞吐率:18.12req/s] [内存消耗:776.13kb] [文件加载:143]
  1631. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1632. [ info ] [ CACHE ] INIT File
  1633. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000158s ]
  1634. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1635. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  1636. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1637. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1638. [ info ] [ ROUTE ] array (
  1639. 'type' => 'module',
  1640. 'module' =>
  1641. array (
  1642. 0 => 'api',
  1643. 1 => 'index',
  1644. 2 => 'getEdition',
  1645. ),
  1646. )
  1647. [ info ] [ HEADER ] array (
  1648. 'accept-encoding' => 'gzip',
  1649. 'connection' => 'Keep-Alive',
  1650. 'host' => 'voicechat.lanmaonet.com',
  1651. 'content-length' => '62',
  1652. 'content-type' => 'application/x-www-form-urlencoded',
  1653. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1654. 'accept-language' => 'zh-CN,zh;q=0.8',
  1655. )
  1656. [ info ] [ PARAM ] array (
  1657. 'params_from' => 'android',
  1658. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  1659. )
  1660. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1661. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000104s ]
  1662. [ info ] [ TOKEN ] INIT Mysql
  1663. [ info ] [ DB ] INIT mysql
  1664. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  1665. [ info ] [ RUN ] app\api\controller\Index->getEdition[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1666. [ info ] [ LOG ] INIT File
  1667. ---------------------------------------------------------------
  1668. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/tenim/getUsersig
  1669. [运行时间:0.064241s] [吞吐率:15.57req/s] [内存消耗:768.20kb] [文件加载:144]
  1670. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1671. [ info ] [ CACHE ] INIT File
  1672. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000131s ]
  1673. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000119s ]
  1674. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000140s ]
  1675. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1676. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  1677. [ info ] [ ROUTE ] array (
  1678. 'type' => 'module',
  1679. 'module' =>
  1680. array (
  1681. 0 => 'api',
  1682. 1 => 'tenim',
  1683. 2 => 'getUsersig',
  1684. ),
  1685. )
  1686. [ info ] [ HEADER ] array (
  1687. 'accept-encoding' => 'gzip',
  1688. 'connection' => 'Keep-Alive',
  1689. 'host' => 'voicechat.lanmaonet.com',
  1690. 'content-length' => '62',
  1691. 'content-type' => 'application/x-www-form-urlencoded',
  1692. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1693. 'accept-language' => 'zh-CN,zh;q=0.8',
  1694. )
  1695. [ info ] [ PARAM ] array (
  1696. 'params_from' => 'android',
  1697. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  1698. )
  1699. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1700. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  1701. [ info ] [ TOKEN ] INIT Mysql
  1702. [ info ] [ DB ] INIT mysql
  1703. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000135s ]
  1704. [ info ] [ RUN ] app\api\controller\Tenim->getUsersig[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1705. [ info ] [ LOG ] INIT File
  1706. ---------------------------------------------------------------
  1707. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1708. [运行时间:0.061030s] [吞吐率:16.39req/s] [内存消耗:719.38kb] [文件加载:146]
  1709. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1710. [ info ] [ CACHE ] INIT File
  1711. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000142s ]
  1712. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1713. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  1714. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1715. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  1716. [ info ] [ ROUTE ] array (
  1717. 'type' => 'module',
  1718. 'module' =>
  1719. array (
  1720. 0 => 'Api',
  1721. 1 => 'party',
  1722. 2 => 'getPartyRankList',
  1723. ),
  1724. )
  1725. [ info ] [ HEADER ] array (
  1726. 'accept-encoding' => 'gzip',
  1727. 'connection' => 'Keep-Alive',
  1728. 'host' => 'voicechat.lanmaonet.com',
  1729. 'content-length' => '114',
  1730. 'content-type' => 'application/x-www-form-urlencoded',
  1731. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1732. 'accept-language' => 'zh-CN,zh;q=0.8',
  1733. )
  1734. [ info ] [ PARAM ] array (
  1735. 'params_from' => 'android',
  1736. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  1737. 'type_id' => '',
  1738. 'all' => '1',
  1739. 'is_recommend' => '1',
  1740. 'room_type' => '1',
  1741. 'pagenum' => '3',
  1742. )
  1743. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1744. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  1745. [ info ] [ TOKEN ] INIT Mysql
  1746. [ info ] [ DB ] INIT mysql
  1747. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000085s ]
  1748. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1749. [ info ] [ LOG ] INIT File
  1750. ---------------------------------------------------------------
  1751. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  1752. [运行时间:0.075139s] [吞吐率:13.31req/s] [内存消耗:784.01kb] [文件加载:147]
  1753. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1754. [ info ] [ CACHE ] INIT File
  1755. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000311s ]
  1756. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000053s ]
  1757. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000072s ]
  1758. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1759. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000057s ]
  1760. [ info ] [ ROUTE ] array (
  1761. 'type' => 'module',
  1762. 'module' =>
  1763. array (
  1764. 0 => 'api',
  1765. 1 => 'userCenter',
  1766. 2 => 'getMyUserInfo',
  1767. ),
  1768. )
  1769. [ info ] [ HEADER ] array (
  1770. 'accept-encoding' => 'gzip',
  1771. 'connection' => 'Keep-Alive',
  1772. 'host' => 'voicechat.lanmaonet.com',
  1773. 'content-length' => '73',
  1774. 'content-type' => 'application/x-www-form-urlencoded',
  1775. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1776. 'accept-language' => 'zh-CN,zh;q=0.8',
  1777. )
  1778. [ info ] [ PARAM ] array (
  1779. 'params_from' => 'android',
  1780. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  1781. 'user_id' => '30',
  1782. )
  1783. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1784. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  1785. [ info ] [ TOKEN ] INIT Mysql
  1786. [ info ] [ DB ] INIT mysql
  1787. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  1788. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1789. [ info ] [ LOG ] INIT File
  1790. ---------------------------------------------------------------
  1791. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1792. [运行时间:0.010687s] [吞吐率:93.57req/s] [内存消耗:714.36kb] [文件加载:146]
  1793. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  1794. [ info ] [ CACHE ] INIT File
  1795. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000148s ]
  1796. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1797. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  1798. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1799. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1800. [ info ] [ ROUTE ] array (
  1801. 'type' => 'module',
  1802. 'module' =>
  1803. array (
  1804. 0 => 'Api',
  1805. 1 => 'party',
  1806. 2 => 'getPartyRankList',
  1807. ),
  1808. )
  1809. [ info ] [ HEADER ] array (
  1810. 'accept-encoding' => 'gzip',
  1811. 'connection' => 'Keep-Alive',
  1812. 'host' => 'voicechat.lanmaonet.com',
  1813. 'content-length' => '126',
  1814. 'content-type' => 'application/x-www-form-urlencoded',
  1815. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1816. 'accept-language' => 'zh-CN,zh;q=0.8',
  1817. )
  1818. [ info ] [ PARAM ] array (
  1819. 'params_from' => 'android',
  1820. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  1821. 'type_id' => '0',
  1822. 'all' => '1',
  1823. 'is_recommend' => '0',
  1824. 'thispage' => '1',
  1825. 'room_type' => '2',
  1826. 'pagenum' => '6',
  1827. )
  1828. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1829. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  1830. [ info ] [ TOKEN ] INIT Mysql
  1831. [ info ] [ DB ] INIT mysql
  1832. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1833. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1834. [ info ] [ LOG ] INIT File
  1835. ---------------------------------------------------------------
  1836. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1837. [运行时间:0.010789s] [吞吐率:92.69req/s] [内存消耗:713.98kb] [文件加载:146]
  1838. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1839. [ info ] [ CACHE ] INIT File
  1840. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000147s ]
  1841. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1842. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  1843. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1844. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  1845. [ info ] [ ROUTE ] array (
  1846. 'type' => 'module',
  1847. 'module' =>
  1848. array (
  1849. 0 => 'Api',
  1850. 1 => 'party',
  1851. 2 => 'getPartyRankList',
  1852. ),
  1853. )
  1854. [ info ] [ HEADER ] array (
  1855. 'accept-encoding' => 'gzip',
  1856. 'connection' => 'Keep-Alive',
  1857. 'host' => 'voicechat.lanmaonet.com',
  1858. 'content-length' => '114',
  1859. 'content-type' => 'application/x-www-form-urlencoded',
  1860. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1861. 'accept-language' => 'zh-CN,zh;q=0.8',
  1862. )
  1863. [ info ] [ PARAM ] array (
  1864. 'params_from' => 'android',
  1865. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  1866. 'type_id' => '',
  1867. 'all' => '1',
  1868. 'is_recommend' => '1',
  1869. 'room_type' => '1',
  1870. 'pagenum' => '3',
  1871. )
  1872. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1873. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  1874. [ info ] [ TOKEN ] INIT Mysql
  1875. [ info ] [ DB ] INIT mysql
  1876. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  1877. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1878. [ info ] [ LOG ] INIT File
  1879. ---------------------------------------------------------------
  1880. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1881. [运行时间:0.018796s] [吞吐率:53.20req/s] [内存消耗:713.98kb] [文件加载:146]
  1882. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  1883. [ info ] [ CACHE ] INIT File
  1884. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000187s ]
  1885. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  1886. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  1887. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1888. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1889. [ info ] [ ROUTE ] array (
  1890. 'type' => 'module',
  1891. 'module' =>
  1892. array (
  1893. 0 => 'Api',
  1894. 1 => 'party',
  1895. 2 => 'getPartyRankList',
  1896. ),
  1897. )
  1898. [ info ] [ HEADER ] array (
  1899. 'accept-encoding' => 'gzip',
  1900. 'connection' => 'Keep-Alive',
  1901. 'host' => 'voicechat.lanmaonet.com',
  1902. 'content-length' => '114',
  1903. 'content-type' => 'application/x-www-form-urlencoded',
  1904. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1905. 'accept-language' => 'zh-CN,zh;q=0.8',
  1906. )
  1907. [ info ] [ PARAM ] array (
  1908. 'params_from' => 'android',
  1909. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  1910. 'type_id' => '',
  1911. 'all' => '1',
  1912. 'is_recommend' => '0',
  1913. 'room_type' => '1',
  1914. 'pagenum' => '6',
  1915. )
  1916. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1917. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  1918. [ info ] [ TOKEN ] INIT Mysql
  1919. [ info ] [ DB ] INIT mysql
  1920. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  1921. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1922. [ info ] [ LOG ] INIT File
  1923. ---------------------------------------------------------------
  1924. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getSwitch
  1925. [运行时间:0.010709s] [吞吐率:93.38req/s] [内存消耗:633.16kb] [文件加载:143]
  1926. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1927. [ info ] [ CACHE ] INIT File
  1928. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000150s ]
  1929. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1930. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  1931. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1932. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1933. [ info ] [ ROUTE ] array (
  1934. 'type' => 'module',
  1935. 'module' =>
  1936. array (
  1937. 0 => 'api',
  1938. 1 => 'index',
  1939. 2 => 'getSwitch',
  1940. ),
  1941. )
  1942. [ info ] [ HEADER ] array (
  1943. 'accept-encoding' => 'gzip',
  1944. 'connection' => 'Keep-Alive',
  1945. 'host' => 'voicechat.lanmaonet.com',
  1946. 'content-length' => '62',
  1947. 'content-type' => 'application/x-www-form-urlencoded',
  1948. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1949. 'accept-language' => 'zh-CN,zh;q=0.8',
  1950. )
  1951. [ info ] [ PARAM ] array (
  1952. 'params_from' => 'android',
  1953. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  1954. )
  1955. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1956. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  1957. [ info ] [ TOKEN ] INIT Mysql
  1958. [ info ] [ DB ] INIT mysql
  1959. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000042s ]
  1960. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1961. [ info ] [ LOG ] INIT File
  1962. ---------------------------------------------------------------
  1963. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1964. [运行时间:0.007162s] [吞吐率:139.62req/s] [内存消耗:713.98kb] [文件加载:146]
  1965. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
  1966. [ info ] [ CACHE ] INIT File
  1967. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000147s ]
  1968. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1969. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1970. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1971. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  1972. [ info ] [ ROUTE ] array (
  1973. 'type' => 'module',
  1974. 'module' =>
  1975. array (
  1976. 0 => 'Api',
  1977. 1 => 'party',
  1978. 2 => 'getPartyRankList',
  1979. ),
  1980. )
  1981. [ info ] [ HEADER ] array (
  1982. 'accept-encoding' => 'gzip',
  1983. 'connection' => 'Keep-Alive',
  1984. 'host' => 'voicechat.lanmaonet.com',
  1985. 'content-length' => '114',
  1986. 'content-type' => 'application/x-www-form-urlencoded',
  1987. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1988. 'accept-language' => 'zh-CN,zh;q=0.8',
  1989. )
  1990. [ info ] [ PARAM ] array (
  1991. 'params_from' => 'android',
  1992. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  1993. 'type_id' => '',
  1994. 'all' => '1',
  1995. 'is_recommend' => '0',
  1996. 'room_type' => '1',
  1997. 'pagenum' => '6',
  1998. )
  1999. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2000. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000042s ]
  2001. [ info ] [ TOKEN ] INIT Mysql
  2002. [ info ] [ DB ] INIT mysql
  2003. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000041s ]
  2004. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2005. [ info ] [ LOG ] INIT File
  2006. ---------------------------------------------------------------
  2007. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2008. [运行时间:0.008824s] [吞吐率:113.33req/s] [内存消耗:714.36kb] [文件加载:146]
  2009. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  2010. [ info ] [ CACHE ] INIT File
  2011. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000198s ]
  2012. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  2013. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  2014. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2015. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  2016. [ info ] [ ROUTE ] array (
  2017. 'type' => 'module',
  2018. 'module' =>
  2019. array (
  2020. 0 => 'Api',
  2021. 1 => 'party',
  2022. 2 => 'getPartyRankList',
  2023. ),
  2024. )
  2025. [ info ] [ HEADER ] array (
  2026. 'accept-encoding' => 'gzip',
  2027. 'connection' => 'Keep-Alive',
  2028. 'host' => 'voicechat.lanmaonet.com',
  2029. 'content-length' => '126',
  2030. 'content-type' => 'application/x-www-form-urlencoded',
  2031. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2032. 'accept-language' => 'zh-CN,zh;q=0.8',
  2033. )
  2034. [ info ] [ PARAM ] array (
  2035. 'params_from' => 'android',
  2036. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2037. 'type_id' => '0',
  2038. 'all' => '1',
  2039. 'is_recommend' => '0',
  2040. 'thispage' => '1',
  2041. 'room_type' => '2',
  2042. 'pagenum' => '6',
  2043. )
  2044. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2045. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  2046. [ info ] [ TOKEN ] INIT Mysql
  2047. [ info ] [ DB ] INIT mysql
  2048. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  2049. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2050. [ info ] [ LOG ] INIT File
  2051. ---------------------------------------------------------------
  2052. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  2053. [运行时间:0.057457s] [吞吐率:17.40req/s] [内存消耗:701.81kb] [文件加载:146]
  2054. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2055. [ info ] [ CACHE ] INIT File
  2056. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000163s ]
  2057. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  2058. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  2059. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2060. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2061. [ info ] [ ROUTE ] array (
  2062. 'type' => 'module',
  2063. 'module' =>
  2064. array (
  2065. 0 => 'Api',
  2066. 1 => 'party',
  2067. 2 => 'getPatyType',
  2068. ),
  2069. )
  2070. [ info ] [ HEADER ] array (
  2071. 'accept-encoding' => 'gzip',
  2072. 'connection' => 'Keep-Alive',
  2073. 'host' => 'voicechat.lanmaonet.com',
  2074. 'content-length' => '74',
  2075. 'content-type' => 'application/x-www-form-urlencoded',
  2076. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2077. 'accept-language' => 'zh-CN,zh;q=0.8',
  2078. )
  2079. [ info ] [ PARAM ] array (
  2080. 'params_from' => 'android',
  2081. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2082. 'room_type' => '2',
  2083. )
  2084. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2085. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  2086. [ info ] [ TOKEN ] INIT Mysql
  2087. [ info ] [ DB ] INIT mysql
  2088. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000066s ]
  2089. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2090. [ info ] [ LOG ] INIT File
  2091. ---------------------------------------------------------------
  2092. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2093. [运行时间:0.052942s] [吞吐率:18.89req/s] [内存消耗:731.26kb] [文件加载:147]
  2094. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2095. [ info ] [ CACHE ] INIT File
  2096. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000136s ]
  2097. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  2098. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  2099. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2100. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  2101. [ info ] [ ROUTE ] array (
  2102. 'type' => 'module',
  2103. 'module' =>
  2104. array (
  2105. 0 => 'api',
  2106. 1 => 'userCenter',
  2107. 2 => 'getMyUserInfo',
  2108. ),
  2109. )
  2110. [ info ] [ HEADER ] array (
  2111. 'accept-encoding' => 'gzip',
  2112. 'connection' => 'Keep-Alive',
  2113. 'host' => 'voicechat.lanmaonet.com',
  2114. 'content-length' => '73',
  2115. 'content-type' => 'application/x-www-form-urlencoded',
  2116. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2117. 'accept-language' => 'zh-CN,zh;q=0.8',
  2118. )
  2119. [ info ] [ PARAM ] array (
  2120. 'params_from' => 'android',
  2121. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2122. 'user_id' => '30',
  2123. )
  2124. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2125. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000043s ]
  2126. [ info ] [ TOKEN ] INIT Mysql
  2127. [ info ] [ DB ] INIT mysql
  2128. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  2129. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2130. [ info ] [ LOG ] INIT File
  2131. ---------------------------------------------------------------
  2132. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2133. [运行时间:0.043103s] [吞吐率:23.20req/s] [内存消耗:731.26kb] [文件加载:147]
  2134. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2135. [ info ] [ CACHE ] INIT File
  2136. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000125s ]
  2137. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000049s ]
  2138. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  2139. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2140. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  2141. [ info ] [ ROUTE ] array (
  2142. 'type' => 'module',
  2143. 'module' =>
  2144. array (
  2145. 0 => 'api',
  2146. 1 => 'userCenter',
  2147. 2 => 'getMyUserInfo',
  2148. ),
  2149. )
  2150. [ info ] [ HEADER ] array (
  2151. 'accept-encoding' => 'gzip',
  2152. 'connection' => 'Keep-Alive',
  2153. 'host' => 'voicechat.lanmaonet.com',
  2154. 'content-length' => '73',
  2155. 'content-type' => 'application/x-www-form-urlencoded',
  2156. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2157. 'accept-language' => 'zh-CN,zh;q=0.8',
  2158. )
  2159. [ info ] [ PARAM ] array (
  2160. 'params_from' => 'android',
  2161. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2162. 'user_id' => '30',
  2163. )
  2164. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2165. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000041s ]
  2166. [ info ] [ TOKEN ] INIT Mysql
  2167. [ info ] [ DB ] INIT mysql
  2168. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000042s ]
  2169. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2170. [ info ] [ LOG ] INIT File
  2171. ---------------------------------------------------------------
  2172. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  2173. [运行时间:0.055311s] [吞吐率:18.08req/s] [内存消耗:701.34kb] [文件加载:146]
  2174. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
  2175. [ info ] [ CACHE ] INIT File
  2176. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000157s ]
  2177. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  2178. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  2179. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2180. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  2181. [ info ] [ ROUTE ] array (
  2182. 'type' => 'module',
  2183. 'module' =>
  2184. array (
  2185. 0 => 'Api',
  2186. 1 => 'party',
  2187. 2 => 'getPatyType',
  2188. ),
  2189. )
  2190. [ info ] [ HEADER ] array (
  2191. 'accept-encoding' => 'gzip',
  2192. 'connection' => 'Keep-Alive',
  2193. 'host' => 'voicechat.lanmaonet.com',
  2194. 'content-length' => '62',
  2195. 'content-type' => 'application/x-www-form-urlencoded',
  2196. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2197. 'accept-language' => 'zh-CN,zh;q=0.8',
  2198. )
  2199. [ info ] [ PARAM ] array (
  2200. 'params_from' => 'android',
  2201. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2202. )
  2203. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2204. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000044s ]
  2205. [ info ] [ TOKEN ] INIT Mysql
  2206. [ info ] [ DB ] INIT mysql
  2207. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  2208. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2209. [ info ] [ LOG ] INIT File
  2210. ---------------------------------------------------------------
  2211. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/index/getMessage
  2212. [运行时间:0.026488s] [吞吐率:37.75req/s] [内存消耗:699.36kb] [文件加载:145]
  2213. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2214. [ info ] [ CACHE ] INIT File
  2215. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000147s ]
  2216. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  2217. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2218. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2219. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  2220. [ info ] [ ROUTE ] array (
  2221. 'type' => 'module',
  2222. 'module' =>
  2223. array (
  2224. 0 => 'Api',
  2225. 1 => 'index',
  2226. 2 => 'getMessage',
  2227. ),
  2228. )
  2229. [ info ] [ HEADER ] array (
  2230. 'accept-encoding' => 'gzip',
  2231. 'connection' => 'Keep-Alive',
  2232. 'host' => 'voicechat.lanmaonet.com',
  2233. 'content-length' => '69',
  2234. 'content-type' => 'application/x-www-form-urlencoded',
  2235. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2236. 'accept-language' => 'zh-CN,zh;q=0.8',
  2237. )
  2238. [ info ] [ PARAM ] array (
  2239. 'params_from' => 'android',
  2240. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2241. 'flag' => '1',
  2242. )
  2243. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2244. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  2245. [ info ] [ TOKEN ] INIT Mysql
  2246. [ info ] [ DB ] INIT mysql
  2247. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  2248. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  2249. [ info ] [ LOG ] INIT File
  2250. ---------------------------------------------------------------
  2251. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  2252. [运行时间:0.017169s] [吞吐率:58.24req/s] [内存消耗:702.86kb] [文件加载:146]
  2253. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2254. [ info ] [ CACHE ] INIT File
  2255. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000143s ]
  2256. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2257. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2258. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2259. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000016s ]
  2260. [ info ] [ ROUTE ] array (
  2261. 'type' => 'module',
  2262. 'module' =>
  2263. array (
  2264. 0 => 'Api',
  2265. 1 => 'userCenter',
  2266. 2 => 'getFollowsLive',
  2267. ),
  2268. )
  2269. [ info ] [ HEADER ] array (
  2270. 'accept-encoding' => 'gzip',
  2271. 'connection' => 'Keep-Alive',
  2272. 'host' => 'voicechat.lanmaonet.com',
  2273. 'content-length' => '91',
  2274. 'content-type' => 'application/x-www-form-urlencoded',
  2275. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2276. 'accept-language' => 'zh-CN,zh;q=0.8',
  2277. )
  2278. [ info ] [ PARAM ] array (
  2279. 'params_from' => 'android',
  2280. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2281. 'is_online' => '1',
  2282. 'page' => '1',
  2283. 'pageNum' => '3',
  2284. )
  2285. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2286. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000078s ]
  2287. [ info ] [ TOKEN ] INIT Mysql
  2288. [ info ] [ DB ] INIT mysql
  2289. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  2290. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2291. [ info ] [ LOG ] INIT File
  2292. ---------------------------------------------------------------
  2293. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  2294. [运行时间:0.011185s] [吞吐率:89.41req/s] [内存消耗:702.77kb] [文件加载:146]
  2295. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2296. [ info ] [ CACHE ] INIT File
  2297. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000136s ]
  2298. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  2299. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  2300. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2301. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  2302. [ info ] [ ROUTE ] array (
  2303. 'type' => 'module',
  2304. 'module' =>
  2305. array (
  2306. 0 => 'Api',
  2307. 1 => 'userCenter',
  2308. 2 => 'getFollowsLive',
  2309. ),
  2310. )
  2311. [ info ] [ HEADER ] array (
  2312. 'accept-encoding' => 'gzip',
  2313. 'connection' => 'Keep-Alive',
  2314. 'host' => 'voicechat.lanmaonet.com',
  2315. 'content-length' => '91',
  2316. 'content-type' => 'application/x-www-form-urlencoded',
  2317. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2318. 'accept-language' => 'zh-CN,zh;q=0.8',
  2319. )
  2320. [ info ] [ PARAM ] array (
  2321. 'params_from' => 'android',
  2322. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2323. 'is_online' => '0',
  2324. 'page' => '1',
  2325. 'pageNum' => '2',
  2326. )
  2327. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2328. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  2329. [ info ] [ TOKEN ] INIT Mysql
  2330. [ info ] [ DB ] INIT mysql
  2331. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000078s ]
  2332. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2333. [ info ] [ LOG ] INIT File
  2334. ---------------------------------------------------------------
  2335. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  2336. [运行时间:0.050895s] [吞吐率:19.65req/s] [内存消耗:702.51kb] [文件加载:146]
  2337. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2338. [ info ] [ CACHE ] INIT File
  2339. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000150s ]
  2340. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  2341. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  2342. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2343. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  2344. [ info ] [ ROUTE ] array (
  2345. 'type' => 'module',
  2346. 'module' =>
  2347. array (
  2348. 0 => 'Api',
  2349. 1 => 'dispatch',
  2350. 2 => 'getSkillList',
  2351. ),
  2352. )
  2353. [ info ] [ HEADER ] array (
  2354. 'accept-encoding' => 'gzip',
  2355. 'connection' => 'Keep-Alive',
  2356. 'host' => 'voicechat.lanmaonet.com',
  2357. 'content-length' => '62',
  2358. 'content-type' => 'application/x-www-form-urlencoded',
  2359. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2360. 'accept-language' => 'zh-CN,zh;q=0.8',
  2361. )
  2362. [ info ] [ PARAM ] array (
  2363. 'params_from' => 'android',
  2364. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2365. )
  2366. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2367. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  2368. [ info ] [ TOKEN ] INIT Mysql
  2369. [ info ] [ DB ] INIT mysql
  2370. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  2371. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  2372. [ info ] [ LOG ] INIT File
  2373. ---------------------------------------------------------------
  2374. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/cellectionPartyList
  2375. [运行时间:0.063983s] [吞吐率:15.63req/s] [内存消耗:702.23kb] [文件加载:146]
  2376. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2377. [ info ] [ CACHE ] INIT File
  2378. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000168s ]
  2379. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  2380. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  2381. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2382. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  2383. [ info ] [ ROUTE ] array (
  2384. 'type' => 'module',
  2385. 'module' =>
  2386. array (
  2387. 0 => 'Api',
  2388. 1 => 'party',
  2389. 2 => 'cellectionPartyList',
  2390. ),
  2391. )
  2392. [ info ] [ HEADER ] array (
  2393. 'accept-encoding' => 'gzip',
  2394. 'connection' => 'Keep-Alive',
  2395. 'host' => 'voicechat.lanmaonet.com',
  2396. 'content-length' => '79',
  2397. 'content-type' => 'application/x-www-form-urlencoded',
  2398. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2399. 'accept-language' => 'zh-CN,zh;q=0.8',
  2400. )
  2401. [ info ] [ PARAM ] array (
  2402. 'params_from' => 'android',
  2403. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2404. 'page' => '1',
  2405. 'pageNum' => '2',
  2406. )
  2407. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2408. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  2409. [ info ] [ TOKEN ] INIT Mysql
  2410. [ info ] [ DB ] INIT mysql
  2411. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000071s ]
  2412. [ info ] [ RUN ] app\api\controller\Party->cellectionPartyList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2413. [ info ] [ LOG ] INIT File
  2414. ---------------------------------------------------------------
  2415. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  2416. [运行时间:0.009781s] [吞吐率:102.24req/s] [内存消耗:701.29kb] [文件加载:146]
  2417. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2418. [ info ] [ CACHE ] INIT File
  2419. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  2420. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  2421. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  2422. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2423. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  2424. [ info ] [ ROUTE ] array (
  2425. 'type' => 'module',
  2426. 'module' =>
  2427. array (
  2428. 0 => 'Api',
  2429. 1 => 'dispatch',
  2430. 2 => 'getSkillList',
  2431. ),
  2432. )
  2433. [ info ] [ HEADER ] array (
  2434. 'accept-encoding' => 'gzip',
  2435. 'connection' => 'Keep-Alive',
  2436. 'host' => 'voicechat.lanmaonet.com',
  2437. 'content-length' => '62',
  2438. 'content-type' => 'application/x-www-form-urlencoded',
  2439. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2440. 'accept-language' => 'zh-CN,zh;q=0.8',
  2441. )
  2442. [ info ] [ PARAM ] array (
  2443. 'params_from' => 'android',
  2444. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2445. )
  2446. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2447. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  2448. [ info ] [ TOKEN ] INIT Mysql
  2449. [ info ] [ DB ] INIT mysql
  2450. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  2451. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  2452. [ info ] [ LOG ] INIT File
  2453. ---------------------------------------------------------------
  2454. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  2455. [运行时间:0.083116s] [吞吐率:12.03req/s] [内存消耗:746.38kb] [文件加载:148]
  2456. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2457. [ info ] [ CACHE ] INIT File
  2458. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000159s ]
  2459. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  2460. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  2461. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2462. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  2463. [ info ] [ ROUTE ] array (
  2464. 'type' => 'module',
  2465. 'module' =>
  2466. array (
  2467. 0 => 'Api',
  2468. 1 => 'dynamic',
  2469. 2 => 'getDynamicList',
  2470. ),
  2471. )
  2472. [ info ] [ HEADER ] array (
  2473. 'accept-encoding' => 'gzip',
  2474. 'connection' => 'Keep-Alive',
  2475. 'host' => 'voicechat.lanmaonet.com',
  2476. 'content-length' => '76',
  2477. 'content-type' => 'application/x-www-form-urlencoded',
  2478. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2479. 'accept-language' => 'zh-CN,zh;q=0.8',
  2480. )
  2481. [ info ] [ PARAM ] array (
  2482. 'params_from' => 'android',
  2483. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2484. 'type' => '1',
  2485. 'page' => '1',
  2486. )
  2487. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2488. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  2489. [ info ] [ TOKEN ] INIT Mysql
  2490. [ info ] [ DB ] INIT mysql
  2491. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000043s ]
  2492. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  2493. [ info ] [ LOG ] INIT File
  2494. ---------------------------------------------------------------
  2495. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  2496. [运行时间:0.026125s] [吞吐率:38.28req/s] [内存消耗:681.91kb] [文件加载:148]
  2497. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2498. [ info ] [ CACHE ] INIT File
  2499. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000166s ]
  2500. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  2501. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  2502. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2503. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  2504. [ info ] [ ROUTE ] array (
  2505. 'type' => 'module',
  2506. 'module' =>
  2507. array (
  2508. 0 => 'Api',
  2509. 1 => 'dynamic',
  2510. 2 => 'getDynamicList',
  2511. ),
  2512. )
  2513. [ info ] [ HEADER ] array (
  2514. 'accept-encoding' => 'gzip',
  2515. 'connection' => 'Keep-Alive',
  2516. 'host' => 'voicechat.lanmaonet.com',
  2517. 'content-length' => '76',
  2518. 'content-type' => 'application/x-www-form-urlencoded',
  2519. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2520. 'accept-language' => 'zh-CN,zh;q=0.8',
  2521. )
  2522. [ info ] [ PARAM ] array (
  2523. 'params_from' => 'android',
  2524. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2525. 'type' => '2',
  2526. 'page' => '1',
  2527. )
  2528. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2529. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  2530. [ info ] [ TOKEN ] INIT Mysql
  2531. [ info ] [ DB ] INIT mysql
  2532. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  2533. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  2534. [ info ] [ LOG ] INIT File
  2535. ---------------------------------------------------------------
  2536. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2537. [运行时间:0.016600s] [吞吐率:60.24req/s] [内存消耗:731.26kb] [文件加载:147]
  2538. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2539. [ info ] [ CACHE ] INIT File
  2540. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000217s ]
  2541. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  2542. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  2543. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2544. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  2545. [ info ] [ ROUTE ] array (
  2546. 'type' => 'module',
  2547. 'module' =>
  2548. array (
  2549. 0 => 'api',
  2550. 1 => 'userCenter',
  2551. 2 => 'getMyUserInfo',
  2552. ),
  2553. )
  2554. [ info ] [ HEADER ] array (
  2555. 'accept-encoding' => 'gzip',
  2556. 'connection' => 'Keep-Alive',
  2557. 'host' => 'voicechat.lanmaonet.com',
  2558. 'content-length' => '73',
  2559. 'content-type' => 'application/x-www-form-urlencoded',
  2560. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2561. 'accept-language' => 'zh-CN,zh;q=0.8',
  2562. )
  2563. [ info ] [ PARAM ] array (
  2564. 'params_from' => 'android',
  2565. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2566. 'user_id' => '30',
  2567. )
  2568. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2569. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000053s ]
  2570. [ info ] [ TOKEN ] INIT Mysql
  2571. [ info ] [ DB ] INIT mysql
  2572. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  2573. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2574. [ info ] [ LOG ] INIT File
  2575. ---------------------------------------------------------------
  2576. [ 2022-04-20T16:40:47+08:00 ] 154.8.248.247 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2685230059-144115352699074297-Login-Register&SdkAppid=1400556860&contenttype=json
  2577. [运行时间:0.010749s] [吞吐率:93.03req/s] [内存消耗:620.98kb] [文件加载:136]
  2578. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2579. [ info ] [ CACHE ] INIT File
  2580. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000153s ]
  2581. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2582. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2583. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2584. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2585. [ info ] [ ROUTE ] array (
  2586. 'type' => 'module',
  2587. 'module' =>
  2588. array (
  2589. 0 => 'api',
  2590. 1 => 'tenim',
  2591. 2 => 'callback',
  2592. ),
  2593. )
  2594. [ info ] [ HEADER ] array (
  2595. 'content-type' => 'application/json',
  2596. 'content-length' => '129',
  2597. 'host' => 'voicechat.lanmaonet.com',
  2598. 'connection' => 'keep-alive',
  2599. )
  2600. [ info ] [ PARAM ] array (
  2601. 'CallbackCommand' => 'State.StateChange',
  2602. 'ClientIP' => '112.6.63.60',
  2603. 'OptPlatform' => 'Android',
  2604. 'RequestId' => '2685230059-144115352699074297-Login-Register',
  2605. 'SdkAppid' => '1400556860',
  2606. 'contenttype' => 'json',
  2607. 'EventTime' => 1650444047674,
  2608. 'Info' =>
  2609. array (
  2610. 'To_Account' => '30',
  2611. 'Action' => 'Login',
  2612. 'Reason' => 'Register',
  2613. ),
  2614. )
  2615. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2616. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  2617. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000043s ]
  2618. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2619. [ info ] [ DB ] INIT mysql
  2620. [ info ] [ LOG ] INIT File
  2621. ---------------------------------------------------------------
  2622. [ 2022-04-20T16:40:47+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/guild/guildAssistantList
  2623. [运行时间:0.092681s] [吞吐率:10.79req/s] [内存消耗:734.31kb] [文件加载:146]
  2624. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2625. [ info ] [ CACHE ] INIT File
  2626. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000198s ]
  2627. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000049s ]
  2628. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  2629. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2630. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  2631. [ info ] [ ROUTE ] array (
  2632. 'type' => 'module',
  2633. 'module' =>
  2634. array (
  2635. 0 => 'api',
  2636. 1 => 'guild',
  2637. 2 => 'guildAssistantList',
  2638. ),
  2639. )
  2640. [ info ] [ HEADER ] array (
  2641. 'accept-encoding' => 'gzip',
  2642. 'connection' => 'Keep-Alive',
  2643. 'host' => 'voicechat.lanmaonet.com',
  2644. 'content-length' => '62',
  2645. 'content-type' => 'application/x-www-form-urlencoded',
  2646. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2647. 'accept-language' => 'zh-CN,zh;q=0.8',
  2648. )
  2649. [ info ] [ PARAM ] array (
  2650. 'params_from' => 'android',
  2651. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2652. )
  2653. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2654. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  2655. [ info ] [ TOKEN ] INIT Mysql
  2656. [ info ] [ DB ] INIT mysql
  2657. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000076s ]
  2658. [ info ] [ RUN ] app\api\controller\Guild->guildAssistantList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Guild.php ]
  2659. [ info ] [ LOG ] INIT File
  2660. ---------------------------------------------------------------
  2661. [ 2022-04-20T16:40:48+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2662. [运行时间:0.012035s] [吞吐率:83.09req/s] [内存消耗:713.98kb] [文件加载:146]
  2663. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  2664. [ info ] [ CACHE ] INIT File
  2665. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000163s ]
  2666. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2667. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  2668. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2669. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2670. [ info ] [ ROUTE ] array (
  2671. 'type' => 'module',
  2672. 'module' =>
  2673. array (
  2674. 0 => 'Api',
  2675. 1 => 'party',
  2676. 2 => 'getPartyRankList',
  2677. ),
  2678. )
  2679. [ info ] [ HEADER ] array (
  2680. 'accept-encoding' => 'gzip',
  2681. 'connection' => 'Keep-Alive',
  2682. 'host' => 'voicechat.lanmaonet.com',
  2683. 'content-length' => '116',
  2684. 'content-type' => 'application/x-www-form-urlencoded',
  2685. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2686. 'accept-language' => 'zh-CN,zh;q=0.8',
  2687. )
  2688. [ info ] [ PARAM ] array (
  2689. 'params_from' => 'android',
  2690. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2691. 'type_id' => '7',
  2692. 'all' => '0',
  2693. 'is_recommend' => '0',
  2694. 'thispage' => '1',
  2695. 'room_type' => '2',
  2696. )
  2697. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2698. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  2699. [ info ] [ TOKEN ] INIT Mysql
  2700. [ info ] [ DB ] INIT mysql
  2701. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000075s ]
  2702. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2703. [ info ] [ LOG ] INIT File
  2704. ---------------------------------------------------------------
  2705. [ 2022-04-20T16:40:48+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2706. [运行时间:0.011832s] [吞吐率:84.52req/s] [内存消耗:713.98kb] [文件加载:146]
  2707. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2708. [ info ] [ CACHE ] INIT File
  2709. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000194s ]
  2710. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  2711. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  2712. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2713. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  2714. [ info ] [ ROUTE ] array (
  2715. 'type' => 'module',
  2716. 'module' =>
  2717. array (
  2718. 0 => 'Api',
  2719. 1 => 'party',
  2720. 2 => 'getPartyRankList',
  2721. ),
  2722. )
  2723. [ info ] [ HEADER ] array (
  2724. 'accept-encoding' => 'gzip',
  2725. 'connection' => 'Keep-Alive',
  2726. 'host' => 'voicechat.lanmaonet.com',
  2727. 'content-length' => '116',
  2728. 'content-type' => 'application/x-www-form-urlencoded',
  2729. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2730. 'accept-language' => 'zh-CN,zh;q=0.8',
  2731. )
  2732. [ info ] [ PARAM ] array (
  2733. 'params_from' => 'android',
  2734. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2735. 'type_id' => '0',
  2736. 'all' => '1',
  2737. 'is_recommend' => '0',
  2738. 'thispage' => '1',
  2739. 'room_type' => '2',
  2740. )
  2741. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2742. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  2743. [ info ] [ TOKEN ] INIT Mysql
  2744. [ info ] [ DB ] INIT mysql
  2745. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  2746. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2747. [ info ] [ LOG ] INIT File
  2748. ---------------------------------------------------------------
  2749. [ 2022-04-20T16:40:48+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2750. [运行时间:0.011164s] [吞吐率:89.57req/s] [内存消耗:713.92kb] [文件加载:146]
  2751. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000030s ]
  2752. [ info ] [ CACHE ] INIT File
  2753. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000131s ]
  2754. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  2755. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  2756. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2757. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  2758. [ info ] [ ROUTE ] array (
  2759. 'type' => 'module',
  2760. 'module' =>
  2761. array (
  2762. 0 => 'Api',
  2763. 1 => 'party',
  2764. 2 => 'getPartyRankList',
  2765. ),
  2766. )
  2767. [ info ] [ HEADER ] array (
  2768. 'accept-encoding' => 'gzip',
  2769. 'connection' => 'Keep-Alive',
  2770. 'host' => 'voicechat.lanmaonet.com',
  2771. 'content-length' => '104',
  2772. 'content-type' => 'application/x-www-form-urlencoded',
  2773. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2774. 'accept-language' => 'zh-CN,zh;q=0.8',
  2775. )
  2776. [ info ] [ PARAM ] array (
  2777. 'params_from' => 'android',
  2778. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2779. 'type_id' => '3',
  2780. 'all' => '0',
  2781. 'is_recommend' => '0',
  2782. 'thispage' => '1',
  2783. )
  2784. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2785. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  2786. [ info ] [ TOKEN ] INIT Mysql
  2787. [ info ] [ DB ] INIT mysql
  2788. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  2789. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2790. [ info ] [ LOG ] INIT File
  2791. ---------------------------------------------------------------
  2792. [ 2022-04-20T16:40:48+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2793. [运行时间:0.019159s] [吞吐率:52.20req/s] [内存消耗:713.92kb] [文件加载:146]
  2794. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2795. [ info ] [ CACHE ] INIT File
  2796. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000164s ]
  2797. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000049s ]
  2798. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000067s ]
  2799. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2800. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  2801. [ info ] [ ROUTE ] array (
  2802. 'type' => 'module',
  2803. 'module' =>
  2804. array (
  2805. 0 => 'Api',
  2806. 1 => 'party',
  2807. 2 => 'getPartyRankList',
  2808. ),
  2809. )
  2810. [ info ] [ HEADER ] array (
  2811. 'accept-encoding' => 'gzip',
  2812. 'connection' => 'Keep-Alive',
  2813. 'host' => 'voicechat.lanmaonet.com',
  2814. 'content-length' => '104',
  2815. 'content-type' => 'application/x-www-form-urlencoded',
  2816. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2817. 'accept-language' => 'zh-CN,zh;q=0.8',
  2818. )
  2819. [ info ] [ PARAM ] array (
  2820. 'params_from' => 'android',
  2821. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2822. 'type_id' => '1',
  2823. 'all' => '0',
  2824. 'is_recommend' => '0',
  2825. 'thispage' => '1',
  2826. )
  2827. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2828. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  2829. [ info ] [ TOKEN ] INIT Mysql
  2830. [ info ] [ DB ] INIT mysql
  2831. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  2832. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2833. [ info ] [ LOG ] INIT File
  2834. ---------------------------------------------------------------
  2835. [ 2022-04-20T16:40:48+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2836. [运行时间:0.022450s] [吞吐率:44.54req/s] [内存消耗:713.92kb] [文件加载:146]
  2837. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2838. [ info ] [ CACHE ] INIT File
  2839. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000167s ]
  2840. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  2841. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  2842. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2843. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  2844. [ info ] [ ROUTE ] array (
  2845. 'type' => 'module',
  2846. 'module' =>
  2847. array (
  2848. 0 => 'Api',
  2849. 1 => 'party',
  2850. 2 => 'getPartyRankList',
  2851. ),
  2852. )
  2853. [ info ] [ HEADER ] array (
  2854. 'accept-encoding' => 'gzip',
  2855. 'connection' => 'Keep-Alive',
  2856. 'host' => 'voicechat.lanmaonet.com',
  2857. 'content-length' => '104',
  2858. 'content-type' => 'application/x-www-form-urlencoded',
  2859. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2860. 'accept-language' => 'zh-CN,zh;q=0.8',
  2861. )
  2862. [ info ] [ PARAM ] array (
  2863. 'params_from' => 'android',
  2864. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2865. 'type_id' => '2',
  2866. 'all' => '0',
  2867. 'is_recommend' => '0',
  2868. 'thispage' => '1',
  2869. )
  2870. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2871. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  2872. [ info ] [ TOKEN ] INIT Mysql
  2873. [ info ] [ DB ] INIT mysql
  2874. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  2875. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2876. [ info ] [ LOG ] INIT File
  2877. ---------------------------------------------------------------
  2878. [ 2022-04-20T16:40:48+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2879. [运行时间:0.025705s] [吞吐率:38.90req/s] [内存消耗:713.89kb] [文件加载:146]
  2880. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2881. [ info ] [ CACHE ] INIT File
  2882. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000175s ]
  2883. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2884. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  2885. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2886. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2887. [ info ] [ ROUTE ] array (
  2888. 'type' => 'module',
  2889. 'module' =>
  2890. array (
  2891. 0 => 'Api',
  2892. 1 => 'party',
  2893. 2 => 'getPartyRankList',
  2894. ),
  2895. )
  2896. [ info ] [ HEADER ] array (
  2897. 'accept-encoding' => 'gzip',
  2898. 'connection' => 'Keep-Alive',
  2899. 'host' => 'voicechat.lanmaonet.com',
  2900. 'content-length' => '103',
  2901. 'content-type' => 'application/x-www-form-urlencoded',
  2902. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2903. 'accept-language' => 'zh-CN,zh;q=0.8',
  2904. )
  2905. [ info ] [ PARAM ] array (
  2906. 'params_from' => 'android',
  2907. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2908. 'type_id' => '',
  2909. 'all' => '1',
  2910. 'is_recommend' => '0',
  2911. 'thispage' => '1',
  2912. )
  2913. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2914. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000074s ]
  2915. [ info ] [ TOKEN ] INIT Mysql
  2916. [ info ] [ DB ] INIT mysql
  2917. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  2918. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2919. [ info ] [ LOG ] INIT File
  2920. ---------------------------------------------------------------
  2921. [ 2022-04-20T16:40:48+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2922. [运行时间:0.012472s] [吞吐率:80.18req/s] [内存消耗:713.92kb] [文件加载:146]
  2923. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2924. [ info ] [ CACHE ] INIT File
  2925. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000128s ]
  2926. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  2927. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  2928. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2929. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  2930. [ info ] [ ROUTE ] array (
  2931. 'type' => 'module',
  2932. 'module' =>
  2933. array (
  2934. 0 => 'Api',
  2935. 1 => 'party',
  2936. 2 => 'getPartyRankList',
  2937. ),
  2938. )
  2939. [ info ] [ HEADER ] array (
  2940. 'accept-encoding' => 'gzip',
  2941. 'connection' => 'Keep-Alive',
  2942. 'host' => 'voicechat.lanmaonet.com',
  2943. 'content-length' => '104',
  2944. 'content-type' => 'application/x-www-form-urlencoded',
  2945. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2946. 'accept-language' => 'zh-CN,zh;q=0.8',
  2947. )
  2948. [ info ] [ PARAM ] array (
  2949. 'params_from' => 'android',
  2950. 'token' => 'cb944959-0942-4370-bb30-adbd2078d3b4',
  2951. 'type_id' => '4',
  2952. 'all' => '0',
  2953. 'is_recommend' => '0',
  2954. 'thispage' => '1',
  2955. )
  2956. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2957. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  2958. [ info ] [ TOKEN ] INIT Mysql
  2959. [ info ] [ DB ] INIT mysql
  2960. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000041s ]
  2961. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2962. [ info ] [ LOG ] INIT File
  2963. ---------------------------------------------------------------
  2964. [ 2022-04-20T16:40:54+08:00 ] 106.55.18.65 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2685230404-144115352699074297-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2965. [运行时间:0.285723s] [吞吐率:3.50req/s] [内存消耗:682.17kb] [文件加载:140]
  2966. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2967. [ info ] [ CACHE ] INIT File
  2968. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000217s ]
  2969. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2970. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  2971. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2972. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  2973. [ info ] [ ROUTE ] array (
  2974. 'type' => 'module',
  2975. 'module' =>
  2976. array (
  2977. 0 => 'api',
  2978. 1 => 'tenim',
  2979. 2 => 'callback',
  2980. ),
  2981. )
  2982. [ info ] [ HEADER ] array (
  2983. 'content-type' => 'application/json',
  2984. 'content-length' => '135',
  2985. 'host' => 'voicechat.lanmaonet.com',
  2986. 'connection' => 'keep-alive',
  2987. )
  2988. [ info ] [ PARAM ] array (
  2989. 'CallbackCommand' => 'State.StateChange',
  2990. 'ClientIP' => '112.6.63.60',
  2991. 'OptPlatform' => 'Android',
  2992. 'RequestId' => '2685230404-144115352699074297-Disconnect-LinkClose',
  2993. 'SdkAppid' => '1400556860',
  2994. 'contenttype' => 'json',
  2995. 'EventTime' => 1650444053682,
  2996. 'Info' =>
  2997. array (
  2998. 'To_Account' => '30',
  2999. 'Action' => 'Disconnect',
  3000. 'Reason' => 'LinkClose',
  3001. ),
  3002. )
  3003. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3004. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  3005. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000066s ]
  3006. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3007. [ info ] [ DB ] INIT mysql
  3008. [ info ] [ LOG ] INIT File
  3009. ---------------------------------------------------------------
  3010. [ 2022-04-20T16:58:52+08:00 ] 157.55.39.69 GET voicechat.lanmaonet.com/
  3011. [运行时间:0.009851s] [吞吐率:101.51req/s] [内存消耗:468.58kb] [文件加载:135]
  3012. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3013. [ info ] [ CACHE ] INIT File
  3014. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000238s ]
  3015. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  3016. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  3017. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3018. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  3019. [ info ] [ ROUTE ] array (
  3020. 'type' => 'module',
  3021. 'module' =>
  3022. array (
  3023. 0 => '',
  3024. 1 => NULL,
  3025. 2 => NULL,
  3026. ),
  3027. )
  3028. [ info ] [ HEADER ] array (
  3029. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  3030. 'from' => 'bingbot(at)microsoft.com',
  3031. 'accept-encoding' => 'gzip, deflate',
  3032. 'accept' => '*/*',
  3033. 'pragma' => 'no-cache',
  3034. 'cache-control' => 'no-cache',
  3035. 'host' => 'voicechat.lanmaonet.com',
  3036. 'content-type' => '',
  3037. 'content-length' => '',
  3038. )
  3039. [ info ] [ PARAM ] array (
  3040. )
  3041. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  3042. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  3043. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  3044. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000038s ]
  3045. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  3046. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  3047. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  3048. 0 => 'user',
  3049. 1 => 'site',
  3050. 2 => 'config',
  3051. ) ]
  3052. [ info ] [ LOG ] INIT File
  3053. ---------------------------------------------------------------
  3054. [ 2022-04-20T19:08:10+08:00 ] 207.46.13.196 GET voicechat.lanmaonet.com/
  3055. [运行时间:0.012956s] [吞吐率:77.18req/s] [内存消耗:468.62kb] [文件加载:135]
  3056. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  3057. [ info ] [ CACHE ] INIT File
  3058. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000277s ]
  3059. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000051s ]
  3060. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000070s ]
  3061. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3062. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  3063. [ info ] [ ROUTE ] array (
  3064. 'type' => 'module',
  3065. 'module' =>
  3066. array (
  3067. 0 => '',
  3068. 1 => NULL,
  3069. 2 => NULL,
  3070. ),
  3071. )
  3072. [ info ] [ HEADER ] array (
  3073. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  3074. 'host' => 'voicechat.lanmaonet.com',
  3075. 'from' => 'bingbot(at)microsoft.com',
  3076. 'accept-encoding' => 'gzip, deflate',
  3077. 'accept' => '*/*',
  3078. 'pragma' => 'no-cache',
  3079. 'connection' => 'Keep-Alive',
  3080. 'cache-control' => 'no-cache',
  3081. 'content-type' => '',
  3082. 'content-length' => '',
  3083. )
  3084. [ info ] [ PARAM ] array (
  3085. )
  3086. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  3087. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000069s ]
  3088. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  3089. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000037s ]
  3090. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  3091. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  3092. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  3093. 0 => 'user',
  3094. 1 => 'site',
  3095. 2 => 'config',
  3096. ) ]
  3097. [ info ] [ LOG ] INIT File
  3098. ---------------------------------------------------------------
  3099. [ 2022-04-20T23:14:17+08:00 ] 60.180.56.47 GET voicechat.lanmaonet.com/apple-app-site-association
  3100. [运行时间:0.015024s] [吞吐率:66.56req/s] [内存消耗:340.17kb] [文件加载:123]
  3101. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  3102. [ info ] [ CACHE ] INIT File
  3103. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000347s ]
  3104. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000058s ]
  3105. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000080s ]
  3106. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3107. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000065s ]
  3108. [ info ] [ ROUTE ] array (
  3109. 'type' => 'module',
  3110. 'module' =>
  3111. array (
  3112. 0 => 'apple-app-site-association',
  3113. 1 => NULL,
  3114. 2 => NULL,
  3115. ),
  3116. )
  3117. [ info ] [ HEADER ] array (
  3118. 'user-agent' => 'swcd (unknown version) CFNetwork/1128.0.1 Darwin/19.6.0',
  3119. 'accept-encoding' => 'gzip, deflate, br',
  3120. 'connection' => 'keep-alive',
  3121. 'accept-language' => 'zh-cn',
  3122. 'accept' => '*/*',
  3123. 'host' => 'voicechat.lanmaonet.com',
  3124. 'content-type' => '',
  3125. 'content-length' => '',
  3126. )
  3127. [ info ] [ PARAM ] array (
  3128. )
  3129. [ info ] [ LOG ] INIT File