18.log 184 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167
  1. ---------------------------------------------------------------
  2. [ 2023-03-18T06:34:16+08:00 ] 119.45.47.127 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810500448-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  3. [运行时间:0.278376s] [吞吐率:3.59req/s] [内存消耗:628.55kb] [文件加载:139]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000123s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000072s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000085s ]
  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.000020s ]
  11. [ info ] [ ROUTE ] array (
  12. 'type' => 'module',
  13. 'module' =>
  14. array (
  15. 0 => 'api',
  16. 1 => 'tenim',
  17. 2 => 'callback',
  18. ),
  19. )
  20. [ info ] [ HEADER ] array (
  21. 'content-type' => 'application/json',
  22. 'content-length' => '133',
  23. 'connection' => 'keep-alive',
  24. 'host' => 'voicechat.lanmaonet.com',
  25. )
  26. [ info ] [ PARAM ] array (
  27. 'CallbackCommand' => 'State.StateChange',
  28. 'ClientIP' => '111.14.245.79',
  29. 'DefineVersion' => '6.1.2166',
  30. 'OptPlatform' => 'Android',
  31. 'RequestId' => '2810500448-144115354519425088-Disconnect-TimeOut',
  32. 'SdkAppid' => '1400556860',
  33. 'contenttype' => 'json',
  34. 'EventTime' => 1679092455950,
  35. 'Info' =>
  36. array (
  37. 'To_Account' => '38',
  38. 'Action' => 'Disconnect',
  39. 'Reason' => 'TimeOut',
  40. ),
  41. )
  42. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  43. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  44. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  45. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  46. [ info ] [ DB ] INIT mysql
  47. [ info ] [ LOG ] INIT File
  48. ---------------------------------------------------------------
  49. [ 2023-03-18T06:34:16+08:00 ] 119.45.47.127 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810500456-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  50. [运行时间:0.303272s] [吞吐率:3.30req/s] [内存消耗:628.45kb] [文件加载:139]
  51. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  52. [ info ] [ CACHE ] INIT File
  53. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000148s ]
  54. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  55. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  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.000031s ]
  58. [ info ] [ ROUTE ] array (
  59. 'type' => 'module',
  60. 'module' =>
  61. array (
  62. 0 => 'api',
  63. 1 => 'tenim',
  64. 2 => 'callback',
  65. ),
  66. )
  67. [ info ] [ HEADER ] array (
  68. 'content-type' => 'application/json',
  69. 'content-length' => '135',
  70. 'connection' => 'keep-alive',
  71. 'host' => 'voicechat.lanmaonet.com',
  72. )
  73. [ info ] [ PARAM ] array (
  74. 'CallbackCommand' => 'State.StateChange',
  75. 'ClientIP' => '111.14.245.79',
  76. 'OptPlatform' => 'Android',
  77. 'RequestId' => '2810500456-144115354519425088-Disconnect-LinkClose',
  78. 'SdkAppid' => '1400556860',
  79. 'contenttype' => 'json',
  80. 'EventTime' => 1679092455978,
  81. 'Info' =>
  82. array (
  83. 'To_Account' => '38',
  84. 'Action' => 'Disconnect',
  85. 'Reason' => 'LinkClose',
  86. ),
  87. )
  88. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  89. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  90. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  91. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  92. [ info ] [ DB ] INIT mysql
  93. [ info ] [ LOG ] INIT File
  94. ---------------------------------------------------------------
  95. [ 2023-03-18T06:34:22+08:00 ] 129.211.163.176 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810500634-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  96. [运行时间:0.012161s] [吞吐率:82.23req/s] [内存消耗:591.70kb] [文件加载:136]
  97. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  98. [ info ] [ CACHE ] INIT File
  99. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000150s ]
  100. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  101. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  102. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  103. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  104. [ info ] [ ROUTE ] array (
  105. 'type' => 'module',
  106. 'module' =>
  107. array (
  108. 0 => 'api',
  109. 1 => 'tenim',
  110. 2 => 'callback',
  111. ),
  112. )
  113. [ info ] [ HEADER ] array (
  114. 'content-type' => 'application/json',
  115. 'content-length' => '129',
  116. 'connection' => 'keep-alive',
  117. 'host' => 'voicechat.lanmaonet.com',
  118. )
  119. [ info ] [ PARAM ] array (
  120. 'CallbackCommand' => 'State.StateChange',
  121. 'ClientIP' => '111.14.245.79',
  122. 'DefineVersion' => '6.1.2166',
  123. 'OptPlatform' => 'Android',
  124. 'RequestId' => '2810500634-144115354519425088-Login-Register',
  125. 'SdkAppid' => '1400556860',
  126. 'contenttype' => 'json',
  127. 'EventTime' => 1679092462435,
  128. 'Info' =>
  129. array (
  130. 'To_Account' => '38',
  131. 'Action' => 'Login',
  132. 'Reason' => 'Register',
  133. ),
  134. )
  135. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  136. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000070s ]
  137. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  138. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  139. [ info ] [ DB ] INIT mysql
  140. [ info ] [ LOG ] INIT File
  141. ---------------------------------------------------------------
  142. [ 2023-03-18T06:41:02+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810511877-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  143. [运行时间:0.301514s] [吞吐率:3.32req/s] [内存消耗:628.56kb] [文件加载:139]
  144. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  145. [ info ] [ CACHE ] INIT File
  146. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000172s ]
  147. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  148. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  149. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  150. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  151. [ info ] [ ROUTE ] array (
  152. 'type' => 'module',
  153. 'module' =>
  154. array (
  155. 0 => 'api',
  156. 1 => 'tenim',
  157. 2 => 'callback',
  158. ),
  159. )
  160. [ info ] [ HEADER ] array (
  161. 'content-type' => 'application/json',
  162. 'content-length' => '133',
  163. 'connection' => 'keep-alive',
  164. 'host' => 'voicechat.lanmaonet.com',
  165. )
  166. [ info ] [ PARAM ] array (
  167. 'CallbackCommand' => 'State.StateChange',
  168. 'ClientIP' => '111.14.245.79',
  169. 'DefineVersion' => '6.1.2166',
  170. 'OptPlatform' => 'Android',
  171. 'RequestId' => '2810511877-144115354519425088-Disconnect-TimeOut',
  172. 'SdkAppid' => '1400556860',
  173. 'contenttype' => 'json',
  174. 'EventTime' => 1679092862038,
  175. 'Info' =>
  176. array (
  177. 'To_Account' => '38',
  178. 'Action' => 'Disconnect',
  179. 'Reason' => 'TimeOut',
  180. ),
  181. )
  182. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  183. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000074s ]
  184. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  185. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  186. [ info ] [ DB ] INIT mysql
  187. [ info ] [ LOG ] INIT File
  188. ---------------------------------------------------------------
  189. [ 2023-03-18T06:41:02+08:00 ] 119.45.46.39 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810511879-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  190. [运行时间:0.305748s] [吞吐率:3.27req/s] [内存消耗:628.45kb] [文件加载:139]
  191. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  192. [ info ] [ CACHE ] INIT File
  193. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000153s ]
  194. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  195. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  196. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  197. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  198. [ info ] [ ROUTE ] array (
  199. 'type' => 'module',
  200. 'module' =>
  201. array (
  202. 0 => 'api',
  203. 1 => 'tenim',
  204. 2 => 'callback',
  205. ),
  206. )
  207. [ info ] [ HEADER ] array (
  208. 'content-type' => 'application/json',
  209. 'content-length' => '135',
  210. 'connection' => 'keep-alive',
  211. 'host' => 'voicechat.lanmaonet.com',
  212. )
  213. [ info ] [ PARAM ] array (
  214. 'CallbackCommand' => 'State.StateChange',
  215. 'ClientIP' => '111.14.245.79',
  216. 'OptPlatform' => 'Android',
  217. 'RequestId' => '2810511879-144115354519425088-Disconnect-LinkClose',
  218. 'SdkAppid' => '1400556860',
  219. 'contenttype' => 'json',
  220. 'EventTime' => 1679092862043,
  221. 'Info' =>
  222. array (
  223. 'To_Account' => '38',
  224. 'Action' => 'Disconnect',
  225. 'Reason' => 'LinkClose',
  226. ),
  227. )
  228. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  229. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  230. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  231. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  232. [ info ] [ DB ] INIT mysql
  233. [ info ] [ LOG ] INIT File
  234. ---------------------------------------------------------------
  235. [ 2023-03-18T06:41:07+08:00 ] 119.45.47.127 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810512052-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  236. [运行时间:0.028732s] [吞吐率:34.80req/s] [内存消耗:591.70kb] [文件加载:136]
  237. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  238. [ info ] [ CACHE ] INIT File
  239. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  240. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  241. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  242. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  243. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  244. [ info ] [ ROUTE ] array (
  245. 'type' => 'module',
  246. 'module' =>
  247. array (
  248. 0 => 'api',
  249. 1 => 'tenim',
  250. 2 => 'callback',
  251. ),
  252. )
  253. [ info ] [ HEADER ] array (
  254. 'content-type' => 'application/json',
  255. 'content-length' => '129',
  256. 'connection' => 'keep-alive',
  257. 'host' => 'voicechat.lanmaonet.com',
  258. )
  259. [ info ] [ PARAM ] array (
  260. 'CallbackCommand' => 'State.StateChange',
  261. 'ClientIP' => '111.14.245.79',
  262. 'DefineVersion' => '6.1.2166',
  263. 'OptPlatform' => 'Android',
  264. 'RequestId' => '2810512052-144115354519425088-Login-Register',
  265. 'SdkAppid' => '1400556860',
  266. 'contenttype' => 'json',
  267. 'EventTime' => 1679092867894,
  268. 'Info' =>
  269. array (
  270. 'To_Account' => '38',
  271. 'Action' => 'Login',
  272. 'Reason' => 'Register',
  273. ),
  274. )
  275. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  276. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  277. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  278. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  279. [ info ] [ DB ] INIT mysql
  280. [ info ] [ LOG ] INIT File
  281. ---------------------------------------------------------------
  282. [ 2023-03-18T06:47:47+08:00 ] 119.45.44.121 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810523630-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  283. [运行时间:0.231317s] [吞吐率:4.32req/s] [内存消耗:628.56kb] [文件加载:139]
  284. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  285. [ info ] [ CACHE ] INIT File
  286. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000165s ]
  287. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  288. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  289. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  290. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  291. [ info ] [ ROUTE ] array (
  292. 'type' => 'module',
  293. 'module' =>
  294. array (
  295. 0 => 'api',
  296. 1 => 'tenim',
  297. 2 => 'callback',
  298. ),
  299. )
  300. [ info ] [ HEADER ] array (
  301. 'content-type' => 'application/json',
  302. 'content-length' => '133',
  303. 'connection' => 'keep-alive',
  304. 'host' => 'voicechat.lanmaonet.com',
  305. )
  306. [ info ] [ PARAM ] array (
  307. 'CallbackCommand' => 'State.StateChange',
  308. 'ClientIP' => '111.14.245.79',
  309. 'DefineVersion' => '6.1.2166',
  310. 'OptPlatform' => 'Android',
  311. 'RequestId' => '2810523630-144115354519425088-Disconnect-TimeOut',
  312. 'SdkAppid' => '1400556860',
  313. 'contenttype' => 'json',
  314. 'EventTime' => 1679093267099,
  315. 'Info' =>
  316. array (
  317. 'To_Account' => '38',
  318. 'Action' => 'Disconnect',
  319. 'Reason' => 'TimeOut',
  320. ),
  321. )
  322. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  323. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  324. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  325. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  326. [ info ] [ DB ] INIT mysql
  327. [ info ] [ LOG ] INIT File
  328. ---------------------------------------------------------------
  329. [ 2023-03-18T06:47:47+08:00 ] 146.56.231.253 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810523636-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  330. [运行时间:0.282034s] [吞吐率:3.55req/s] [内存消耗:628.45kb] [文件加载:139]
  331. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  332. [ info ] [ CACHE ] INIT File
  333. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000115s ]
  334. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  335. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  336. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  337. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  338. [ info ] [ ROUTE ] array (
  339. 'type' => 'module',
  340. 'module' =>
  341. array (
  342. 0 => 'api',
  343. 1 => 'tenim',
  344. 2 => 'callback',
  345. ),
  346. )
  347. [ info ] [ HEADER ] array (
  348. 'content-type' => 'application/json',
  349. 'content-length' => '135',
  350. 'connection' => 'keep-alive',
  351. 'host' => 'voicechat.lanmaonet.com',
  352. )
  353. [ info ] [ PARAM ] array (
  354. 'CallbackCommand' => 'State.StateChange',
  355. 'ClientIP' => '111.14.245.79',
  356. 'OptPlatform' => 'Android',
  357. 'RequestId' => '2810523636-144115354519425088-Disconnect-LinkClose',
  358. 'SdkAppid' => '1400556860',
  359. 'contenttype' => 'json',
  360. 'EventTime' => 1679093267105,
  361. 'Info' =>
  362. array (
  363. 'To_Account' => '38',
  364. 'Action' => 'Disconnect',
  365. 'Reason' => 'LinkClose',
  366. ),
  367. )
  368. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  369. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  370. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  371. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  372. [ info ] [ DB ] INIT mysql
  373. [ info ] [ LOG ] INIT File
  374. ---------------------------------------------------------------
  375. [ 2023-03-18T06:47:52+08:00 ] 119.45.47.127 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810523808-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  376. [运行时间:0.011938s] [吞吐率:83.77req/s] [内存消耗:591.70kb] [文件加载:136]
  377. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  378. [ info ] [ CACHE ] INIT File
  379. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000167s ]
  380. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  381. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  382. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  383. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  384. [ info ] [ ROUTE ] array (
  385. 'type' => 'module',
  386. 'module' =>
  387. array (
  388. 0 => 'api',
  389. 1 => 'tenim',
  390. 2 => 'callback',
  391. ),
  392. )
  393. [ info ] [ HEADER ] array (
  394. 'content-type' => 'application/json',
  395. 'content-length' => '129',
  396. 'connection' => 'keep-alive',
  397. 'host' => 'voicechat.lanmaonet.com',
  398. )
  399. [ info ] [ PARAM ] array (
  400. 'CallbackCommand' => 'State.StateChange',
  401. 'ClientIP' => '111.14.245.79',
  402. 'DefineVersion' => '6.1.2166',
  403. 'OptPlatform' => 'Android',
  404. 'RequestId' => '2810523808-144115354519425088-Login-Register',
  405. 'SdkAppid' => '1400556860',
  406. 'contenttype' => 'json',
  407. 'EventTime' => 1679093272779,
  408. 'Info' =>
  409. array (
  410. 'To_Account' => '38',
  411. 'Action' => 'Login',
  412. 'Reason' => 'Register',
  413. ),
  414. )
  415. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  416. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  417. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  418. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  419. [ info ] [ DB ] INIT mysql
  420. [ info ] [ LOG ] INIT File
  421. ---------------------------------------------------------------
  422. [ 2023-03-18T07:00:24+08:00 ] 119.45.30.208 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810546345-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  423. [运行时间:0.258545s] [吞吐率:3.87req/s] [内存消耗:628.56kb] [文件加载:139]
  424. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  425. [ info ] [ CACHE ] INIT File
  426. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000189s ]
  427. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  428. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  429. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  430. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  431. [ info ] [ ROUTE ] array (
  432. 'type' => 'module',
  433. 'module' =>
  434. array (
  435. 0 => 'api',
  436. 1 => 'tenim',
  437. 2 => 'callback',
  438. ),
  439. )
  440. [ info ] [ HEADER ] array (
  441. 'content-type' => 'application/json',
  442. 'content-length' => '133',
  443. 'connection' => 'keep-alive',
  444. 'host' => 'voicechat.lanmaonet.com',
  445. )
  446. [ info ] [ PARAM ] array (
  447. 'CallbackCommand' => 'State.StateChange',
  448. 'ClientIP' => '111.14.245.79',
  449. 'DefineVersion' => '6.1.2166',
  450. 'OptPlatform' => 'Android',
  451. 'RequestId' => '2810546345-144115354519425088-Disconnect-TimeOut',
  452. 'SdkAppid' => '1400556860',
  453. 'contenttype' => 'json',
  454. 'EventTime' => 1679094024242,
  455. 'Info' =>
  456. array (
  457. 'To_Account' => '38',
  458. 'Action' => 'Disconnect',
  459. 'Reason' => 'TimeOut',
  460. ),
  461. )
  462. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  463. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  464. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  465. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  466. [ info ] [ DB ] INIT mysql
  467. [ info ] [ LOG ] INIT File
  468. ---------------------------------------------------------------
  469. [ 2023-03-18T07:00:24+08:00 ] 129.211.163.176 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810546346-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  470. [运行时间:0.285298s] [吞吐率:3.51req/s] [内存消耗:628.45kb] [文件加载:139]
  471. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  472. [ info ] [ CACHE ] INIT File
  473. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000158s ]
  474. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  475. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  476. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  477. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  478. [ info ] [ ROUTE ] array (
  479. 'type' => 'module',
  480. 'module' =>
  481. array (
  482. 0 => 'api',
  483. 1 => 'tenim',
  484. 2 => 'callback',
  485. ),
  486. )
  487. [ info ] [ HEADER ] array (
  488. 'content-type' => 'application/json',
  489. 'content-length' => '135',
  490. 'connection' => 'keep-alive',
  491. 'host' => 'voicechat.lanmaonet.com',
  492. )
  493. [ info ] [ PARAM ] array (
  494. 'CallbackCommand' => 'State.StateChange',
  495. 'ClientIP' => '111.14.245.79',
  496. 'OptPlatform' => 'Android',
  497. 'RequestId' => '2810546346-144115354519425088-Disconnect-LinkClose',
  498. 'SdkAppid' => '1400556860',
  499. 'contenttype' => 'json',
  500. 'EventTime' => 1679094024246,
  501. 'Info' =>
  502. array (
  503. 'To_Account' => '38',
  504. 'Action' => 'Disconnect',
  505. 'Reason' => 'LinkClose',
  506. ),
  507. )
  508. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  509. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  510. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  511. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  512. [ info ] [ DB ] INIT mysql
  513. [ info ] [ LOG ] INIT File
  514. ---------------------------------------------------------------
  515. [ 2023-03-18T07:00:29+08:00 ] 129.211.163.176 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810546548-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  516. [运行时间:0.012314s] [吞吐率:81.21req/s] [内存消耗:591.70kb] [文件加载:136]
  517. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  518. [ info ] [ CACHE ] INIT File
  519. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000160s ]
  520. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  521. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  522. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  523. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  524. [ info ] [ ROUTE ] array (
  525. 'type' => 'module',
  526. 'module' =>
  527. array (
  528. 0 => 'api',
  529. 1 => 'tenim',
  530. 2 => 'callback',
  531. ),
  532. )
  533. [ info ] [ HEADER ] array (
  534. 'content-type' => 'application/json',
  535. 'content-length' => '129',
  536. 'connection' => 'keep-alive',
  537. 'host' => 'voicechat.lanmaonet.com',
  538. )
  539. [ info ] [ PARAM ] array (
  540. 'CallbackCommand' => 'State.StateChange',
  541. 'ClientIP' => '111.14.245.79',
  542. 'DefineVersion' => '6.1.2166',
  543. 'OptPlatform' => 'Android',
  544. 'RequestId' => '2810546548-144115354519425088-Login-Register',
  545. 'SdkAppid' => '1400556860',
  546. 'contenttype' => 'json',
  547. 'EventTime' => 1679094029783,
  548. 'Info' =>
  549. array (
  550. 'To_Account' => '38',
  551. 'Action' => 'Login',
  552. 'Reason' => 'Register',
  553. ),
  554. )
  555. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  556. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  557. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  558. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  559. [ info ] [ DB ] INIT mysql
  560. [ info ] [ LOG ] INIT File
  561. ---------------------------------------------------------------
  562. [ 2023-03-18T07:10:18+08:00 ] 40.77.167.194 GET voicechat.lanmaonet.com/
  563. [运行时间:0.003401s] [吞吐率:294.03req/s] [内存消耗:408.98kb] [文件加载:135]
  564. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  565. [ info ] [ CACHE ] INIT File
  566. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  567. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  568. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  569. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  570. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  571. [ info ] [ ROUTE ] array (
  572. 'type' => 'module',
  573. 'module' =>
  574. array (
  575. 0 => '',
  576. 1 => NULL,
  577. 2 => NULL,
  578. ),
  579. )
  580. [ info ] [ HEADER ] array (
  581. 'user-agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36',
  582. 'from' => 'bingbot(at)microsoft.com',
  583. 'accept-encoding' => 'gzip, deflate',
  584. 'accept' => '*/*',
  585. 'pragma' => 'no-cache',
  586. 'cache-control' => 'no-cache',
  587. 'host' => 'voicechat.lanmaonet.com',
  588. 'content-length' => '',
  589. 'content-type' => '',
  590. )
  591. [ info ] [ PARAM ] array (
  592. )
  593. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  594. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  595. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  596. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000029s ]
  597. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  598. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  599. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  600. 0 => 'user',
  601. 1 => 'site',
  602. 2 => 'config',
  603. ) ]
  604. [ info ] [ LOG ] INIT File
  605. ---------------------------------------------------------------
  606. [ 2023-03-18T07:13:09+08:00 ] 119.45.30.208 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810571339-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  607. [运行时间:0.289341s] [吞吐率:3.46req/s] [内存消耗:628.45kb] [文件加载:139]
  608. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  609. [ info ] [ CACHE ] INIT File
  610. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000136s ]
  611. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000047s ]
  612. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  613. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  614. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  615. [ info ] [ ROUTE ] array (
  616. 'type' => 'module',
  617. 'module' =>
  618. array (
  619. 0 => 'api',
  620. 1 => 'tenim',
  621. 2 => 'callback',
  622. ),
  623. )
  624. [ info ] [ HEADER ] array (
  625. 'content-type' => 'application/json',
  626. 'content-length' => '135',
  627. 'connection' => 'keep-alive',
  628. 'host' => 'voicechat.lanmaonet.com',
  629. )
  630. [ info ] [ PARAM ] array (
  631. 'CallbackCommand' => 'State.StateChange',
  632. 'ClientIP' => '111.14.245.79',
  633. 'OptPlatform' => 'Android',
  634. 'RequestId' => '2810571339-144115354519425088-Disconnect-LinkClose',
  635. 'SdkAppid' => '1400556860',
  636. 'contenttype' => 'json',
  637. 'EventTime' => 1679094789388,
  638. 'Info' =>
  639. array (
  640. 'To_Account' => '38',
  641. 'Action' => 'Disconnect',
  642. 'Reason' => 'LinkClose',
  643. ),
  644. )
  645. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  646. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  647. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  648. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  649. [ info ] [ DB ] INIT mysql
  650. [ info ] [ LOG ] INIT File
  651. ---------------------------------------------------------------
  652. [ 2023-03-18T07:13:09+08:00 ] 146.56.231.253 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810571338-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  653. [运行时间:0.294802s] [吞吐率:3.39req/s] [内存消耗:628.56kb] [文件加载:139]
  654. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  655. [ info ] [ CACHE ] INIT File
  656. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000145s ]
  657. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  658. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  659. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  660. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  661. [ info ] [ ROUTE ] array (
  662. 'type' => 'module',
  663. 'module' =>
  664. array (
  665. 0 => 'api',
  666. 1 => 'tenim',
  667. 2 => 'callback',
  668. ),
  669. )
  670. [ info ] [ HEADER ] array (
  671. 'content-type' => 'application/json',
  672. 'content-length' => '133',
  673. 'connection' => 'keep-alive',
  674. 'host' => 'voicechat.lanmaonet.com',
  675. )
  676. [ info ] [ PARAM ] array (
  677. 'CallbackCommand' => 'State.StateChange',
  678. 'ClientIP' => '111.14.245.79',
  679. 'DefineVersion' => '6.1.2166',
  680. 'OptPlatform' => 'Android',
  681. 'RequestId' => '2810571338-144115354519425088-Disconnect-TimeOut',
  682. 'SdkAppid' => '1400556860',
  683. 'contenttype' => 'json',
  684. 'EventTime' => 1679094789385,
  685. 'Info' =>
  686. array (
  687. 'To_Account' => '38',
  688. 'Action' => 'Disconnect',
  689. 'Reason' => 'TimeOut',
  690. ),
  691. )
  692. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  693. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  694. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  695. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  696. [ info ] [ DB ] INIT mysql
  697. [ info ] [ LOG ] INIT File
  698. ---------------------------------------------------------------
  699. [ 2023-03-18T07:13:15+08:00 ] 119.45.47.127 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810571534-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  700. [运行时间:0.014288s] [吞吐率:69.99req/s] [内存消耗:591.70kb] [文件加载:136]
  701. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  702. [ info ] [ CACHE ] INIT File
  703. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  704. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  705. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  706. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  707. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  708. [ info ] [ ROUTE ] array (
  709. 'type' => 'module',
  710. 'module' =>
  711. array (
  712. 0 => 'api',
  713. 1 => 'tenim',
  714. 2 => 'callback',
  715. ),
  716. )
  717. [ info ] [ HEADER ] array (
  718. 'content-type' => 'application/json',
  719. 'content-length' => '129',
  720. 'connection' => 'keep-alive',
  721. 'host' => 'voicechat.lanmaonet.com',
  722. )
  723. [ info ] [ PARAM ] array (
  724. 'CallbackCommand' => 'State.StateChange',
  725. 'ClientIP' => '111.14.245.79',
  726. 'DefineVersion' => '6.1.2166',
  727. 'OptPlatform' => 'Android',
  728. 'RequestId' => '2810571534-144115354519425088-Login-Register',
  729. 'SdkAppid' => '1400556860',
  730. 'contenttype' => 'json',
  731. 'EventTime' => 1679094795709,
  732. 'Info' =>
  733. array (
  734. 'To_Account' => '38',
  735. 'Action' => 'Login',
  736. 'Reason' => 'Register',
  737. ),
  738. )
  739. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  740. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  741. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  742. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  743. [ info ] [ DB ] INIT mysql
  744. [ info ] [ LOG ] INIT File
  745. ---------------------------------------------------------------
  746. [ 2023-03-18T07:19:55+08:00 ] 129.211.163.176 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810585071-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  747. [运行时间:0.262713s] [吞吐率:3.81req/s] [内存消耗:628.45kb] [文件加载:139]
  748. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  749. [ info ] [ CACHE ] INIT File
  750. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000145s ]
  751. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  752. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  753. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  754. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  755. [ info ] [ ROUTE ] array (
  756. 'type' => 'module',
  757. 'module' =>
  758. array (
  759. 0 => 'api',
  760. 1 => 'tenim',
  761. 2 => 'callback',
  762. ),
  763. )
  764. [ info ] [ HEADER ] array (
  765. 'content-type' => 'application/json',
  766. 'content-length' => '135',
  767. 'connection' => 'keep-alive',
  768. 'host' => 'voicechat.lanmaonet.com',
  769. )
  770. [ info ] [ PARAM ] array (
  771. 'CallbackCommand' => 'State.StateChange',
  772. 'ClientIP' => '111.14.245.79',
  773. 'OptPlatform' => 'Android',
  774. 'RequestId' => '2810585071-144115354519425088-Disconnect-LinkClose',
  775. 'SdkAppid' => '1400556860',
  776. 'contenttype' => 'json',
  777. 'EventTime' => 1679095195470,
  778. 'Info' =>
  779. array (
  780. 'To_Account' => '38',
  781. 'Action' => 'Disconnect',
  782. 'Reason' => 'LinkClose',
  783. ),
  784. )
  785. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  786. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  787. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  788. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  789. [ info ] [ DB ] INIT mysql
  790. [ info ] [ LOG ] INIT File
  791. ---------------------------------------------------------------
  792. [ 2023-03-18T07:19:55+08:00 ] 119.45.30.208 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810585069-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  793. [运行时间:0.287726s] [吞吐率:3.48req/s] [内存消耗:628.56kb] [文件加载:139]
  794. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  795. [ info ] [ CACHE ] INIT File
  796. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000151s ]
  797. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  798. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  799. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  800. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  801. [ info ] [ ROUTE ] array (
  802. 'type' => 'module',
  803. 'module' =>
  804. array (
  805. 0 => 'api',
  806. 1 => 'tenim',
  807. 2 => 'callback',
  808. ),
  809. )
  810. [ info ] [ HEADER ] array (
  811. 'content-type' => 'application/json',
  812. 'content-length' => '133',
  813. 'connection' => 'keep-alive',
  814. 'host' => 'voicechat.lanmaonet.com',
  815. )
  816. [ info ] [ PARAM ] array (
  817. 'CallbackCommand' => 'State.StateChange',
  818. 'ClientIP' => '111.14.245.79',
  819. 'DefineVersion' => '6.1.2166',
  820. 'OptPlatform' => 'Android',
  821. 'RequestId' => '2810585069-144115354519425088-Disconnect-TimeOut',
  822. 'SdkAppid' => '1400556860',
  823. 'contenttype' => 'json',
  824. 'EventTime' => 1679095195466,
  825. 'Info' =>
  826. array (
  827. 'To_Account' => '38',
  828. 'Action' => 'Disconnect',
  829. 'Reason' => 'TimeOut',
  830. ),
  831. )
  832. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  833. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  834. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  835. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  836. [ info ] [ DB ] INIT mysql
  837. [ info ] [ LOG ] INIT File
  838. ---------------------------------------------------------------
  839. [ 2023-03-18T07:20:01+08:00 ] 146.56.231.200 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810585250-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  840. [运行时间:0.020763s] [吞吐率:48.16req/s] [内存消耗:591.70kb] [文件加载:136]
  841. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  842. [ info ] [ CACHE ] INIT File
  843. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  844. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  845. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  846. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  847. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  848. [ info ] [ ROUTE ] array (
  849. 'type' => 'module',
  850. 'module' =>
  851. array (
  852. 0 => 'api',
  853. 1 => 'tenim',
  854. 2 => 'callback',
  855. ),
  856. )
  857. [ info ] [ HEADER ] array (
  858. 'content-type' => 'application/json',
  859. 'content-length' => '129',
  860. 'connection' => 'keep-alive',
  861. 'host' => 'voicechat.lanmaonet.com',
  862. )
  863. [ info ] [ PARAM ] array (
  864. 'CallbackCommand' => 'State.StateChange',
  865. 'ClientIP' => '111.14.245.79',
  866. 'DefineVersion' => '6.1.2166',
  867. 'OptPlatform' => 'Android',
  868. 'RequestId' => '2810585250-144115354519425088-Login-Register',
  869. 'SdkAppid' => '1400556860',
  870. 'contenttype' => 'json',
  871. 'EventTime' => 1679095201059,
  872. 'Info' =>
  873. array (
  874. 'To_Account' => '38',
  875. 'Action' => 'Login',
  876. 'Reason' => 'Register',
  877. ),
  878. )
  879. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  880. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000069s ]
  881. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  882. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  883. [ info ] [ DB ] INIT mysql
  884. [ info ] [ LOG ] INIT File
  885. ---------------------------------------------------------------
  886. [ 2023-03-18T07:26:41+08:00 ] 129.211.163.176 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810599418-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  887. [运行时间:0.259397s] [吞吐率:3.86req/s] [内存消耗:628.56kb] [文件加载:139]
  888. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  889. [ info ] [ CACHE ] INIT File
  890. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000162s ]
  891. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  892. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  893. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  894. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  895. [ info ] [ ROUTE ] array (
  896. 'type' => 'module',
  897. 'module' =>
  898. array (
  899. 0 => 'api',
  900. 1 => 'tenim',
  901. 2 => 'callback',
  902. ),
  903. )
  904. [ info ] [ HEADER ] array (
  905. 'content-type' => 'application/json',
  906. 'content-length' => '133',
  907. 'connection' => 'keep-alive',
  908. 'host' => 'voicechat.lanmaonet.com',
  909. )
  910. [ info ] [ PARAM ] array (
  911. 'CallbackCommand' => 'State.StateChange',
  912. 'ClientIP' => '111.14.245.79',
  913. 'DefineVersion' => '6.1.2166',
  914. 'OptPlatform' => 'Android',
  915. 'RequestId' => '2810599418-144115354519425088-Disconnect-TimeOut',
  916. 'SdkAppid' => '1400556860',
  917. 'contenttype' => 'json',
  918. 'EventTime' => 1679095601540,
  919. 'Info' =>
  920. array (
  921. 'To_Account' => '38',
  922. 'Action' => 'Disconnect',
  923. 'Reason' => 'TimeOut',
  924. ),
  925. )
  926. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  927. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  928. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  929. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  930. [ info ] [ DB ] INIT mysql
  931. [ info ] [ LOG ] INIT File
  932. ---------------------------------------------------------------
  933. [ 2023-03-18T07:26:41+08:00 ] 146.56.231.200 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810599423-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  934. [运行时间:0.254435s] [吞吐率:3.93req/s] [内存消耗:628.45kb] [文件加载:139]
  935. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  936. [ info ] [ CACHE ] INIT File
  937. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000121s ]
  938. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  939. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  940. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  941. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  942. [ info ] [ ROUTE ] array (
  943. 'type' => 'module',
  944. 'module' =>
  945. array (
  946. 0 => 'api',
  947. 1 => 'tenim',
  948. 2 => 'callback',
  949. ),
  950. )
  951. [ info ] [ HEADER ] array (
  952. 'content-type' => 'application/json',
  953. 'content-length' => '135',
  954. 'host' => 'voicechat.lanmaonet.com',
  955. 'connection' => 'keep-alive',
  956. )
  957. [ info ] [ PARAM ] array (
  958. 'CallbackCommand' => 'State.StateChange',
  959. 'ClientIP' => '111.14.245.79',
  960. 'OptPlatform' => 'Android',
  961. 'RequestId' => '2810599423-144115354519425088-Disconnect-LinkClose',
  962. 'SdkAppid' => '1400556860',
  963. 'contenttype' => 'json',
  964. 'EventTime' => 1679095601543,
  965. 'Info' =>
  966. array (
  967. 'To_Account' => '38',
  968. 'Action' => 'Disconnect',
  969. 'Reason' => 'LinkClose',
  970. ),
  971. )
  972. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  973. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  974. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  975. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  976. [ info ] [ DB ] INIT mysql
  977. [ info ] [ LOG ] INIT File
  978. ---------------------------------------------------------------
  979. [ 2023-03-18T07:26:47+08:00 ] 146.56.231.253 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810599626-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  980. [运行时间:0.015015s] [吞吐率:66.60req/s] [内存消耗:591.70kb] [文件加载:136]
  981. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  982. [ info ] [ CACHE ] INIT File
  983. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000156s ]
  984. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  985. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  986. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  987. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  988. [ info ] [ ROUTE ] array (
  989. 'type' => 'module',
  990. 'module' =>
  991. array (
  992. 0 => 'api',
  993. 1 => 'tenim',
  994. 2 => 'callback',
  995. ),
  996. )
  997. [ info ] [ HEADER ] array (
  998. 'content-type' => 'application/json',
  999. 'content-length' => '129',
  1000. 'connection' => 'keep-alive',
  1001. 'host' => 'voicechat.lanmaonet.com',
  1002. )
  1003. [ info ] [ PARAM ] array (
  1004. 'CallbackCommand' => 'State.StateChange',
  1005. 'ClientIP' => '111.14.245.79',
  1006. 'DefineVersion' => '6.1.2166',
  1007. 'OptPlatform' => 'Android',
  1008. 'RequestId' => '2810599626-144115354519425088-Login-Register',
  1009. 'SdkAppid' => '1400556860',
  1010. 'contenttype' => 'json',
  1011. 'EventTime' => 1679095607312,
  1012. 'Info' =>
  1013. array (
  1014. 'To_Account' => '38',
  1015. 'Action' => 'Login',
  1016. 'Reason' => 'Register',
  1017. ),
  1018. )
  1019. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1020. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  1021. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1022. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1023. [ info ] [ DB ] INIT mysql
  1024. [ info ] [ LOG ] INIT File
  1025. ---------------------------------------------------------------
  1026. [ 2023-03-18T07:45:05+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810640448-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  1027. [运行时间:0.273291s] [吞吐率:3.66req/s] [内存消耗:628.56kb] [文件加载:139]
  1028. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1029. [ info ] [ CACHE ] INIT File
  1030. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000118s ]
  1031. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1032. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1033. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1034. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  1035. [ info ] [ ROUTE ] array (
  1036. 'type' => 'module',
  1037. 'module' =>
  1038. array (
  1039. 0 => 'api',
  1040. 1 => 'tenim',
  1041. 2 => 'callback',
  1042. ),
  1043. )
  1044. [ info ] [ HEADER ] array (
  1045. 'content-type' => 'application/json',
  1046. 'content-length' => '133',
  1047. 'connection' => 'keep-alive',
  1048. 'host' => 'voicechat.lanmaonet.com',
  1049. )
  1050. [ info ] [ PARAM ] array (
  1051. 'CallbackCommand' => 'State.StateChange',
  1052. 'ClientIP' => '111.14.245.79',
  1053. 'DefineVersion' => '6.1.2166',
  1054. 'OptPlatform' => 'Android',
  1055. 'RequestId' => '2810640448-144115354519425088-Disconnect-TimeOut',
  1056. 'SdkAppid' => '1400556860',
  1057. 'contenttype' => 'json',
  1058. 'EventTime' => 1679096704740,
  1059. 'Info' =>
  1060. array (
  1061. 'To_Account' => '38',
  1062. 'Action' => 'Disconnect',
  1063. 'Reason' => 'TimeOut',
  1064. ),
  1065. )
  1066. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1067. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  1068. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  1069. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1070. [ info ] [ DB ] INIT mysql
  1071. [ info ] [ LOG ] INIT File
  1072. ---------------------------------------------------------------
  1073. [ 2023-03-18T07:45:05+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810640451-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1074. [运行时间:0.328756s] [吞吐率:3.04req/s] [内存消耗:628.45kb] [文件加载:139]
  1075. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1076. [ info ] [ CACHE ] INIT File
  1077. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  1078. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1079. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  1080. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1081. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1082. [ info ] [ ROUTE ] array (
  1083. 'type' => 'module',
  1084. 'module' =>
  1085. array (
  1086. 0 => 'api',
  1087. 1 => 'tenim',
  1088. 2 => 'callback',
  1089. ),
  1090. )
  1091. [ info ] [ HEADER ] array (
  1092. 'content-type' => 'application/json',
  1093. 'content-length' => '135',
  1094. 'connection' => 'keep-alive',
  1095. 'host' => 'voicechat.lanmaonet.com',
  1096. )
  1097. [ info ] [ PARAM ] array (
  1098. 'CallbackCommand' => 'State.StateChange',
  1099. 'ClientIP' => '111.14.245.79',
  1100. 'OptPlatform' => 'Android',
  1101. 'RequestId' => '2810640451-144115354519425088-Disconnect-LinkClose',
  1102. 'SdkAppid' => '1400556860',
  1103. 'contenttype' => 'json',
  1104. 'EventTime' => 1679096704745,
  1105. 'Info' =>
  1106. array (
  1107. 'To_Account' => '38',
  1108. 'Action' => 'Disconnect',
  1109. 'Reason' => 'LinkClose',
  1110. ),
  1111. )
  1112. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1113. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  1114. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1115. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1116. [ info ] [ DB ] INIT mysql
  1117. [ info ] [ LOG ] INIT File
  1118. ---------------------------------------------------------------
  1119. [ 2023-03-18T07:45:11+08:00 ] 146.56.222.94 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810640690-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  1120. [运行时间:0.012812s] [吞吐率:78.05req/s] [内存消耗:591.70kb] [文件加载:136]
  1121. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1122. [ info ] [ CACHE ] INIT File
  1123. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000143s ]
  1124. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1125. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1126. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1127. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1128. [ info ] [ ROUTE ] array (
  1129. 'type' => 'module',
  1130. 'module' =>
  1131. array (
  1132. 0 => 'api',
  1133. 1 => 'tenim',
  1134. 2 => 'callback',
  1135. ),
  1136. )
  1137. [ info ] [ HEADER ] array (
  1138. 'content-type' => 'application/json',
  1139. 'content-length' => '129',
  1140. 'host' => 'voicechat.lanmaonet.com',
  1141. 'connection' => 'keep-alive',
  1142. )
  1143. [ info ] [ PARAM ] array (
  1144. 'CallbackCommand' => 'State.StateChange',
  1145. 'ClientIP' => '111.14.245.79',
  1146. 'DefineVersion' => '6.1.2166',
  1147. 'OptPlatform' => 'Android',
  1148. 'RequestId' => '2810640690-144115354519425088-Login-Register',
  1149. 'SdkAppid' => '1400556860',
  1150. 'contenttype' => 'json',
  1151. 'EventTime' => 1679096710693,
  1152. 'Info' =>
  1153. array (
  1154. 'To_Account' => '38',
  1155. 'Action' => 'Login',
  1156. 'Reason' => 'Register',
  1157. ),
  1158. )
  1159. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1160. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1161. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1162. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1163. [ info ] [ DB ] INIT mysql
  1164. [ info ] [ LOG ] INIT File
  1165. ---------------------------------------------------------------
  1166. [ 2023-03-18T07:51:51+08:00 ] 119.45.179.117 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810656044-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  1167. [运行时间:0.242823s] [吞吐率:4.12req/s] [内存消耗:628.56kb] [文件加载:139]
  1168. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1169. [ info ] [ CACHE ] INIT File
  1170. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000165s ]
  1171. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1172. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  1173. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1174. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  1175. [ info ] [ ROUTE ] array (
  1176. 'type' => 'module',
  1177. 'module' =>
  1178. array (
  1179. 0 => 'api',
  1180. 1 => 'tenim',
  1181. 2 => 'callback',
  1182. ),
  1183. )
  1184. [ info ] [ HEADER ] array (
  1185. 'content-type' => 'application/json',
  1186. 'content-length' => '133',
  1187. 'connection' => 'keep-alive',
  1188. 'host' => 'voicechat.lanmaonet.com',
  1189. )
  1190. [ info ] [ PARAM ] array (
  1191. 'CallbackCommand' => 'State.StateChange',
  1192. 'ClientIP' => '111.14.245.79',
  1193. 'DefineVersion' => '6.1.2166',
  1194. 'OptPlatform' => 'Android',
  1195. 'RequestId' => '2810656044-144115354519425088-Disconnect-TimeOut',
  1196. 'SdkAppid' => '1400556860',
  1197. 'contenttype' => 'json',
  1198. 'EventTime' => 1679097110827,
  1199. 'Info' =>
  1200. array (
  1201. 'To_Account' => '38',
  1202. 'Action' => 'Disconnect',
  1203. 'Reason' => 'TimeOut',
  1204. ),
  1205. )
  1206. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1207. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1208. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  1209. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1210. [ info ] [ DB ] INIT mysql
  1211. [ info ] [ LOG ] INIT File
  1212. ---------------------------------------------------------------
  1213. [ 2023-03-18T07:51:51+08:00 ] 119.45.160.30 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810656045-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1214. [运行时间:0.298520s] [吞吐率:3.35req/s] [内存消耗:628.45kb] [文件加载:139]
  1215. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1216. [ info ] [ CACHE ] INIT File
  1217. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000155s ]
  1218. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1219. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1220. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1221. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1222. [ info ] [ ROUTE ] array (
  1223. 'type' => 'module',
  1224. 'module' =>
  1225. array (
  1226. 0 => 'api',
  1227. 1 => 'tenim',
  1228. 2 => 'callback',
  1229. ),
  1230. )
  1231. [ info ] [ HEADER ] array (
  1232. 'content-type' => 'application/json',
  1233. 'content-length' => '135',
  1234. 'connection' => 'keep-alive',
  1235. 'host' => 'voicechat.lanmaonet.com',
  1236. )
  1237. [ info ] [ PARAM ] array (
  1238. 'CallbackCommand' => 'State.StateChange',
  1239. 'ClientIP' => '111.14.245.79',
  1240. 'OptPlatform' => 'Android',
  1241. 'RequestId' => '2810656045-144115354519425088-Disconnect-LinkClose',
  1242. 'SdkAppid' => '1400556860',
  1243. 'contenttype' => 'json',
  1244. 'EventTime' => 1679097110832,
  1245. 'Info' =>
  1246. array (
  1247. 'To_Account' => '38',
  1248. 'Action' => 'Disconnect',
  1249. 'Reason' => 'LinkClose',
  1250. ),
  1251. )
  1252. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1253. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  1254. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  1255. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1256. [ info ] [ DB ] INIT mysql
  1257. [ info ] [ LOG ] INIT File
  1258. ---------------------------------------------------------------
  1259. [ 2023-03-18T07:51:56+08:00 ] 119.45.30.208 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810656266-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  1260. [运行时间:0.013137s] [吞吐率:76.12req/s] [内存消耗:591.70kb] [文件加载:136]
  1261. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1262. [ info ] [ CACHE ] INIT File
  1263. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  1264. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1265. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1266. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1267. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1268. [ info ] [ ROUTE ] array (
  1269. 'type' => 'module',
  1270. 'module' =>
  1271. array (
  1272. 0 => 'api',
  1273. 1 => 'tenim',
  1274. 2 => 'callback',
  1275. ),
  1276. )
  1277. [ info ] [ HEADER ] array (
  1278. 'content-type' => 'application/json',
  1279. 'content-length' => '129',
  1280. 'connection' => 'keep-alive',
  1281. 'host' => 'voicechat.lanmaonet.com',
  1282. )
  1283. [ info ] [ PARAM ] array (
  1284. 'CallbackCommand' => 'State.StateChange',
  1285. 'ClientIP' => '111.14.245.79',
  1286. 'DefineVersion' => '6.1.2166',
  1287. 'OptPlatform' => 'Android',
  1288. 'RequestId' => '2810656266-144115354519425088-Login-Register',
  1289. 'SdkAppid' => '1400556860',
  1290. 'contenttype' => 'json',
  1291. 'EventTime' => 1679097116628,
  1292. 'Info' =>
  1293. array (
  1294. 'To_Account' => '38',
  1295. 'Action' => 'Login',
  1296. 'Reason' => 'Register',
  1297. ),
  1298. )
  1299. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1300. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000077s ]
  1301. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  1302. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1303. [ info ] [ DB ] INIT mysql
  1304. [ info ] [ LOG ] INIT File
  1305. ---------------------------------------------------------------
  1306. [ 2023-03-18T07:58:37+08:00 ] 146.56.231.200 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810672367-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  1307. [运行时间:0.260627s] [吞吐率:3.84req/s] [内存消耗:628.56kb] [文件加载:139]
  1308. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1309. [ info ] [ CACHE ] INIT File
  1310. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000169s ]
  1311. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1312. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1313. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1314. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  1315. [ info ] [ ROUTE ] array (
  1316. 'type' => 'module',
  1317. 'module' =>
  1318. array (
  1319. 0 => 'api',
  1320. 1 => 'tenim',
  1321. 2 => 'callback',
  1322. ),
  1323. )
  1324. [ info ] [ HEADER ] array (
  1325. 'content-type' => 'application/json',
  1326. 'content-length' => '133',
  1327. 'connection' => 'keep-alive',
  1328. 'host' => 'voicechat.lanmaonet.com',
  1329. )
  1330. [ info ] [ PARAM ] array (
  1331. 'CallbackCommand' => 'State.StateChange',
  1332. 'ClientIP' => '111.14.245.79',
  1333. 'DefineVersion' => '6.1.2166',
  1334. 'OptPlatform' => 'Android',
  1335. 'RequestId' => '2810672367-144115354519425088-Disconnect-TimeOut',
  1336. 'SdkAppid' => '1400556860',
  1337. 'contenttype' => 'json',
  1338. 'EventTime' => 1679097516896,
  1339. 'Info' =>
  1340. array (
  1341. 'To_Account' => '38',
  1342. 'Action' => 'Disconnect',
  1343. 'Reason' => 'TimeOut',
  1344. ),
  1345. )
  1346. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1347. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  1348. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  1349. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1350. [ info ] [ DB ] INIT mysql
  1351. [ info ] [ LOG ] INIT File
  1352. ---------------------------------------------------------------
  1353. [ 2023-03-18T07:58:37+08:00 ] 119.45.47.127 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810672370-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1354. [运行时间:0.311710s] [吞吐率:3.21req/s] [内存消耗:628.45kb] [文件加载:139]
  1355. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1356. [ info ] [ CACHE ] INIT File
  1357. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000113s ]
  1358. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1359. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  1360. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1361. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  1362. [ info ] [ ROUTE ] array (
  1363. 'type' => 'module',
  1364. 'module' =>
  1365. array (
  1366. 0 => 'api',
  1367. 1 => 'tenim',
  1368. 2 => 'callback',
  1369. ),
  1370. )
  1371. [ info ] [ HEADER ] array (
  1372. 'content-type' => 'application/json',
  1373. 'content-length' => '135',
  1374. 'connection' => 'keep-alive',
  1375. 'host' => 'voicechat.lanmaonet.com',
  1376. )
  1377. [ info ] [ PARAM ] array (
  1378. 'CallbackCommand' => 'State.StateChange',
  1379. 'ClientIP' => '111.14.245.79',
  1380. 'OptPlatform' => 'Android',
  1381. 'RequestId' => '2810672370-144115354519425088-Disconnect-LinkClose',
  1382. 'SdkAppid' => '1400556860',
  1383. 'contenttype' => 'json',
  1384. 'EventTime' => 1679097516901,
  1385. 'Info' =>
  1386. array (
  1387. 'To_Account' => '38',
  1388. 'Action' => 'Disconnect',
  1389. 'Reason' => 'LinkClose',
  1390. ),
  1391. )
  1392. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1393. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  1394. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  1395. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1396. [ info ] [ DB ] INIT mysql
  1397. [ info ] [ LOG ] INIT File
  1398. ---------------------------------------------------------------
  1399. [ 2023-03-18T07:58:43+08:00 ] 119.45.179.117 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810672628-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  1400. [运行时间:0.012719s] [吞吐率:78.62req/s] [内存消耗:591.70kb] [文件加载:136]
  1401. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1402. [ info ] [ CACHE ] INIT File
  1403. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  1404. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1405. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1406. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1407. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1408. [ info ] [ ROUTE ] array (
  1409. 'type' => 'module',
  1410. 'module' =>
  1411. array (
  1412. 0 => 'api',
  1413. 1 => 'tenim',
  1414. 2 => 'callback',
  1415. ),
  1416. )
  1417. [ info ] [ HEADER ] array (
  1418. 'content-type' => 'application/json',
  1419. 'content-length' => '129',
  1420. 'connection' => 'keep-alive',
  1421. 'host' => 'voicechat.lanmaonet.com',
  1422. )
  1423. [ info ] [ PARAM ] array (
  1424. 'CallbackCommand' => 'State.StateChange',
  1425. 'ClientIP' => '111.14.245.79',
  1426. 'DefineVersion' => '6.1.2166',
  1427. 'OptPlatform' => 'Android',
  1428. 'RequestId' => '2810672628-144115354519425088-Login-Register',
  1429. 'SdkAppid' => '1400556860',
  1430. 'contenttype' => 'json',
  1431. 'EventTime' => 1679097523537,
  1432. 'Info' =>
  1433. array (
  1434. 'To_Account' => '38',
  1435. 'Action' => 'Login',
  1436. 'Reason' => 'Register',
  1437. ),
  1438. )
  1439. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1440. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  1441. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  1442. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1443. [ info ] [ DB ] INIT mysql
  1444. [ info ] [ LOG ] INIT File
  1445. ---------------------------------------------------------------
  1446. [ 2023-03-18T08:11:14+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&OptPlatform=Android&RequestId=2810704078-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1447. [运行时间:0.259732s] [吞吐率:3.85req/s] [内存消耗:628.45kb] [文件加载:139]
  1448. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1449. [ info ] [ CACHE ] INIT File
  1450. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000128s ]
  1451. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1452. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1453. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1454. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1455. [ info ] [ ROUTE ] array (
  1456. 'type' => 'module',
  1457. 'module' =>
  1458. array (
  1459. 0 => 'api',
  1460. 1 => 'tenim',
  1461. 2 => 'callback',
  1462. ),
  1463. )
  1464. [ info ] [ HEADER ] array (
  1465. 'content-type' => 'application/json',
  1466. 'content-length' => '135',
  1467. 'connection' => 'keep-alive',
  1468. 'host' => 'voicechat.lanmaonet.com',
  1469. )
  1470. [ info ] [ PARAM ] array (
  1471. 'CallbackCommand' => 'State.StateChange',
  1472. 'ClientIP' => '111.14.245.79',
  1473. 'OptPlatform' => 'Android',
  1474. 'RequestId' => '2810704078-144115354519425088-Disconnect-LinkClose',
  1475. 'SdkAppid' => '1400556860',
  1476. 'contenttype' => 'json',
  1477. 'EventTime' => 1679098274046,
  1478. 'Info' =>
  1479. array (
  1480. 'To_Account' => '38',
  1481. 'Action' => 'Disconnect',
  1482. 'Reason' => 'LinkClose',
  1483. ),
  1484. )
  1485. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1486. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  1487. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  1488. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1489. [ info ] [ DB ] INIT mysql
  1490. [ info ] [ LOG ] INIT File
  1491. ---------------------------------------------------------------
  1492. [ 2023-03-18T08:11:14+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810704077-144115354519425088-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  1493. [运行时间:0.280084s] [吞吐率:3.57req/s] [内存消耗:628.56kb] [文件加载:139]
  1494. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1495. [ info ] [ CACHE ] INIT File
  1496. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000146s ]
  1497. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1498. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1499. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1500. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1501. [ info ] [ ROUTE ] array (
  1502. 'type' => 'module',
  1503. 'module' =>
  1504. array (
  1505. 0 => 'api',
  1506. 1 => 'tenim',
  1507. 2 => 'callback',
  1508. ),
  1509. )
  1510. [ info ] [ HEADER ] array (
  1511. 'content-type' => 'application/json',
  1512. 'content-length' => '133',
  1513. 'connection' => 'keep-alive',
  1514. 'host' => 'voicechat.lanmaonet.com',
  1515. )
  1516. [ info ] [ PARAM ] array (
  1517. 'CallbackCommand' => 'State.StateChange',
  1518. 'ClientIP' => '111.14.245.79',
  1519. 'DefineVersion' => '6.1.2166',
  1520. 'OptPlatform' => 'Android',
  1521. 'RequestId' => '2810704077-144115354519425088-Disconnect-TimeOut',
  1522. 'SdkAppid' => '1400556860',
  1523. 'contenttype' => 'json',
  1524. 'EventTime' => 1679098274041,
  1525. 'Info' =>
  1526. array (
  1527. 'To_Account' => '38',
  1528. 'Action' => 'Disconnect',
  1529. 'Reason' => 'TimeOut',
  1530. ),
  1531. )
  1532. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1533. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000070s ]
  1534. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  1535. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1536. [ info ] [ DB ] INIT mysql
  1537. [ info ] [ LOG ] INIT File
  1538. ---------------------------------------------------------------
  1539. [ 2023-03-18T08:11:20+08:00 ] 119.45.30.208 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810704389-144115354519425088-Login-Register&SdkAppid=1400556860&contenttype=json
  1540. [运行时间:0.013742s] [吞吐率:72.77req/s] [内存消耗:591.70kb] [文件加载:136]
  1541. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1542. [ info ] [ CACHE ] INIT File
  1543. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000174s ]
  1544. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  1545. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1546. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1547. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1548. [ info ] [ ROUTE ] array (
  1549. 'type' => 'module',
  1550. 'module' =>
  1551. array (
  1552. 0 => 'api',
  1553. 1 => 'tenim',
  1554. 2 => 'callback',
  1555. ),
  1556. )
  1557. [ info ] [ HEADER ] array (
  1558. 'content-type' => 'application/json',
  1559. 'content-length' => '129',
  1560. 'connection' => 'keep-alive',
  1561. 'host' => 'voicechat.lanmaonet.com',
  1562. )
  1563. [ info ] [ PARAM ] array (
  1564. 'CallbackCommand' => 'State.StateChange',
  1565. 'ClientIP' => '111.14.245.79',
  1566. 'DefineVersion' => '6.1.2166',
  1567. 'OptPlatform' => 'Android',
  1568. 'RequestId' => '2810704389-144115354519425088-Login-Register',
  1569. 'SdkAppid' => '1400556860',
  1570. 'contenttype' => 'json',
  1571. 'EventTime' => 1679098280598,
  1572. 'Info' =>
  1573. array (
  1574. 'To_Account' => '38',
  1575. 'Action' => 'Login',
  1576. 'Reason' => 'Register',
  1577. ),
  1578. )
  1579. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1580. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1581. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000065s ]
  1582. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1583. [ info ] [ DB ] INIT mysql
  1584. [ info ] [ LOG ] INIT File
  1585. ---------------------------------------------------------------
  1586. [ 2023-03-18T08:11:38+08:00 ] 119.45.47.127 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=111.14.245.79&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2810705150-144115354519425088-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1587. [运行时间:0.249272s] [吞吐率:4.01req/s] [内存消耗:628.58kb] [文件加载:139]
  1588. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1589. [ info ] [ CACHE ] INIT File
  1590. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000146s ]
  1591. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  1592. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  1593. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1594. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1595. [ info ] [ ROUTE ] array (
  1596. 'type' => 'module',
  1597. 'module' =>
  1598. array (
  1599. 0 => 'api',
  1600. 1 => 'tenim',
  1601. 2 => 'callback',
  1602. ),
  1603. )
  1604. [ info ] [ HEADER ] array (
  1605. 'content-type' => 'application/json',
  1606. 'content-length' => '135',
  1607. 'connection' => 'keep-alive',
  1608. 'host' => 'voicechat.lanmaonet.com',
  1609. )
  1610. [ info ] [ PARAM ] array (
  1611. 'CallbackCommand' => 'State.StateChange',
  1612. 'ClientIP' => '111.14.245.79',
  1613. 'DefineVersion' => '6.1.2166',
  1614. 'OptPlatform' => 'Android',
  1615. 'RequestId' => '2810705150-144115354519425088-Disconnect-LinkClose',
  1616. 'SdkAppid' => '1400556860',
  1617. 'contenttype' => 'json',
  1618. 'EventTime' => 1679098297892,
  1619. 'Info' =>
  1620. array (
  1621. 'To_Account' => '38',
  1622. 'Action' => 'Disconnect',
  1623. 'Reason' => 'LinkClose',
  1624. ),
  1625. )
  1626. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1627. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000071s ]
  1628. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  1629. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1630. [ info ] [ DB ] INIT mysql
  1631. [ info ] [ LOG ] INIT File
  1632. ---------------------------------------------------------------
  1633. [ 2023-03-18T08:42:52+08:00 ] 146.56.231.253 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2783060519-144115261373420579-Login-Register&SdkAppid=1400556860&contenttype=json
  1634. [运行时间:0.013551s] [吞吐率:73.80req/s] [内存消耗:591.70kb] [文件加载:136]
  1635. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1636. [ info ] [ CACHE ] INIT File
  1637. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000148s ]
  1638. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1639. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1640. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1641. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000045s ]
  1642. [ info ] [ ROUTE ] array (
  1643. 'type' => 'module',
  1644. 'module' =>
  1645. array (
  1646. 0 => 'api',
  1647. 1 => 'tenim',
  1648. 2 => 'callback',
  1649. ),
  1650. )
  1651. [ info ] [ HEADER ] array (
  1652. 'content-type' => 'application/json',
  1653. 'content-length' => '128',
  1654. 'connection' => 'keep-alive',
  1655. 'host' => 'voicechat.lanmaonet.com',
  1656. )
  1657. [ info ] [ PARAM ] array (
  1658. 'CallbackCommand' => 'State.StateChange',
  1659. 'ClientIP' => '112.6.63.60',
  1660. 'DefineVersion' => '6.1.2166',
  1661. 'OptPlatform' => 'Android',
  1662. 'RequestId' => '2783060519-144115261373420579-Login-Register',
  1663. 'SdkAppid' => '1400556860',
  1664. 'contenttype' => 'json',
  1665. 'EventTime' => 1679100172289,
  1666. 'Info' =>
  1667. array (
  1668. 'To_Account' => '5',
  1669. 'Action' => 'Login',
  1670. 'Reason' => 'Register',
  1671. ),
  1672. )
  1673. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1674. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1675. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  1676. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1677. [ info ] [ DB ] INIT mysql
  1678. [ info ] [ LOG ] INIT File
  1679. ---------------------------------------------------------------
  1680. [ 2023-03-18T08:53:36+08:00 ] 119.45.44.121 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2783086804-144115261373420579-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1681. [运行时间:0.155698s] [吞吐率:6.42req/s] [内存消耗:619.02kb] [文件加载:139]
  1682. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1683. [ info ] [ CACHE ] INIT File
  1684. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000146s ]
  1685. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1686. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  1687. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1688. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  1689. [ info ] [ ROUTE ] array (
  1690. 'type' => 'module',
  1691. 'module' =>
  1692. array (
  1693. 0 => 'api',
  1694. 1 => 'tenim',
  1695. 2 => 'callback',
  1696. ),
  1697. )
  1698. [ info ] [ HEADER ] array (
  1699. 'content-type' => 'application/json',
  1700. 'content-length' => '134',
  1701. 'connection' => 'keep-alive',
  1702. 'host' => 'voicechat.lanmaonet.com',
  1703. )
  1704. [ info ] [ PARAM ] array (
  1705. 'CallbackCommand' => 'State.StateChange',
  1706. 'ClientIP' => '112.6.63.60',
  1707. 'DefineVersion' => '6.1.2166',
  1708. 'OptPlatform' => 'Android',
  1709. 'RequestId' => '2783086804-144115261373420579-Disconnect-LinkClose',
  1710. 'SdkAppid' => '1400556860',
  1711. 'contenttype' => 'json',
  1712. 'EventTime' => 1679100815738,
  1713. 'Info' =>
  1714. array (
  1715. 'To_Account' => '5',
  1716. 'Action' => 'Disconnect',
  1717. 'Reason' => 'LinkClose',
  1718. ),
  1719. )
  1720. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1721. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  1722. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  1723. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1724. [ info ] [ DB ] INIT mysql
  1725. [ info ] [ LOG ] INIT File
  1726. ---------------------------------------------------------------
  1727. [ 2023-03-18T09:13:45+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2783138973-144115261373420579-Login-Register&SdkAppid=1400556860&contenttype=json
  1728. [运行时间:0.013695s] [吞吐率:73.02req/s] [内存消耗:591.70kb] [文件加载:136]
  1729. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1730. [ info ] [ CACHE ] INIT File
  1731. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000165s ]
  1732. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1733. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1734. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1735. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  1736. [ info ] [ ROUTE ] array (
  1737. 'type' => 'module',
  1738. 'module' =>
  1739. array (
  1740. 0 => 'api',
  1741. 1 => 'tenim',
  1742. 2 => 'callback',
  1743. ),
  1744. )
  1745. [ info ] [ HEADER ] array (
  1746. 'content-type' => 'application/json',
  1747. 'content-length' => '128',
  1748. 'connection' => 'keep-alive',
  1749. 'host' => 'voicechat.lanmaonet.com',
  1750. )
  1751. [ info ] [ PARAM ] array (
  1752. 'CallbackCommand' => 'State.StateChange',
  1753. 'ClientIP' => '112.6.63.60',
  1754. 'DefineVersion' => '6.1.2166',
  1755. 'OptPlatform' => 'Android',
  1756. 'RequestId' => '2783138973-144115261373420579-Login-Register',
  1757. 'SdkAppid' => '1400556860',
  1758. 'contenttype' => 'json',
  1759. 'EventTime' => 1679102025290,
  1760. 'Info' =>
  1761. array (
  1762. 'To_Account' => '5',
  1763. 'Action' => 'Login',
  1764. 'Reason' => 'Register',
  1765. ),
  1766. )
  1767. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1768. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  1769. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  1770. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1771. [ info ] [ DB ] INIT mysql
  1772. [ info ] [ LOG ] INIT File
  1773. ---------------------------------------------------------------
  1774. [ 2023-03-18T09:13:58+08:00 ] 129.211.163.176 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2783139525-144115261373420579-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1775. [运行时间:0.164836s] [吞吐率:6.07req/s] [内存消耗:619.02kb] [文件加载:139]
  1776. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  1777. [ info ] [ CACHE ] INIT File
  1778. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000202s ]
  1779. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  1780. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  1781. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1782. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000051s ]
  1783. [ info ] [ ROUTE ] array (
  1784. 'type' => 'module',
  1785. 'module' =>
  1786. array (
  1787. 0 => 'api',
  1788. 1 => 'tenim',
  1789. 2 => 'callback',
  1790. ),
  1791. )
  1792. [ info ] [ HEADER ] array (
  1793. 'content-type' => 'application/json',
  1794. 'content-length' => '134',
  1795. 'connection' => 'keep-alive',
  1796. 'host' => 'voicechat.lanmaonet.com',
  1797. )
  1798. [ info ] [ PARAM ] array (
  1799. 'CallbackCommand' => 'State.StateChange',
  1800. 'ClientIP' => '112.6.63.60',
  1801. 'DefineVersion' => '6.1.2166',
  1802. 'OptPlatform' => 'Android',
  1803. 'RequestId' => '2783139525-144115261373420579-Disconnect-LinkClose',
  1804. 'SdkAppid' => '1400556860',
  1805. 'contenttype' => 'json',
  1806. 'EventTime' => 1679102038280,
  1807. 'Info' =>
  1808. array (
  1809. 'To_Account' => '5',
  1810. 'Action' => 'Disconnect',
  1811. 'Reason' => 'LinkClose',
  1812. ),
  1813. )
  1814. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1815. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000072s ]
  1816. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  1817. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1818. [ info ] [ DB ] INIT mysql
  1819. [ info ] [ LOG ] INIT File
  1820. ---------------------------------------------------------------
  1821. [ 2023-03-18T09:20:23+08:00 ] 146.56.222.94 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2783156148-144115261373420579-Login-Register&SdkAppid=1400556860&contenttype=json
  1822. [运行时间:0.011414s] [吞吐率:87.61req/s] [内存消耗:591.70kb] [文件加载:136]
  1823. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1824. [ info ] [ CACHE ] INIT File
  1825. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000157s ]
  1826. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1827. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1828. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1829. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  1830. [ info ] [ ROUTE ] array (
  1831. 'type' => 'module',
  1832. 'module' =>
  1833. array (
  1834. 0 => 'api',
  1835. 1 => 'tenim',
  1836. 2 => 'callback',
  1837. ),
  1838. )
  1839. [ info ] [ HEADER ] array (
  1840. 'content-type' => 'application/json',
  1841. 'content-length' => '128',
  1842. 'connection' => 'keep-alive',
  1843. 'host' => 'voicechat.lanmaonet.com',
  1844. )
  1845. [ info ] [ PARAM ] array (
  1846. 'CallbackCommand' => 'State.StateChange',
  1847. 'ClientIP' => '112.6.63.60',
  1848. 'DefineVersion' => '6.1.2166',
  1849. 'OptPlatform' => 'Android',
  1850. 'RequestId' => '2783156148-144115261373420579-Login-Register',
  1851. 'SdkAppid' => '1400556860',
  1852. 'contenttype' => 'json',
  1853. 'EventTime' => 1679102423557,
  1854. 'Info' =>
  1855. array (
  1856. 'To_Account' => '5',
  1857. 'Action' => 'Login',
  1858. 'Reason' => 'Register',
  1859. ),
  1860. )
  1861. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1862. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  1863. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  1864. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1865. [ info ] [ DB ] INIT mysql
  1866. [ info ] [ LOG ] INIT File
  1867. ---------------------------------------------------------------
  1868. [ 2023-03-18T09:21:31+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2783159261-144115261373420579-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1869. [运行时间:0.144040s] [吞吐率:6.94req/s] [内存消耗:619.02kb] [文件加载:139]
  1870. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1871. [ info ] [ CACHE ] INIT File
  1872. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  1873. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1874. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1875. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1876. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1877. [ info ] [ ROUTE ] array (
  1878. 'type' => 'module',
  1879. 'module' =>
  1880. array (
  1881. 0 => 'api',
  1882. 1 => 'tenim',
  1883. 2 => 'callback',
  1884. ),
  1885. )
  1886. [ info ] [ HEADER ] array (
  1887. 'content-type' => 'application/json',
  1888. 'content-length' => '134',
  1889. 'connection' => 'keep-alive',
  1890. 'host' => 'voicechat.lanmaonet.com',
  1891. )
  1892. [ info ] [ PARAM ] array (
  1893. 'CallbackCommand' => 'State.StateChange',
  1894. 'ClientIP' => '112.6.63.60',
  1895. 'DefineVersion' => '6.1.2166',
  1896. 'OptPlatform' => 'Android',
  1897. 'RequestId' => '2783159261-144115261373420579-Disconnect-LinkClose',
  1898. 'SdkAppid' => '1400556860',
  1899. 'contenttype' => 'json',
  1900. 'EventTime' => 1679102490826,
  1901. 'Info' =>
  1902. array (
  1903. 'To_Account' => '5',
  1904. 'Action' => 'Disconnect',
  1905. 'Reason' => 'LinkClose',
  1906. ),
  1907. )
  1908. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1909. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  1910. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  1911. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1912. [ info ] [ DB ] INIT mysql
  1913. [ info ] [ LOG ] INIT File
  1914. ---------------------------------------------------------------
  1915. [ 2023-03-18T09:31:17+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2783186273-144115261373420579-Login-Register&SdkAppid=1400556860&contenttype=json
  1916. [运行时间:0.014383s] [吞吐率:69.53req/s] [内存消耗:591.70kb] [文件加载:136]
  1917. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1918. [ info ] [ CACHE ] INIT File
  1919. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000146s ]
  1920. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1921. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1922. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1923. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1924. [ info ] [ ROUTE ] array (
  1925. 'type' => 'module',
  1926. 'module' =>
  1927. array (
  1928. 0 => 'api',
  1929. 1 => 'tenim',
  1930. 2 => 'callback',
  1931. ),
  1932. )
  1933. [ info ] [ HEADER ] array (
  1934. 'content-type' => 'application/json',
  1935. 'content-length' => '128',
  1936. 'connection' => 'keep-alive',
  1937. 'host' => 'voicechat.lanmaonet.com',
  1938. )
  1939. [ info ] [ PARAM ] array (
  1940. 'CallbackCommand' => 'State.StateChange',
  1941. 'ClientIP' => '112.6.63.60',
  1942. 'DefineVersion' => '6.1.2166',
  1943. 'OptPlatform' => 'Android',
  1944. 'RequestId' => '2783186273-144115261373420579-Login-Register',
  1945. 'SdkAppid' => '1400556860',
  1946. 'contenttype' => 'json',
  1947. 'EventTime' => 1679103077092,
  1948. 'Info' =>
  1949. array (
  1950. 'To_Account' => '5',
  1951. 'Action' => 'Login',
  1952. 'Reason' => 'Register',
  1953. ),
  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.000056s ]
  1957. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1958. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1959. [ info ] [ DB ] INIT mysql
  1960. [ info ] [ LOG ] INIT File
  1961. ---------------------------------------------------------------
  1962. [ 2023-03-18T09:31:23+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&DefineVersion=6.1.2166&OptPlatform=Android&RequestId=2783186570-144115261373420579-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1963. [运行时间:0.170395s] [吞吐率:5.87req/s] [内存消耗:619.02kb] [文件加载:139]
  1964. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1965. [ info ] [ CACHE ] INIT File
  1966. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000162s ]
  1967. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1968. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1969. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1970. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1971. [ info ] [ ROUTE ] array (
  1972. 'type' => 'module',
  1973. 'module' =>
  1974. array (
  1975. 0 => 'api',
  1976. 1 => 'tenim',
  1977. 2 => 'callback',
  1978. ),
  1979. )
  1980. [ info ] [ HEADER ] array (
  1981. 'content-type' => 'application/json',
  1982. 'content-length' => '134',
  1983. 'connection' => 'keep-alive',
  1984. 'host' => 'voicechat.lanmaonet.com',
  1985. )
  1986. [ info ] [ PARAM ] array (
  1987. 'CallbackCommand' => 'State.StateChange',
  1988. 'ClientIP' => '112.6.63.60',
  1989. 'DefineVersion' => '6.1.2166',
  1990. 'OptPlatform' => 'Android',
  1991. 'RequestId' => '2783186570-144115261373420579-Disconnect-LinkClose',
  1992. 'SdkAppid' => '1400556860',
  1993. 'contenttype' => 'json',
  1994. 'EventTime' => 1679103083079,
  1995. 'Info' =>
  1996. array (
  1997. 'To_Account' => '5',
  1998. 'Action' => 'Disconnect',
  1999. 'Reason' => 'LinkClose',
  2000. ),
  2001. )
  2002. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2003. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  2004. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  2005. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2006. [ info ] [ DB ] INIT mysql
  2007. [ info ] [ LOG ] INIT File
  2008. ---------------------------------------------------------------
  2009. [ 2023-03-18T09:33:02+08:00 ] 52.167.144.66 GET voicechat.lanmaonet.com/
  2010. [运行时间:0.004282s] [吞吐率:233.54req/s] [内存消耗:409.06kb] [文件加载:135]
  2011. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  2012. [ info ] [ CACHE ] INIT File
  2013. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000186s ]
  2014. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  2015. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  2016. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2017. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  2018. [ info ] [ ROUTE ] array (
  2019. 'type' => 'module',
  2020. 'module' =>
  2021. array (
  2022. 0 => '',
  2023. 1 => NULL,
  2024. 2 => NULL,
  2025. ),
  2026. )
  2027. [ info ] [ HEADER ] array (
  2028. 'user-agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36',
  2029. 'host' => 'voicechat.lanmaonet.com',
  2030. 'from' => 'bingbot(at)microsoft.com',
  2031. 'accept-encoding' => 'gzip, deflate',
  2032. 'accept' => '*/*',
  2033. 'pragma' => 'no-cache',
  2034. 'connection' => 'Keep-Alive',
  2035. 'cache-control' => 'no-cache',
  2036. 'content-length' => '',
  2037. 'content-type' => '',
  2038. )
  2039. [ info ] [ PARAM ] array (
  2040. )
  2041. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  2042. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000088s ]
  2043. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  2044. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000038s ]
  2045. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  2046. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  2047. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  2048. 0 => 'user',
  2049. 1 => 'site',
  2050. 2 => 'config',
  2051. ) ]
  2052. [ info ] [ LOG ] INIT File
  2053. ---------------------------------------------------------------
  2054. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getEdition
  2055. [运行时间:0.006756s] [吞吐率:148.02req/s] [内存消耗:589.17kb] [文件加载:143]
  2056. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2057. [ info ] [ CACHE ] INIT File
  2058. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000102s ]
  2059. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2060. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  2061. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2062. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  2063. [ info ] [ ROUTE ] array (
  2064. 'type' => 'module',
  2065. 'module' =>
  2066. array (
  2067. 0 => 'api',
  2068. 1 => 'index',
  2069. 2 => 'getEdition',
  2070. ),
  2071. )
  2072. [ info ] [ HEADER ] array (
  2073. 'accept-encoding' => 'gzip',
  2074. 'content-length' => '62',
  2075. 'content-type' => 'application/x-www-form-urlencoded',
  2076. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2077. 'accept-language' => 'zh-CN,zh;q=0.8',
  2078. 'host' => 'voicechat.lanmaonet.com',
  2079. )
  2080. [ info ] [ PARAM ] array (
  2081. 'params_from' => 'android',
  2082. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  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.000058s ]
  2086. [ info ] [ TOKEN ] INIT Mysql
  2087. [ info ] [ DB ] INIT mysql
  2088. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  2089. [ info ] [ RUN ] app\api\controller\Index->getEdition[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  2090. [ info ] [ LOG ] INIT File
  2091. ---------------------------------------------------------------
  2092. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/tenim/getUsersig
  2093. [运行时间:0.006848s] [吞吐率:146.03req/s] [内存消耗:590.53kb] [文件加载:144]
  2094. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  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.000057s ]
  2098. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  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.000030s ]
  2101. [ info ] [ ROUTE ] array (
  2102. 'type' => 'module',
  2103. 'module' =>
  2104. array (
  2105. 0 => 'api',
  2106. 1 => 'tenim',
  2107. 2 => 'getUsersig',
  2108. ),
  2109. )
  2110. [ info ] [ HEADER ] array (
  2111. 'accept-encoding' => 'gzip',
  2112. 'content-length' => '62',
  2113. 'content-type' => 'application/x-www-form-urlencoded',
  2114. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2115. 'accept-language' => 'zh-CN,zh;q=0.8',
  2116. 'host' => 'voicechat.lanmaonet.com',
  2117. )
  2118. [ info ] [ PARAM ] array (
  2119. 'params_from' => 'android',
  2120. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2121. )
  2122. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2123. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  2124. [ info ] [ TOKEN ] INIT Mysql
  2125. [ info ] [ DB ] INIT mysql
  2126. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  2127. [ info ] [ RUN ] app\api\controller\Tenim->getUsersig[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2128. [ info ] [ LOG ] INIT File
  2129. ---------------------------------------------------------------
  2130. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2131. [运行时间:0.011452s] [吞吐率:87.32req/s] [内存消耗:635.95kb] [文件加载:147]
  2132. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2133. [ info ] [ CACHE ] INIT File
  2134. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000139s ]
  2135. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2136. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2137. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2138. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  2139. [ info ] [ ROUTE ] array (
  2140. 'type' => 'module',
  2141. 'module' =>
  2142. array (
  2143. 0 => 'api',
  2144. 1 => 'userCenter',
  2145. 2 => 'getMyUserInfo',
  2146. ),
  2147. )
  2148. [ info ] [ HEADER ] array (
  2149. 'accept-encoding' => 'gzip',
  2150. 'content-length' => '74',
  2151. 'content-type' => 'application/x-www-form-urlencoded',
  2152. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2153. 'accept-language' => 'zh-CN,zh;q=0.8',
  2154. 'host' => 'voicechat.lanmaonet.com',
  2155. )
  2156. [ info ] [ PARAM ] array (
  2157. 'params_from' => 'android',
  2158. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2159. 'user_id' => '100',
  2160. )
  2161. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2162. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  2163. [ info ] [ TOKEN ] INIT Mysql
  2164. [ info ] [ DB ] INIT mysql
  2165. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  2166. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2167. [ info ] [ LOG ] INIT File
  2168. ---------------------------------------------------------------
  2169. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2170. [运行时间:0.008084s] [吞吐率:123.70req/s] [内存消耗:638.96kb] [文件加载:146]
  2171. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2172. [ info ] [ CACHE ] INIT File
  2173. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000106s ]
  2174. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  2175. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  2176. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2177. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  2178. [ info ] [ ROUTE ] array (
  2179. 'type' => 'module',
  2180. 'module' =>
  2181. array (
  2182. 0 => 'Api',
  2183. 1 => 'party',
  2184. 2 => 'getPartyRankList',
  2185. ),
  2186. )
  2187. [ info ] [ HEADER ] array (
  2188. 'accept-encoding' => 'gzip',
  2189. 'content-length' => '126',
  2190. 'content-type' => 'application/x-www-form-urlencoded',
  2191. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2192. 'accept-language' => 'zh-CN,zh;q=0.8',
  2193. 'host' => 'voicechat.lanmaonet.com',
  2194. )
  2195. [ info ] [ PARAM ] array (
  2196. 'params_from' => 'android',
  2197. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2198. 'type_id' => '0',
  2199. 'all' => '1',
  2200. 'is_recommend' => '0',
  2201. 'thispage' => '1',
  2202. 'room_type' => '2',
  2203. 'pagenum' => '6',
  2204. )
  2205. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2206. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  2207. [ info ] [ TOKEN ] INIT Mysql
  2208. [ info ] [ DB ] INIT mysql
  2209. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  2210. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2211. [ info ] [ LOG ] INIT File
  2212. ---------------------------------------------------------------
  2213. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2214. [运行时间:0.015341s] [吞吐率:65.18req/s] [内存消耗:606.87kb] [文件加载:146]
  2215. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2216. [ info ] [ CACHE ] INIT File
  2217. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  2218. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2219. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  2220. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2221. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  2222. [ info ] [ ROUTE ] array (
  2223. 'type' => 'module',
  2224. 'module' =>
  2225. array (
  2226. 0 => 'Api',
  2227. 1 => 'party',
  2228. 2 => 'getPartyRankList',
  2229. ),
  2230. )
  2231. [ info ] [ HEADER ] array (
  2232. 'accept-encoding' => 'gzip',
  2233. 'content-length' => '114',
  2234. 'content-type' => 'application/x-www-form-urlencoded',
  2235. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2236. 'accept-language' => 'zh-CN,zh;q=0.8',
  2237. 'host' => 'voicechat.lanmaonet.com',
  2238. )
  2239. [ info ] [ PARAM ] array (
  2240. 'params_from' => 'android',
  2241. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2242. 'type_id' => '',
  2243. 'all' => '1',
  2244. 'is_recommend' => '0',
  2245. 'room_type' => '1',
  2246. 'pagenum' => '6',
  2247. )
  2248. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2249. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2250. [ info ] [ TOKEN ] INIT Mysql
  2251. [ info ] [ DB ] INIT mysql
  2252. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  2253. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2254. [ info ] [ LOG ] INIT File
  2255. ---------------------------------------------------------------
  2256. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  2257. [运行时间:0.006684s] [吞吐率:149.61req/s] [内存消耗:605.85kb] [文件加载:146]
  2258. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2259. [ info ] [ CACHE ] INIT File
  2260. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000120s ]
  2261. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  2262. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  2263. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2264. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  2265. [ info ] [ ROUTE ] array (
  2266. 'type' => 'module',
  2267. 'module' =>
  2268. array (
  2269. 0 => 'Api',
  2270. 1 => 'party',
  2271. 2 => 'getPatyType',
  2272. ),
  2273. )
  2274. [ info ] [ HEADER ] array (
  2275. 'accept-encoding' => 'gzip',
  2276. 'content-length' => '74',
  2277. 'content-type' => 'application/x-www-form-urlencoded',
  2278. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2279. 'accept-language' => 'zh-CN,zh;q=0.8',
  2280. 'host' => 'voicechat.lanmaonet.com',
  2281. )
  2282. [ info ] [ PARAM ] array (
  2283. 'params_from' => 'android',
  2284. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2285. 'room_type' => '2',
  2286. )
  2287. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2288. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  2289. [ info ] [ TOKEN ] INIT Mysql
  2290. [ info ] [ DB ] INIT mysql
  2291. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  2292. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2293. [ info ] [ LOG ] INIT File
  2294. ---------------------------------------------------------------
  2295. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  2296. [运行时间:0.006821s] [吞吐率:146.60req/s] [内存消耗:605.57kb] [文件加载:146]
  2297. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  2298. [ info ] [ CACHE ] INIT File
  2299. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000119s ]
  2300. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2301. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  2302. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2303. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2304. [ info ] [ ROUTE ] array (
  2305. 'type' => 'module',
  2306. 'module' =>
  2307. array (
  2308. 0 => 'Api',
  2309. 1 => 'party',
  2310. 2 => 'getPatyType',
  2311. ),
  2312. )
  2313. [ info ] [ HEADER ] array (
  2314. 'accept-encoding' => 'gzip',
  2315. 'content-length' => '62',
  2316. 'content-type' => 'application/x-www-form-urlencoded',
  2317. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2318. 'accept-language' => 'zh-CN,zh;q=0.8',
  2319. 'host' => 'voicechat.lanmaonet.com',
  2320. )
  2321. [ info ] [ PARAM ] array (
  2322. 'params_from' => 'android',
  2323. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2324. )
  2325. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2326. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2327. [ info ] [ TOKEN ] INIT Mysql
  2328. [ info ] [ DB ] INIT mysql
  2329. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  2330. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2331. [ info ] [ LOG ] INIT File
  2332. ---------------------------------------------------------------
  2333. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2334. [运行时间:0.011133s] [吞吐率:89.82req/s] [内存消耗:635.95kb] [文件加载:147]
  2335. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2336. [ info ] [ CACHE ] INIT File
  2337. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000116s ]
  2338. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  2339. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  2340. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2341. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2342. [ info ] [ ROUTE ] array (
  2343. 'type' => 'module',
  2344. 'module' =>
  2345. array (
  2346. 0 => 'api',
  2347. 1 => 'userCenter',
  2348. 2 => 'getMyUserInfo',
  2349. ),
  2350. )
  2351. [ info ] [ HEADER ] array (
  2352. 'accept-encoding' => 'gzip',
  2353. 'content-length' => '74',
  2354. 'content-type' => 'application/x-www-form-urlencoded',
  2355. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2356. 'accept-language' => 'zh-CN,zh;q=0.8',
  2357. 'host' => 'voicechat.lanmaonet.com',
  2358. )
  2359. [ info ] [ PARAM ] array (
  2360. 'params_from' => 'android',
  2361. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2362. 'user_id' => '100',
  2363. )
  2364. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2365. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  2366. [ info ] [ TOKEN ] INIT Mysql
  2367. [ info ] [ DB ] INIT mysql
  2368. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  2369. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2370. [ info ] [ LOG ] INIT File
  2371. ---------------------------------------------------------------
  2372. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2373. [运行时间:0.006219s] [吞吐率:160.80req/s] [内存消耗:606.87kb] [文件加载:146]
  2374. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2375. [ info ] [ CACHE ] INIT File
  2376. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000109s ]
  2377. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000063s ]
  2378. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000076s ]
  2379. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2380. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2381. [ info ] [ ROUTE ] array (
  2382. 'type' => 'module',
  2383. 'module' =>
  2384. array (
  2385. 0 => 'Api',
  2386. 1 => 'party',
  2387. 2 => 'getPartyRankList',
  2388. ),
  2389. )
  2390. [ info ] [ HEADER ] array (
  2391. 'accept-encoding' => 'gzip',
  2392. 'content-length' => '114',
  2393. 'content-type' => 'application/x-www-form-urlencoded',
  2394. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2395. 'accept-language' => 'zh-CN,zh;q=0.8',
  2396. 'host' => 'voicechat.lanmaonet.com',
  2397. )
  2398. [ info ] [ PARAM ] array (
  2399. 'params_from' => 'android',
  2400. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2401. 'type_id' => '',
  2402. 'all' => '1',
  2403. 'is_recommend' => '0',
  2404. 'room_type' => '1',
  2405. 'pagenum' => '6',
  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.000049s ]
  2409. [ info ] [ TOKEN ] INIT Mysql
  2410. [ info ] [ DB ] INIT mysql
  2411. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  2412. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2413. [ info ] [ LOG ] INIT File
  2414. ---------------------------------------------------------------
  2415. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2416. [运行时间:0.008598s] [吞吐率:116.30req/s] [内存消耗:638.96kb] [文件加载:146]
  2417. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2418. [ info ] [ CACHE ] INIT File
  2419. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000120s ]
  2420. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000054s ]
  2421. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  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.000031s ]
  2424. [ info ] [ ROUTE ] array (
  2425. 'type' => 'module',
  2426. 'module' =>
  2427. array (
  2428. 0 => 'Api',
  2429. 1 => 'party',
  2430. 2 => 'getPartyRankList',
  2431. ),
  2432. )
  2433. [ info ] [ HEADER ] array (
  2434. 'accept-encoding' => 'gzip',
  2435. 'content-length' => '126',
  2436. 'content-type' => 'application/x-www-form-urlencoded',
  2437. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2438. 'accept-language' => 'zh-CN,zh;q=0.8',
  2439. 'host' => 'voicechat.lanmaonet.com',
  2440. )
  2441. [ info ] [ PARAM ] array (
  2442. 'params_from' => 'android',
  2443. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2444. 'type_id' => '0',
  2445. 'all' => '1',
  2446. 'is_recommend' => '0',
  2447. 'thispage' => '1',
  2448. 'room_type' => '2',
  2449. 'pagenum' => '6',
  2450. )
  2451. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2452. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  2453. [ info ] [ TOKEN ] INIT Mysql
  2454. [ info ] [ DB ] INIT mysql
  2455. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  2456. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2457. [ info ] [ LOG ] INIT File
  2458. ---------------------------------------------------------------
  2459. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/index/getMessage
  2460. [运行时间:0.007202s] [吞吐率:138.85req/s] [内存消耗:602.56kb] [文件加载:145]
  2461. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2462. [ info ] [ CACHE ] INIT File
  2463. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000107s ]
  2464. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2465. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2466. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2467. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  2468. [ info ] [ ROUTE ] array (
  2469. 'type' => 'module',
  2470. 'module' =>
  2471. array (
  2472. 0 => 'Api',
  2473. 1 => 'index',
  2474. 2 => 'getMessage',
  2475. ),
  2476. )
  2477. [ info ] [ HEADER ] array (
  2478. 'accept-encoding' => 'gzip',
  2479. 'content-length' => '69',
  2480. 'content-type' => 'application/x-www-form-urlencoded',
  2481. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2482. 'accept-language' => 'zh-CN,zh;q=0.8',
  2483. 'host' => 'voicechat.lanmaonet.com',
  2484. )
  2485. [ info ] [ PARAM ] array (
  2486. 'params_from' => 'android',
  2487. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2488. 'flag' => '1',
  2489. )
  2490. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2491. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000044s ]
  2492. [ info ] [ TOKEN ] INIT Mysql
  2493. [ info ] [ DB ] INIT mysql
  2494. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  2495. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  2496. [ info ] [ LOG ] INIT File
  2497. ---------------------------------------------------------------
  2498. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2499. [运行时间:0.010529s] [吞吐率:94.98req/s] [内存消耗:635.95kb] [文件加载:147]
  2500. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2501. [ info ] [ CACHE ] INIT File
  2502. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000114s ]
  2503. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2504. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2505. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2506. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  2507. [ info ] [ ROUTE ] array (
  2508. 'type' => 'module',
  2509. 'module' =>
  2510. array (
  2511. 0 => 'api',
  2512. 1 => 'userCenter',
  2513. 2 => 'getMyUserInfo',
  2514. ),
  2515. )
  2516. [ info ] [ HEADER ] array (
  2517. 'accept-encoding' => 'gzip',
  2518. 'content-length' => '74',
  2519. 'content-type' => 'application/x-www-form-urlencoded',
  2520. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2521. 'accept-language' => 'zh-CN,zh;q=0.8',
  2522. 'host' => 'voicechat.lanmaonet.com',
  2523. )
  2524. [ info ] [ PARAM ] array (
  2525. 'params_from' => 'android',
  2526. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2527. 'user_id' => '100',
  2528. )
  2529. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2530. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  2531. [ info ] [ TOKEN ] INIT Mysql
  2532. [ info ] [ DB ] INIT mysql
  2533. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  2534. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2535. [ info ] [ LOG ] INIT File
  2536. ---------------------------------------------------------------
  2537. [ 2023-03-18T10:14:01+08:00 ] 119.45.160.30 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2802964253-144115352587932655-Login-Register&SdkAppid=1400556860&contenttype=json
  2538. [运行时间:0.019126s] [吞吐率:52.29req/s] [内存消耗:591.64kb] [文件加载:136]
  2539. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2540. [ info ] [ CACHE ] INIT File
  2541. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000178s ]
  2542. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  2543. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  2544. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2545. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  2546. [ info ] [ ROUTE ] array (
  2547. 'type' => 'module',
  2548. 'module' =>
  2549. array (
  2550. 0 => 'api',
  2551. 1 => 'tenim',
  2552. 2 => 'callback',
  2553. ),
  2554. )
  2555. [ info ] [ HEADER ] array (
  2556. 'content-type' => 'application/json',
  2557. 'content-length' => '130',
  2558. 'connection' => 'keep-alive',
  2559. 'host' => 'voicechat.lanmaonet.com',
  2560. )
  2561. [ info ] [ PARAM ] array (
  2562. 'CallbackCommand' => 'State.StateChange',
  2563. 'ClientIP' => '112.6.63.60',
  2564. 'OptPlatform' => 'Android',
  2565. 'RequestId' => '2802964253-144115352587932655-Login-Register',
  2566. 'SdkAppid' => '1400556860',
  2567. 'contenttype' => 'json',
  2568. 'EventTime' => 1679105641699,
  2569. 'Info' =>
  2570. array (
  2571. 'To_Account' => '100',
  2572. 'Action' => 'Login',
  2573. 'Reason' => 'Register',
  2574. ),
  2575. )
  2576. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2577. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  2578. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  2579. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2580. [ info ] [ DB ] INIT mysql
  2581. [ info ] [ LOG ] INIT File
  2582. ---------------------------------------------------------------
  2583. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  2584. [运行时间:0.007388s] [吞吐率:135.36req/s] [内存消耗:605.87kb] [文件加载:146]
  2585. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2586. [ info ] [ CACHE ] INIT File
  2587. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000124s ]
  2588. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2589. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2590. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2591. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  2592. [ info ] [ ROUTE ] array (
  2593. 'type' => 'module',
  2594. 'module' =>
  2595. array (
  2596. 0 => 'Api',
  2597. 1 => 'userCenter',
  2598. 2 => 'getFollowsLive',
  2599. ),
  2600. )
  2601. [ info ] [ HEADER ] array (
  2602. 'accept-encoding' => 'gzip',
  2603. 'content-length' => '91',
  2604. 'content-type' => 'application/x-www-form-urlencoded',
  2605. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2606. 'accept-language' => 'zh-CN,zh;q=0.8',
  2607. 'host' => 'voicechat.lanmaonet.com',
  2608. )
  2609. [ info ] [ PARAM ] array (
  2610. 'params_from' => 'android',
  2611. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2612. 'is_online' => '1',
  2613. 'page' => '1',
  2614. 'pageNum' => '3',
  2615. )
  2616. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2617. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000044s ]
  2618. [ info ] [ TOKEN ] INIT Mysql
  2619. [ info ] [ DB ] INIT mysql
  2620. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  2621. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2622. [ info ] [ LOG ] INIT File
  2623. ---------------------------------------------------------------
  2624. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  2625. [运行时间:0.007451s] [吞吐率:134.21req/s] [内存消耗:606.08kb] [文件加载:146]
  2626. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2627. [ info ] [ CACHE ] INIT File
  2628. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  2629. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2630. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2631. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2632. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  2633. [ info ] [ ROUTE ] array (
  2634. 'type' => 'module',
  2635. 'module' =>
  2636. array (
  2637. 0 => 'Api',
  2638. 1 => 'userCenter',
  2639. 2 => 'getFollowsLive',
  2640. ),
  2641. )
  2642. [ info ] [ HEADER ] array (
  2643. 'accept-encoding' => 'gzip',
  2644. 'content-length' => '91',
  2645. 'content-type' => 'application/x-www-form-urlencoded',
  2646. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2647. 'accept-language' => 'zh-CN,zh;q=0.8',
  2648. 'host' => 'voicechat.lanmaonet.com',
  2649. )
  2650. [ info ] [ PARAM ] array (
  2651. 'params_from' => 'android',
  2652. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2653. 'is_online' => '0',
  2654. 'page' => '1',
  2655. 'pageNum' => '2',
  2656. )
  2657. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2658. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000042s ]
  2659. [ info ] [ TOKEN ] INIT Mysql
  2660. [ info ] [ DB ] INIT mysql
  2661. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000078s ]
  2662. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2663. [ info ] [ LOG ] INIT File
  2664. ---------------------------------------------------------------
  2665. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/cellectionPartyList
  2666. [运行时间:0.008199s] [吞吐率:121.97req/s] [内存消耗:605.61kb] [文件加载:146]
  2667. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2668. [ info ] [ CACHE ] INIT File
  2669. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000117s ]
  2670. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2671. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2672. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2673. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  2674. [ info ] [ ROUTE ] array (
  2675. 'type' => 'module',
  2676. 'module' =>
  2677. array (
  2678. 0 => 'Api',
  2679. 1 => 'party',
  2680. 2 => 'cellectionPartyList',
  2681. ),
  2682. )
  2683. [ info ] [ HEADER ] array (
  2684. 'accept-encoding' => 'gzip',
  2685. 'content-length' => '79',
  2686. 'content-type' => 'application/x-www-form-urlencoded',
  2687. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2688. 'accept-language' => 'zh-CN,zh;q=0.8',
  2689. 'host' => 'voicechat.lanmaonet.com',
  2690. )
  2691. [ info ] [ PARAM ] array (
  2692. 'params_from' => 'android',
  2693. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2694. 'page' => '1',
  2695. 'pageNum' => '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.000060s ]
  2699. [ info ] [ TOKEN ] INIT Mysql
  2700. [ info ] [ DB ] INIT mysql
  2701. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  2702. [ info ] [ RUN ] app\api\controller\Party->cellectionPartyList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2703. [ info ] [ LOG ] INIT File
  2704. ---------------------------------------------------------------
  2705. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  2706. [运行时间:0.011026s] [吞吐率:90.70req/s] [内存消耗:647.39kb] [文件加载:148]
  2707. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2708. [ info ] [ CACHE ] INIT File
  2709. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000111s ]
  2710. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000048s ]
  2711. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000066s ]
  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.000020s ]
  2714. [ info ] [ ROUTE ] array (
  2715. 'type' => 'module',
  2716. 'module' =>
  2717. array (
  2718. 0 => 'Api',
  2719. 1 => 'dynamic',
  2720. 2 => 'getDynamicList',
  2721. ),
  2722. )
  2723. [ info ] [ HEADER ] array (
  2724. 'accept-encoding' => 'gzip',
  2725. 'content-length' => '76',
  2726. 'content-type' => 'application/x-www-form-urlencoded',
  2727. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2728. 'accept-language' => 'zh-CN,zh;q=0.8',
  2729. 'host' => 'voicechat.lanmaonet.com',
  2730. )
  2731. [ info ] [ PARAM ] array (
  2732. 'params_from' => 'android',
  2733. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2734. 'type' => '1',
  2735. 'page' => '1',
  2736. )
  2737. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2738. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2739. [ info ] [ TOKEN ] INIT Mysql
  2740. [ info ] [ DB ] INIT mysql
  2741. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  2742. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  2743. [ info ] [ LOG ] INIT File
  2744. ---------------------------------------------------------------
  2745. [ 2023-03-18T10:14:01+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  2746. [运行时间:0.011439s] [吞吐率:87.42req/s] [内存消耗:647.39kb] [文件加载:148]
  2747. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
  2748. [ info ] [ CACHE ] INIT File
  2749. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000196s ]
  2750. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  2751. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  2752. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2753. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2754. [ info ] [ ROUTE ] array (
  2755. 'type' => 'module',
  2756. 'module' =>
  2757. array (
  2758. 0 => 'Api',
  2759. 1 => 'dynamic',
  2760. 2 => 'getDynamicList',
  2761. ),
  2762. )
  2763. [ info ] [ HEADER ] array (
  2764. 'accept-encoding' => 'gzip',
  2765. 'content-length' => '76',
  2766. 'content-type' => 'application/x-www-form-urlencoded',
  2767. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2768. 'accept-language' => 'zh-CN,zh;q=0.8',
  2769. 'host' => 'voicechat.lanmaonet.com',
  2770. )
  2771. [ info ] [ PARAM ] array (
  2772. 'params_from' => 'android',
  2773. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2774. 'type' => '2',
  2775. 'page' => '1',
  2776. )
  2777. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2778. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2779. [ info ] [ TOKEN ] INIT Mysql
  2780. [ info ] [ DB ] INIT mysql
  2781. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  2782. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  2783. [ info ] [ LOG ] INIT File
  2784. ---------------------------------------------------------------
  2785. [ 2023-03-18T10:14:02+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2786. [运行时间:0.011001s] [吞吐率:90.90req/s] [内存消耗:635.95kb] [文件加载:147]
  2787. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  2788. [ info ] [ CACHE ] INIT File
  2789. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000143s ]
  2790. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  2791. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2792. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2793. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  2794. [ info ] [ ROUTE ] array (
  2795. 'type' => 'module',
  2796. 'module' =>
  2797. array (
  2798. 0 => 'api',
  2799. 1 => 'userCenter',
  2800. 2 => 'getMyUserInfo',
  2801. ),
  2802. )
  2803. [ info ] [ HEADER ] array (
  2804. 'accept-encoding' => 'gzip',
  2805. 'content-length' => '74',
  2806. 'content-type' => 'application/x-www-form-urlencoded',
  2807. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2808. 'accept-language' => 'zh-CN,zh;q=0.8',
  2809. 'host' => 'voicechat.lanmaonet.com',
  2810. )
  2811. [ info ] [ PARAM ] array (
  2812. 'params_from' => 'android',
  2813. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2814. 'user_id' => '100',
  2815. )
  2816. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2817. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  2818. [ info ] [ TOKEN ] INIT Mysql
  2819. [ info ] [ DB ] INIT mysql
  2820. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  2821. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2822. [ info ] [ LOG ] INIT File
  2823. ---------------------------------------------------------------
  2824. [ 2023-03-18T10:14:02+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2825. [运行时间:0.008929s] [吞吐率:111.99req/s] [内存消耗:638.59kb] [文件加载:146]
  2826. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2827. [ info ] [ CACHE ] INIT File
  2828. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000105s ]
  2829. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2830. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  2831. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2832. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  2833. [ info ] [ ROUTE ] array (
  2834. 'type' => 'module',
  2835. 'module' =>
  2836. array (
  2837. 0 => 'Api',
  2838. 1 => 'party',
  2839. 2 => 'getPartyRankList',
  2840. ),
  2841. )
  2842. [ info ] [ HEADER ] array (
  2843. 'accept-encoding' => 'gzip',
  2844. 'content-length' => '116',
  2845. 'content-type' => 'application/x-www-form-urlencoded',
  2846. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2847. 'accept-language' => 'zh-CN,zh;q=0.8',
  2848. 'host' => 'voicechat.lanmaonet.com',
  2849. )
  2850. [ info ] [ PARAM ] array (
  2851. 'params_from' => 'android',
  2852. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2853. 'type_id' => '0',
  2854. 'all' => '1',
  2855. 'is_recommend' => '0',
  2856. 'thispage' => '1',
  2857. 'room_type' => '2',
  2858. )
  2859. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2860. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  2861. [ info ] [ TOKEN ] INIT Mysql
  2862. [ info ] [ DB ] INIT mysql
  2863. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  2864. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2865. [ info ] [ LOG ] INIT File
  2866. ---------------------------------------------------------------
  2867. [ 2023-03-18T10:14:02+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2868. [运行时间:0.008797s] [吞吐率:113.67req/s] [内存消耗:638.59kb] [文件加载:146]
  2869. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2870. [ info ] [ CACHE ] INIT File
  2871. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000107s ]
  2872. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  2873. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2874. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2875. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2876. [ info ] [ ROUTE ] array (
  2877. 'type' => 'module',
  2878. 'module' =>
  2879. array (
  2880. 0 => 'Api',
  2881. 1 => 'party',
  2882. 2 => 'getPartyRankList',
  2883. ),
  2884. )
  2885. [ info ] [ HEADER ] array (
  2886. 'accept-encoding' => 'gzip',
  2887. 'content-length' => '116',
  2888. 'content-type' => 'application/x-www-form-urlencoded',
  2889. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2890. 'accept-language' => 'zh-CN,zh;q=0.8',
  2891. 'host' => 'voicechat.lanmaonet.com',
  2892. )
  2893. [ info ] [ PARAM ] array (
  2894. 'params_from' => 'android',
  2895. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2896. 'type_id' => '9',
  2897. 'all' => '0',
  2898. 'is_recommend' => '0',
  2899. 'thispage' => '1',
  2900. 'room_type' => '2',
  2901. )
  2902. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2903. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  2904. [ info ] [ TOKEN ] INIT Mysql
  2905. [ info ] [ DB ] INIT mysql
  2906. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  2907. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2908. [ info ] [ LOG ] INIT File
  2909. ---------------------------------------------------------------
  2910. [ 2023-03-18T10:14:02+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2911. [运行时间:0.008975s] [吞吐率:111.42req/s] [内存消耗:638.59kb] [文件加载:146]
  2912. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2913. [ info ] [ CACHE ] INIT File
  2914. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000106s ]
  2915. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2916. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  2917. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2918. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2919. [ info ] [ ROUTE ] array (
  2920. 'type' => 'module',
  2921. 'module' =>
  2922. array (
  2923. 0 => 'Api',
  2924. 1 => 'party',
  2925. 2 => 'getPartyRankList',
  2926. ),
  2927. )
  2928. [ info ] [ HEADER ] array (
  2929. 'accept-encoding' => 'gzip',
  2930. 'content-length' => '116',
  2931. 'content-type' => 'application/x-www-form-urlencoded',
  2932. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2933. 'accept-language' => 'zh-CN,zh;q=0.8',
  2934. 'host' => 'voicechat.lanmaonet.com',
  2935. )
  2936. [ info ] [ PARAM ] array (
  2937. 'params_from' => 'android',
  2938. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2939. 'type_id' => '8',
  2940. 'all' => '0',
  2941. 'is_recommend' => '0',
  2942. 'thispage' => '1',
  2943. 'room_type' => '2',
  2944. )
  2945. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2946. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2947. [ info ] [ TOKEN ] INIT Mysql
  2948. [ info ] [ DB ] INIT mysql
  2949. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  2950. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2951. [ info ] [ LOG ] INIT File
  2952. ---------------------------------------------------------------
  2953. [ 2023-03-18T10:14:02+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2954. [运行时间:0.008978s] [吞吐率:111.38req/s] [内存消耗:638.59kb] [文件加载:146]
  2955. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2956. [ info ] [ CACHE ] INIT File
  2957. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000112s ]
  2958. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2959. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  2960. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2961. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  2962. [ info ] [ ROUTE ] array (
  2963. 'type' => 'module',
  2964. 'module' =>
  2965. array (
  2966. 0 => 'Api',
  2967. 1 => 'party',
  2968. 2 => 'getPartyRankList',
  2969. ),
  2970. )
  2971. [ info ] [ HEADER ] array (
  2972. 'accept-encoding' => 'gzip',
  2973. 'content-length' => '116',
  2974. 'content-type' => 'application/x-www-form-urlencoded',
  2975. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2976. 'accept-language' => 'zh-CN,zh;q=0.8',
  2977. 'host' => 'voicechat.lanmaonet.com',
  2978. )
  2979. [ info ] [ PARAM ] array (
  2980. 'params_from' => 'android',
  2981. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  2982. 'type_id' => '7',
  2983. 'all' => '0',
  2984. 'is_recommend' => '0',
  2985. 'thispage' => '1',
  2986. 'room_type' => '2',
  2987. )
  2988. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2989. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  2990. [ info ] [ TOKEN ] INIT Mysql
  2991. [ info ] [ DB ] INIT mysql
  2992. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  2993. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2994. [ info ] [ LOG ] INIT File
  2995. ---------------------------------------------------------------
  2996. [ 2023-03-18T10:14:02+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2997. [运行时间:0.006249s] [吞吐率:160.03req/s] [内存消耗:606.80kb] [文件加载:146]
  2998. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2999. [ info ] [ CACHE ] INIT File
  3000. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000128s ]
  3001. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  3002. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  3003. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3004. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  3005. [ info ] [ ROUTE ] array (
  3006. 'type' => 'module',
  3007. 'module' =>
  3008. array (
  3009. 0 => 'Api',
  3010. 1 => 'party',
  3011. 2 => 'getPartyRankList',
  3012. ),
  3013. )
  3014. [ info ] [ HEADER ] array (
  3015. 'accept-encoding' => 'gzip',
  3016. 'content-length' => '104',
  3017. 'content-type' => 'application/x-www-form-urlencoded',
  3018. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3019. 'accept-language' => 'zh-CN,zh;q=0.8',
  3020. 'host' => 'voicechat.lanmaonet.com',
  3021. )
  3022. [ info ] [ PARAM ] array (
  3023. 'params_from' => 'android',
  3024. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3025. 'type_id' => '0',
  3026. 'all' => '1',
  3027. 'is_recommend' => '0',
  3028. 'thispage' => '1',
  3029. )
  3030. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3031. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000053s ]
  3032. [ info ] [ TOKEN ] INIT Mysql
  3033. [ info ] [ DB ] INIT mysql
  3034. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  3035. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3036. [ info ] [ LOG ] INIT File
  3037. ---------------------------------------------------------------
  3038. [ 2023-03-18T10:14:02+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3039. [运行时间:0.006385s] [吞吐率:156.61req/s] [内存消耗:606.80kb] [文件加载:146]
  3040. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3041. [ info ] [ CACHE ] INIT File
  3042. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000103s ]
  3043. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3044. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  3045. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3046. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  3047. [ info ] [ ROUTE ] array (
  3048. 'type' => 'module',
  3049. 'module' =>
  3050. array (
  3051. 0 => 'Api',
  3052. 1 => 'party',
  3053. 2 => 'getPartyRankList',
  3054. ),
  3055. )
  3056. [ info ] [ HEADER ] array (
  3057. 'accept-encoding' => 'gzip',
  3058. 'content-length' => '104',
  3059. 'content-type' => 'application/x-www-form-urlencoded',
  3060. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3061. 'accept-language' => 'zh-CN,zh;q=0.8',
  3062. 'host' => 'voicechat.lanmaonet.com',
  3063. )
  3064. [ info ] [ PARAM ] array (
  3065. 'params_from' => 'android',
  3066. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3067. 'type_id' => '2',
  3068. 'all' => '0',
  3069. 'is_recommend' => '0',
  3070. 'thispage' => '1',
  3071. )
  3072. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3073. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3074. [ info ] [ TOKEN ] INIT Mysql
  3075. [ info ] [ DB ] INIT mysql
  3076. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  3077. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3078. [ info ] [ LOG ] INIT File
  3079. ---------------------------------------------------------------
  3080. [ 2023-03-18T10:14:02+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3081. [运行时间:0.006415s] [吞吐率:155.88req/s] [内存消耗:606.80kb] [文件加载:146]
  3082. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  3083. [ info ] [ CACHE ] INIT File
  3084. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000102s ]
  3085. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3086. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  3087. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3088. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  3089. [ info ] [ ROUTE ] array (
  3090. 'type' => 'module',
  3091. 'module' =>
  3092. array (
  3093. 0 => 'Api',
  3094. 1 => 'party',
  3095. 2 => 'getPartyRankList',
  3096. ),
  3097. )
  3098. [ info ] [ HEADER ] array (
  3099. 'accept-encoding' => 'gzip',
  3100. 'content-length' => '104',
  3101. 'content-type' => 'application/x-www-form-urlencoded',
  3102. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3103. 'accept-language' => 'zh-CN,zh;q=0.8',
  3104. 'host' => 'voicechat.lanmaonet.com',
  3105. )
  3106. [ info ] [ PARAM ] array (
  3107. 'params_from' => 'android',
  3108. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3109. 'type_id' => '4',
  3110. 'all' => '0',
  3111. 'is_recommend' => '0',
  3112. 'thispage' => '1',
  3113. )
  3114. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3115. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3116. [ info ] [ TOKEN ] INIT Mysql
  3117. [ info ] [ DB ] INIT mysql
  3118. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  3119. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3120. [ info ] [ LOG ] INIT File
  3121. ---------------------------------------------------------------
  3122. [ 2023-03-18T10:14:02+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3123. [运行时间:0.006527s] [吞吐率:153.21req/s] [内存消耗:606.80kb] [文件加载:146]
  3124. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3125. [ info ] [ CACHE ] INIT File
  3126. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000111s ]
  3127. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  3128. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  3129. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3130. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  3131. [ info ] [ ROUTE ] array (
  3132. 'type' => 'module',
  3133. 'module' =>
  3134. array (
  3135. 0 => 'Api',
  3136. 1 => 'party',
  3137. 2 => 'getPartyRankList',
  3138. ),
  3139. )
  3140. [ info ] [ HEADER ] array (
  3141. 'accept-encoding' => 'gzip',
  3142. 'content-length' => '104',
  3143. 'content-type' => 'application/x-www-form-urlencoded',
  3144. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3145. 'accept-language' => 'zh-CN,zh;q=0.8',
  3146. 'host' => 'voicechat.lanmaonet.com',
  3147. )
  3148. [ info ] [ PARAM ] array (
  3149. 'params_from' => 'android',
  3150. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3151. 'type_id' => '3',
  3152. 'all' => '0',
  3153. 'is_recommend' => '0',
  3154. 'thispage' => '1',
  3155. )
  3156. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3157. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  3158. [ info ] [ TOKEN ] INIT Mysql
  3159. [ info ] [ DB ] INIT mysql
  3160. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  3161. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3162. [ info ] [ LOG ] INIT File
  3163. ---------------------------------------------------------------
  3164. [ 2023-03-18T10:14:02+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3165. [运行时间:0.006776s] [吞吐率:147.58req/s] [内存消耗:606.80kb] [文件加载:146]
  3166. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3167. [ info ] [ CACHE ] INIT File
  3168. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000103s ]
  3169. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  3170. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  3171. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3172. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  3173. [ info ] [ ROUTE ] array (
  3174. 'type' => 'module',
  3175. 'module' =>
  3176. array (
  3177. 0 => 'Api',
  3178. 1 => 'party',
  3179. 2 => 'getPartyRankList',
  3180. ),
  3181. )
  3182. [ info ] [ HEADER ] array (
  3183. 'accept-encoding' => 'gzip',
  3184. 'content-length' => '104',
  3185. 'content-type' => 'application/x-www-form-urlencoded',
  3186. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3187. 'accept-language' => 'zh-CN,zh;q=0.8',
  3188. 'host' => 'voicechat.lanmaonet.com',
  3189. )
  3190. [ info ] [ PARAM ] array (
  3191. 'params_from' => 'android',
  3192. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3193. 'type_id' => '1',
  3194. 'all' => '0',
  3195. 'is_recommend' => '0',
  3196. 'thispage' => '1',
  3197. )
  3198. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3199. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  3200. [ info ] [ TOKEN ] INIT Mysql
  3201. [ info ] [ DB ] INIT mysql
  3202. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  3203. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3204. [ info ] [ LOG ] INIT File
  3205. ---------------------------------------------------------------
  3206. [ 2023-03-18T10:14:03+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  3207. [运行时间:0.007167s] [吞吐率:139.53req/s] [内存消耗:604.63kb] [文件加载:146]
  3208. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3209. [ info ] [ CACHE ] INIT File
  3210. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000127s ]
  3211. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  3212. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  3213. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3214. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  3215. [ info ] [ ROUTE ] array (
  3216. 'type' => 'module',
  3217. 'module' =>
  3218. array (
  3219. 0 => 'Api',
  3220. 1 => 'dispatch',
  3221. 2 => 'getSkillList',
  3222. ),
  3223. )
  3224. [ info ] [ HEADER ] array (
  3225. 'accept-encoding' => 'gzip',
  3226. 'content-length' => '62',
  3227. 'content-type' => 'application/x-www-form-urlencoded',
  3228. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3229. 'accept-language' => 'zh-CN,zh;q=0.8',
  3230. 'host' => 'voicechat.lanmaonet.com',
  3231. )
  3232. [ info ] [ PARAM ] array (
  3233. 'params_from' => 'android',
  3234. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3235. )
  3236. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3237. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  3238. [ info ] [ TOKEN ] INIT Mysql
  3239. [ info ] [ DB ] INIT mysql
  3240. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  3241. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  3242. [ info ] [ LOG ] INIT File
  3243. ---------------------------------------------------------------
  3244. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/noble/getNobleLevelList
  3245. [运行时间:0.008077s] [吞吐率:123.81req/s] [内存消耗:613.29kb] [文件加载:145]
  3246. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3247. [ info ] [ CACHE ] INIT File
  3248. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000142s ]
  3249. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  3250. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  3251. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3252. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  3253. [ info ] [ ROUTE ] array (
  3254. 'type' => 'module',
  3255. 'module' =>
  3256. array (
  3257. 0 => 'Api',
  3258. 1 => 'noble',
  3259. 2 => 'getNobleLevelList',
  3260. ),
  3261. )
  3262. [ info ] [ HEADER ] array (
  3263. 'accept-encoding' => 'gzip',
  3264. 'content-length' => '62',
  3265. 'content-type' => 'application/x-www-form-urlencoded',
  3266. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3267. 'accept-language' => 'zh-CN,zh;q=0.8',
  3268. 'host' => 'voicechat.lanmaonet.com',
  3269. )
  3270. [ info ] [ PARAM ] array (
  3271. 'params_from' => 'android',
  3272. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3273. )
  3274. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3275. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  3276. [ info ] [ TOKEN ] INIT Mysql
  3277. [ info ] [ DB ] INIT mysql
  3278. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000066s ]
  3279. [ info ] [ RUN ] app\api\controller\Noble->getNobleLevelList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Noble.php ]
  3280. [ info ] [ LOG ] INIT File
  3281. ---------------------------------------------------------------
  3282. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/noble/getNobleLevelList
  3283. [运行时间:0.007777s] [吞吐率:128.58req/s] [内存消耗:613.29kb] [文件加载:145]
  3284. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3285. [ info ] [ CACHE ] INIT File
  3286. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000106s ]
  3287. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3288. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  3289. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3290. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3291. [ info ] [ ROUTE ] array (
  3292. 'type' => 'module',
  3293. 'module' =>
  3294. array (
  3295. 0 => 'Api',
  3296. 1 => 'noble',
  3297. 2 => 'getNobleLevelList',
  3298. ),
  3299. )
  3300. [ info ] [ HEADER ] array (
  3301. 'accept-encoding' => 'gzip',
  3302. 'content-length' => '62',
  3303. 'content-type' => 'application/x-www-form-urlencoded',
  3304. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3305. 'accept-language' => 'zh-CN,zh;q=0.8',
  3306. 'host' => 'voicechat.lanmaonet.com',
  3307. )
  3308. [ info ] [ PARAM ] array (
  3309. 'params_from' => 'android',
  3310. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3311. )
  3312. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3313. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000043s ]
  3314. [ info ] [ TOKEN ] INIT Mysql
  3315. [ info ] [ DB ] INIT mysql
  3316. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000082s ]
  3317. [ info ] [ RUN ] app\api\controller\Noble->getNobleLevelList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Noble.php ]
  3318. [ info ] [ LOG ] INIT File
  3319. ---------------------------------------------------------------
  3320. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/noble/getNobleLevelList
  3321. [运行时间:0.008093s] [吞吐率:123.57req/s] [内存消耗:613.29kb] [文件加载:145]
  3322. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3323. [ info ] [ CACHE ] INIT File
  3324. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000104s ]
  3325. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3326. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  3327. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3328. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3329. [ info ] [ ROUTE ] array (
  3330. 'type' => 'module',
  3331. 'module' =>
  3332. array (
  3333. 0 => 'Api',
  3334. 1 => 'noble',
  3335. 2 => 'getNobleLevelList',
  3336. ),
  3337. )
  3338. [ info ] [ HEADER ] array (
  3339. 'accept-encoding' => 'gzip',
  3340. 'content-length' => '62',
  3341. 'content-type' => 'application/x-www-form-urlencoded',
  3342. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3343. 'accept-language' => 'zh-CN,zh;q=0.8',
  3344. 'host' => 'voicechat.lanmaonet.com',
  3345. )
  3346. [ info ] [ PARAM ] array (
  3347. 'params_from' => 'android',
  3348. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3349. )
  3350. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3351. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3352. [ info ] [ TOKEN ] INIT Mysql
  3353. [ info ] [ DB ] INIT mysql
  3354. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  3355. [ info ] [ RUN ] app\api\controller\Noble->getNobleLevelList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Noble.php ]
  3356. [ info ] [ LOG ] INIT File
  3357. ---------------------------------------------------------------
  3358. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/noble/getNobleLevelPrivilegeInfo
  3359. [运行时间:0.006609s] [吞吐率:151.31req/s] [内存消耗:604.34kb] [文件加载:145]
  3360. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
  3361. [ info ] [ CACHE ] INIT File
  3362. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000104s ]
  3363. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  3364. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  3365. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3366. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  3367. [ info ] [ ROUTE ] array (
  3368. 'type' => 'module',
  3369. 'module' =>
  3370. array (
  3371. 0 => 'Api',
  3372. 1 => 'noble',
  3373. 2 => 'getNobleLevelPrivilegeInfo',
  3374. ),
  3375. )
  3376. [ info ] [ HEADER ] array (
  3377. 'accept-encoding' => 'gzip',
  3378. 'content-length' => '73',
  3379. 'content-type' => 'application/x-www-form-urlencoded',
  3380. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3381. 'accept-language' => 'zh-CN,zh;q=0.8',
  3382. 'host' => 'voicechat.lanmaonet.com',
  3383. )
  3384. [ info ] [ PARAM ] array (
  3385. 'params_from' => 'android',
  3386. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3387. 'level_id' => '1',
  3388. )
  3389. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3390. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000041s ]
  3391. [ info ] [ TOKEN ] INIT Mysql
  3392. [ info ] [ DB ] INIT mysql
  3393. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000042s ]
  3394. [ info ] [ RUN ] app\api\controller\Noble->getNobleLevelPrivilegeInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Noble.php ]
  3395. [ info ] [ LOG ] INIT File
  3396. ---------------------------------------------------------------
  3397. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getUserInfo
  3398. [运行时间:0.012109s] [吞吐率:82.58req/s] [内存消耗:649.23kb] [文件加载:149]
  3399. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3400. [ info ] [ CACHE ] INIT File
  3401. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000110s ]
  3402. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  3403. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  3404. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3405. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3406. [ info ] [ ROUTE ] array (
  3407. 'type' => 'module',
  3408. 'module' =>
  3409. array (
  3410. 0 => 'Api',
  3411. 1 => 'userCenter',
  3412. 2 => 'getUserInfo',
  3413. ),
  3414. )
  3415. [ info ] [ HEADER ] array (
  3416. 'accept-encoding' => 'gzip',
  3417. 'content-length' => '74',
  3418. 'content-type' => 'application/x-www-form-urlencoded',
  3419. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3420. 'accept-language' => 'zh-CN,zh;q=0.8',
  3421. 'host' => 'voicechat.lanmaonet.com',
  3422. )
  3423. [ info ] [ PARAM ] array (
  3424. 'params_from' => 'android',
  3425. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3426. 'user_id' => '100',
  3427. )
  3428. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3429. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3430. [ info ] [ TOKEN ] INIT Mysql
  3431. [ info ] [ DB ] INIT mysql
  3432. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000042s ]
  3433. [ info ] [ RUN ] app\api\controller\UserCenter->getUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  3434. [ info ] [ LOG ] INIT File
  3435. ---------------------------------------------------------------
  3436. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getUserInfo
  3437. [运行时间:0.012245s] [吞吐率:81.67req/s] [内存消耗:649.23kb] [文件加载:149]
  3438. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3439. [ info ] [ CACHE ] INIT File
  3440. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000105s ]
  3441. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3442. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  3443. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3444. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3445. [ info ] [ ROUTE ] array (
  3446. 'type' => 'module',
  3447. 'module' =>
  3448. array (
  3449. 0 => 'Api',
  3450. 1 => 'userCenter',
  3451. 2 => 'getUserInfo',
  3452. ),
  3453. )
  3454. [ info ] [ HEADER ] array (
  3455. 'accept-encoding' => 'gzip',
  3456. 'content-length' => '74',
  3457. 'content-type' => 'application/x-www-form-urlencoded',
  3458. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3459. 'accept-language' => 'zh-CN,zh;q=0.8',
  3460. 'host' => 'voicechat.lanmaonet.com',
  3461. )
  3462. [ info ] [ PARAM ] array (
  3463. 'params_from' => 'android',
  3464. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3465. 'user_id' => '100',
  3466. )
  3467. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3468. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3469. [ info ] [ TOKEN ] INIT Mysql
  3470. [ info ] [ DB ] INIT mysql
  3471. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  3472. [ info ] [ RUN ] app\api\controller\UserCenter->getUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  3473. [ info ] [ LOG ] INIT File
  3474. ---------------------------------------------------------------
  3475. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/noble/getNobleLevelPrivilegeInfo
  3476. [运行时间:0.007053s] [吞吐率:141.78req/s] [内存消耗:604.34kb] [文件加载:145]
  3477. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3478. [ info ] [ CACHE ] INIT File
  3479. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000116s ]
  3480. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  3481. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  3482. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3483. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3484. [ info ] [ ROUTE ] array (
  3485. 'type' => 'module',
  3486. 'module' =>
  3487. array (
  3488. 0 => 'Api',
  3489. 1 => 'noble',
  3490. 2 => 'getNobleLevelPrivilegeInfo',
  3491. ),
  3492. )
  3493. [ info ] [ HEADER ] array (
  3494. 'accept-encoding' => 'gzip',
  3495. 'content-length' => '73',
  3496. 'content-type' => 'application/x-www-form-urlencoded',
  3497. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3498. 'accept-language' => 'zh-CN,zh;q=0.8',
  3499. 'host' => 'voicechat.lanmaonet.com',
  3500. )
  3501. [ info ] [ PARAM ] array (
  3502. 'params_from' => 'android',
  3503. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3504. 'level_id' => '2',
  3505. )
  3506. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3507. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3508. [ info ] [ TOKEN ] INIT Mysql
  3509. [ info ] [ DB ] INIT mysql
  3510. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  3511. [ info ] [ RUN ] app\api\controller\Noble->getNobleLevelPrivilegeInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Noble.php ]
  3512. [ info ] [ LOG ] INIT File
  3513. ---------------------------------------------------------------
  3514. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/noble/getNobleLevelPrivilegeInfo
  3515. [运行时间:0.007099s] [吞吐率:140.87req/s] [内存消耗:604.34kb] [文件加载:145]
  3516. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3517. [ info ] [ CACHE ] INIT File
  3518. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000099s ]
  3519. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  3520. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000038s ]
  3521. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3522. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3523. [ info ] [ ROUTE ] array (
  3524. 'type' => 'module',
  3525. 'module' =>
  3526. array (
  3527. 0 => 'Api',
  3528. 1 => 'noble',
  3529. 2 => 'getNobleLevelPrivilegeInfo',
  3530. ),
  3531. )
  3532. [ info ] [ HEADER ] array (
  3533. 'accept-encoding' => 'gzip',
  3534. 'content-length' => '73',
  3535. 'content-type' => 'application/x-www-form-urlencoded',
  3536. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3537. 'accept-language' => 'zh-CN,zh;q=0.8',
  3538. 'host' => 'voicechat.lanmaonet.com',
  3539. )
  3540. [ info ] [ PARAM ] array (
  3541. 'params_from' => 'android',
  3542. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3543. 'level_id' => '1',
  3544. )
  3545. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3546. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3547. [ info ] [ TOKEN ] INIT Mysql
  3548. [ info ] [ DB ] INIT mysql
  3549. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  3550. [ info ] [ RUN ] app\api\controller\Noble->getNobleLevelPrivilegeInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Noble.php ]
  3551. [ info ] [ LOG ] INIT File
  3552. ---------------------------------------------------------------
  3553. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/noble/getNobleLevelList
  3554. [运行时间:0.008047s] [吞吐率:124.27req/s] [内存消耗:613.29kb] [文件加载:145]
  3555. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3556. [ info ] [ CACHE ] INIT File
  3557. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000105s ]
  3558. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3559. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  3560. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3561. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  3562. [ info ] [ ROUTE ] array (
  3563. 'type' => 'module',
  3564. 'module' =>
  3565. array (
  3566. 0 => 'Api',
  3567. 1 => 'noble',
  3568. 2 => 'getNobleLevelList',
  3569. ),
  3570. )
  3571. [ info ] [ HEADER ] array (
  3572. 'accept-encoding' => 'gzip',
  3573. 'content-length' => '62',
  3574. 'content-type' => 'application/x-www-form-urlencoded',
  3575. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3576. 'accept-language' => 'zh-CN,zh;q=0.8',
  3577. 'host' => 'voicechat.lanmaonet.com',
  3578. )
  3579. [ info ] [ PARAM ] array (
  3580. 'params_from' => 'android',
  3581. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3582. )
  3583. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3584. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3585. [ info ] [ TOKEN ] INIT Mysql
  3586. [ info ] [ DB ] INIT mysql
  3587. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  3588. [ info ] [ RUN ] app\api\controller\Noble->getNobleLevelList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Noble.php ]
  3589. [ info ] [ LOG ] INIT File
  3590. ---------------------------------------------------------------
  3591. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getUserInfo
  3592. [运行时间:0.011838s] [吞吐率:84.47req/s] [内存消耗:649.23kb] [文件加载:149]
  3593. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3594. [ info ] [ CACHE ] INIT File
  3595. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000101s ]
  3596. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3597. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  3598. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3599. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3600. [ info ] [ ROUTE ] array (
  3601. 'type' => 'module',
  3602. 'module' =>
  3603. array (
  3604. 0 => 'Api',
  3605. 1 => 'userCenter',
  3606. 2 => 'getUserInfo',
  3607. ),
  3608. )
  3609. [ info ] [ HEADER ] array (
  3610. 'accept-encoding' => 'gzip',
  3611. 'content-length' => '74',
  3612. 'content-type' => 'application/x-www-form-urlencoded',
  3613. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3614. 'accept-language' => 'zh-CN,zh;q=0.8',
  3615. 'host' => 'voicechat.lanmaonet.com',
  3616. )
  3617. [ info ] [ PARAM ] array (
  3618. 'params_from' => 'android',
  3619. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3620. 'user_id' => '100',
  3621. )
  3622. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3623. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3624. [ info ] [ TOKEN ] INIT Mysql
  3625. [ info ] [ DB ] INIT mysql
  3626. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  3627. [ info ] [ RUN ] app\api\controller\UserCenter->getUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  3628. [ info ] [ LOG ] INIT File
  3629. ---------------------------------------------------------------
  3630. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getUserInfo
  3631. [运行时间:0.011865s] [吞吐率:84.28req/s] [内存消耗:649.23kb] [文件加载:149]
  3632. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3633. [ info ] [ CACHE ] INIT File
  3634. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000115s ]
  3635. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3636. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  3637. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3638. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3639. [ info ] [ ROUTE ] array (
  3640. 'type' => 'module',
  3641. 'module' =>
  3642. array (
  3643. 0 => 'Api',
  3644. 1 => 'userCenter',
  3645. 2 => 'getUserInfo',
  3646. ),
  3647. )
  3648. [ info ] [ HEADER ] array (
  3649. 'accept-encoding' => 'gzip',
  3650. 'content-length' => '74',
  3651. 'content-type' => 'application/x-www-form-urlencoded',
  3652. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3653. 'accept-language' => 'zh-CN,zh;q=0.8',
  3654. 'host' => 'voicechat.lanmaonet.com',
  3655. )
  3656. [ info ] [ PARAM ] array (
  3657. 'params_from' => 'android',
  3658. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3659. 'user_id' => '100',
  3660. )
  3661. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3662. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3663. [ info ] [ TOKEN ] INIT Mysql
  3664. [ info ] [ DB ] INIT mysql
  3665. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  3666. [ info ] [ RUN ] app\api\controller\UserCenter->getUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  3667. [ info ] [ LOG ] INIT File
  3668. ---------------------------------------------------------------
  3669. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/noble/getNobleLevelList
  3670. [运行时间:0.007036s] [吞吐率:142.13req/s] [内存消耗:613.29kb] [文件加载:145]
  3671. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3672. [ info ] [ CACHE ] INIT File
  3673. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000111s ]
  3674. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3675. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  3676. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3677. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  3678. [ info ] [ ROUTE ] array (
  3679. 'type' => 'module',
  3680. 'module' =>
  3681. array (
  3682. 0 => 'Api',
  3683. 1 => 'noble',
  3684. 2 => 'getNobleLevelList',
  3685. ),
  3686. )
  3687. [ info ] [ HEADER ] array (
  3688. 'accept-encoding' => 'gzip',
  3689. 'content-length' => '62',
  3690. 'content-type' => 'application/x-www-form-urlencoded',
  3691. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3692. 'accept-language' => 'zh-CN,zh;q=0.8',
  3693. 'host' => 'voicechat.lanmaonet.com',
  3694. )
  3695. [ info ] [ PARAM ] array (
  3696. 'params_from' => 'android',
  3697. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3698. )
  3699. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3700. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  3701. [ info ] [ TOKEN ] INIT Mysql
  3702. [ info ] [ DB ] INIT mysql
  3703. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  3704. [ info ] [ RUN ] app\api\controller\Noble->getNobleLevelList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Noble.php ]
  3705. [ info ] [ LOG ] INIT File
  3706. ---------------------------------------------------------------
  3707. [ 2023-03-18T10:14:08+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/noble/getNobleLevelPrivilegeInfo
  3708. [运行时间:0.006225s] [吞吐率:160.64req/s] [内存消耗:604.34kb] [文件加载:145]
  3709. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3710. [ info ] [ CACHE ] INIT File
  3711. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000139s ]
  3712. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  3713. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  3714. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3715. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  3716. [ info ] [ ROUTE ] array (
  3717. 'type' => 'module',
  3718. 'module' =>
  3719. array (
  3720. 0 => 'Api',
  3721. 1 => 'noble',
  3722. 2 => 'getNobleLevelPrivilegeInfo',
  3723. ),
  3724. )
  3725. [ info ] [ HEADER ] array (
  3726. 'accept-encoding' => 'gzip',
  3727. 'content-length' => '73',
  3728. 'content-type' => 'application/x-www-form-urlencoded',
  3729. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3730. 'accept-language' => 'zh-CN,zh;q=0.8',
  3731. 'host' => 'voicechat.lanmaonet.com',
  3732. )
  3733. [ info ] [ PARAM ] array (
  3734. 'params_from' => 'android',
  3735. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3736. 'level_id' => '2',
  3737. )
  3738. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3739. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  3740. [ info ] [ TOKEN ] INIT Mysql
  3741. [ info ] [ DB ] INIT mysql
  3742. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  3743. [ info ] [ RUN ] app\api\controller\Noble->getNobleLevelPrivilegeInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Noble.php ]
  3744. [ info ] [ LOG ] INIT File
  3745. ---------------------------------------------------------------
  3746. [ 2023-03-18T10:14:12+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3747. [运行时间:0.007947s] [吞吐率:125.83req/s] [内存消耗:606.87kb] [文件加载:146]
  3748. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3749. [ info ] [ CACHE ] INIT File
  3750. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000153s ]
  3751. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3752. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  3753. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3754. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
  3755. [ info ] [ ROUTE ] array (
  3756. 'type' => 'module',
  3757. 'module' =>
  3758. array (
  3759. 0 => 'Api',
  3760. 1 => 'party',
  3761. 2 => 'getPartyRankList',
  3762. ),
  3763. )
  3764. [ info ] [ HEADER ] array (
  3765. 'accept-encoding' => 'gzip',
  3766. 'content-length' => '114',
  3767. 'content-type' => 'application/x-www-form-urlencoded',
  3768. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3769. 'accept-language' => 'zh-CN,zh;q=0.8',
  3770. 'host' => 'voicechat.lanmaonet.com',
  3771. )
  3772. [ info ] [ PARAM ] array (
  3773. 'params_from' => 'android',
  3774. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3775. 'type_id' => '',
  3776. 'all' => '1',
  3777. 'is_recommend' => '0',
  3778. 'room_type' => '1',
  3779. 'pagenum' => '6',
  3780. )
  3781. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3782. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000043s ]
  3783. [ info ] [ TOKEN ] INIT Mysql
  3784. [ info ] [ DB ] INIT mysql
  3785. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  3786. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3787. [ info ] [ LOG ] INIT File
  3788. ---------------------------------------------------------------
  3789. [ 2023-03-18T10:14:12+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/index/getMessage
  3790. [运行时间:0.008600s] [吞吐率:116.28req/s] [内存消耗:602.56kb] [文件加载:145]
  3791. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3792. [ info ] [ CACHE ] INIT File
  3793. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000141s ]
  3794. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3795. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  3796. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3797. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  3798. [ info ] [ ROUTE ] array (
  3799. 'type' => 'module',
  3800. 'module' =>
  3801. array (
  3802. 0 => 'Api',
  3803. 1 => 'index',
  3804. 2 => 'getMessage',
  3805. ),
  3806. )
  3807. [ info ] [ HEADER ] array (
  3808. 'accept-encoding' => 'gzip',
  3809. 'content-length' => '69',
  3810. 'content-type' => 'application/x-www-form-urlencoded',
  3811. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3812. 'accept-language' => 'zh-CN,zh;q=0.8',
  3813. 'host' => 'voicechat.lanmaonet.com',
  3814. )
  3815. [ info ] [ PARAM ] array (
  3816. 'params_from' => 'android',
  3817. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3818. 'flag' => '1',
  3819. )
  3820. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3821. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000044s ]
  3822. [ info ] [ TOKEN ] INIT Mysql
  3823. [ info ] [ DB ] INIT mysql
  3824. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  3825. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  3826. [ info ] [ LOG ] INIT File
  3827. ---------------------------------------------------------------
  3828. [ 2023-03-18T10:14:12+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3829. [运行时间:0.009415s] [吞吐率:106.21req/s] [内存消耗:638.96kb] [文件加载:146]
  3830. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3831. [ info ] [ CACHE ] INIT File
  3832. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000111s ]
  3833. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  3834. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  3835. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3836. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3837. [ info ] [ ROUTE ] array (
  3838. 'type' => 'module',
  3839. 'module' =>
  3840. array (
  3841. 0 => 'Api',
  3842. 1 => 'party',
  3843. 2 => 'getPartyRankList',
  3844. ),
  3845. )
  3846. [ info ] [ HEADER ] array (
  3847. 'accept-encoding' => 'gzip',
  3848. 'content-length' => '126',
  3849. 'content-type' => 'application/x-www-form-urlencoded',
  3850. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3851. 'accept-language' => 'zh-CN,zh;q=0.8',
  3852. 'host' => 'voicechat.lanmaonet.com',
  3853. )
  3854. [ info ] [ PARAM ] array (
  3855. 'params_from' => 'android',
  3856. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3857. 'type_id' => '0',
  3858. 'all' => '1',
  3859. 'is_recommend' => '0',
  3860. 'thispage' => '1',
  3861. 'room_type' => '2',
  3862. 'pagenum' => '6',
  3863. )
  3864. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3865. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  3866. [ info ] [ TOKEN ] INIT Mysql
  3867. [ info ] [ DB ] INIT mysql
  3868. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  3869. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3870. [ info ] [ LOG ] INIT File
  3871. ---------------------------------------------------------------
  3872. [ 2023-03-18T10:14:12+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  3873. [运行时间:0.012001s] [吞吐率:83.33req/s] [内存消耗:635.95kb] [文件加载:147]
  3874. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3875. [ info ] [ CACHE ] INIT File
  3876. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000120s ]
  3877. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3878. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  3879. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3880. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  3881. [ info ] [ ROUTE ] array (
  3882. 'type' => 'module',
  3883. 'module' =>
  3884. array (
  3885. 0 => 'api',
  3886. 1 => 'userCenter',
  3887. 2 => 'getMyUserInfo',
  3888. ),
  3889. )
  3890. [ info ] [ HEADER ] array (
  3891. 'accept-encoding' => 'gzip',
  3892. 'content-length' => '74',
  3893. 'content-type' => 'application/x-www-form-urlencoded',
  3894. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3895. 'accept-language' => 'zh-CN,zh;q=0.8',
  3896. 'host' => 'voicechat.lanmaonet.com',
  3897. )
  3898. [ info ] [ PARAM ] array (
  3899. 'params_from' => 'android',
  3900. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3901. 'user_id' => '100',
  3902. )
  3903. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3904. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  3905. [ info ] [ TOKEN ] INIT Mysql
  3906. [ info ] [ DB ] INIT mysql
  3907. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  3908. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  3909. [ info ] [ LOG ] INIT File
  3910. ---------------------------------------------------------------
  3911. [ 2023-03-18T10:14:13+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  3912. [运行时间:0.010890s] [吞吐率:91.83req/s] [内存消耗:635.95kb] [文件加载:147]
  3913. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3914. [ info ] [ CACHE ] INIT File
  3915. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000131s ]
  3916. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  3917. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  3918. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3919. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  3920. [ info ] [ ROUTE ] array (
  3921. 'type' => 'module',
  3922. 'module' =>
  3923. array (
  3924. 0 => 'api',
  3925. 1 => 'userCenter',
  3926. 2 => 'getMyUserInfo',
  3927. ),
  3928. )
  3929. [ info ] [ HEADER ] array (
  3930. 'accept-encoding' => 'gzip',
  3931. 'content-length' => '74',
  3932. 'content-type' => 'application/x-www-form-urlencoded',
  3933. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3934. 'accept-language' => 'zh-CN,zh;q=0.8',
  3935. 'host' => 'voicechat.lanmaonet.com',
  3936. )
  3937. [ info ] [ PARAM ] array (
  3938. 'params_from' => 'android',
  3939. 'token' => 'e10faaef-6062-4d44-b637-d24f6986cd12',
  3940. 'user_id' => '100',
  3941. )
  3942. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3943. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  3944. [ info ] [ TOKEN ] INIT Mysql
  3945. [ info ] [ DB ] INIT mysql
  3946. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  3947. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  3948. [ info ] [ LOG ] INIT File
  3949. ---------------------------------------------------------------
  3950. [ 2023-03-18T10:20:42+08:00 ] 119.45.30.208 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2802985510-144115352587932655-Disconnect-TimeOut&SdkAppid=1400556860&contenttype=json
  3951. [运行时间:0.268386s] [吞吐率:3.73req/s] [内存消耗:629.27kb] [文件加载:139]
  3952. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  3953. [ info ] [ CACHE ] INIT File
  3954. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000169s ]
  3955. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  3956. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  3957. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3958. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  3959. [ info ] [ ROUTE ] array (
  3960. 'type' => 'module',
  3961. 'module' =>
  3962. array (
  3963. 0 => 'api',
  3964. 1 => 'tenim',
  3965. 2 => 'callback',
  3966. ),
  3967. )
  3968. [ info ] [ HEADER ] array (
  3969. 'content-type' => 'application/json',
  3970. 'content-length' => '134',
  3971. 'connection' => 'keep-alive',
  3972. 'host' => 'voicechat.lanmaonet.com',
  3973. )
  3974. [ info ] [ PARAM ] array (
  3975. 'CallbackCommand' => 'State.StateChange',
  3976. 'ClientIP' => '112.6.63.60',
  3977. 'OptPlatform' => 'Android',
  3978. 'RequestId' => '2802985510-144115352587932655-Disconnect-TimeOut',
  3979. 'SdkAppid' => '1400556860',
  3980. 'contenttype' => 'json',
  3981. 'EventTime' => 1679106041766,
  3982. 'Info' =>
  3983. array (
  3984. 'To_Account' => '100',
  3985. 'Action' => 'Disconnect',
  3986. 'Reason' => 'TimeOut',
  3987. ),
  3988. )
  3989. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3990. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  3991. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  3992. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3993. [ info ] [ DB ] INIT mysql
  3994. [ info ] [ LOG ] INIT File
  3995. ---------------------------------------------------------------
  3996. [ 2023-03-18T10:20:42+08:00 ] 146.56.231.253 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2802985513-144115352587932655-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  3997. [运行时间:0.251530s] [吞吐率:3.98req/s] [内存消耗:629.32kb] [文件加载:139]
  3998. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3999. [ info ] [ CACHE ] INIT File
  4000. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000113s ]
  4001. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  4002. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  4003. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4004. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  4005. [ info ] [ ROUTE ] array (
  4006. 'type' => 'module',
  4007. 'module' =>
  4008. array (
  4009. 0 => 'api',
  4010. 1 => 'tenim',
  4011. 2 => 'callback',
  4012. ),
  4013. )
  4014. [ info ] [ HEADER ] array (
  4015. 'content-type' => 'application/json',
  4016. 'content-length' => '136',
  4017. 'connection' => 'keep-alive',
  4018. 'host' => 'voicechat.lanmaonet.com',
  4019. )
  4020. [ info ] [ PARAM ] array (
  4021. 'CallbackCommand' => 'State.StateChange',
  4022. 'ClientIP' => '112.6.63.60',
  4023. 'OptPlatform' => 'Android',
  4024. 'RequestId' => '2802985513-144115352587932655-Disconnect-LinkClose',
  4025. 'SdkAppid' => '1400556860',
  4026. 'contenttype' => 'json',
  4027. 'EventTime' => 1679106041769,
  4028. 'Info' =>
  4029. array (
  4030. 'To_Account' => '100',
  4031. 'Action' => 'Disconnect',
  4032. 'Reason' => 'LinkClose',
  4033. ),
  4034. )
  4035. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4036. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  4037. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  4038. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  4039. [ info ] [ DB ] INIT mysql
  4040. [ info ] [ LOG ] INIT File
  4041. ---------------------------------------------------------------
  4042. [ 2023-03-18T17:02:45+08:00 ] 40.77.167.194 GET voicechat.lanmaonet.com/
  4043. [运行时间:0.003469s] [吞吐率:288.27req/s] [内存消耗:408.98kb] [文件加载:135]
  4044. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4045. [ info ] [ CACHE ] INIT File
  4046. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  4047. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  4048. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  4049. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4050. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  4051. [ info ] [ ROUTE ] array (
  4052. 'type' => 'module',
  4053. 'module' =>
  4054. array (
  4055. 0 => '',
  4056. 1 => NULL,
  4057. 2 => NULL,
  4058. ),
  4059. )
  4060. [ info ] [ HEADER ] array (
  4061. 'user-agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36',
  4062. 'from' => 'bingbot(at)microsoft.com',
  4063. 'accept-encoding' => 'gzip, deflate',
  4064. 'accept' => '*/*',
  4065. 'pragma' => 'no-cache',
  4066. 'cache-control' => 'no-cache',
  4067. 'host' => 'voicechat.lanmaonet.com',
  4068. 'content-length' => '',
  4069. 'content-type' => '',
  4070. )
  4071. [ info ] [ PARAM ] array (
  4072. )
  4073. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  4074. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  4075. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  4076. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000028s ]
  4077. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  4078. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  4079. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  4080. 0 => 'user',
  4081. 1 => 'site',
  4082. 2 => 'config',
  4083. ) ]
  4084. [ info ] [ LOG ] INIT File
  4085. ---------------------------------------------------------------
  4086. [ 2023-03-18T19:10:36+08:00 ] 52.167.144.66 GET voicechat.lanmaonet.com/
  4087. [运行时间:0.003540s] [吞吐率:282.48req/s] [内存消耗:409.06kb] [文件加载:135]
  4088. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  4089. [ info ] [ CACHE ] INIT File
  4090. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000147s ]
  4091. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  4092. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  4093. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4094. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  4095. [ info ] [ ROUTE ] array (
  4096. 'type' => 'module',
  4097. 'module' =>
  4098. array (
  4099. 0 => '',
  4100. 1 => NULL,
  4101. 2 => NULL,
  4102. ),
  4103. )
  4104. [ info ] [ HEADER ] array (
  4105. 'user-agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/103.0.5060.134 Safari/537.36',
  4106. 'host' => 'voicechat.lanmaonet.com',
  4107. 'from' => 'bingbot(at)microsoft.com',
  4108. 'accept-encoding' => 'gzip, deflate',
  4109. 'accept' => '*/*',
  4110. 'pragma' => 'no-cache',
  4111. 'connection' => 'Keep-Alive',
  4112. 'cache-control' => 'no-cache',
  4113. 'content-length' => '',
  4114. 'content-type' => '',
  4115. )
  4116. [ info ] [ PARAM ] array (
  4117. )
  4118. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  4119. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  4120. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000048s ]
  4121. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000029s ]
  4122. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  4123. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  4124. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  4125. 0 => 'user',
  4126. 1 => 'site',
  4127. 2 => 'config',
  4128. ) ]
  4129. [ info ] [ LOG ] INIT File
  4130. ---------------------------------------------------------------
  4131. [ 2023-03-18T20:18:48+08:00 ] 205.210.31.181 GET voicechat.lanmaonet.com/
  4132. [运行时间:0.003098s] [吞吐率:322.79req/s] [内存消耗:407.13kb] [文件加载:135]
  4133. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4134. [ info ] [ CACHE ] INIT File
  4135. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000179s ]
  4136. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  4137. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  4138. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4139. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  4140. [ info ] [ ROUTE ] array (
  4141. 'type' => 'module',
  4142. 'module' =>
  4143. array (
  4144. 0 => '',
  4145. 1 => NULL,
  4146. 2 => NULL,
  4147. ),
  4148. )
  4149. [ info ] [ HEADER ] array (
  4150. 'host' => 'voicechat.lanmaonet.com',
  4151. 'content-length' => '',
  4152. 'content-type' => '',
  4153. )
  4154. [ info ] [ PARAM ] array (
  4155. )
  4156. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  4157. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  4158. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  4159. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000039s ]
  4160. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  4161. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  4162. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  4163. 0 => 'user',
  4164. 1 => 'site',
  4165. 2 => 'config',
  4166. ) ]
  4167. [ info ] [ LOG ] INIT File