24.log 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308
  1. ---------------------------------------------------------------
  2. [ 2021-09-24T00:26:27+08:00 ] 52.76.238.126 GET voicechat.lanmaonet.com/apple-app-site-association
  3. [运行时间:0.005220s] [吞吐率:191.57req/s] [内存消耗:338.21kb] [文件加载:123]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000218s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  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.000039s ]
  11. [ info ] [ ROUTE ] array (
  12. 'type' => 'module',
  13. 'module' =>
  14. array (
  15. 0 => 'apple-app-site-association',
  16. 1 => NULL,
  17. 2 => NULL,
  18. ),
  19. )
  20. [ info ] [ HEADER ] array (
  21. 'accept-encoding' => 'gzip',
  22. 'user-agent' => 'AASA-Bot/1.0.0',
  23. 'host' => 'voicechat.lanmaonet.com',
  24. 'content-type' => '',
  25. 'content-length' => '',
  26. )
  27. [ info ] [ PARAM ] array (
  28. )
  29. [ info ] [ LOG ] INIT File
  30. ---------------------------------------------------------------
  31. [ 2021-09-24T00:33:04+08:00 ] 81.71.1.123 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464925002-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  32. [运行时间:0.406903s] [吞吐率:2.46req/s] [内存消耗:690.14kb] [文件加载:140]
  33. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  34. [ info ] [ CACHE ] INIT File
  35. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000224s ]
  36. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  37. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  38. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  39. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  40. [ info ] [ ROUTE ] array (
  41. 'type' => 'module',
  42. 'module' =>
  43. array (
  44. 0 => 'api',
  45. 1 => 'tenim',
  46. 2 => 'callback',
  47. ),
  48. )
  49. [ info ] [ HEADER ] array (
  50. 'content-type' => 'application/json',
  51. 'content-length' => '135',
  52. 'connection' => 'keep-alive',
  53. 'host' => 'voicechat.lanmaonet.com',
  54. )
  55. [ info ] [ PARAM ] array (
  56. 'CallbackCommand' => 'State.StateChange',
  57. 'ClientIP' => '27.17.133.90',
  58. 'OptPlatform' => 'Android',
  59. 'RequestId' => '2464925002-144115261584051313-Disconnect-LinkClose',
  60. 'SdkAppid' => '1400556860',
  61. 'contenttype' => 'json',
  62. 'EventTime' => 1632414784390,
  63. 'Info' =>
  64. array (
  65. 'To_Account' => '96',
  66. 'Action' => 'Disconnect',
  67. 'Reason' => 'LinkClose',
  68. ),
  69. )
  70. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  71. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  72. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  73. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  74. [ info ] [ DB ] INIT mysql
  75. [ info ] [ LOG ] INIT File
  76. ---------------------------------------------------------------
  77. [ 2021-09-24T00:33:47+08:00 ] 119.29.74.24 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464926698-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  78. [运行时间:0.022137s] [吞吐率:45.17req/s] [内存消耗:620.98kb] [文件加载:136]
  79. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  80. [ info ] [ CACHE ] INIT File
  81. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000213s ]
  82. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000052s ]
  83. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000071s ]
  84. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  85. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000049s ]
  86. [ info ] [ ROUTE ] array (
  87. 'type' => 'module',
  88. 'module' =>
  89. array (
  90. 0 => 'api',
  91. 1 => 'tenim',
  92. 2 => 'callback',
  93. ),
  94. )
  95. [ info ] [ HEADER ] array (
  96. 'content-type' => 'application/json',
  97. 'content-length' => '129',
  98. 'connection' => 'keep-alive',
  99. 'host' => 'voicechat.lanmaonet.com',
  100. )
  101. [ info ] [ PARAM ] array (
  102. 'CallbackCommand' => 'State.StateChange',
  103. 'ClientIP' => '27.17.133.90',
  104. 'OptPlatform' => 'Android',
  105. 'RequestId' => '2464926698-144115261584051313-Login-Register',
  106. 'SdkAppid' => '1400556860',
  107. 'contenttype' => 'json',
  108. 'EventTime' => 1632414827830,
  109. 'Info' =>
  110. array (
  111. 'To_Account' => '96',
  112. 'Action' => 'Login',
  113. 'Reason' => 'Register',
  114. ),
  115. )
  116. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  117. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  118. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  119. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  120. [ info ] [ DB ] INIT mysql
  121. [ info ] [ LOG ] INIT File
  122. ---------------------------------------------------------------
  123. [ 2021-09-24T00:44:51+08:00 ] 154.8.246.202 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2462308188-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  124. [运行时间:0.012005s] [吞吐率:83.30req/s] [内存消耗:622.98kb] [文件加载:136]
  125. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  126. [ info ] [ CACHE ] INIT File
  127. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000238s ]
  128. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  129. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  130. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  131. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  132. [ info ] [ ROUTE ] array (
  133. 'type' => 'module',
  134. 'module' =>
  135. array (
  136. 0 => 'api',
  137. 1 => 'tenim',
  138. 2 => 'callback',
  139. ),
  140. )
  141. [ info ] [ HEADER ] array (
  142. 'content-type' => 'application/json',
  143. 'content-length' => '169',
  144. 'connection' => 'keep-alive',
  145. 'host' => 'voicechat.lanmaonet.com',
  146. )
  147. [ info ] [ PARAM ] array (
  148. 'CallbackCommand' => 'State.StateChange',
  149. 'ClientIP' => '27.17.133.90',
  150. 'OptPlatform' => 'Android',
  151. 'RequestId' => '2462308188-144115261584051313-Login-Register',
  152. 'SdkAppid' => '1400556860',
  153. 'contenttype' => 'json',
  154. 'EventTime' => 1632415491816,
  155. 'KickedDevice' =>
  156. array (
  157. 0 =>
  158. array (
  159. 'Platform' => 'Android',
  160. ),
  161. ),
  162. 'Info' =>
  163. array (
  164. 'To_Account' => '96',
  165. 'Action' => 'Login',
  166. 'Reason' => 'Register',
  167. ),
  168. )
  169. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  170. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  171. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  172. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  173. [ info ] [ DB ] INIT mysql
  174. [ info ] [ LOG ] INIT File
  175. ---------------------------------------------------------------
  176. [ 2021-09-24T00:58:45+08:00 ] 154.8.246.202 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2462332387-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  177. [运行时间:0.407100s] [吞吐率:2.46req/s] [内存消耗:690.14kb] [文件加载:140]
  178. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  179. [ info ] [ CACHE ] INIT File
  180. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000250s ]
  181. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  182. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  183. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  184. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000046s ]
  185. [ info ] [ ROUTE ] array (
  186. 'type' => 'module',
  187. 'module' =>
  188. array (
  189. 0 => 'api',
  190. 1 => 'tenim',
  191. 2 => 'callback',
  192. ),
  193. )
  194. [ info ] [ HEADER ] array (
  195. 'content-type' => 'application/json',
  196. 'content-length' => '135',
  197. 'connection' => 'keep-alive',
  198. 'host' => 'voicechat.lanmaonet.com',
  199. )
  200. [ info ] [ PARAM ] array (
  201. 'CallbackCommand' => 'State.StateChange',
  202. 'ClientIP' => '27.17.133.90',
  203. 'OptPlatform' => 'Android',
  204. 'RequestId' => '2462332387-144115261584051313-Disconnect-LinkClose',
  205. 'SdkAppid' => '1400556860',
  206. 'contenttype' => 'json',
  207. 'EventTime' => 1632416324534,
  208. 'Info' =>
  209. array (
  210. 'To_Account' => '96',
  211. 'Action' => 'Disconnect',
  212. 'Reason' => 'LinkClose',
  213. ),
  214. )
  215. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  216. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  217. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  218. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  219. [ info ] [ DB ] INIT mysql
  220. [ info ] [ LOG ] INIT File
  221. ---------------------------------------------------------------
  222. [ 2021-09-24T00:59:43+08:00 ] 119.45.44.121 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2462334015-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  223. [运行时间:0.015045s] [吞吐率:66.47req/s] [内存消耗:620.98kb] [文件加载:136]
  224. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  225. [ info ] [ CACHE ] INIT File
  226. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000234s ]
  227. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  228. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  229. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  230. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  231. [ info ] [ ROUTE ] array (
  232. 'type' => 'module',
  233. 'module' =>
  234. array (
  235. 0 => 'api',
  236. 1 => 'tenim',
  237. 2 => 'callback',
  238. ),
  239. )
  240. [ info ] [ HEADER ] array (
  241. 'content-type' => 'application/json',
  242. 'content-length' => '129',
  243. 'connection' => 'keep-alive',
  244. 'host' => 'voicechat.lanmaonet.com',
  245. )
  246. [ info ] [ PARAM ] array (
  247. 'CallbackCommand' => 'State.StateChange',
  248. 'ClientIP' => '27.17.133.90',
  249. 'OptPlatform' => 'Android',
  250. 'RequestId' => '2462334015-144115261584051313-Login-Register',
  251. 'SdkAppid' => '1400556860',
  252. 'contenttype' => 'json',
  253. 'EventTime' => 1632416383223,
  254. 'Info' =>
  255. array (
  256. 'To_Account' => '96',
  257. 'Action' => 'Login',
  258. 'Reason' => 'Register',
  259. ),
  260. )
  261. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  262. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  263. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  264. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  265. [ info ] [ DB ] INIT mysql
  266. [ info ] [ LOG ] INIT File
  267. ---------------------------------------------------------------
  268. [ 2021-09-24T01:11:22+08:00 ] 18.141.129.183 GET voicechat.lanmaonet.com/apple-app-site-association
  269. [运行时间:0.004421s] [吞吐率:226.19req/s] [内存消耗:338.22kb] [文件加载:123]
  270. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  271. [ info ] [ CACHE ] INIT File
  272. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000221s ]
  273. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  274. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  275. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  276. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000046s ]
  277. [ info ] [ ROUTE ] array (
  278. 'type' => 'module',
  279. 'module' =>
  280. array (
  281. 0 => 'apple-app-site-association',
  282. 1 => NULL,
  283. 2 => NULL,
  284. ),
  285. )
  286. [ info ] [ HEADER ] array (
  287. 'accept-encoding' => 'gzip',
  288. 'user-agent' => 'AASA-Bot/1.0.0',
  289. 'host' => 'voicechat.lanmaonet.com',
  290. 'content-type' => '',
  291. 'content-length' => '',
  292. )
  293. [ info ] [ PARAM ] array (
  294. )
  295. [ info ] [ LOG ] INIT File
  296. ---------------------------------------------------------------
  297. [ 2021-09-24T01:16:26+08:00 ] 81.71.6.252 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2462360406-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  298. [运行时间:0.007188s] [吞吐率:139.12req/s] [内存消耗:620.98kb] [文件加载:136]
  299. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  300. [ info ] [ CACHE ] INIT File
  301. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000156s ]
  302. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  303. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  304. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  305. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  306. [ info ] [ ROUTE ] array (
  307. 'type' => 'module',
  308. 'module' =>
  309. array (
  310. 0 => 'api',
  311. 1 => 'tenim',
  312. 2 => 'callback',
  313. ),
  314. )
  315. [ info ] [ HEADER ] array (
  316. 'content-type' => 'application/json',
  317. 'content-length' => '129',
  318. 'connection' => 'keep-alive',
  319. 'host' => 'voicechat.lanmaonet.com',
  320. )
  321. [ info ] [ PARAM ] array (
  322. 'CallbackCommand' => 'State.StateChange',
  323. 'ClientIP' => '27.17.133.90',
  324. 'OptPlatform' => 'Android',
  325. 'RequestId' => '2462360406-144115261584051313-Login-Register',
  326. 'SdkAppid' => '1400556860',
  327. 'contenttype' => 'json',
  328. 'EventTime' => 1632417386457,
  329. 'Info' =>
  330. array (
  331. 'To_Account' => '96',
  332. 'Action' => 'Login',
  333. 'Reason' => 'Register',
  334. ),
  335. )
  336. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  337. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000083s ]
  338. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000047s ]
  339. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  340. [ info ] [ DB ] INIT mysql
  341. [ info ] [ LOG ] INIT File
  342. ---------------------------------------------------------------
  343. [ 2021-09-24T01:16:26+08:00 ] 119.29.73.4 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2462360405-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  344. [运行时间:0.413138s] [吞吐率:2.42req/s] [内存消耗:690.14kb] [文件加载:140]
  345. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  346. [ info ] [ CACHE ] INIT File
  347. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000215s ]
  348. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  349. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  350. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  351. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000047s ]
  352. [ info ] [ ROUTE ] array (
  353. 'type' => 'module',
  354. 'module' =>
  355. array (
  356. 0 => 'api',
  357. 1 => 'tenim',
  358. 2 => 'callback',
  359. ),
  360. )
  361. [ info ] [ HEADER ] array (
  362. 'content-type' => 'application/json',
  363. 'content-length' => '135',
  364. 'connection' => 'keep-alive',
  365. 'host' => 'voicechat.lanmaonet.com',
  366. )
  367. [ info ] [ PARAM ] array (
  368. 'CallbackCommand' => 'State.StateChange',
  369. 'ClientIP' => '27.17.133.90',
  370. 'OptPlatform' => 'Android',
  371. 'RequestId' => '2462360405-144115261584051313-Disconnect-LinkClose',
  372. 'SdkAppid' => '1400556860',
  373. 'contenttype' => 'json',
  374. 'EventTime' => 1632417386404,
  375. 'Info' =>
  376. array (
  377. 'To_Account' => '96',
  378. 'Action' => 'Disconnect',
  379. 'Reason' => 'LinkClose',
  380. ),
  381. )
  382. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  383. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  384. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  385. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  386. [ info ] [ DB ] INIT mysql
  387. [ info ] [ LOG ] INIT File
  388. ---------------------------------------------------------------
  389. [ 2021-09-24T01:45:08+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  390. [运行时间:0.006964s] [吞吐率:143.60req/s] [内存消耗:338.22kb] [文件加载:123]
  391. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  392. [ info ] [ CACHE ] INIT File
  393. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000284s ]
  394. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  395. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  396. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  397. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000045s ]
  398. [ info ] [ ROUTE ] array (
  399. 'type' => 'module',
  400. 'module' =>
  401. array (
  402. 0 => 'apple-app-site-association',
  403. 1 => NULL,
  404. 2 => NULL,
  405. ),
  406. )
  407. [ info ] [ HEADER ] array (
  408. 'accept-encoding' => 'gzip',
  409. 'user-agent' => 'AASA-Bot/1.0.0',
  410. 'host' => 'voicechat.lanmaonet.com',
  411. 'content-type' => '',
  412. 'content-length' => '',
  413. )
  414. [ info ] [ PARAM ] array (
  415. )
  416. [ info ] [ LOG ] INIT File
  417. ---------------------------------------------------------------
  418. [ 2021-09-24T02:33:35+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  419. [运行时间:0.004400s] [吞吐率:227.27req/s] [内存消耗:338.22kb] [文件加载:123]
  420. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  421. [ info ] [ CACHE ] INIT File
  422. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000222s ]
  423. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  424. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  425. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  426. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  427. [ info ] [ ROUTE ] array (
  428. 'type' => 'module',
  429. 'module' =>
  430. array (
  431. 0 => 'apple-app-site-association',
  432. 1 => NULL,
  433. 2 => NULL,
  434. ),
  435. )
  436. [ info ] [ HEADER ] array (
  437. 'accept-encoding' => 'gzip',
  438. 'user-agent' => 'AASA-Bot/1.0.0',
  439. 'host' => 'voicechat.lanmaonet.com',
  440. 'content-type' => '',
  441. 'content-length' => '',
  442. )
  443. [ info ] [ PARAM ] array (
  444. )
  445. [ info ] [ LOG ] INIT File
  446. ---------------------------------------------------------------
  447. [ 2021-09-24T05:53:36+08:00 ] 106.52.165.159 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2462653849-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  448. [运行时间:0.026493s] [吞吐率:37.75req/s] [内存消耗:620.98kb] [文件加载:136]
  449. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  450. [ info ] [ CACHE ] INIT File
  451. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000129s ]
  452. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  453. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  454. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  455. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000303s ]
  456. [ info ] [ ROUTE ] array (
  457. 'type' => 'module',
  458. 'module' =>
  459. array (
  460. 0 => 'api',
  461. 1 => 'tenim',
  462. 2 => 'callback',
  463. ),
  464. )
  465. [ info ] [ HEADER ] array (
  466. 'content-type' => 'application/json',
  467. 'content-length' => '129',
  468. 'connection' => 'keep-alive',
  469. 'host' => 'voicechat.lanmaonet.com',
  470. )
  471. [ info ] [ PARAM ] array (
  472. 'CallbackCommand' => 'State.StateChange',
  473. 'ClientIP' => '27.17.133.90',
  474. 'OptPlatform' => 'Android',
  475. 'RequestId' => '2462653849-144115261584051313-Login-Register',
  476. 'SdkAppid' => '1400556860',
  477. 'contenttype' => 'json',
  478. 'EventTime' => 1632434015999,
  479. 'Info' =>
  480. array (
  481. 'To_Account' => '96',
  482. 'Action' => 'Login',
  483. 'Reason' => 'Register',
  484. ),
  485. )
  486. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  487. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000095s ]
  488. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000081s ]
  489. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  490. [ info ] [ DB ] INIT mysql
  491. [ info ] [ LOG ] INIT File
  492. ---------------------------------------------------------------
  493. [ 2021-09-24T05:53:36+08:00 ] 106.52.165.159 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2462653847-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  494. [运行时间:0.454081s] [吞吐率:2.20req/s] [内存消耗:690.14kb] [文件加载:140]
  495. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  496. [ info ] [ CACHE ] INIT File
  497. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.001680s ]
  498. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000069s ]
  499. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000090s ]
  500. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  501. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000636s ]
  502. [ info ] [ ROUTE ] array (
  503. 'type' => 'module',
  504. 'module' =>
  505. array (
  506. 0 => 'api',
  507. 1 => 'tenim',
  508. 2 => 'callback',
  509. ),
  510. )
  511. [ info ] [ HEADER ] array (
  512. 'content-type' => 'application/json',
  513. 'content-length' => '135',
  514. 'connection' => 'keep-alive',
  515. 'host' => 'voicechat.lanmaonet.com',
  516. )
  517. [ info ] [ PARAM ] array (
  518. 'CallbackCommand' => 'State.StateChange',
  519. 'ClientIP' => '27.17.133.90',
  520. 'OptPlatform' => 'Android',
  521. 'RequestId' => '2462653847-144115261584051313-Disconnect-LinkClose',
  522. 'SdkAppid' => '1400556860',
  523. 'contenttype' => 'json',
  524. 'EventTime' => 1632434015915,
  525. 'Info' =>
  526. array (
  527. 'To_Account' => '96',
  528. 'Action' => 'Disconnect',
  529. 'Reason' => 'LinkClose',
  530. ),
  531. )
  532. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  533. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000092s ]
  534. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000081s ]
  535. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  536. [ info ] [ DB ] INIT mysql
  537. [ info ] [ LOG ] INIT File
  538. ---------------------------------------------------------------
  539. [ 2021-09-24T06:14:53+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  540. [运行时间:0.005112s] [吞吐率:195.62req/s] [内存消耗:338.22kb] [文件加载:123]
  541. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  542. [ info ] [ CACHE ] INIT File
  543. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000233s ]
  544. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  545. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  546. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  547. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  548. [ info ] [ ROUTE ] array (
  549. 'type' => 'module',
  550. 'module' =>
  551. array (
  552. 0 => 'apple-app-site-association',
  553. 1 => NULL,
  554. 2 => NULL,
  555. ),
  556. )
  557. [ info ] [ HEADER ] array (
  558. 'accept-encoding' => 'gzip',
  559. 'user-agent' => 'AASA-Bot/1.0.0',
  560. 'host' => 'voicechat.lanmaonet.com',
  561. 'content-type' => '',
  562. 'content-length' => '',
  563. )
  564. [ info ] [ PARAM ] array (
  565. )
  566. [ info ] [ LOG ] INIT File
  567. ---------------------------------------------------------------
  568. [ 2021-09-24T07:04:10+08:00 ] 40.77.167.105 GET voicechat.lanmaonet.com/
  569. [运行时间:0.009772s] [吞吐率:102.34req/s] [内存消耗:468.58kb] [文件加载:135]
  570. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  571. [ info ] [ CACHE ] INIT File
  572. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000203s ]
  573. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  574. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  575. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  576. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  577. [ info ] [ ROUTE ] array (
  578. 'type' => 'module',
  579. 'module' =>
  580. array (
  581. 0 => '',
  582. 1 => NULL,
  583. 2 => NULL,
  584. ),
  585. )
  586. [ info ] [ HEADER ] array (
  587. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  588. 'from' => 'bingbot(at)microsoft.com',
  589. 'accept-encoding' => 'gzip, deflate',
  590. 'accept' => '*/*',
  591. 'pragma' => 'no-cache',
  592. 'cache-control' => 'no-cache',
  593. 'host' => 'voicechat.lanmaonet.com',
  594. 'content-type' => '',
  595. 'content-length' => '',
  596. )
  597. [ info ] [ PARAM ] array (
  598. )
  599. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  600. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  601. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000082s ]
  602. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000048s ]
  603. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  604. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  605. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  606. 0 => 'user',
  607. 1 => 'site',
  608. 2 => 'config',
  609. ) ]
  610. [ info ] [ LOG ] INIT File
  611. ---------------------------------------------------------------
  612. [ 2021-09-24T07:26:53+08:00 ] 171.13.14.41 GET voicechat.lanmaonet.com/
  613. [运行时间:0.006647s] [吞吐率:150.45req/s] [内存消耗:449.30kb] [文件加载:132]
  614. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  615. [ info ] [ CACHE ] INIT File
  616. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000199s ]
  617. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  618. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  619. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  620. [ info ] [ ROUTE ] array (
  621. 'type' => 'module',
  622. 'module' =>
  623. array (
  624. 0 => '',
  625. 1 => NULL,
  626. 2 => NULL,
  627. ),
  628. )
  629. [ info ] [ HEADER ] array (
  630. 'accept-language' => 'en-US',
  631. 'accept-encoding' => 'gzip, deflate, br',
  632. 'sec-fetch-dest' => 'document',
  633. 'sec-fetch-user' => '?1',
  634. 'sec-fetch-mode' => 'navigate',
  635. 'sec-fetch-site' => 'none',
  636. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  637. 'user-agent' => 'Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3765.0 Mobile Safari/537.36',
  638. 'upgrade-insecure-requests' => '1',
  639. 'cache-control' => 'no-cache',
  640. 'pragma' => 'no-cache',
  641. 'host' => 'voicechat.lanmaonet.com',
  642. 'content-type' => '',
  643. 'content-length' => '',
  644. )
  645. [ info ] [ PARAM ] array (
  646. )
  647. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000085s ]
  648. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  649. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000035s ]
  650. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  651. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  652. 0 => 'user',
  653. 1 => 'site',
  654. 2 => 'config',
  655. ) ]
  656. [ info ] [ LOG ] INIT File
  657. ---------------------------------------------------------------
  658. [ 2021-09-24T07:27:04+08:00 ] 171.13.14.47 GET voicechat.lanmaonet.com/
  659. [运行时间:0.007484s] [吞吐率:133.61req/s] [内存消耗:448.69kb] [文件加载:132]
  660. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  661. [ info ] [ CACHE ] INIT File
  662. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000189s ]
  663. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  664. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  665. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  666. [ info ] [ ROUTE ] array (
  667. 'type' => 'module',
  668. 'module' =>
  669. array (
  670. 0 => '',
  671. 1 => NULL,
  672. 2 => NULL,
  673. ),
  674. )
  675. [ info ] [ HEADER ] array (
  676. 'accept-language' => 'en-US',
  677. 'accept-encoding' => 'gzip, deflate',
  678. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  679. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36',
  680. 'upgrade-insecure-requests' => '1',
  681. 'cache-control' => 'no-cache',
  682. 'pragma' => 'no-cache',
  683. 'connection' => 'keep-alive',
  684. 'host' => 'voicechat.lanmaonet.com',
  685. 'content-type' => '',
  686. 'content-length' => '',
  687. )
  688. [ info ] [ PARAM ] array (
  689. )
  690. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000091s ]
  691. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  692. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000043s ]
  693. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  694. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  695. 0 => 'user',
  696. 1 => 'site',
  697. 2 => 'config',
  698. ) ]
  699. [ info ] [ LOG ] INIT File
  700. ---------------------------------------------------------------
  701. [ 2021-09-24T08:50:16+08:00 ] 44.232.70.210 GET voicechat.lanmaonet.com/apple-app-site-association
  702. [运行时间:0.003934s] [吞吐率:254.20req/s] [内存消耗:338.22kb] [文件加载:123]
  703. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  704. [ info ] [ CACHE ] INIT File
  705. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000228s ]
  706. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  707. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  708. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  709. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  710. [ info ] [ ROUTE ] array (
  711. 'type' => 'module',
  712. 'module' =>
  713. array (
  714. 0 => 'apple-app-site-association',
  715. 1 => NULL,
  716. 2 => NULL,
  717. ),
  718. )
  719. [ info ] [ HEADER ] array (
  720. 'accept-encoding' => 'gzip',
  721. 'user-agent' => 'AASA-Bot/1.0.0',
  722. 'host' => 'voicechat.lanmaonet.com',
  723. 'content-type' => '',
  724. 'content-length' => '',
  725. )
  726. [ info ] [ PARAM ] array (
  727. )
  728. [ info ] [ LOG ] INIT File
  729. ---------------------------------------------------------------
  730. [ 2021-09-24T09:18:54+08:00 ] 157.55.39.80 GET voicechat.lanmaonet.com/
  731. [运行时间:0.006986s] [吞吐率:143.15req/s] [内存消耗:468.62kb] [文件加载:135]
  732. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  733. [ info ] [ CACHE ] INIT File
  734. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000200s ]
  735. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  736. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  737. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  738. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  739. [ info ] [ ROUTE ] array (
  740. 'type' => 'module',
  741. 'module' =>
  742. array (
  743. 0 => '',
  744. 1 => NULL,
  745. 2 => NULL,
  746. ),
  747. )
  748. [ info ] [ HEADER ] array (
  749. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  750. 'host' => 'voicechat.lanmaonet.com',
  751. 'from' => 'bingbot(at)microsoft.com',
  752. 'accept-encoding' => 'gzip, deflate',
  753. 'accept' => '*/*',
  754. 'pragma' => 'no-cache',
  755. 'connection' => 'Keep-Alive',
  756. 'cache-control' => 'no-cache',
  757. 'content-type' => '',
  758. 'content-length' => '',
  759. )
  760. [ info ] [ PARAM ] array (
  761. )
  762. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  763. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000071s ]
  764. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  765. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000037s ]
  766. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  767. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  768. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  769. 0 => 'user',
  770. 1 => 'site',
  771. 2 => 'config',
  772. ) ]
  773. [ info ] [ LOG ] INIT File
  774. ---------------------------------------------------------------
  775. [ 2021-09-24T09:24:03+08:00 ] 129.211.172.31 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463031247-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  776. [运行时间:0.011036s] [吞吐率:90.61req/s] [内存消耗:620.98kb] [文件加载:136]
  777. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  778. [ info ] [ CACHE ] INIT File
  779. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000204s ]
  780. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  781. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  782. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  783. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  784. [ info ] [ ROUTE ] array (
  785. 'type' => 'module',
  786. 'module' =>
  787. array (
  788. 0 => 'api',
  789. 1 => 'tenim',
  790. 2 => 'callback',
  791. ),
  792. )
  793. [ info ] [ HEADER ] array (
  794. 'content-type' => 'application/json',
  795. 'content-length' => '129',
  796. 'connection' => 'keep-alive',
  797. 'host' => 'voicechat.lanmaonet.com',
  798. )
  799. [ info ] [ PARAM ] array (
  800. 'CallbackCommand' => 'State.StateChange',
  801. 'ClientIP' => '27.17.133.90',
  802. 'OptPlatform' => 'Android',
  803. 'RequestId' => '2463031247-144115261584051313-Login-Register',
  804. 'SdkAppid' => '1400556860',
  805. 'contenttype' => 'json',
  806. 'EventTime' => 1632446643028,
  807. 'Info' =>
  808. array (
  809. 'To_Account' => '96',
  810. 'Action' => 'Login',
  811. 'Reason' => 'Register',
  812. ),
  813. )
  814. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  815. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  816. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  817. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  818. [ info ] [ DB ] INIT mysql
  819. [ info ] [ LOG ] INIT File
  820. ---------------------------------------------------------------
  821. [ 2021-09-24T09:24:03+08:00 ] 154.8.246.209 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463031244-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  822. [运行时间:0.369465s] [吞吐率:2.71req/s] [内存消耗:690.14kb] [文件加载:140]
  823. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  824. [ info ] [ CACHE ] INIT File
  825. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000159s ]
  826. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  827. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  828. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  829. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  830. [ info ] [ ROUTE ] array (
  831. 'type' => 'module',
  832. 'module' =>
  833. array (
  834. 0 => 'api',
  835. 1 => 'tenim',
  836. 2 => 'callback',
  837. ),
  838. )
  839. [ info ] [ HEADER ] array (
  840. 'content-type' => 'application/json',
  841. 'content-length' => '135',
  842. 'host' => 'voicechat.lanmaonet.com',
  843. 'connection' => 'keep-alive',
  844. )
  845. [ info ] [ PARAM ] array (
  846. 'CallbackCommand' => 'State.StateChange',
  847. 'ClientIP' => '27.17.133.90',
  848. 'OptPlatform' => 'Android',
  849. 'RequestId' => '2463031244-144115261584051313-Disconnect-LinkClose',
  850. 'SdkAppid' => '1400556860',
  851. 'contenttype' => 'json',
  852. 'EventTime' => 1632446642946,
  853. 'Info' =>
  854. array (
  855. 'To_Account' => '96',
  856. 'Action' => 'Disconnect',
  857. 'Reason' => 'LinkClose',
  858. ),
  859. )
  860. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  861. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  862. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  863. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  864. [ info ] [ DB ] INIT mysql
  865. [ info ] [ LOG ] INIT File
  866. ---------------------------------------------------------------
  867. [ 2021-09-24T09:28:07+08:00 ] 119.29.130.139 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463040328-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  868. [运行时间:0.007818s] [吞吐率:127.91req/s] [内存消耗:620.98kb] [文件加载:136]
  869. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  870. [ info ] [ CACHE ] INIT File
  871. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000159s ]
  872. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  873. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  874. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  875. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  876. [ info ] [ ROUTE ] array (
  877. 'type' => 'module',
  878. 'module' =>
  879. array (
  880. 0 => 'api',
  881. 1 => 'tenim',
  882. 2 => 'callback',
  883. ),
  884. )
  885. [ info ] [ HEADER ] array (
  886. 'content-type' => 'application/json',
  887. 'content-length' => '129',
  888. 'connection' => 'keep-alive',
  889. 'host' => 'voicechat.lanmaonet.com',
  890. )
  891. [ info ] [ PARAM ] array (
  892. 'CallbackCommand' => 'State.StateChange',
  893. 'ClientIP' => '27.17.133.90',
  894. 'OptPlatform' => 'Android',
  895. 'RequestId' => '2463040328-144115261584051313-Login-Register',
  896. 'SdkAppid' => '1400556860',
  897. 'contenttype' => 'json',
  898. 'EventTime' => 1632446887228,
  899. 'Info' =>
  900. array (
  901. 'To_Account' => '96',
  902. 'Action' => 'Login',
  903. 'Reason' => 'Register',
  904. ),
  905. )
  906. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  907. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  908. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  909. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  910. [ info ] [ DB ] INIT mysql
  911. [ info ] [ LOG ] INIT File
  912. ---------------------------------------------------------------
  913. [ 2021-09-24T09:28:07+08:00 ] 119.45.30.208 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463040324-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  914. [运行时间:0.352761s] [吞吐率:2.83req/s] [内存消耗:690.14kb] [文件加载:140]
  915. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  916. [ info ] [ CACHE ] INIT File
  917. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000201s ]
  918. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  919. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  920. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  921. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  922. [ info ] [ ROUTE ] array (
  923. 'type' => 'module',
  924. 'module' =>
  925. array (
  926. 0 => 'api',
  927. 1 => 'tenim',
  928. 2 => 'callback',
  929. ),
  930. )
  931. [ info ] [ HEADER ] array (
  932. 'content-type' => 'application/json',
  933. 'content-length' => '135',
  934. 'connection' => 'keep-alive',
  935. 'host' => 'voicechat.lanmaonet.com',
  936. )
  937. [ info ] [ PARAM ] array (
  938. 'CallbackCommand' => 'State.StateChange',
  939. 'ClientIP' => '27.17.133.90',
  940. 'OptPlatform' => 'Android',
  941. 'RequestId' => '2463040324-144115261584051313-Disconnect-LinkClose',
  942. 'SdkAppid' => '1400556860',
  943. 'contenttype' => 'json',
  944. 'EventTime' => 1632446887113,
  945. 'Info' =>
  946. array (
  947. 'To_Account' => '96',
  948. 'Action' => 'Disconnect',
  949. 'Reason' => 'LinkClose',
  950. ),
  951. )
  952. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  953. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  954. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  955. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  956. [ info ] [ DB ] INIT mysql
  957. [ info ] [ LOG ] INIT File
  958. ---------------------------------------------------------------
  959. [ 2021-09-24T10:06:06+08:00 ] 52.202.87.234 GET voicechat.lanmaonet.com/apple-app-site-association
  960. [运行时间:0.004477s] [吞吐率:223.36req/s] [内存消耗:338.22kb] [文件加载:123]
  961. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  962. [ info ] [ CACHE ] INIT File
  963. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000216s ]
  964. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  965. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  966. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  967. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  968. [ info ] [ ROUTE ] array (
  969. 'type' => 'module',
  970. 'module' =>
  971. array (
  972. 0 => 'apple-app-site-association',
  973. 1 => NULL,
  974. 2 => NULL,
  975. ),
  976. )
  977. [ info ] [ HEADER ] array (
  978. 'accept-encoding' => 'gzip',
  979. 'user-agent' => 'AASA-Bot/1.0.0',
  980. 'host' => 'voicechat.lanmaonet.com',
  981. 'content-type' => '',
  982. 'content-length' => '',
  983. )
  984. [ info ] [ PARAM ] array (
  985. )
  986. [ info ] [ LOG ] INIT File
  987. ---------------------------------------------------------------
  988. [ 2021-09-24T10:16:57+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  989. [运行时间:0.003998s] [吞吐率:250.12req/s] [内存消耗:338.22kb] [文件加载:123]
  990. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  991. [ info ] [ CACHE ] INIT File
  992. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000204s ]
  993. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  994. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  995. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  996. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  997. [ info ] [ ROUTE ] array (
  998. 'type' => 'module',
  999. 'module' =>
  1000. array (
  1001. 0 => 'apple-app-site-association',
  1002. 1 => NULL,
  1003. 2 => NULL,
  1004. ),
  1005. )
  1006. [ info ] [ HEADER ] array (
  1007. 'accept-encoding' => 'gzip',
  1008. 'user-agent' => 'AASA-Bot/1.0.0',
  1009. 'host' => 'voicechat.lanmaonet.com',
  1010. 'content-type' => '',
  1011. 'content-length' => '',
  1012. )
  1013. [ info ] [ PARAM ] array (
  1014. )
  1015. [ info ] [ LOG ] INIT File
  1016. ---------------------------------------------------------------
  1017. [ 2021-09-24T10:44:22+08:00 ] 106.52.183.45 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463222415-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1018. [运行时间:0.010202s] [吞吐率:98.02req/s] [内存消耗:620.98kb] [文件加载:136]
  1019. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1020. [ info ] [ CACHE ] INIT File
  1021. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000211s ]
  1022. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1023. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1024. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1025. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  1026. [ info ] [ ROUTE ] array (
  1027. 'type' => 'module',
  1028. 'module' =>
  1029. array (
  1030. 0 => 'api',
  1031. 1 => 'tenim',
  1032. 2 => 'callback',
  1033. ),
  1034. )
  1035. [ info ] [ HEADER ] array (
  1036. 'content-type' => 'application/json',
  1037. 'content-length' => '129',
  1038. 'connection' => 'keep-alive',
  1039. 'host' => 'voicechat.lanmaonet.com',
  1040. )
  1041. [ info ] [ PARAM ] array (
  1042. 'CallbackCommand' => 'State.StateChange',
  1043. 'ClientIP' => '27.17.133.90',
  1044. 'OptPlatform' => 'Android',
  1045. 'RequestId' => '2463222415-144115261584051313-Login-Register',
  1046. 'SdkAppid' => '1400556860',
  1047. 'contenttype' => 'json',
  1048. 'EventTime' => 1632451462586,
  1049. 'Info' =>
  1050. array (
  1051. 'To_Account' => '96',
  1052. 'Action' => 'Login',
  1053. 'Reason' => 'Register',
  1054. ),
  1055. )
  1056. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1057. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000070s ]
  1058. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  1059. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1060. [ info ] [ DB ] INIT mysql
  1061. [ info ] [ LOG ] INIT File
  1062. ---------------------------------------------------------------
  1063. [ 2021-09-24T10:44:22+08:00 ] 119.45.44.121 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463222412-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1064. [运行时间:0.367512s] [吞吐率:2.72req/s] [内存消耗:690.14kb] [文件加载:140]
  1065. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  1066. [ info ] [ CACHE ] INIT File
  1067. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000132s ]
  1068. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1069. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1070. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1071. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  1072. [ info ] [ ROUTE ] array (
  1073. 'type' => 'module',
  1074. 'module' =>
  1075. array (
  1076. 0 => 'api',
  1077. 1 => 'tenim',
  1078. 2 => 'callback',
  1079. ),
  1080. )
  1081. [ info ] [ HEADER ] array (
  1082. 'content-type' => 'application/json',
  1083. 'content-length' => '135',
  1084. 'connection' => 'keep-alive',
  1085. 'host' => 'voicechat.lanmaonet.com',
  1086. )
  1087. [ info ] [ PARAM ] array (
  1088. 'CallbackCommand' => 'State.StateChange',
  1089. 'ClientIP' => '27.17.133.90',
  1090. 'OptPlatform' => 'Android',
  1091. 'RequestId' => '2463222412-144115261584051313-Disconnect-LinkClose',
  1092. 'SdkAppid' => '1400556860',
  1093. 'contenttype' => 'json',
  1094. 'EventTime' => 1632451462516,
  1095. 'Info' =>
  1096. array (
  1097. 'To_Account' => '96',
  1098. 'Action' => 'Disconnect',
  1099. 'Reason' => 'LinkClose',
  1100. ),
  1101. )
  1102. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1103. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  1104. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000039s ]
  1105. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1106. [ info ] [ DB ] INIT mysql
  1107. [ info ] [ LOG ] INIT File
  1108. ---------------------------------------------------------------
  1109. [ 2021-09-24T10:53:45+08:00 ] 154.8.246.209 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463245437-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1110. [运行时间:0.361572s] [吞吐率:2.77req/s] [内存消耗:690.14kb] [文件加载:140]
  1111. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1112. [ info ] [ CACHE ] INIT File
  1113. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000245s ]
  1114. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1115. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  1116. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1117. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  1118. [ info ] [ ROUTE ] array (
  1119. 'type' => 'module',
  1120. 'module' =>
  1121. array (
  1122. 0 => 'api',
  1123. 1 => 'tenim',
  1124. 2 => 'callback',
  1125. ),
  1126. )
  1127. [ info ] [ HEADER ] array (
  1128. 'content-type' => 'application/json',
  1129. 'content-length' => '135',
  1130. 'host' => 'voicechat.lanmaonet.com',
  1131. 'connection' => 'keep-alive',
  1132. )
  1133. [ info ] [ PARAM ] array (
  1134. 'CallbackCommand' => 'State.StateChange',
  1135. 'ClientIP' => '27.17.133.90',
  1136. 'OptPlatform' => 'Android',
  1137. 'RequestId' => '2463245437-144115261584051313-Disconnect-LinkClose',
  1138. 'SdkAppid' => '1400556860',
  1139. 'contenttype' => 'json',
  1140. 'EventTime' => 1632452025309,
  1141. 'Info' =>
  1142. array (
  1143. 'To_Account' => '96',
  1144. 'Action' => 'Disconnect',
  1145. 'Reason' => 'LinkClose',
  1146. ),
  1147. )
  1148. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1149. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  1150. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1151. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1152. [ info ] [ DB ] INIT mysql
  1153. [ info ] [ LOG ] INIT File
  1154. ---------------------------------------------------------------
  1155. [ 2021-09-24T10:54:17+08:00 ] 119.45.47.127 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2465876095-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1156. [运行时间:0.009950s] [吞吐率:100.50req/s] [内存消耗:620.98kb] [文件加载:136]
  1157. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1158. [ info ] [ CACHE ] INIT File
  1159. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000207s ]
  1160. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1161. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1162. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1163. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  1164. [ info ] [ ROUTE ] array (
  1165. 'type' => 'module',
  1166. 'module' =>
  1167. array (
  1168. 0 => 'api',
  1169. 1 => 'tenim',
  1170. 2 => 'callback',
  1171. ),
  1172. )
  1173. [ info ] [ HEADER ] array (
  1174. 'content-type' => 'application/json',
  1175. 'content-length' => '129',
  1176. 'connection' => 'keep-alive',
  1177. 'host' => 'voicechat.lanmaonet.com',
  1178. )
  1179. [ info ] [ PARAM ] array (
  1180. 'CallbackCommand' => 'State.StateChange',
  1181. 'ClientIP' => '27.17.133.90',
  1182. 'OptPlatform' => 'Android',
  1183. 'RequestId' => '2465876095-144115261584051313-Login-Register',
  1184. 'SdkAppid' => '1400556860',
  1185. 'contenttype' => 'json',
  1186. 'EventTime' => 1632452057414,
  1187. 'Info' =>
  1188. array (
  1189. 'To_Account' => '96',
  1190. 'Action' => 'Login',
  1191. 'Reason' => 'Register',
  1192. ),
  1193. )
  1194. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1195. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  1196. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  1197. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1198. [ info ] [ DB ] INIT mysql
  1199. [ info ] [ LOG ] INIT File
  1200. ---------------------------------------------------------------
  1201. [ 2021-09-24T11:05:10+08:00 ] 119.29.74.24 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463273101-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1202. [运行时间:0.010631s] [吞吐率:94.06req/s] [内存消耗:622.98kb] [文件加载:136]
  1203. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1204. [ info ] [ CACHE ] INIT File
  1205. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000306s ]
  1206. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1207. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1208. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1209. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  1210. [ info ] [ ROUTE ] array (
  1211. 'type' => 'module',
  1212. 'module' =>
  1213. array (
  1214. 0 => 'api',
  1215. 1 => 'tenim',
  1216. 2 => 'callback',
  1217. ),
  1218. )
  1219. [ info ] [ HEADER ] array (
  1220. 'content-type' => 'application/json',
  1221. 'content-length' => '169',
  1222. 'connection' => 'keep-alive',
  1223. 'host' => 'voicechat.lanmaonet.com',
  1224. )
  1225. [ info ] [ PARAM ] array (
  1226. 'CallbackCommand' => 'State.StateChange',
  1227. 'ClientIP' => '27.17.133.90',
  1228. 'OptPlatform' => 'Android',
  1229. 'RequestId' => '2463273101-144115261584051313-Login-Register',
  1230. 'SdkAppid' => '1400556860',
  1231. 'contenttype' => 'json',
  1232. 'EventTime' => 1632452710687,
  1233. 'KickedDevice' =>
  1234. array (
  1235. 0 =>
  1236. array (
  1237. 'Platform' => 'Android',
  1238. ),
  1239. ),
  1240. 'Info' =>
  1241. array (
  1242. 'To_Account' => '96',
  1243. 'Action' => 'Login',
  1244. 'Reason' => 'Register',
  1245. ),
  1246. )
  1247. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1248. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  1249. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  1250. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1251. [ info ] [ DB ] INIT mysql
  1252. [ info ] [ LOG ] INIT File
  1253. ---------------------------------------------------------------
  1254. [ 2021-09-24T11:19:56+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/apple-app-site-association
  1255. [运行时间:0.004118s] [吞吐率:242.84req/s] [内存消耗:340.17kb] [文件加载:123]
  1256. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1257. [ info ] [ CACHE ] INIT File
  1258. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000211s ]
  1259. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1260. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  1261. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1262. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  1263. [ info ] [ ROUTE ] array (
  1264. 'type' => 'module',
  1265. 'module' =>
  1266. array (
  1267. 0 => 'apple-app-site-association',
  1268. 1 => NULL,
  1269. 2 => NULL,
  1270. ),
  1271. )
  1272. [ info ] [ HEADER ] array (
  1273. 'user-agent' => 'swcd (unknown version) CFNetwork/1128.0.1 Darwin/19.6.0',
  1274. 'accept-encoding' => 'gzip, deflate, br',
  1275. 'connection' => 'keep-alive',
  1276. 'accept-language' => 'zh-cn',
  1277. 'accept' => '*/*',
  1278. 'host' => 'voicechat.lanmaonet.com',
  1279. 'content-type' => '',
  1280. 'content-length' => '',
  1281. )
  1282. [ info ] [ PARAM ] array (
  1283. )
  1284. [ info ] [ LOG ] INIT File
  1285. ---------------------------------------------------------------
  1286. [ 2021-09-24T11:20:03+08:00 ] 106.52.142.171 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2465934797-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1287. [运行时间:0.011464s] [吞吐率:87.23req/s] [内存消耗:622.98kb] [文件加载:136]
  1288. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  1289. [ info ] [ CACHE ] INIT File
  1290. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000151s ]
  1291. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1292. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1293. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1294. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1295. [ info ] [ ROUTE ] array (
  1296. 'type' => 'module',
  1297. 'module' =>
  1298. array (
  1299. 0 => 'api',
  1300. 1 => 'tenim',
  1301. 2 => 'callback',
  1302. ),
  1303. )
  1304. [ info ] [ HEADER ] array (
  1305. 'content-type' => 'application/json',
  1306. 'content-length' => '169',
  1307. 'connection' => 'keep-alive',
  1308. 'host' => 'voicechat.lanmaonet.com',
  1309. )
  1310. [ info ] [ PARAM ] array (
  1311. 'CallbackCommand' => 'State.StateChange',
  1312. 'ClientIP' => '27.17.133.90',
  1313. 'OptPlatform' => 'Android',
  1314. 'RequestId' => '2465934797-144115261584051313-Login-Register',
  1315. 'SdkAppid' => '1400556860',
  1316. 'contenttype' => 'json',
  1317. 'EventTime' => 1632453603148,
  1318. 'KickedDevice' =>
  1319. array (
  1320. 0 =>
  1321. array (
  1322. 'Platform' => 'Android',
  1323. ),
  1324. ),
  1325. 'Info' =>
  1326. array (
  1327. 'To_Account' => '96',
  1328. 'Action' => 'Login',
  1329. 'Reason' => 'Register',
  1330. ),
  1331. )
  1332. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1333. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  1334. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  1335. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1336. [ info ] [ DB ] INIT mysql
  1337. [ info ] [ LOG ] INIT File
  1338. ---------------------------------------------------------------
  1339. [ 2021-09-24T11:20:03+08:00 ] 154.8.248.247 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463309428-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1340. [运行时间:0.410045s] [吞吐率:2.44req/s] [内存消耗:690.14kb] [文件加载:140]
  1341. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1342. [ info ] [ CACHE ] INIT File
  1343. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000235s ]
  1344. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1345. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1346. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1347. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  1348. [ info ] [ ROUTE ] array (
  1349. 'type' => 'module',
  1350. 'module' =>
  1351. array (
  1352. 0 => 'api',
  1353. 1 => 'tenim',
  1354. 2 => 'callback',
  1355. ),
  1356. )
  1357. [ info ] [ HEADER ] array (
  1358. 'content-type' => 'application/json',
  1359. 'content-length' => '135',
  1360. 'connection' => 'keep-alive',
  1361. 'host' => 'voicechat.lanmaonet.com',
  1362. )
  1363. [ info ] [ PARAM ] array (
  1364. 'CallbackCommand' => 'State.StateChange',
  1365. 'ClientIP' => '27.17.133.90',
  1366. 'OptPlatform' => 'Android',
  1367. 'RequestId' => '2463309428-144115261584051313-Disconnect-LinkClose',
  1368. 'SdkAppid' => '1400556860',
  1369. 'contenttype' => 'json',
  1370. 'EventTime' => 1632453602973,
  1371. 'Info' =>
  1372. array (
  1373. 'To_Account' => '96',
  1374. 'Action' => 'Disconnect',
  1375. 'Reason' => 'LinkClose',
  1376. ),
  1377. )
  1378. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1379. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  1380. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  1381. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1382. [ info ] [ DB ] INIT mysql
  1383. [ info ] [ LOG ] INIT File
  1384. ---------------------------------------------------------------
  1385. [ 2021-09-24T11:41:27+08:00 ] 154.8.246.202 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463361993-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1386. [运行时间:0.012103s] [吞吐率:82.62req/s] [内存消耗:622.98kb] [文件加载:136]
  1387. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1388. [ info ] [ CACHE ] INIT File
  1389. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000168s ]
  1390. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1391. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1392. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1393. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  1394. [ info ] [ ROUTE ] array (
  1395. 'type' => 'module',
  1396. 'module' =>
  1397. array (
  1398. 0 => 'api',
  1399. 1 => 'tenim',
  1400. 2 => 'callback',
  1401. ),
  1402. )
  1403. [ info ] [ HEADER ] array (
  1404. 'content-type' => 'application/json',
  1405. 'content-length' => '169',
  1406. 'connection' => 'keep-alive',
  1407. 'host' => 'voicechat.lanmaonet.com',
  1408. )
  1409. [ info ] [ PARAM ] array (
  1410. 'CallbackCommand' => 'State.StateChange',
  1411. 'ClientIP' => '27.17.133.90',
  1412. 'OptPlatform' => 'Android',
  1413. 'RequestId' => '2463361993-144115261584051313-Login-Register',
  1414. 'SdkAppid' => '1400556860',
  1415. 'contenttype' => 'json',
  1416. 'EventTime' => 1632454887300,
  1417. 'KickedDevice' =>
  1418. array (
  1419. 0 =>
  1420. array (
  1421. 'Platform' => 'Android',
  1422. ),
  1423. ),
  1424. 'Info' =>
  1425. array (
  1426. 'To_Account' => '96',
  1427. 'Action' => 'Login',
  1428. 'Reason' => 'Register',
  1429. ),
  1430. )
  1431. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1432. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000086s ]
  1433. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  1434. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1435. [ info ] [ DB ] INIT mysql
  1436. [ info ] [ LOG ] INIT File
  1437. ---------------------------------------------------------------
  1438. [ 2021-09-24T11:41:27+08:00 ] 119.29.72.101 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2465984288-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1439. [运行时间:0.381032s] [吞吐率:2.62req/s] [内存消耗:690.14kb] [文件加载:140]
  1440. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1441. [ info ] [ CACHE ] INIT File
  1442. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000245s ]
  1443. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  1444. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000077s ]
  1445. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1446. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  1447. [ info ] [ ROUTE ] array (
  1448. 'type' => 'module',
  1449. 'module' =>
  1450. array (
  1451. 0 => 'api',
  1452. 1 => 'tenim',
  1453. 2 => 'callback',
  1454. ),
  1455. )
  1456. [ info ] [ HEADER ] array (
  1457. 'content-type' => 'application/json',
  1458. 'content-length' => '135',
  1459. 'connection' => 'keep-alive',
  1460. 'host' => 'voicechat.lanmaonet.com',
  1461. )
  1462. [ info ] [ PARAM ] array (
  1463. 'CallbackCommand' => 'State.StateChange',
  1464. 'ClientIP' => '27.17.133.90',
  1465. 'OptPlatform' => 'Android',
  1466. 'RequestId' => '2465984288-144115261584051313-Disconnect-LinkClose',
  1467. 'SdkAppid' => '1400556860',
  1468. 'contenttype' => 'json',
  1469. 'EventTime' => 1632454887277,
  1470. 'Info' =>
  1471. array (
  1472. 'To_Account' => '96',
  1473. 'Action' => 'Disconnect',
  1474. 'Reason' => 'LinkClose',
  1475. ),
  1476. )
  1477. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1478. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000100s ]
  1479. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000097s ]
  1480. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1481. [ info ] [ DB ] INIT mysql
  1482. [ info ] [ LOG ] INIT File
  1483. ---------------------------------------------------------------
  1484. [ 2021-09-24T12:07:38+08:00 ] 106.52.165.159 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463428483-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1485. [运行时间:0.012418s] [吞吐率:80.53req/s] [内存消耗:620.98kb] [文件加载:136]
  1486. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1487. [ info ] [ CACHE ] INIT File
  1488. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000153s ]
  1489. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  1490. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  1491. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1492. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  1493. [ info ] [ ROUTE ] array (
  1494. 'type' => 'module',
  1495. 'module' =>
  1496. array (
  1497. 0 => 'api',
  1498. 1 => 'tenim',
  1499. 2 => 'callback',
  1500. ),
  1501. )
  1502. [ info ] [ HEADER ] array (
  1503. 'content-type' => 'application/json',
  1504. 'content-length' => '129',
  1505. 'connection' => 'keep-alive',
  1506. 'host' => 'voicechat.lanmaonet.com',
  1507. )
  1508. [ info ] [ PARAM ] array (
  1509. 'CallbackCommand' => 'State.StateChange',
  1510. 'ClientIP' => '27.17.133.90',
  1511. 'OptPlatform' => 'Android',
  1512. 'RequestId' => '2463428483-144115261584051313-Login-Register',
  1513. 'SdkAppid' => '1400556860',
  1514. 'contenttype' => 'json',
  1515. 'EventTime' => 1632456458638,
  1516. 'Info' =>
  1517. array (
  1518. 'To_Account' => '96',
  1519. 'Action' => 'Login',
  1520. 'Reason' => 'Register',
  1521. ),
  1522. )
  1523. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1524. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  1525. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  1526. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1527. [ info ] [ DB ] INIT mysql
  1528. [ info ] [ LOG ] INIT File
  1529. ---------------------------------------------------------------
  1530. [ 2021-09-24T12:07:39+08:00 ] 154.8.248.247 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463428480-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1531. [运行时间:0.385201s] [吞吐率:2.60req/s] [内存消耗:690.14kb] [文件加载:140]
  1532. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1533. [ info ] [ CACHE ] INIT File
  1534. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000195s ]
  1535. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1536. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1537. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1538. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1539. [ info ] [ ROUTE ] array (
  1540. 'type' => 'module',
  1541. 'module' =>
  1542. array (
  1543. 0 => 'api',
  1544. 1 => 'tenim',
  1545. 2 => 'callback',
  1546. ),
  1547. )
  1548. [ info ] [ HEADER ] array (
  1549. 'content-type' => 'application/json',
  1550. 'content-length' => '135',
  1551. 'connection' => 'keep-alive',
  1552. 'host' => 'voicechat.lanmaonet.com',
  1553. )
  1554. [ info ] [ PARAM ] array (
  1555. 'CallbackCommand' => 'State.StateChange',
  1556. 'ClientIP' => '27.17.133.90',
  1557. 'OptPlatform' => 'Android',
  1558. 'RequestId' => '2463428480-144115261584051313-Disconnect-LinkClose',
  1559. 'SdkAppid' => '1400556860',
  1560. 'contenttype' => 'json',
  1561. 'EventTime' => 1632456458559,
  1562. 'Info' =>
  1563. array (
  1564. 'To_Account' => '96',
  1565. 'Action' => 'Disconnect',
  1566. 'Reason' => 'LinkClose',
  1567. ),
  1568. )
  1569. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1570. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  1571. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1572. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1573. [ info ] [ DB ] INIT mysql
  1574. [ info ] [ LOG ] INIT File
  1575. ---------------------------------------------------------------
  1576. [ 2021-09-24T12:13:43+08:00 ] 146.56.231.253 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463445099-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1577. [运行时间:0.016168s] [吞吐率:61.85req/s] [内存消耗:620.98kb] [文件加载:136]
  1578. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1579. [ info ] [ CACHE ] INIT File
  1580. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000162s ]
  1581. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1582. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1583. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1584. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  1585. [ info ] [ ROUTE ] array (
  1586. 'type' => 'module',
  1587. 'module' =>
  1588. array (
  1589. 0 => 'api',
  1590. 1 => 'tenim',
  1591. 2 => 'callback',
  1592. ),
  1593. )
  1594. [ info ] [ HEADER ] array (
  1595. 'content-type' => 'application/json',
  1596. 'content-length' => '129',
  1597. 'connection' => 'keep-alive',
  1598. 'host' => 'voicechat.lanmaonet.com',
  1599. )
  1600. [ info ] [ PARAM ] array (
  1601. 'CallbackCommand' => 'State.StateChange',
  1602. 'ClientIP' => '27.17.133.90',
  1603. 'OptPlatform' => 'Android',
  1604. 'RequestId' => '2463445099-144115261584051313-Login-Register',
  1605. 'SdkAppid' => '1400556860',
  1606. 'contenttype' => 'json',
  1607. 'EventTime' => 1632456823564,
  1608. 'Info' =>
  1609. array (
  1610. 'To_Account' => '96',
  1611. 'Action' => 'Login',
  1612. 'Reason' => 'Register',
  1613. ),
  1614. )
  1615. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1616. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  1617. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000073s ]
  1618. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1619. [ info ] [ DB ] INIT mysql
  1620. [ info ] [ LOG ] INIT File
  1621. ---------------------------------------------------------------
  1622. [ 2021-09-24T12:13:43+08:00 ] 119.29.73.4 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463445095-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1623. [运行时间:0.374808s] [吞吐率:2.67req/s] [内存消耗:690.14kb] [文件加载:140]
  1624. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1625. [ info ] [ CACHE ] INIT File
  1626. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000212s ]
  1627. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1628. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1629. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1630. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  1631. [ info ] [ ROUTE ] array (
  1632. 'type' => 'module',
  1633. 'module' =>
  1634. array (
  1635. 0 => 'api',
  1636. 1 => 'tenim',
  1637. 2 => 'callback',
  1638. ),
  1639. )
  1640. [ info ] [ HEADER ] array (
  1641. 'content-type' => 'application/json',
  1642. 'content-length' => '135',
  1643. 'connection' => 'keep-alive',
  1644. 'host' => 'voicechat.lanmaonet.com',
  1645. )
  1646. [ info ] [ PARAM ] array (
  1647. 'CallbackCommand' => 'State.StateChange',
  1648. 'ClientIP' => '27.17.133.90',
  1649. 'OptPlatform' => 'Android',
  1650. 'RequestId' => '2463445095-144115261584051313-Disconnect-LinkClose',
  1651. 'SdkAppid' => '1400556860',
  1652. 'contenttype' => 'json',
  1653. 'EventTime' => 1632456823482,
  1654. 'Info' =>
  1655. array (
  1656. 'To_Account' => '96',
  1657. 'Action' => 'Disconnect',
  1658. 'Reason' => 'LinkClose',
  1659. ),
  1660. )
  1661. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1662. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  1663. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  1664. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1665. [ info ] [ DB ] INIT mysql
  1666. [ info ] [ LOG ] INIT File
  1667. ---------------------------------------------------------------
  1668. [ 2021-09-24T12:22:14+08:00 ] 44.232.70.210 GET voicechat.lanmaonet.com/apple-app-site-association
  1669. [运行时间:0.003981s] [吞吐率:251.19req/s] [内存消耗:338.22kb] [文件加载:123]
  1670. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1671. [ info ] [ CACHE ] INIT File
  1672. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000225s ]
  1673. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  1674. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1675. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1676. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1677. [ info ] [ ROUTE ] array (
  1678. 'type' => 'module',
  1679. 'module' =>
  1680. array (
  1681. 0 => 'apple-app-site-association',
  1682. 1 => NULL,
  1683. 2 => NULL,
  1684. ),
  1685. )
  1686. [ info ] [ HEADER ] array (
  1687. 'accept-encoding' => 'gzip',
  1688. 'user-agent' => 'AASA-Bot/1.0.0',
  1689. 'host' => 'voicechat.lanmaonet.com',
  1690. 'content-type' => '',
  1691. 'content-length' => '',
  1692. )
  1693. [ info ] [ PARAM ] array (
  1694. )
  1695. [ info ] [ LOG ] INIT File
  1696. ---------------------------------------------------------------
  1697. [ 2021-09-24T12:23:59+08:00 ] 42.194.134.116 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463472192-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1698. [运行时间:0.006871s] [吞吐率:145.54req/s] [内存消耗:620.98kb] [文件加载:136]
  1699. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1700. [ info ] [ CACHE ] INIT File
  1701. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000150s ]
  1702. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1703. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1704. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1705. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  1706. [ info ] [ ROUTE ] array (
  1707. 'type' => 'module',
  1708. 'module' =>
  1709. array (
  1710. 0 => 'api',
  1711. 1 => 'tenim',
  1712. 2 => 'callback',
  1713. ),
  1714. )
  1715. [ info ] [ HEADER ] array (
  1716. 'content-type' => 'application/json',
  1717. 'content-length' => '129',
  1718. 'connection' => 'keep-alive',
  1719. 'host' => 'voicechat.lanmaonet.com',
  1720. )
  1721. [ info ] [ PARAM ] array (
  1722. 'CallbackCommand' => 'State.StateChange',
  1723. 'ClientIP' => '27.17.133.90',
  1724. 'OptPlatform' => 'Android',
  1725. 'RequestId' => '2463472192-144115261584051313-Login-Register',
  1726. 'SdkAppid' => '1400556860',
  1727. 'contenttype' => 'json',
  1728. 'EventTime' => 1632457439482,
  1729. 'Info' =>
  1730. array (
  1731. 'To_Account' => '96',
  1732. 'Action' => 'Login',
  1733. 'Reason' => 'Register',
  1734. ),
  1735. )
  1736. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1737. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  1738. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000066s ]
  1739. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1740. [ info ] [ DB ] INIT mysql
  1741. [ info ] [ LOG ] INIT File
  1742. ---------------------------------------------------------------
  1743. [ 2021-09-24T12:23:59+08:00 ] 119.29.73.107 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463472190-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1744. [运行时间:0.370535s] [吞吐率:2.70req/s] [内存消耗:690.14kb] [文件加载:140]
  1745. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1746. [ info ] [ CACHE ] INIT File
  1747. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000196s ]
  1748. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  1749. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1750. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1751. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  1752. [ info ] [ ROUTE ] array (
  1753. 'type' => 'module',
  1754. 'module' =>
  1755. array (
  1756. 0 => 'api',
  1757. 1 => 'tenim',
  1758. 2 => 'callback',
  1759. ),
  1760. )
  1761. [ info ] [ HEADER ] array (
  1762. 'content-type' => 'application/json',
  1763. 'content-length' => '135',
  1764. 'connection' => 'keep-alive',
  1765. 'host' => 'voicechat.lanmaonet.com',
  1766. )
  1767. [ info ] [ PARAM ] array (
  1768. 'CallbackCommand' => 'State.StateChange',
  1769. 'ClientIP' => '27.17.133.90',
  1770. 'OptPlatform' => 'Android',
  1771. 'RequestId' => '2463472190-144115261584051313-Disconnect-LinkClose',
  1772. 'SdkAppid' => '1400556860',
  1773. 'contenttype' => 'json',
  1774. 'EventTime' => 1632457439408,
  1775. 'Info' =>
  1776. array (
  1777. 'To_Account' => '96',
  1778. 'Action' => 'Disconnect',
  1779. 'Reason' => 'LinkClose',
  1780. ),
  1781. )
  1782. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1783. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  1784. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  1785. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1786. [ info ] [ DB ] INIT mysql
  1787. [ info ] [ LOG ] INIT File
  1788. ---------------------------------------------------------------
  1789. [ 2021-09-24T13:16:21+08:00 ] 106.52.142.171 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463602688-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1790. [运行时间:0.021666s] [吞吐率:46.16req/s] [内存消耗:620.98kb] [文件加载:136]
  1791. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1792. [ info ] [ CACHE ] INIT File
  1793. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000195s ]
  1794. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1795. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  1796. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1797. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  1798. [ info ] [ ROUTE ] array (
  1799. 'type' => 'module',
  1800. 'module' =>
  1801. array (
  1802. 0 => 'api',
  1803. 1 => 'tenim',
  1804. 2 => 'callback',
  1805. ),
  1806. )
  1807. [ info ] [ HEADER ] array (
  1808. 'content-type' => 'application/json',
  1809. 'content-length' => '129',
  1810. 'connection' => 'keep-alive',
  1811. 'host' => 'voicechat.lanmaonet.com',
  1812. )
  1813. [ info ] [ PARAM ] array (
  1814. 'CallbackCommand' => 'State.StateChange',
  1815. 'ClientIP' => '27.17.133.90',
  1816. 'OptPlatform' => 'Android',
  1817. 'RequestId' => '2463602688-144115261584051313-Login-Register',
  1818. 'SdkAppid' => '1400556860',
  1819. 'contenttype' => 'json',
  1820. 'EventTime' => 1632460581432,
  1821. 'Info' =>
  1822. array (
  1823. 'To_Account' => '96',
  1824. 'Action' => 'Login',
  1825. 'Reason' => 'Register',
  1826. ),
  1827. )
  1828. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1829. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  1830. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  1831. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1832. [ info ] [ DB ] INIT mysql
  1833. [ info ] [ LOG ] INIT File
  1834. ---------------------------------------------------------------
  1835. [ 2021-09-24T13:16:21+08:00 ] 106.55.18.96 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463602686-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1836. [运行时间:0.391370s] [吞吐率:2.56req/s] [内存消耗:690.14kb] [文件加载:140]
  1837. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1838. [ info ] [ CACHE ] INIT File
  1839. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000133s ]
  1840. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  1841. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  1842. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1843. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  1844. [ info ] [ ROUTE ] array (
  1845. 'type' => 'module',
  1846. 'module' =>
  1847. array (
  1848. 0 => 'api',
  1849. 1 => 'tenim',
  1850. 2 => 'callback',
  1851. ),
  1852. )
  1853. [ info ] [ HEADER ] array (
  1854. 'content-type' => 'application/json',
  1855. 'content-length' => '135',
  1856. 'connection' => 'keep-alive',
  1857. 'host' => 'voicechat.lanmaonet.com',
  1858. )
  1859. [ info ] [ PARAM ] array (
  1860. 'CallbackCommand' => 'State.StateChange',
  1861. 'ClientIP' => '27.17.133.90',
  1862. 'OptPlatform' => 'Android',
  1863. 'RequestId' => '2463602686-144115261584051313-Disconnect-LinkClose',
  1864. 'SdkAppid' => '1400556860',
  1865. 'contenttype' => 'json',
  1866. 'EventTime' => 1632460581364,
  1867. 'Info' =>
  1868. array (
  1869. 'To_Account' => '96',
  1870. 'Action' => 'Disconnect',
  1871. 'Reason' => 'LinkClose',
  1872. ),
  1873. )
  1874. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1875. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000042s ]
  1876. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000041s ]
  1877. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1878. [ info ] [ DB ] INIT mysql
  1879. [ info ] [ LOG ] INIT File
  1880. ---------------------------------------------------------------
  1881. [ 2021-09-24T13:23:11+08:00 ] 106.55.17.239 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463619148-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1882. [运行时间:0.009769s] [吞吐率:102.37req/s] [内存消耗:620.98kb] [文件加载:136]
  1883. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1884. [ info ] [ CACHE ] INIT File
  1885. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000200s ]
  1886. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1887. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1888. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1889. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  1890. [ info ] [ ROUTE ] array (
  1891. 'type' => 'module',
  1892. 'module' =>
  1893. array (
  1894. 0 => 'api',
  1895. 1 => 'tenim',
  1896. 2 => 'callback',
  1897. ),
  1898. )
  1899. [ info ] [ HEADER ] array (
  1900. 'content-type' => 'application/json',
  1901. 'content-length' => '129',
  1902. 'connection' => 'keep-alive',
  1903. 'host' => 'voicechat.lanmaonet.com',
  1904. )
  1905. [ info ] [ PARAM ] array (
  1906. 'CallbackCommand' => 'State.StateChange',
  1907. 'ClientIP' => '27.17.133.90',
  1908. 'OptPlatform' => 'Android',
  1909. 'RequestId' => '2463619148-144115261584051313-Login-Register',
  1910. 'SdkAppid' => '1400556860',
  1911. 'contenttype' => 'json',
  1912. 'EventTime' => 1632460991309,
  1913. 'Info' =>
  1914. array (
  1915. 'To_Account' => '96',
  1916. 'Action' => 'Login',
  1917. 'Reason' => 'Register',
  1918. ),
  1919. )
  1920. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1921. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  1922. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  1923. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1924. [ info ] [ DB ] INIT mysql
  1925. [ info ] [ LOG ] INIT File
  1926. ---------------------------------------------------------------
  1927. [ 2021-09-24T13:23:11+08:00 ] 81.71.1.123 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463619125-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  1928. [运行时间:0.417214s] [吞吐率:2.40req/s] [内存消耗:690.14kb] [文件加载:140]
  1929. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1930. [ info ] [ CACHE ] INIT File
  1931. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000212s ]
  1932. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1933. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  1934. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1935. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1936. [ info ] [ ROUTE ] array (
  1937. 'type' => 'module',
  1938. 'module' =>
  1939. array (
  1940. 0 => 'api',
  1941. 1 => 'tenim',
  1942. 2 => 'callback',
  1943. ),
  1944. )
  1945. [ info ] [ HEADER ] array (
  1946. 'content-type' => 'application/json',
  1947. 'content-length' => '135',
  1948. 'connection' => 'keep-alive',
  1949. 'host' => 'voicechat.lanmaonet.com',
  1950. )
  1951. [ info ] [ PARAM ] array (
  1952. 'CallbackCommand' => 'State.StateChange',
  1953. 'ClientIP' => '27.17.133.90',
  1954. 'OptPlatform' => 'Android',
  1955. 'RequestId' => '2463619125-144115261584051313-Disconnect-LinkClose',
  1956. 'SdkAppid' => '1400556860',
  1957. 'contenttype' => 'json',
  1958. 'EventTime' => 1632460991179,
  1959. 'Info' =>
  1960. array (
  1961. 'To_Account' => '96',
  1962. 'Action' => 'Disconnect',
  1963. 'Reason' => 'LinkClose',
  1964. ),
  1965. )
  1966. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1967. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000053s ]
  1968. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1969. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  1970. [ info ] [ DB ] INIT mysql
  1971. [ info ] [ LOG ] INIT File
  1972. ---------------------------------------------------------------
  1973. [ 2021-09-24T13:38:26+08:00 ] 106.52.148.50 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463655356-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  1974. [运行时间:0.007242s] [吞吐率:138.08req/s] [内存消耗:620.98kb] [文件加载:136]
  1975. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1976. [ info ] [ CACHE ] INIT File
  1977. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000188s ]
  1978. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1979. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  1980. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1981. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1982. [ info ] [ ROUTE ] array (
  1983. 'type' => 'module',
  1984. 'module' =>
  1985. array (
  1986. 0 => 'api',
  1987. 1 => 'tenim',
  1988. 2 => 'callback',
  1989. ),
  1990. )
  1991. [ info ] [ HEADER ] array (
  1992. 'content-type' => 'application/json',
  1993. 'content-length' => '129',
  1994. 'connection' => 'keep-alive',
  1995. 'host' => 'voicechat.lanmaonet.com',
  1996. )
  1997. [ info ] [ PARAM ] array (
  1998. 'CallbackCommand' => 'State.StateChange',
  1999. 'ClientIP' => '27.17.133.90',
  2000. 'OptPlatform' => 'Android',
  2001. 'RequestId' => '2463655356-144115261584051313-Login-Register',
  2002. 'SdkAppid' => '1400556860',
  2003. 'contenttype' => 'json',
  2004. 'EventTime' => 1632461906601,
  2005. 'Info' =>
  2006. array (
  2007. 'To_Account' => '96',
  2008. 'Action' => 'Login',
  2009. 'Reason' => 'Register',
  2010. ),
  2011. )
  2012. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2013. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  2014. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000042s ]
  2015. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2016. [ info ] [ DB ] INIT mysql
  2017. [ info ] [ LOG ] INIT File
  2018. ---------------------------------------------------------------
  2019. [ 2021-09-24T13:38:26+08:00 ] 119.29.72.101 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463655355-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2020. [运行时间:0.357742s] [吞吐率:2.80req/s] [内存消耗:690.14kb] [文件加载:140]
  2021. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2022. [ info ] [ CACHE ] INIT File
  2023. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000226s ]
  2024. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2025. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  2026. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2027. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  2028. [ info ] [ ROUTE ] array (
  2029. 'type' => 'module',
  2030. 'module' =>
  2031. array (
  2032. 0 => 'api',
  2033. 1 => 'tenim',
  2034. 2 => 'callback',
  2035. ),
  2036. )
  2037. [ info ] [ HEADER ] array (
  2038. 'content-type' => 'application/json',
  2039. 'content-length' => '135',
  2040. 'connection' => 'keep-alive',
  2041. 'host' => 'voicechat.lanmaonet.com',
  2042. )
  2043. [ info ] [ PARAM ] array (
  2044. 'CallbackCommand' => 'State.StateChange',
  2045. 'ClientIP' => '27.17.133.90',
  2046. 'OptPlatform' => 'Android',
  2047. 'RequestId' => '2463655355-144115261584051313-Disconnect-LinkClose',
  2048. 'SdkAppid' => '1400556860',
  2049. 'contenttype' => 'json',
  2050. 'EventTime' => 1632461906523,
  2051. 'Info' =>
  2052. array (
  2053. 'To_Account' => '96',
  2054. 'Action' => 'Disconnect',
  2055. 'Reason' => 'LinkClose',
  2056. ),
  2057. )
  2058. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2059. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  2060. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  2061. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2062. [ info ] [ DB ] INIT mysql
  2063. [ info ] [ LOG ] INIT File
  2064. ---------------------------------------------------------------
  2065. [ 2021-09-24T13:50:23+08:00 ] 119.45.46.39 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463683973-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2066. [运行时间:0.008190s] [吞吐率:122.10req/s] [内存消耗:620.98kb] [文件加载:136]
  2067. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2068. [ info ] [ CACHE ] INIT File
  2069. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000185s ]
  2070. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  2071. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  2072. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2073. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  2074. [ info ] [ ROUTE ] array (
  2075. 'type' => 'module',
  2076. 'module' =>
  2077. array (
  2078. 0 => 'api',
  2079. 1 => 'tenim',
  2080. 2 => 'callback',
  2081. ),
  2082. )
  2083. [ info ] [ HEADER ] array (
  2084. 'content-type' => 'application/json',
  2085. 'content-length' => '129',
  2086. 'connection' => 'keep-alive',
  2087. 'host' => 'voicechat.lanmaonet.com',
  2088. )
  2089. [ info ] [ PARAM ] array (
  2090. 'CallbackCommand' => 'State.StateChange',
  2091. 'ClientIP' => '27.17.133.90',
  2092. 'OptPlatform' => 'Android',
  2093. 'RequestId' => '2463683973-144115261584051313-Login-Register',
  2094. 'SdkAppid' => '1400556860',
  2095. 'contenttype' => 'json',
  2096. 'EventTime' => 1632462623304,
  2097. 'Info' =>
  2098. array (
  2099. 'To_Account' => '96',
  2100. 'Action' => 'Login',
  2101. 'Reason' => 'Register',
  2102. ),
  2103. )
  2104. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2105. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2106. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  2107. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2108. [ info ] [ DB ] INIT mysql
  2109. [ info ] [ LOG ] INIT File
  2110. ---------------------------------------------------------------
  2111. [ 2021-09-24T13:50:23+08:00 ] 119.45.30.208 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463683964-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2112. [运行时间:0.376074s] [吞吐率:2.66req/s] [内存消耗:690.14kb] [文件加载:140]
  2113. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2114. [ info ] [ CACHE ] INIT File
  2115. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000224s ]
  2116. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  2117. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  2118. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2119. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  2120. [ info ] [ ROUTE ] array (
  2121. 'type' => 'module',
  2122. 'module' =>
  2123. array (
  2124. 0 => 'api',
  2125. 1 => 'tenim',
  2126. 2 => 'callback',
  2127. ),
  2128. )
  2129. [ info ] [ HEADER ] array (
  2130. 'content-type' => 'application/json',
  2131. 'content-length' => '135',
  2132. 'host' => 'voicechat.lanmaonet.com',
  2133. 'connection' => 'keep-alive',
  2134. )
  2135. [ info ] [ PARAM ] array (
  2136. 'CallbackCommand' => 'State.StateChange',
  2137. 'ClientIP' => '27.17.133.90',
  2138. 'OptPlatform' => 'Android',
  2139. 'RequestId' => '2463683964-144115261584051313-Disconnect-LinkClose',
  2140. 'SdkAppid' => '1400556860',
  2141. 'contenttype' => 'json',
  2142. 'EventTime' => 1632462623022,
  2143. 'Info' =>
  2144. array (
  2145. 'To_Account' => '96',
  2146. 'Action' => 'Disconnect',
  2147. 'Reason' => 'LinkClose',
  2148. ),
  2149. )
  2150. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2151. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  2152. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000073s ]
  2153. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2154. [ info ] [ DB ] INIT mysql
  2155. [ info ] [ LOG ] INIT File
  2156. ---------------------------------------------------------------
  2157. [ 2021-09-24T13:55:08+08:00 ] 146.56.231.253 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2466307840-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2158. [运行时间:0.011756s] [吞吐率:85.06req/s] [内存消耗:622.98kb] [文件加载:136]
  2159. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2160. [ info ] [ CACHE ] INIT File
  2161. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000194s ]
  2162. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2163. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2164. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2165. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  2166. [ info ] [ ROUTE ] array (
  2167. 'type' => 'module',
  2168. 'module' =>
  2169. array (
  2170. 0 => 'api',
  2171. 1 => 'tenim',
  2172. 2 => 'callback',
  2173. ),
  2174. )
  2175. [ info ] [ HEADER ] array (
  2176. 'content-type' => 'application/json',
  2177. 'content-length' => '169',
  2178. 'host' => 'voicechat.lanmaonet.com',
  2179. 'connection' => 'keep-alive',
  2180. )
  2181. [ info ] [ PARAM ] array (
  2182. 'CallbackCommand' => 'State.StateChange',
  2183. 'ClientIP' => '27.17.133.90',
  2184. 'OptPlatform' => 'Android',
  2185. 'RequestId' => '2466307840-144115261584051313-Login-Register',
  2186. 'SdkAppid' => '1400556860',
  2187. 'contenttype' => 'json',
  2188. 'EventTime' => 1632462908259,
  2189. 'KickedDevice' =>
  2190. array (
  2191. 0 =>
  2192. array (
  2193. 'Platform' => 'Android',
  2194. ),
  2195. ),
  2196. 'Info' =>
  2197. array (
  2198. 'To_Account' => '96',
  2199. 'Action' => 'Login',
  2200. 'Reason' => 'Register',
  2201. ),
  2202. )
  2203. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2204. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  2205. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  2206. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2207. [ info ] [ DB ] INIT mysql
  2208. [ info ] [ LOG ] INIT File
  2209. ---------------------------------------------------------------
  2210. [ 2021-09-24T14:03:58+08:00 ] 106.55.17.239 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463716181-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2211. [运行时间:0.009594s] [吞吐率:104.23req/s] [内存消耗:622.98kb] [文件加载:136]
  2212. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2213. [ info ] [ CACHE ] INIT File
  2214. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000190s ]
  2215. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2216. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2217. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2218. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  2219. [ info ] [ ROUTE ] array (
  2220. 'type' => 'module',
  2221. 'module' =>
  2222. array (
  2223. 0 => 'api',
  2224. 1 => 'tenim',
  2225. 2 => 'callback',
  2226. ),
  2227. )
  2228. [ info ] [ HEADER ] array (
  2229. 'content-type' => 'application/json',
  2230. 'content-length' => '169',
  2231. 'connection' => 'keep-alive',
  2232. 'host' => 'voicechat.lanmaonet.com',
  2233. )
  2234. [ info ] [ PARAM ] array (
  2235. 'CallbackCommand' => 'State.StateChange',
  2236. 'ClientIP' => '27.17.133.90',
  2237. 'OptPlatform' => 'Android',
  2238. 'RequestId' => '2463716181-144115261584051313-Login-Register',
  2239. 'SdkAppid' => '1400556860',
  2240. 'contenttype' => 'json',
  2241. 'EventTime' => 1632463438529,
  2242. 'KickedDevice' =>
  2243. array (
  2244. 0 =>
  2245. array (
  2246. 'Platform' => 'Android',
  2247. ),
  2248. ),
  2249. 'Info' =>
  2250. array (
  2251. 'To_Account' => '96',
  2252. 'Action' => 'Login',
  2253. 'Reason' => 'Register',
  2254. ),
  2255. )
  2256. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2257. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  2258. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  2259. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2260. [ info ] [ DB ] INIT mysql
  2261. [ info ] [ LOG ] INIT File
  2262. ---------------------------------------------------------------
  2263. [ 2021-09-24T14:12:03+08:00 ] 106.55.253.232 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463736081-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2264. [运行时间:0.007523s] [吞吐率:132.92req/s] [内存消耗:620.98kb] [文件加载:136]
  2265. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2266. [ info ] [ CACHE ] INIT File
  2267. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000154s ]
  2268. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2269. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2270. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2271. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  2272. [ info ] [ ROUTE ] array (
  2273. 'type' => 'module',
  2274. 'module' =>
  2275. array (
  2276. 0 => 'api',
  2277. 1 => 'tenim',
  2278. 2 => 'callback',
  2279. ),
  2280. )
  2281. [ info ] [ HEADER ] array (
  2282. 'content-type' => 'application/json',
  2283. 'content-length' => '129',
  2284. 'connection' => 'keep-alive',
  2285. 'host' => 'voicechat.lanmaonet.com',
  2286. )
  2287. [ info ] [ PARAM ] array (
  2288. 'CallbackCommand' => 'State.StateChange',
  2289. 'ClientIP' => '27.17.133.90',
  2290. 'OptPlatform' => 'Android',
  2291. 'RequestId' => '2463736081-144115261584051313-Login-Register',
  2292. 'SdkAppid' => '1400556860',
  2293. 'contenttype' => 'json',
  2294. 'EventTime' => 1632463923121,
  2295. 'Info' =>
  2296. array (
  2297. 'To_Account' => '96',
  2298. 'Action' => 'Login',
  2299. 'Reason' => 'Register',
  2300. ),
  2301. )
  2302. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2303. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2304. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  2305. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2306. [ info ] [ DB ] INIT mysql
  2307. [ info ] [ LOG ] INIT File
  2308. ---------------------------------------------------------------
  2309. [ 2021-09-24T14:12:03+08:00 ] 106.55.253.232 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463736079-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2310. [运行时间:0.382329s] [吞吐率:2.62req/s] [内存消耗:690.14kb] [文件加载:140]
  2311. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2312. [ info ] [ CACHE ] INIT File
  2313. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000186s ]
  2314. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  2315. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  2316. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2317. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  2318. [ info ] [ ROUTE ] array (
  2319. 'type' => 'module',
  2320. 'module' =>
  2321. array (
  2322. 0 => 'api',
  2323. 1 => 'tenim',
  2324. 2 => 'callback',
  2325. ),
  2326. )
  2327. [ info ] [ HEADER ] array (
  2328. 'content-type' => 'application/json',
  2329. 'content-length' => '135',
  2330. 'connection' => 'keep-alive',
  2331. 'host' => 'voicechat.lanmaonet.com',
  2332. )
  2333. [ info ] [ PARAM ] array (
  2334. 'CallbackCommand' => 'State.StateChange',
  2335. 'ClientIP' => '27.17.133.90',
  2336. 'OptPlatform' => 'Android',
  2337. 'RequestId' => '2463736079-144115261584051313-Disconnect-LinkClose',
  2338. 'SdkAppid' => '1400556860',
  2339. 'contenttype' => 'json',
  2340. 'EventTime' => 1632463923049,
  2341. 'Info' =>
  2342. array (
  2343. 'To_Account' => '96',
  2344. 'Action' => 'Disconnect',
  2345. 'Reason' => 'LinkClose',
  2346. ),
  2347. )
  2348. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2349. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  2350. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  2351. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2352. [ info ] [ DB ] INIT mysql
  2353. [ info ] [ LOG ] INIT File
  2354. ---------------------------------------------------------------
  2355. [ 2021-09-24T14:18:11+08:00 ] 119.29.77.192 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463751013-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2356. [运行时间:0.006820s] [吞吐率:146.63req/s] [内存消耗:620.98kb] [文件加载:136]
  2357. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2358. [ info ] [ CACHE ] INIT File
  2359. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000137s ]
  2360. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2361. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  2362. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2363. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  2364. [ info ] [ ROUTE ] array (
  2365. 'type' => 'module',
  2366. 'module' =>
  2367. array (
  2368. 0 => 'api',
  2369. 1 => 'tenim',
  2370. 2 => 'callback',
  2371. ),
  2372. )
  2373. [ info ] [ HEADER ] array (
  2374. 'content-type' => 'application/json',
  2375. 'content-length' => '129',
  2376. 'connection' => 'keep-alive',
  2377. 'host' => 'voicechat.lanmaonet.com',
  2378. )
  2379. [ info ] [ PARAM ] array (
  2380. 'CallbackCommand' => 'State.StateChange',
  2381. 'ClientIP' => '27.17.133.90',
  2382. 'OptPlatform' => 'Android',
  2383. 'RequestId' => '2463751013-144115261584051313-Login-Register',
  2384. 'SdkAppid' => '1400556860',
  2385. 'contenttype' => 'json',
  2386. 'EventTime' => 1632464291371,
  2387. 'Info' =>
  2388. array (
  2389. 'To_Account' => '96',
  2390. 'Action' => 'Login',
  2391. 'Reason' => 'Register',
  2392. ),
  2393. )
  2394. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2395. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  2396. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000042s ]
  2397. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2398. [ info ] [ DB ] INIT mysql
  2399. [ info ] [ LOG ] INIT File
  2400. ---------------------------------------------------------------
  2401. [ 2021-09-24T14:18:11+08:00 ] 146.56.231.200 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463751010-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2402. [运行时间:0.409070s] [吞吐率:2.44req/s] [内存消耗:690.14kb] [文件加载:140]
  2403. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2404. [ info ] [ CACHE ] INIT File
  2405. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000212s ]
  2406. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2407. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2408. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2409. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  2410. [ info ] [ ROUTE ] array (
  2411. 'type' => 'module',
  2412. 'module' =>
  2413. array (
  2414. 0 => 'api',
  2415. 1 => 'tenim',
  2416. 2 => 'callback',
  2417. ),
  2418. )
  2419. [ info ] [ HEADER ] array (
  2420. 'content-type' => 'application/json',
  2421. 'content-length' => '135',
  2422. 'connection' => 'keep-alive',
  2423. 'host' => 'voicechat.lanmaonet.com',
  2424. )
  2425. [ info ] [ PARAM ] array (
  2426. 'CallbackCommand' => 'State.StateChange',
  2427. 'ClientIP' => '27.17.133.90',
  2428. 'OptPlatform' => 'Android',
  2429. 'RequestId' => '2463751010-144115261584051313-Disconnect-LinkClose',
  2430. 'SdkAppid' => '1400556860',
  2431. 'contenttype' => 'json',
  2432. 'EventTime' => 1632464291273,
  2433. 'Info' =>
  2434. array (
  2435. 'To_Account' => '96',
  2436. 'Action' => 'Disconnect',
  2437. 'Reason' => 'LinkClose',
  2438. ),
  2439. )
  2440. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2441. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  2442. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  2443. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2444. [ info ] [ DB ] INIT mysql
  2445. [ info ] [ LOG ] INIT File
  2446. ---------------------------------------------------------------
  2447. [ 2021-09-24T14:22:57+08:00 ] 81.71.1.123 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463762457-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2448. [运行时间:0.009773s] [吞吐率:102.32req/s] [内存消耗:620.98kb] [文件加载:136]
  2449. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2450. [ info ] [ CACHE ] INIT File
  2451. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000203s ]
  2452. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  2453. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  2454. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2455. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  2456. [ info ] [ ROUTE ] array (
  2457. 'type' => 'module',
  2458. 'module' =>
  2459. array (
  2460. 0 => 'api',
  2461. 1 => 'tenim',
  2462. 2 => 'callback',
  2463. ),
  2464. )
  2465. [ info ] [ HEADER ] array (
  2466. 'content-type' => 'application/json',
  2467. 'content-length' => '129',
  2468. 'connection' => 'keep-alive',
  2469. 'host' => 'voicechat.lanmaonet.com',
  2470. )
  2471. [ info ] [ PARAM ] array (
  2472. 'CallbackCommand' => 'State.StateChange',
  2473. 'ClientIP' => '27.17.133.90',
  2474. 'OptPlatform' => 'Android',
  2475. 'RequestId' => '2463762457-144115261584051313-Login-Register',
  2476. 'SdkAppid' => '1400556860',
  2477. 'contenttype' => 'json',
  2478. 'EventTime' => 1632464577034,
  2479. 'Info' =>
  2480. array (
  2481. 'To_Account' => '96',
  2482. 'Action' => 'Login',
  2483. 'Reason' => 'Register',
  2484. ),
  2485. )
  2486. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2487. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  2488. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000087s ]
  2489. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2490. [ info ] [ DB ] INIT mysql
  2491. [ info ] [ LOG ] INIT File
  2492. ---------------------------------------------------------------
  2493. [ 2021-09-24T14:22:57+08:00 ] 119.45.44.121 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463762455-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2494. [运行时间:0.308188s] [吞吐率:3.24req/s] [内存消耗:690.14kb] [文件加载:140]
  2495. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2496. [ info ] [ CACHE ] INIT File
  2497. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000139s ]
  2498. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2499. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  2500. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2501. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  2502. [ info ] [ ROUTE ] array (
  2503. 'type' => 'module',
  2504. 'module' =>
  2505. array (
  2506. 0 => 'api',
  2507. 1 => 'tenim',
  2508. 2 => 'callback',
  2509. ),
  2510. )
  2511. [ info ] [ HEADER ] array (
  2512. 'content-type' => 'application/json',
  2513. 'content-length' => '135',
  2514. 'connection' => 'keep-alive',
  2515. 'host' => 'voicechat.lanmaonet.com',
  2516. )
  2517. [ info ] [ PARAM ] array (
  2518. 'CallbackCommand' => 'State.StateChange',
  2519. 'ClientIP' => '27.17.133.90',
  2520. 'OptPlatform' => 'Android',
  2521. 'RequestId' => '2463762455-144115261584051313-Disconnect-LinkClose',
  2522. 'SdkAppid' => '1400556860',
  2523. 'contenttype' => 'json',
  2524. 'EventTime' => 1632464577000,
  2525. 'Info' =>
  2526. array (
  2527. 'To_Account' => '96',
  2528. 'Action' => 'Disconnect',
  2529. 'Reason' => 'LinkClose',
  2530. ),
  2531. )
  2532. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2533. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  2534. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000047s ]
  2535. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2536. [ info ] [ DB ] INIT mysql
  2537. [ info ] [ LOG ] INIT File
  2538. ---------------------------------------------------------------
  2539. [ 2021-09-24T14:32:35+08:00 ] 119.29.74.236 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463785619-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2540. [运行时间:0.361085s] [吞吐率:2.77req/s] [内存消耗:690.14kb] [文件加载:140]
  2541. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  2542. [ info ] [ CACHE ] INIT File
  2543. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000234s ]
  2544. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  2545. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  2546. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2547. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000047s ]
  2548. [ info ] [ ROUTE ] array (
  2549. 'type' => 'module',
  2550. 'module' =>
  2551. array (
  2552. 0 => 'api',
  2553. 1 => 'tenim',
  2554. 2 => 'callback',
  2555. ),
  2556. )
  2557. [ info ] [ HEADER ] array (
  2558. 'content-type' => 'application/json',
  2559. 'content-length' => '135',
  2560. 'connection' => 'keep-alive',
  2561. 'host' => 'voicechat.lanmaonet.com',
  2562. )
  2563. [ info ] [ PARAM ] array (
  2564. 'CallbackCommand' => 'State.StateChange',
  2565. 'ClientIP' => '27.17.133.90',
  2566. 'OptPlatform' => 'Android',
  2567. 'RequestId' => '2463785619-144115261584051313-Disconnect-LinkClose',
  2568. 'SdkAppid' => '1400556860',
  2569. 'contenttype' => 'json',
  2570. 'EventTime' => 1632465154669,
  2571. 'Info' =>
  2572. array (
  2573. 'To_Account' => '96',
  2574. 'Action' => 'Disconnect',
  2575. 'Reason' => 'LinkClose',
  2576. ),
  2577. )
  2578. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2579. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000077s ]
  2580. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000071s ]
  2581. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2582. [ info ] [ DB ] INIT mysql
  2583. [ info ] [ LOG ] INIT File
  2584. ---------------------------------------------------------------
  2585. [ 2021-09-24T14:32:35+08:00 ] 119.45.160.30 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463785623-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2586. [运行时间:0.019792s] [吞吐率:50.53req/s] [内存消耗:620.98kb] [文件加载:136]
  2587. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2588. [ info ] [ CACHE ] INIT File
  2589. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000234s ]
  2590. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  2591. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  2592. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2593. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  2594. [ info ] [ ROUTE ] array (
  2595. 'type' => 'module',
  2596. 'module' =>
  2597. array (
  2598. 0 => 'api',
  2599. 1 => 'tenim',
  2600. 2 => 'callback',
  2601. ),
  2602. )
  2603. [ info ] [ HEADER ] array (
  2604. 'content-type' => 'application/json',
  2605. 'content-length' => '129',
  2606. 'connection' => 'keep-alive',
  2607. 'host' => 'voicechat.lanmaonet.com',
  2608. )
  2609. [ info ] [ PARAM ] array (
  2610. 'CallbackCommand' => 'State.StateChange',
  2611. 'ClientIP' => '27.17.133.90',
  2612. 'OptPlatform' => 'Android',
  2613. 'RequestId' => '2463785623-144115261584051313-Login-Register',
  2614. 'SdkAppid' => '1400556860',
  2615. 'contenttype' => 'json',
  2616. 'EventTime' => 1632465154970,
  2617. 'Info' =>
  2618. array (
  2619. 'To_Account' => '96',
  2620. 'Action' => 'Login',
  2621. 'Reason' => 'Register',
  2622. ),
  2623. )
  2624. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2625. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000073s ]
  2626. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000080s ]
  2627. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2628. [ info ] [ DB ] INIT mysql
  2629. [ info ] [ LOG ] INIT File
  2630. ---------------------------------------------------------------
  2631. [ 2021-09-24T15:08:44+08:00 ] 119.29.74.24 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2466479247-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2632. [运行时间:0.008106s] [吞吐率:123.37req/s] [内存消耗:622.98kb] [文件加载:136]
  2633. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  2634. [ info ] [ CACHE ] INIT File
  2635. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000183s ]
  2636. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  2637. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  2638. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2639. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  2640. [ info ] [ ROUTE ] array (
  2641. 'type' => 'module',
  2642. 'module' =>
  2643. array (
  2644. 0 => 'api',
  2645. 1 => 'tenim',
  2646. 2 => 'callback',
  2647. ),
  2648. )
  2649. [ info ] [ HEADER ] array (
  2650. 'content-type' => 'application/json',
  2651. 'content-length' => '169',
  2652. 'connection' => 'keep-alive',
  2653. 'host' => 'voicechat.lanmaonet.com',
  2654. )
  2655. [ info ] [ PARAM ] array (
  2656. 'CallbackCommand' => 'State.StateChange',
  2657. 'ClientIP' => '27.17.133.90',
  2658. 'OptPlatform' => 'Android',
  2659. 'RequestId' => '2466479247-144115261584051313-Login-Register',
  2660. 'SdkAppid' => '1400556860',
  2661. 'contenttype' => 'json',
  2662. 'EventTime' => 1632467324479,
  2663. 'KickedDevice' =>
  2664. array (
  2665. 0 =>
  2666. array (
  2667. 'Platform' => 'Android',
  2668. ),
  2669. ),
  2670. 'Info' =>
  2671. array (
  2672. 'To_Account' => '96',
  2673. 'Action' => 'Login',
  2674. 'Reason' => 'Register',
  2675. ),
  2676. )
  2677. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2678. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  2679. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  2680. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2681. [ info ] [ DB ] INIT mysql
  2682. [ info ] [ LOG ] INIT File
  2683. ---------------------------------------------------------------
  2684. [ 2021-09-24T15:08:44+08:00 ] 118.89.64.186 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463873133-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2685. [运行时间:0.333042s] [吞吐率:3.00req/s] [内存消耗:690.14kb] [文件加载:140]
  2686. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2687. [ info ] [ CACHE ] INIT File
  2688. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000217s ]
  2689. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2690. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  2691. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2692. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  2693. [ info ] [ ROUTE ] array (
  2694. 'type' => 'module',
  2695. 'module' =>
  2696. array (
  2697. 0 => 'api',
  2698. 1 => 'tenim',
  2699. 2 => 'callback',
  2700. ),
  2701. )
  2702. [ info ] [ HEADER ] array (
  2703. 'content-type' => 'application/json',
  2704. 'content-length' => '135',
  2705. 'connection' => 'keep-alive',
  2706. 'host' => 'voicechat.lanmaonet.com',
  2707. )
  2708. [ info ] [ PARAM ] array (
  2709. 'CallbackCommand' => 'State.StateChange',
  2710. 'ClientIP' => '27.17.133.90',
  2711. 'OptPlatform' => 'Android',
  2712. 'RequestId' => '2463873133-144115261584051313-Disconnect-LinkClose',
  2713. 'SdkAppid' => '1400556860',
  2714. 'contenttype' => 'json',
  2715. 'EventTime' => 1632467324478,
  2716. 'Info' =>
  2717. array (
  2718. 'To_Account' => '96',
  2719. 'Action' => 'Disconnect',
  2720. 'Reason' => 'LinkClose',
  2721. ),
  2722. )
  2723. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2724. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  2725. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  2726. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2727. [ info ] [ DB ] INIT mysql
  2728. [ info ] [ LOG ] INIT File
  2729. ---------------------------------------------------------------
  2730. [ 2021-09-24T15:14:08+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  2731. [运行时间:0.007463s] [吞吐率:133.99req/s] [内存消耗:338.22kb] [文件加载:123]
  2732. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2733. [ info ] [ CACHE ] INIT File
  2734. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000220s ]
  2735. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  2736. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2737. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2738. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  2739. [ info ] [ ROUTE ] array (
  2740. 'type' => 'module',
  2741. 'module' =>
  2742. array (
  2743. 0 => 'apple-app-site-association',
  2744. 1 => NULL,
  2745. 2 => NULL,
  2746. ),
  2747. )
  2748. [ info ] [ HEADER ] array (
  2749. 'accept-encoding' => 'gzip',
  2750. 'user-agent' => 'AASA-Bot/1.0.0',
  2751. 'host' => 'voicechat.lanmaonet.com',
  2752. 'content-type' => '',
  2753. 'content-length' => '',
  2754. )
  2755. [ info ] [ PARAM ] array (
  2756. )
  2757. [ info ] [ LOG ] INIT File
  2758. ---------------------------------------------------------------
  2759. [ 2021-09-24T15:18:04+08:00 ] 119.29.72.101 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463896430-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2760. [运行时间:0.020078s] [吞吐率:49.81req/s] [内存消耗:622.98kb] [文件加载:136]
  2761. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2762. [ info ] [ CACHE ] INIT File
  2763. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000244s ]
  2764. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2765. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  2766. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2767. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  2768. [ info ] [ ROUTE ] array (
  2769. 'type' => 'module',
  2770. 'module' =>
  2771. array (
  2772. 0 => 'api',
  2773. 1 => 'tenim',
  2774. 2 => 'callback',
  2775. ),
  2776. )
  2777. [ info ] [ HEADER ] array (
  2778. 'content-type' => 'application/json',
  2779. 'content-length' => '169',
  2780. 'connection' => 'keep-alive',
  2781. 'host' => 'voicechat.lanmaonet.com',
  2782. )
  2783. [ info ] [ PARAM ] array (
  2784. 'CallbackCommand' => 'State.StateChange',
  2785. 'ClientIP' => '27.17.133.90',
  2786. 'OptPlatform' => 'Android',
  2787. 'RequestId' => '2463896430-144115261584051313-Login-Register',
  2788. 'SdkAppid' => '1400556860',
  2789. 'contenttype' => 'json',
  2790. 'EventTime' => 1632467884594,
  2791. 'KickedDevice' =>
  2792. array (
  2793. 0 =>
  2794. array (
  2795. 'Platform' => 'Android',
  2796. ),
  2797. ),
  2798. 'Info' =>
  2799. array (
  2800. 'To_Account' => '96',
  2801. 'Action' => 'Login',
  2802. 'Reason' => 'Register',
  2803. ),
  2804. )
  2805. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2806. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  2807. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  2808. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2809. [ info ] [ DB ] INIT mysql
  2810. [ info ] [ LOG ] INIT File
  2811. ---------------------------------------------------------------
  2812. [ 2021-09-24T15:18:05+08:00 ] 119.29.73.107 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2466501499-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2813. [运行时间:0.394892s] [吞吐率:2.53req/s] [内存消耗:690.14kb] [文件加载:140]
  2814. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2815. [ info ] [ CACHE ] INIT File
  2816. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000171s ]
  2817. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  2818. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  2819. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2820. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  2821. [ info ] [ ROUTE ] array (
  2822. 'type' => 'module',
  2823. 'module' =>
  2824. array (
  2825. 0 => 'api',
  2826. 1 => 'tenim',
  2827. 2 => 'callback',
  2828. ),
  2829. )
  2830. [ info ] [ HEADER ] array (
  2831. 'content-type' => 'application/json',
  2832. 'content-length' => '135',
  2833. 'connection' => 'keep-alive',
  2834. 'host' => 'voicechat.lanmaonet.com',
  2835. )
  2836. [ info ] [ PARAM ] array (
  2837. 'CallbackCommand' => 'State.StateChange',
  2838. 'ClientIP' => '27.17.133.90',
  2839. 'OptPlatform' => 'Android',
  2840. 'RequestId' => '2466501499-144115261584051313-Disconnect-LinkClose',
  2841. 'SdkAppid' => '1400556860',
  2842. 'contenttype' => 'json',
  2843. 'EventTime' => 1632467884551,
  2844. 'Info' =>
  2845. array (
  2846. 'To_Account' => '96',
  2847. 'Action' => 'Disconnect',
  2848. 'Reason' => 'LinkClose',
  2849. ),
  2850. )
  2851. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2852. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  2853. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000047s ]
  2854. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2855. [ info ] [ DB ] INIT mysql
  2856. [ info ] [ LOG ] INIT File
  2857. ---------------------------------------------------------------
  2858. [ 2021-09-24T15:23:03+08:00 ] 154.8.246.202 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463908896-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2859. [运行时间:0.009718s] [吞吐率:102.90req/s] [内存消耗:620.98kb] [文件加载:136]
  2860. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2861. [ info ] [ CACHE ] INIT File
  2862. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000158s ]
  2863. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2864. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2865. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2866. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  2867. [ info ] [ ROUTE ] array (
  2868. 'type' => 'module',
  2869. 'module' =>
  2870. array (
  2871. 0 => 'api',
  2872. 1 => 'tenim',
  2873. 2 => 'callback',
  2874. ),
  2875. )
  2876. [ info ] [ HEADER ] array (
  2877. 'content-type' => 'application/json',
  2878. 'content-length' => '129',
  2879. 'connection' => 'keep-alive',
  2880. 'host' => 'voicechat.lanmaonet.com',
  2881. )
  2882. [ info ] [ PARAM ] array (
  2883. 'CallbackCommand' => 'State.StateChange',
  2884. 'ClientIP' => '27.17.133.90',
  2885. 'OptPlatform' => 'Android',
  2886. 'RequestId' => '2463908896-144115261584051313-Login-Register',
  2887. 'SdkAppid' => '1400556860',
  2888. 'contenttype' => 'json',
  2889. 'EventTime' => 1632468183485,
  2890. 'Info' =>
  2891. array (
  2892. 'To_Account' => '96',
  2893. 'Action' => 'Login',
  2894. 'Reason' => 'Register',
  2895. ),
  2896. )
  2897. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2898. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  2899. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  2900. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2901. [ info ] [ DB ] INIT mysql
  2902. [ info ] [ LOG ] INIT File
  2903. ---------------------------------------------------------------
  2904. [ 2021-09-24T15:23:03+08:00 ] 154.8.246.202 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463908892-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2905. [运行时间:0.374068s] [吞吐率:2.67req/s] [内存消耗:690.14kb] [文件加载:140]
  2906. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2907. [ info ] [ CACHE ] INIT File
  2908. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000208s ]
  2909. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2910. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2911. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2912. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  2913. [ info ] [ ROUTE ] array (
  2914. 'type' => 'module',
  2915. 'module' =>
  2916. array (
  2917. 0 => 'api',
  2918. 1 => 'tenim',
  2919. 2 => 'callback',
  2920. ),
  2921. )
  2922. [ info ] [ HEADER ] array (
  2923. 'content-type' => 'application/json',
  2924. 'content-length' => '135',
  2925. 'connection' => 'keep-alive',
  2926. 'host' => 'voicechat.lanmaonet.com',
  2927. )
  2928. [ info ] [ PARAM ] array (
  2929. 'CallbackCommand' => 'State.StateChange',
  2930. 'ClientIP' => '27.17.133.90',
  2931. 'OptPlatform' => 'Android',
  2932. 'RequestId' => '2463908892-144115261584051313-Disconnect-LinkClose',
  2933. 'SdkAppid' => '1400556860',
  2934. 'contenttype' => 'json',
  2935. 'EventTime' => 1632468183406,
  2936. 'Info' =>
  2937. array (
  2938. 'To_Account' => '96',
  2939. 'Action' => 'Disconnect',
  2940. 'Reason' => 'LinkClose',
  2941. ),
  2942. )
  2943. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2944. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  2945. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  2946. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2947. [ info ] [ DB ] INIT mysql
  2948. [ info ] [ LOG ] INIT File
  2949. ---------------------------------------------------------------
  2950. [ 2021-09-24T15:29:25+08:00 ] 106.55.17.239 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463924915-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  2951. [运行时间:0.007707s] [吞吐率:129.75req/s] [内存消耗:620.98kb] [文件加载:136]
  2952. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2953. [ info ] [ CACHE ] INIT File
  2954. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  2955. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2956. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  2957. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2958. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2959. [ info ] [ ROUTE ] array (
  2960. 'type' => 'module',
  2961. 'module' =>
  2962. array (
  2963. 0 => 'api',
  2964. 1 => 'tenim',
  2965. 2 => 'callback',
  2966. ),
  2967. )
  2968. [ info ] [ HEADER ] array (
  2969. 'content-type' => 'application/json',
  2970. 'content-length' => '129',
  2971. 'connection' => 'keep-alive',
  2972. 'host' => 'voicechat.lanmaonet.com',
  2973. )
  2974. [ info ] [ PARAM ] array (
  2975. 'CallbackCommand' => 'State.StateChange',
  2976. 'ClientIP' => '27.17.133.90',
  2977. 'OptPlatform' => 'Android',
  2978. 'RequestId' => '2463924915-144115261584051313-Login-Register',
  2979. 'SdkAppid' => '1400556860',
  2980. 'contenttype' => 'json',
  2981. 'EventTime' => 1632468564976,
  2982. 'Info' =>
  2983. array (
  2984. 'To_Account' => '96',
  2985. 'Action' => 'Login',
  2986. 'Reason' => 'Register',
  2987. ),
  2988. )
  2989. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2990. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  2991. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  2992. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2993. [ info ] [ DB ] INIT mysql
  2994. [ info ] [ LOG ] INIT File
  2995. ---------------------------------------------------------------
  2996. [ 2021-09-24T15:29:25+08:00 ] 106.55.253.232 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463924913-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2997. [运行时间:0.340125s] [吞吐率:2.94req/s] [内存消耗:690.14kb] [文件加载:140]
  2998. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2999. [ info ] [ CACHE ] INIT File
  3000. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000207s ]
  3001. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  3002. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  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.000031s ]
  3005. [ info ] [ ROUTE ] array (
  3006. 'type' => 'module',
  3007. 'module' =>
  3008. array (
  3009. 0 => 'api',
  3010. 1 => 'tenim',
  3011. 2 => 'callback',
  3012. ),
  3013. )
  3014. [ info ] [ HEADER ] array (
  3015. 'content-type' => 'application/json',
  3016. 'content-length' => '135',
  3017. 'connection' => 'keep-alive',
  3018. 'host' => 'voicechat.lanmaonet.com',
  3019. )
  3020. [ info ] [ PARAM ] array (
  3021. 'CallbackCommand' => 'State.StateChange',
  3022. 'ClientIP' => '27.17.133.90',
  3023. 'OptPlatform' => 'Android',
  3024. 'RequestId' => '2463924913-144115261584051313-Disconnect-LinkClose',
  3025. 'SdkAppid' => '1400556860',
  3026. 'contenttype' => 'json',
  3027. 'EventTime' => 1632468564896,
  3028. 'Info' =>
  3029. array (
  3030. 'To_Account' => '96',
  3031. 'Action' => 'Disconnect',
  3032. 'Reason' => 'LinkClose',
  3033. ),
  3034. )
  3035. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3036. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  3037. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  3038. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3039. [ info ] [ DB ] INIT mysql
  3040. [ info ] [ LOG ] INIT File
  3041. ---------------------------------------------------------------
  3042. [ 2021-09-24T15:31:07+08:00 ] 211.97.142.28 GET voicechat.lanmaonet.com/apple-app-site-association
  3043. [运行时间:0.003833s] [吞吐率:260.89req/s] [内存消耗:340.17kb] [文件加载:123]
  3044. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3045. [ info ] [ CACHE ] INIT File
  3046. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000220s ]
  3047. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  3048. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  3049. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3050. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  3051. [ info ] [ ROUTE ] array (
  3052. 'type' => 'module',
  3053. 'module' =>
  3054. array (
  3055. 0 => 'apple-app-site-association',
  3056. 1 => NULL,
  3057. 2 => NULL,
  3058. ),
  3059. )
  3060. [ info ] [ HEADER ] array (
  3061. 'user-agent' => 'swcd (unknown version) CFNetwork/1128.0.1 Darwin/19.6.0',
  3062. 'accept-encoding' => 'gzip, deflate, br',
  3063. 'connection' => 'keep-alive',
  3064. 'accept-language' => 'zh-cn',
  3065. 'accept' => '*/*',
  3066. 'host' => 'voicechat.lanmaonet.com',
  3067. 'content-type' => '',
  3068. 'content-length' => '',
  3069. )
  3070. [ info ] [ PARAM ] array (
  3071. )
  3072. [ info ] [ LOG ] INIT File
  3073. ---------------------------------------------------------------
  3074. [ 2021-09-24T15:35:09+08:00 ] 119.29.72.101 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463938969-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  3075. [运行时间:0.011813s] [吞吐率:84.65req/s] [内存消耗:620.98kb] [文件加载:136]
  3076. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3077. [ info ] [ CACHE ] INIT File
  3078. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000156s ]
  3079. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  3080. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  3081. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3082. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3083. [ info ] [ ROUTE ] array (
  3084. 'type' => 'module',
  3085. 'module' =>
  3086. array (
  3087. 0 => 'api',
  3088. 1 => 'tenim',
  3089. 2 => 'callback',
  3090. ),
  3091. )
  3092. [ info ] [ HEADER ] array (
  3093. 'content-type' => 'application/json',
  3094. 'content-length' => '129',
  3095. 'connection' => 'keep-alive',
  3096. 'host' => 'voicechat.lanmaonet.com',
  3097. )
  3098. [ info ] [ PARAM ] array (
  3099. 'CallbackCommand' => 'State.StateChange',
  3100. 'ClientIP' => '27.17.133.90',
  3101. 'OptPlatform' => 'Android',
  3102. 'RequestId' => '2463938969-144115261584051313-Login-Register',
  3103. 'SdkAppid' => '1400556860',
  3104. 'contenttype' => 'json',
  3105. 'EventTime' => 1632468909591,
  3106. 'Info' =>
  3107. array (
  3108. 'To_Account' => '96',
  3109. 'Action' => 'Login',
  3110. 'Reason' => 'Register',
  3111. ),
  3112. )
  3113. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3114. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000044s ]
  3115. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  3116. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3117. [ info ] [ DB ] INIT mysql
  3118. [ info ] [ LOG ] INIT File
  3119. ---------------------------------------------------------------
  3120. [ 2021-09-24T15:35:09+08:00 ] 106.52.165.159 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2463938960-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  3121. [运行时间:0.363794s] [吞吐率:2.75req/s] [内存消耗:690.14kb] [文件加载:140]
  3122. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3123. [ info ] [ CACHE ] INIT File
  3124. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000200s ]
  3125. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3126. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  3127. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3128. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  3129. [ info ] [ ROUTE ] array (
  3130. 'type' => 'module',
  3131. 'module' =>
  3132. array (
  3133. 0 => 'api',
  3134. 1 => 'tenim',
  3135. 2 => 'callback',
  3136. ),
  3137. )
  3138. [ info ] [ HEADER ] array (
  3139. 'content-type' => 'application/json',
  3140. 'content-length' => '135',
  3141. 'connection' => 'keep-alive',
  3142. 'host' => 'voicechat.lanmaonet.com',
  3143. )
  3144. [ info ] [ PARAM ] array (
  3145. 'CallbackCommand' => 'State.StateChange',
  3146. 'ClientIP' => '27.17.133.90',
  3147. 'OptPlatform' => 'Android',
  3148. 'RequestId' => '2463938960-144115261584051313-Disconnect-LinkClose',
  3149. 'SdkAppid' => '1400556860',
  3150. 'contenttype' => 'json',
  3151. 'EventTime' => 1632468909448,
  3152. 'Info' =>
  3153. array (
  3154. 'To_Account' => '96',
  3155. 'Action' => 'Disconnect',
  3156. 'Reason' => 'LinkClose',
  3157. ),
  3158. )
  3159. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3160. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  3161. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  3162. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3163. [ info ] [ DB ] INIT mysql
  3164. [ info ] [ LOG ] INIT File
  3165. ---------------------------------------------------------------
  3166. [ 2021-09-24T17:01:08+08:00 ] 40.77.167.105 GET voicechat.lanmaonet.com/
  3167. [运行时间:0.009331s] [吞吐率:107.17req/s] [内存消耗:468.58kb] [文件加载:135]
  3168. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3169. [ info ] [ CACHE ] INIT File
  3170. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000207s ]
  3171. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  3172. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  3173. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3174. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  3175. [ info ] [ ROUTE ] array (
  3176. 'type' => 'module',
  3177. 'module' =>
  3178. array (
  3179. 0 => '',
  3180. 1 => NULL,
  3181. 2 => NULL,
  3182. ),
  3183. )
  3184. [ info ] [ HEADER ] array (
  3185. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  3186. 'from' => 'bingbot(at)microsoft.com',
  3187. 'accept-encoding' => 'gzip, deflate',
  3188. 'accept' => '*/*',
  3189. 'pragma' => 'no-cache',
  3190. 'cache-control' => 'no-cache',
  3191. 'host' => 'voicechat.lanmaonet.com',
  3192. 'content-type' => '',
  3193. 'content-length' => '',
  3194. )
  3195. [ info ] [ PARAM ] array (
  3196. )
  3197. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  3198. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  3199. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  3200. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000037s ]
  3201. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  3202. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  3203. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  3204. 0 => 'user',
  3205. 1 => 'site',
  3206. 2 => 'config',
  3207. ) ]
  3208. [ info ] [ LOG ] INIT File
  3209. ---------------------------------------------------------------
  3210. [ 2021-09-24T17:19:32+08:00 ] 118.89.64.186 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464204943-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  3211. [运行时间:0.410302s] [吞吐率:2.44req/s] [内存消耗:690.14kb] [文件加载:140]
  3212. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3213. [ info ] [ CACHE ] INIT File
  3214. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000180s ]
  3215. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  3216. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  3217. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3218. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  3219. [ info ] [ ROUTE ] array (
  3220. 'type' => 'module',
  3221. 'module' =>
  3222. array (
  3223. 0 => 'api',
  3224. 1 => 'tenim',
  3225. 2 => 'callback',
  3226. ),
  3227. )
  3228. [ info ] [ HEADER ] array (
  3229. 'content-type' => 'application/json',
  3230. 'content-length' => '135',
  3231. 'connection' => 'keep-alive',
  3232. 'host' => 'voicechat.lanmaonet.com',
  3233. )
  3234. [ info ] [ PARAM ] array (
  3235. 'CallbackCommand' => 'State.StateChange',
  3236. 'ClientIP' => '27.17.133.90',
  3237. 'OptPlatform' => 'Android',
  3238. 'RequestId' => '2464204943-144115261584051313-Disconnect-LinkClose',
  3239. 'SdkAppid' => '1400556860',
  3240. 'contenttype' => 'json',
  3241. 'EventTime' => 1632475172426,
  3242. 'Info' =>
  3243. array (
  3244. 'To_Account' => '96',
  3245. 'Action' => 'Disconnect',
  3246. 'Reason' => 'LinkClose',
  3247. ),
  3248. )
  3249. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3250. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  3251. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  3252. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3253. [ info ] [ DB ] INIT mysql
  3254. [ info ] [ LOG ] INIT File
  3255. ---------------------------------------------------------------
  3256. [ 2021-09-24T17:19:33+08:00 ] 106.52.32.74 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464204979-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  3257. [运行时间:0.007804s] [吞吐率:128.14req/s] [内存消耗:620.98kb] [文件加载:136]
  3258. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  3259. [ info ] [ CACHE ] INIT File
  3260. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000148s ]
  3261. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  3262. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  3263. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3264. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  3265. [ info ] [ ROUTE ] array (
  3266. 'type' => 'module',
  3267. 'module' =>
  3268. array (
  3269. 0 => 'api',
  3270. 1 => 'tenim',
  3271. 2 => 'callback',
  3272. ),
  3273. )
  3274. [ info ] [ HEADER ] array (
  3275. 'content-type' => 'application/json',
  3276. 'content-length' => '129',
  3277. 'connection' => 'keep-alive',
  3278. 'host' => 'voicechat.lanmaonet.com',
  3279. )
  3280. [ info ] [ PARAM ] array (
  3281. 'CallbackCommand' => 'State.StateChange',
  3282. 'ClientIP' => '27.17.133.90',
  3283. 'OptPlatform' => 'Android',
  3284. 'RequestId' => '2464204979-144115261584051313-Login-Register',
  3285. 'SdkAppid' => '1400556860',
  3286. 'contenttype' => 'json',
  3287. 'EventTime' => 1632475173013,
  3288. 'Info' =>
  3289. array (
  3290. 'To_Account' => '96',
  3291. 'Action' => 'Login',
  3292. 'Reason' => 'Register',
  3293. ),
  3294. )
  3295. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3296. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  3297. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000043s ]
  3298. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3299. [ info ] [ DB ] INIT mysql
  3300. [ info ] [ LOG ] INIT File
  3301. ---------------------------------------------------------------
  3302. [ 2021-09-24T17:37:22+08:00 ] 81.71.1.123 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464250633-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  3303. [运行时间:0.007375s] [吞吐率:135.59req/s] [内存消耗:620.98kb] [文件加载:136]
  3304. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3305. [ info ] [ CACHE ] INIT File
  3306. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000162s ]
  3307. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3308. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000085s ]
  3309. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3310. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  3311. [ info ] [ ROUTE ] array (
  3312. 'type' => 'module',
  3313. 'module' =>
  3314. array (
  3315. 0 => 'api',
  3316. 1 => 'tenim',
  3317. 2 => 'callback',
  3318. ),
  3319. )
  3320. [ info ] [ HEADER ] array (
  3321. 'content-type' => 'application/json',
  3322. 'content-length' => '129',
  3323. 'connection' => 'keep-alive',
  3324. 'host' => 'voicechat.lanmaonet.com',
  3325. )
  3326. [ info ] [ PARAM ] array (
  3327. 'CallbackCommand' => 'State.StateChange',
  3328. 'ClientIP' => '27.17.133.90',
  3329. 'OptPlatform' => 'Android',
  3330. 'RequestId' => '2464250633-144115261584051313-Login-Register',
  3331. 'SdkAppid' => '1400556860',
  3332. 'contenttype' => 'json',
  3333. 'EventTime' => 1632476242805,
  3334. 'Info' =>
  3335. array (
  3336. 'To_Account' => '96',
  3337. 'Action' => 'Login',
  3338. 'Reason' => 'Register',
  3339. ),
  3340. )
  3341. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3342. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  3343. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  3344. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3345. [ info ] [ DB ] INIT mysql
  3346. [ info ] [ LOG ] INIT File
  3347. ---------------------------------------------------------------
  3348. [ 2021-09-24T17:37:23+08:00 ] 119.29.74.236 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464250631-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  3349. [运行时间:0.418957s] [吞吐率:2.39req/s] [内存消耗:690.14kb] [文件加载:140]
  3350. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3351. [ info ] [ CACHE ] INIT File
  3352. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000185s ]
  3353. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000047s ]
  3354. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  3355. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3356. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  3357. [ info ] [ ROUTE ] array (
  3358. 'type' => 'module',
  3359. 'module' =>
  3360. array (
  3361. 0 => 'api',
  3362. 1 => 'tenim',
  3363. 2 => 'callback',
  3364. ),
  3365. )
  3366. [ info ] [ HEADER ] array (
  3367. 'content-type' => 'application/json',
  3368. 'content-length' => '135',
  3369. 'connection' => 'keep-alive',
  3370. 'host' => 'voicechat.lanmaonet.com',
  3371. )
  3372. [ info ] [ PARAM ] array (
  3373. 'CallbackCommand' => 'State.StateChange',
  3374. 'ClientIP' => '27.17.133.90',
  3375. 'OptPlatform' => 'Android',
  3376. 'RequestId' => '2464250631-144115261584051313-Disconnect-LinkClose',
  3377. 'SdkAppid' => '1400556860',
  3378. 'contenttype' => 'json',
  3379. 'EventTime' => 1632476242725,
  3380. 'Info' =>
  3381. array (
  3382. 'To_Account' => '96',
  3383. 'Action' => 'Disconnect',
  3384. 'Reason' => 'LinkClose',
  3385. ),
  3386. )
  3387. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3388. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  3389. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  3390. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3391. [ info ] [ DB ] INIT mysql
  3392. [ info ] [ LOG ] INIT File
  3393. ---------------------------------------------------------------
  3394. [ 2021-09-24T18:14:07+08:00 ] 54.188.15.118 GET voicechat.lanmaonet.com/apple-app-site-association
  3395. [运行时间:0.003538s] [吞吐率:282.64req/s] [内存消耗:338.22kb] [文件加载:123]
  3396. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3397. [ info ] [ CACHE ] INIT File
  3398. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000183s ]
  3399. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  3400. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  3401. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3402. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  3403. [ info ] [ ROUTE ] array (
  3404. 'type' => 'module',
  3405. 'module' =>
  3406. array (
  3407. 0 => 'apple-app-site-association',
  3408. 1 => NULL,
  3409. 2 => NULL,
  3410. ),
  3411. )
  3412. [ info ] [ HEADER ] array (
  3413. 'accept-encoding' => 'gzip',
  3414. 'user-agent' => 'AASA-Bot/1.0.0',
  3415. 'host' => 'voicechat.lanmaonet.com',
  3416. 'content-type' => '',
  3417. 'content-length' => '',
  3418. )
  3419. [ info ] [ PARAM ] array (
  3420. )
  3421. [ info ] [ LOG ] INIT File
  3422. ---------------------------------------------------------------
  3423. [ 2021-09-24T18:20:17+08:00 ] 81.71.6.252 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464364106-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  3424. [运行时间:0.007339s] [吞吐率:136.26req/s] [内存消耗:620.98kb] [文件加载:136]
  3425. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  3426. [ info ] [ CACHE ] INIT File
  3427. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000176s ]
  3428. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3429. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  3430. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3431. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  3432. [ info ] [ ROUTE ] array (
  3433. 'type' => 'module',
  3434. 'module' =>
  3435. array (
  3436. 0 => 'api',
  3437. 1 => 'tenim',
  3438. 2 => 'callback',
  3439. ),
  3440. )
  3441. [ info ] [ HEADER ] array (
  3442. 'content-type' => 'application/json',
  3443. 'content-length' => '129',
  3444. 'connection' => 'keep-alive',
  3445. 'host' => 'voicechat.lanmaonet.com',
  3446. )
  3447. [ info ] [ PARAM ] array (
  3448. 'CallbackCommand' => 'State.StateChange',
  3449. 'ClientIP' => '27.17.133.90',
  3450. 'OptPlatform' => 'Android',
  3451. 'RequestId' => '2464364106-144115261584051313-Login-Register',
  3452. 'SdkAppid' => '1400556860',
  3453. 'contenttype' => 'json',
  3454. 'EventTime' => 1632478816954,
  3455. 'Info' =>
  3456. array (
  3457. 'To_Account' => '96',
  3458. 'Action' => 'Login',
  3459. 'Reason' => 'Register',
  3460. ),
  3461. )
  3462. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3463. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  3464. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000045s ]
  3465. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3466. [ info ] [ DB ] INIT mysql
  3467. [ info ] [ LOG ] INIT File
  3468. ---------------------------------------------------------------
  3469. [ 2021-09-24T18:20:17+08:00 ] 81.71.1.123 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464364103-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  3470. [运行时间:0.380077s] [吞吐率:2.63req/s] [内存消耗:690.14kb] [文件加载:140]
  3471. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3472. [ info ] [ CACHE ] INIT File
  3473. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000172s ]
  3474. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  3475. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  3476. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3477. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  3478. [ info ] [ ROUTE ] array (
  3479. 'type' => 'module',
  3480. 'module' =>
  3481. array (
  3482. 0 => 'api',
  3483. 1 => 'tenim',
  3484. 2 => 'callback',
  3485. ),
  3486. )
  3487. [ info ] [ HEADER ] array (
  3488. 'content-type' => 'application/json',
  3489. 'content-length' => '135',
  3490. 'connection' => 'keep-alive',
  3491. 'host' => 'voicechat.lanmaonet.com',
  3492. )
  3493. [ info ] [ PARAM ] array (
  3494. 'CallbackCommand' => 'State.StateChange',
  3495. 'ClientIP' => '27.17.133.90',
  3496. 'OptPlatform' => 'Android',
  3497. 'RequestId' => '2464364103-144115261584051313-Disconnect-LinkClose',
  3498. 'SdkAppid' => '1400556860',
  3499. 'contenttype' => 'json',
  3500. 'EventTime' => 1632478816874,
  3501. 'Info' =>
  3502. array (
  3503. 'To_Account' => '96',
  3504. 'Action' => 'Disconnect',
  3505. 'Reason' => 'LinkClose',
  3506. ),
  3507. )
  3508. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3509. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  3510. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  3511. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3512. [ info ] [ DB ] INIT mysql
  3513. [ info ] [ LOG ] INIT File
  3514. ---------------------------------------------------------------
  3515. [ 2021-09-24T18:24:36+08:00 ] 81.71.1.123 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464375713-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  3516. [运行时间:0.298387s] [吞吐率:3.35req/s] [内存消耗:690.14kb] [文件加载:140]
  3517. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3518. [ info ] [ CACHE ] INIT File
  3519. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000221s ]
  3520. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  3521. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  3522. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3523. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  3524. [ info ] [ ROUTE ] array (
  3525. 'type' => 'module',
  3526. 'module' =>
  3527. array (
  3528. 0 => 'api',
  3529. 1 => 'tenim',
  3530. 2 => 'callback',
  3531. ),
  3532. )
  3533. [ info ] [ HEADER ] array (
  3534. 'content-type' => 'application/json',
  3535. 'content-length' => '135',
  3536. 'connection' => 'keep-alive',
  3537. 'host' => 'voicechat.lanmaonet.com',
  3538. )
  3539. [ info ] [ PARAM ] array (
  3540. 'CallbackCommand' => 'State.StateChange',
  3541. 'ClientIP' => '27.17.133.90',
  3542. 'OptPlatform' => 'Android',
  3543. 'RequestId' => '2464375713-144115261584051313-Disconnect-LinkClose',
  3544. 'SdkAppid' => '1400556860',
  3545. 'contenttype' => 'json',
  3546. 'EventTime' => 1632479075707,
  3547. 'Info' =>
  3548. array (
  3549. 'To_Account' => '96',
  3550. 'Action' => 'Disconnect',
  3551. 'Reason' => 'LinkClose',
  3552. ),
  3553. )
  3554. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3555. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  3556. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  3557. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3558. [ info ] [ DB ] INIT mysql
  3559. [ info ] [ LOG ] INIT File
  3560. ---------------------------------------------------------------
  3561. [ 2021-09-24T18:24:36+08:00 ] 119.29.74.24 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464375720-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  3562. [运行时间:0.012866s] [吞吐率:77.72req/s] [内存消耗:620.98kb] [文件加载:136]
  3563. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3564. [ info ] [ CACHE ] INIT File
  3565. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000136s ]
  3566. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  3567. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  3568. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3569. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  3570. [ info ] [ ROUTE ] array (
  3571. 'type' => 'module',
  3572. 'module' =>
  3573. array (
  3574. 0 => 'api',
  3575. 1 => 'tenim',
  3576. 2 => 'callback',
  3577. ),
  3578. )
  3579. [ info ] [ HEADER ] array (
  3580. 'content-type' => 'application/json',
  3581. 'content-length' => '129',
  3582. 'connection' => 'keep-alive',
  3583. 'host' => 'voicechat.lanmaonet.com',
  3584. )
  3585. [ info ] [ PARAM ] array (
  3586. 'CallbackCommand' => 'State.StateChange',
  3587. 'ClientIP' => '27.17.133.90',
  3588. 'OptPlatform' => 'Android',
  3589. 'RequestId' => '2464375720-144115261584051313-Login-Register',
  3590. 'SdkAppid' => '1400556860',
  3591. 'contenttype' => 'json',
  3592. 'EventTime' => 1632479075997,
  3593. 'Info' =>
  3594. array (
  3595. 'To_Account' => '96',
  3596. 'Action' => 'Login',
  3597. 'Reason' => 'Register',
  3598. ),
  3599. )
  3600. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3601. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  3602. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  3603. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3604. [ info ] [ DB ] INIT mysql
  3605. [ info ] [ LOG ] INIT File
  3606. ---------------------------------------------------------------
  3607. [ 2021-09-24T18:29:53+08:00 ] 106.55.14.49 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464389917-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  3608. [运行时间:0.346471s] [吞吐率:2.89req/s] [内存消耗:690.14kb] [文件加载:140]
  3609. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3610. [ info ] [ CACHE ] INIT File
  3611. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000240s ]
  3612. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  3613. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  3614. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3615. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  3616. [ info ] [ ROUTE ] array (
  3617. 'type' => 'module',
  3618. 'module' =>
  3619. array (
  3620. 0 => 'api',
  3621. 1 => 'tenim',
  3622. 2 => 'callback',
  3623. ),
  3624. )
  3625. [ info ] [ HEADER ] array (
  3626. 'content-type' => 'application/json',
  3627. 'content-length' => '135',
  3628. 'connection' => 'keep-alive',
  3629. 'host' => 'voicechat.lanmaonet.com',
  3630. )
  3631. [ info ] [ PARAM ] array (
  3632. 'CallbackCommand' => 'State.StateChange',
  3633. 'ClientIP' => '27.17.133.90',
  3634. 'OptPlatform' => 'Android',
  3635. 'RequestId' => '2464389917-144115261584051313-Disconnect-LinkClose',
  3636. 'SdkAppid' => '1400556860',
  3637. 'contenttype' => 'json',
  3638. 'EventTime' => 1632479393422,
  3639. 'Info' =>
  3640. array (
  3641. 'To_Account' => '96',
  3642. 'Action' => 'Disconnect',
  3643. 'Reason' => 'LinkClose',
  3644. ),
  3645. )
  3646. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3647. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000083s ]
  3648. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  3649. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3650. [ info ] [ DB ] INIT mysql
  3651. [ info ] [ LOG ] INIT File
  3652. ---------------------------------------------------------------
  3653. [ 2021-09-24T18:30:54+08:00 ] 119.29.130.139 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464392633-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  3654. [运行时间:0.009928s] [吞吐率:100.73req/s] [内存消耗:620.98kb] [文件加载:136]
  3655. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3656. [ info ] [ CACHE ] INIT File
  3657. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000257s ]
  3658. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  3659. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  3660. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3661. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000046s ]
  3662. [ info ] [ ROUTE ] array (
  3663. 'type' => 'module',
  3664. 'module' =>
  3665. array (
  3666. 0 => 'api',
  3667. 1 => 'tenim',
  3668. 2 => 'callback',
  3669. ),
  3670. )
  3671. [ info ] [ HEADER ] array (
  3672. 'content-type' => 'application/json',
  3673. 'content-length' => '129',
  3674. 'connection' => 'keep-alive',
  3675. 'host' => 'voicechat.lanmaonet.com',
  3676. )
  3677. [ info ] [ PARAM ] array (
  3678. 'CallbackCommand' => 'State.StateChange',
  3679. 'ClientIP' => '27.17.133.90',
  3680. 'OptPlatform' => 'Android',
  3681. 'RequestId' => '2464392633-144115261584051313-Login-Register',
  3682. 'SdkAppid' => '1400556860',
  3683. 'contenttype' => 'json',
  3684. 'EventTime' => 1632479454873,
  3685. 'Info' =>
  3686. array (
  3687. 'To_Account' => '96',
  3688. 'Action' => 'Login',
  3689. 'Reason' => 'Register',
  3690. ),
  3691. )
  3692. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3693. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  3694. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000123s ]
  3695. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3696. [ info ] [ DB ] INIT mysql
  3697. [ info ] [ LOG ] INIT File
  3698. ---------------------------------------------------------------
  3699. [ 2021-09-24T18:40:22+08:00 ] 154.8.246.209 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464418756-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  3700. [运行时间:0.010687s] [吞吐率:93.57req/s] [内存消耗:620.98kb] [文件加载:136]
  3701. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3702. [ info ] [ CACHE ] INIT File
  3703. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000192s ]
  3704. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  3705. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  3706. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3707. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  3708. [ info ] [ ROUTE ] array (
  3709. 'type' => 'module',
  3710. 'module' =>
  3711. array (
  3712. 0 => 'api',
  3713. 1 => 'tenim',
  3714. 2 => 'callback',
  3715. ),
  3716. )
  3717. [ info ] [ HEADER ] array (
  3718. 'content-type' => 'application/json',
  3719. 'content-length' => '129',
  3720. 'connection' => 'keep-alive',
  3721. 'host' => 'voicechat.lanmaonet.com',
  3722. )
  3723. [ info ] [ PARAM ] array (
  3724. 'CallbackCommand' => 'State.StateChange',
  3725. 'ClientIP' => '27.17.133.90',
  3726. 'OptPlatform' => 'Android',
  3727. 'RequestId' => '2464418756-144115261584051313-Login-Register',
  3728. 'SdkAppid' => '1400556860',
  3729. 'contenttype' => 'json',
  3730. 'EventTime' => 1632480022593,
  3731. 'Info' =>
  3732. array (
  3733. 'To_Account' => '96',
  3734. 'Action' => 'Login',
  3735. 'Reason' => 'Register',
  3736. ),
  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.000058s ]
  3740. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  3741. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3742. [ info ] [ DB ] INIT mysql
  3743. [ info ] [ LOG ] INIT File
  3744. ---------------------------------------------------------------
  3745. [ 2021-09-24T18:40:23+08:00 ] 154.8.246.209 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464418754-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  3746. [运行时间:0.352013s] [吞吐率:2.84req/s] [内存消耗:690.14kb] [文件加载:140]
  3747. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3748. [ info ] [ CACHE ] INIT File
  3749. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000163s ]
  3750. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000057s ]
  3751. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000071s ]
  3752. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3753. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  3754. [ info ] [ ROUTE ] array (
  3755. 'type' => 'module',
  3756. 'module' =>
  3757. array (
  3758. 0 => 'api',
  3759. 1 => 'tenim',
  3760. 2 => 'callback',
  3761. ),
  3762. )
  3763. [ info ] [ HEADER ] array (
  3764. 'content-type' => 'application/json',
  3765. 'content-length' => '135',
  3766. 'host' => 'voicechat.lanmaonet.com',
  3767. 'connection' => 'keep-alive',
  3768. )
  3769. [ info ] [ PARAM ] array (
  3770. 'CallbackCommand' => 'State.StateChange',
  3771. 'ClientIP' => '27.17.133.90',
  3772. 'OptPlatform' => 'Android',
  3773. 'RequestId' => '2464418754-144115261584051313-Disconnect-LinkClose',
  3774. 'SdkAppid' => '1400556860',
  3775. 'contenttype' => 'json',
  3776. 'EventTime' => 1632480022550,
  3777. 'Info' =>
  3778. array (
  3779. 'To_Account' => '96',
  3780. 'Action' => 'Disconnect',
  3781. 'Reason' => 'LinkClose',
  3782. ),
  3783. )
  3784. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3785. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  3786. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  3787. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3788. [ info ] [ DB ] INIT mysql
  3789. [ info ] [ LOG ] INIT File
  3790. ---------------------------------------------------------------
  3791. [ 2021-09-24T18:59:20+08:00 ] 106.52.165.159 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464472072-144115261584051313-Login-Register&SdkAppid=1400556860&contenttype=json
  3792. [运行时间:0.014439s] [吞吐率:69.26req/s] [内存消耗:620.98kb] [文件加载:136]
  3793. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3794. [ info ] [ CACHE ] INIT File
  3795. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000161s ]
  3796. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3797. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  3798. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3799. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  3800. [ info ] [ ROUTE ] array (
  3801. 'type' => 'module',
  3802. 'module' =>
  3803. array (
  3804. 0 => 'api',
  3805. 1 => 'tenim',
  3806. 2 => 'callback',
  3807. ),
  3808. )
  3809. [ info ] [ HEADER ] array (
  3810. 'content-type' => 'application/json',
  3811. 'content-length' => '129',
  3812. 'connection' => 'keep-alive',
  3813. 'host' => 'voicechat.lanmaonet.com',
  3814. )
  3815. [ info ] [ PARAM ] array (
  3816. 'CallbackCommand' => 'State.StateChange',
  3817. 'ClientIP' => '27.17.133.90',
  3818. 'OptPlatform' => 'Android',
  3819. 'RequestId' => '2464472072-144115261584051313-Login-Register',
  3820. 'SdkAppid' => '1400556860',
  3821. 'contenttype' => 'json',
  3822. 'EventTime' => 1632481160016,
  3823. 'Info' =>
  3824. array (
  3825. 'To_Account' => '96',
  3826. 'Action' => 'Login',
  3827. 'Reason' => 'Register',
  3828. ),
  3829. )
  3830. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3831. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  3832. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  3833. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3834. [ info ] [ DB ] INIT mysql
  3835. [ info ] [ LOG ] INIT File
  3836. ---------------------------------------------------------------
  3837. [ 2021-09-24T18:59:20+08:00 ] 119.29.74.24 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=27.17.133.90&OptPlatform=Android&RequestId=2464472067-144115261584051313-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  3838. [运行时间:0.382329s] [吞吐率:2.62req/s] [内存消耗:690.14kb] [文件加载:140]
  3839. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3840. [ info ] [ CACHE ] INIT File
  3841. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000219s ]
  3842. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  3843. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  3844. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3845. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  3846. [ info ] [ ROUTE ] array (
  3847. 'type' => 'module',
  3848. 'module' =>
  3849. array (
  3850. 0 => 'api',
  3851. 1 => 'tenim',
  3852. 2 => 'callback',
  3853. ),
  3854. )
  3855. [ info ] [ HEADER ] array (
  3856. 'content-type' => 'application/json',
  3857. 'content-length' => '135',
  3858. 'connection' => 'keep-alive',
  3859. 'host' => 'voicechat.lanmaonet.com',
  3860. )
  3861. [ info ] [ PARAM ] array (
  3862. 'CallbackCommand' => 'State.StateChange',
  3863. 'ClientIP' => '27.17.133.90',
  3864. 'OptPlatform' => 'Android',
  3865. 'RequestId' => '2464472067-144115261584051313-Disconnect-LinkClose',
  3866. 'SdkAppid' => '1400556860',
  3867. 'contenttype' => 'json',
  3868. 'EventTime' => 1632481159920,
  3869. 'Info' =>
  3870. array (
  3871. 'To_Account' => '96',
  3872. 'Action' => 'Disconnect',
  3873. 'Reason' => 'LinkClose',
  3874. ),
  3875. )
  3876. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3877. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  3878. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  3879. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3880. [ info ] [ DB ] INIT mysql
  3881. [ info ] [ LOG ] INIT File
  3882. ---------------------------------------------------------------
  3883. [ 2021-09-24T19:08:51+08:00 ] 157.55.39.80 GET voicechat.lanmaonet.com/
  3884. [运行时间:0.005208s] [吞吐率:192.01req/s] [内存消耗:468.62kb] [文件加载:135]
  3885. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3886. [ info ] [ CACHE ] INIT File
  3887. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000231s ]
  3888. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  3889. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  3890. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3891. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  3892. [ info ] [ ROUTE ] array (
  3893. 'type' => 'module',
  3894. 'module' =>
  3895. array (
  3896. 0 => '',
  3897. 1 => NULL,
  3898. 2 => NULL,
  3899. ),
  3900. )
  3901. [ info ] [ HEADER ] array (
  3902. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  3903. 'host' => 'voicechat.lanmaonet.com',
  3904. 'from' => 'bingbot(at)microsoft.com',
  3905. 'accept-encoding' => 'gzip, deflate',
  3906. 'accept' => '*/*',
  3907. 'pragma' => 'no-cache',
  3908. 'connection' => 'Keep-Alive',
  3909. 'cache-control' => 'no-cache',
  3910. 'content-type' => '',
  3911. 'content-length' => '',
  3912. )
  3913. [ info ] [ PARAM ] array (
  3914. )
  3915. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  3916. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  3917. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  3918. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000043s ]
  3919. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  3920. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  3921. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  3922. 0 => 'user',
  3923. 1 => 'site',
  3924. 2 => 'config',
  3925. ) ]
  3926. [ info ] [ LOG ] INIT File
  3927. ---------------------------------------------------------------
  3928. [ 2021-09-24T19:31:37+08:00 ] 52.202.87.234 GET voicechat.lanmaonet.com/apple-app-site-association
  3929. [运行时间:0.004351s] [吞吐率:229.84req/s] [内存消耗:338.22kb] [文件加载:123]
  3930. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3931. [ info ] [ CACHE ] INIT File
  3932. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000254s ]
  3933. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  3934. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  3935. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3936. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  3937. [ info ] [ ROUTE ] array (
  3938. 'type' => 'module',
  3939. 'module' =>
  3940. array (
  3941. 0 => 'apple-app-site-association',
  3942. 1 => NULL,
  3943. 2 => NULL,
  3944. ),
  3945. )
  3946. [ info ] [ HEADER ] array (
  3947. 'accept-encoding' => 'gzip',
  3948. 'user-agent' => 'AASA-Bot/1.0.0',
  3949. 'host' => 'voicechat.lanmaonet.com',
  3950. 'content-type' => '',
  3951. 'content-length' => '',
  3952. )
  3953. [ info ] [ PARAM ] array (
  3954. )
  3955. [ info ] [ LOG ] INIT File
  3956. ---------------------------------------------------------------
  3957. [ 2021-09-24T19:52:54+08:00 ] 3.127.119.25 GET voicechat.lanmaonet.com/apple-app-site-association
  3958. [运行时间:0.004406s] [吞吐率:226.96req/s] [内存消耗:338.22kb] [文件加载:123]
  3959. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3960. [ info ] [ CACHE ] INIT File
  3961. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000284s ]
  3962. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  3963. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  3964. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3965. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  3966. [ info ] [ ROUTE ] array (
  3967. 'type' => 'module',
  3968. 'module' =>
  3969. array (
  3970. 0 => 'apple-app-site-association',
  3971. 1 => NULL,
  3972. 2 => NULL,
  3973. ),
  3974. )
  3975. [ info ] [ HEADER ] array (
  3976. 'accept-encoding' => 'gzip',
  3977. 'user-agent' => 'AASA-Bot/1.0.0',
  3978. 'host' => 'voicechat.lanmaonet.com',
  3979. 'content-type' => '',
  3980. 'content-length' => '',
  3981. )
  3982. [ info ] [ PARAM ] array (
  3983. )
  3984. [ info ] [ LOG ] INIT File
  3985. ---------------------------------------------------------------
  3986. [ 2021-09-24T20:23:30+08:00 ] 44.233.253.185 GET voicechat.lanmaonet.com/apple-app-site-association
  3987. [运行时间:0.004432s] [吞吐率:225.63req/s] [内存消耗:338.22kb] [文件加载:123]
  3988. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3989. [ info ] [ CACHE ] INIT File
  3990. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000220s ]
  3991. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  3992. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  3993. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3994. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  3995. [ info ] [ ROUTE ] array (
  3996. 'type' => 'module',
  3997. 'module' =>
  3998. array (
  3999. 0 => 'apple-app-site-association',
  4000. 1 => NULL,
  4001. 2 => NULL,
  4002. ),
  4003. )
  4004. [ info ] [ HEADER ] array (
  4005. 'accept-encoding' => 'gzip',
  4006. 'user-agent' => 'AASA-Bot/1.0.0',
  4007. 'host' => 'voicechat.lanmaonet.com',
  4008. 'content-type' => '',
  4009. 'content-length' => '',
  4010. )
  4011. [ info ] [ PARAM ] array (
  4012. )
  4013. [ info ] [ LOG ] INIT File
  4014. ---------------------------------------------------------------
  4015. [ 2021-09-24T20:48:47+08:00 ] 54.159.169.204 GET voicechat.lanmaonet.com/apple-app-site-association
  4016. [运行时间:0.004001s] [吞吐率:249.94req/s] [内存消耗:338.22kb] [文件加载:123]
  4017. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4018. [ info ] [ CACHE ] INIT File
  4019. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000221s ]
  4020. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  4021. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  4022. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4023. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  4024. [ info ] [ ROUTE ] array (
  4025. 'type' => 'module',
  4026. 'module' =>
  4027. array (
  4028. 0 => 'apple-app-site-association',
  4029. 1 => NULL,
  4030. 2 => NULL,
  4031. ),
  4032. )
  4033. [ info ] [ HEADER ] array (
  4034. 'accept-encoding' => 'gzip',
  4035. 'user-agent' => 'AASA-Bot/1.0.0',
  4036. 'host' => 'voicechat.lanmaonet.com',
  4037. 'content-type' => '',
  4038. 'content-length' => '',
  4039. )
  4040. [ info ] [ PARAM ] array (
  4041. )
  4042. [ info ] [ LOG ] INIT File
  4043. ---------------------------------------------------------------
  4044. [ 2021-09-24T21:58:40+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  4045. [运行时间:0.004146s] [吞吐率:241.19req/s] [内存消耗:338.22kb] [文件加载:123]
  4046. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  4047. [ info ] [ CACHE ] INIT File
  4048. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000237s ]
  4049. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  4050. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  4051. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4052. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  4053. [ info ] [ ROUTE ] array (
  4054. 'type' => 'module',
  4055. 'module' =>
  4056. array (
  4057. 0 => 'apple-app-site-association',
  4058. 1 => NULL,
  4059. 2 => NULL,
  4060. ),
  4061. )
  4062. [ info ] [ HEADER ] array (
  4063. 'accept-encoding' => 'gzip',
  4064. 'user-agent' => 'AASA-Bot/1.0.0',
  4065. 'host' => 'voicechat.lanmaonet.com',
  4066. 'content-type' => '',
  4067. 'content-length' => '',
  4068. )
  4069. [ info ] [ PARAM ] array (
  4070. )
  4071. [ info ] [ LOG ] INIT File
  4072. ---------------------------------------------------------------
  4073. [ 2021-09-24T22:14:48+08:00 ] 223.104.158.69 GET voicechat.lanmaonet.com/apple-app-site-association
  4074. [运行时间:0.004112s] [吞吐率:243.19req/s] [内存消耗:340.17kb] [文件加载:123]
  4075. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4076. [ info ] [ CACHE ] INIT File
  4077. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000207s ]
  4078. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  4079. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  4080. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4081. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  4082. [ info ] [ ROUTE ] array (
  4083. 'type' => 'module',
  4084. 'module' =>
  4085. array (
  4086. 0 => 'apple-app-site-association',
  4087. 1 => NULL,
  4088. 2 => NULL,
  4089. ),
  4090. )
  4091. [ info ] [ HEADER ] array (
  4092. 'user-agent' => 'swcd (unknown version) CFNetwork/1121.2.2 Darwin/19.2.0',
  4093. 'accept-encoding' => 'gzip, deflate, br',
  4094. 'connection' => 'keep-alive',
  4095. 'accept-language' => 'zh-cn',
  4096. 'accept' => '*/*',
  4097. 'host' => 'voicechat.lanmaonet.com',
  4098. 'content-type' => '',
  4099. 'content-length' => '',
  4100. )
  4101. [ info ] [ PARAM ] array (
  4102. )
  4103. [ info ] [ LOG ] INIT File
  4104. ---------------------------------------------------------------
  4105. [ 2021-09-24T22:20:20+08:00 ] 36.150.60.24 GET voicechat.lanmaonet.com/
  4106. [运行时间:0.011799s] [吞吐率:84.75req/s] [内存消耗:469.00kb] [文件加载:135]
  4107. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  4108. [ info ] [ CACHE ] INIT File
  4109. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000201s ]
  4110. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  4111. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000040s ]
  4112. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4113. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  4114. [ info ] [ ROUTE ] array (
  4115. 'type' => 'module',
  4116. 'module' =>
  4117. array (
  4118. 0 => '',
  4119. 1 => NULL,
  4120. 2 => NULL,
  4121. ),
  4122. )
  4123. [ info ] [ HEADER ] array (
  4124. 'accept-language' => 'zh-CN,zh;q=0.9',
  4125. 'cache-control' => 'no-cache',
  4126. 'connection' => 'keep-alive',
  4127. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  4128. 'accept-encoding' => 'gzip, deflate',
  4129. 'user-agent' => 'Dalvik/2.1.0 (Linux; U; Android 9.0; ZTE BA520 Build/MRA58K)',
  4130. 'host' => 'voicechat.lanmaonet.com',
  4131. 'content-type' => '',
  4132. 'content-length' => '',
  4133. )
  4134. [ info ] [ PARAM ] array (
  4135. )
  4136. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  4137. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.003556s ]
  4138. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000085s ]
  4139. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000059s ]
  4140. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  4141. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  4142. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  4143. 0 => 'user',
  4144. 1 => 'site',
  4145. 2 => 'config',
  4146. ) ]
  4147. [ info ] [ LOG ] INIT File
  4148. ---------------------------------------------------------------
  4149. [ 2021-09-24T22:21:14+08:00 ] 36.150.60.24 GET voicechat.lanmaonet.com/
  4150. [运行时间:0.005014s] [吞吐率:199.44req/s] [内存消耗:469.00kb] [文件加载:135]
  4151. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4152. [ info ] [ CACHE ] INIT File
  4153. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000206s ]
  4154. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  4155. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  4156. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4157. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  4158. [ info ] [ ROUTE ] array (
  4159. 'type' => 'module',
  4160. 'module' =>
  4161. array (
  4162. 0 => '',
  4163. 1 => NULL,
  4164. 2 => NULL,
  4165. ),
  4166. )
  4167. [ info ] [ HEADER ] array (
  4168. 'accept-language' => 'zh-CN,zh;q=0.9',
  4169. 'cache-control' => 'no-cache',
  4170. 'connection' => 'keep-alive',
  4171. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  4172. 'accept-encoding' => 'gzip, deflate',
  4173. 'user-agent' => 'Dalvik/2.1.0 (Linux; U; Android 9.0; ZTE BA520 Build/MRA58K)',
  4174. 'host' => 'voicechat.lanmaonet.com',
  4175. 'content-type' => '',
  4176. 'content-length' => '',
  4177. )
  4178. [ info ] [ PARAM ] array (
  4179. )
  4180. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  4181. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  4182. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  4183. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000037s ]
  4184. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  4185. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  4186. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  4187. 0 => 'user',
  4188. 1 => 'site',
  4189. 2 => 'config',
  4190. ) ]
  4191. [ info ] [ LOG ] INIT File
  4192. ---------------------------------------------------------------
  4193. [ 2021-09-24T22:22:51+08:00 ] 36.150.60.24 GET voicechat.lanmaonet.com/
  4194. [运行时间:0.005024s] [吞吐率:199.05req/s] [内存消耗:469.00kb] [文件加载:135]
  4195. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4196. [ info ] [ CACHE ] INIT File
  4197. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000206s ]
  4198. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  4199. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  4200. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4201. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  4202. [ info ] [ ROUTE ] array (
  4203. 'type' => 'module',
  4204. 'module' =>
  4205. array (
  4206. 0 => '',
  4207. 1 => NULL,
  4208. 2 => NULL,
  4209. ),
  4210. )
  4211. [ info ] [ HEADER ] array (
  4212. 'accept-language' => 'zh-CN,zh;q=0.9',
  4213. 'cache-control' => 'no-cache',
  4214. 'connection' => 'keep-alive',
  4215. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  4216. 'accept-encoding' => 'gzip, deflate',
  4217. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.27 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/601.1.27',
  4218. 'host' => 'voicechat.lanmaonet.com',
  4219. 'content-type' => '',
  4220. 'content-length' => '',
  4221. )
  4222. [ info ] [ PARAM ] array (
  4223. )
  4224. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  4225. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  4226. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  4227. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000035s ]
  4228. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  4229. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  4230. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  4231. 0 => 'user',
  4232. 1 => 'site',
  4233. 2 => 'config',
  4234. ) ]
  4235. [ info ] [ LOG ] INIT File
  4236. ---------------------------------------------------------------
  4237. [ 2021-09-24T22:24:16+08:00 ] 36.150.60.24 GET voicechat.lanmaonet.com/
  4238. [运行时间:0.004857s] [吞吐率:205.89req/s] [内存消耗:469.00kb] [文件加载:135]
  4239. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4240. [ info ] [ CACHE ] INIT File
  4241. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000232s ]
  4242. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  4243. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  4244. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4245. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  4246. [ info ] [ ROUTE ] array (
  4247. 'type' => 'module',
  4248. 'module' =>
  4249. array (
  4250. 0 => '',
  4251. 1 => NULL,
  4252. 2 => NULL,
  4253. ),
  4254. )
  4255. [ info ] [ HEADER ] array (
  4256. 'accept-language' => 'zh-CN,zh;q=0.9',
  4257. 'cache-control' => 'no-cache',
  4258. 'connection' => 'keep-alive',
  4259. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  4260. 'accept-encoding' => 'gzip, deflate',
  4261. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.27 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/601.1.27',
  4262. 'host' => 'voicechat.lanmaonet.com',
  4263. 'content-type' => '',
  4264. 'content-length' => '',
  4265. )
  4266. [ info ] [ PARAM ] array (
  4267. )
  4268. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  4269. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  4270. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  4271. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000031s ]
  4272. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  4273. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  4274. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  4275. 0 => 'user',
  4276. 1 => 'site',
  4277. 2 => 'config',
  4278. ) ]
  4279. [ info ] [ LOG ] INIT File
  4280. ---------------------------------------------------------------
  4281. [ 2021-09-24T23:50:26+08:00 ] 54.188.15.118 GET voicechat.lanmaonet.com/apple-app-site-association
  4282. [运行时间:0.004292s] [吞吐率:232.99req/s] [内存消耗:338.22kb] [文件加载:123]
  4283. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  4284. [ info ] [ CACHE ] INIT File
  4285. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000247s ]
  4286. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000060s ]
  4287. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000075s ]
  4288. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4289. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  4290. [ info ] [ ROUTE ] array (
  4291. 'type' => 'module',
  4292. 'module' =>
  4293. array (
  4294. 0 => 'apple-app-site-association',
  4295. 1 => NULL,
  4296. 2 => NULL,
  4297. ),
  4298. )
  4299. [ info ] [ HEADER ] array (
  4300. 'accept-encoding' => 'gzip',
  4301. 'user-agent' => 'AASA-Bot/1.0.0',
  4302. 'host' => 'voicechat.lanmaonet.com',
  4303. 'content-type' => '',
  4304. 'content-length' => '',
  4305. )
  4306. [ info ] [ PARAM ] array (
  4307. )
  4308. [ info ] [ LOG ] INIT File