15.log 216 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025
  1. ---------------------------------------------------------------
  2. [ 2021-12-15T01:23:57+08:00 ] 54.223.183.204 GET voicechat.lanmaonet.com/
  3. [运行时间:0.017189s] [吞吐率:58.18req/s] [内存消耗:448.61kb] [文件加载:132]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000275s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  9. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000060s ]
  10. [ info ] [ ROUTE ] array (
  11. 'type' => 'module',
  12. 'module' =>
  13. array (
  14. 0 => '',
  15. 1 => NULL,
  16. 2 => NULL,
  17. ),
  18. )
  19. [ info ] [ HEADER ] array (
  20. 'connection' => 'Keep-Alive',
  21. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
  22. 'accept-encoding' => 'gzip, deflate',
  23. 'accept-language' => 'zh,zh-CN;q=0.9',
  24. 'user-agent' => 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.7252.1396 Mobile Safari/537.36',
  25. 'upgrade-insecure-requests' => '1',
  26. 'host' => 'voicechat.lanmaonet.com',
  27. 'content-type' => '',
  28. 'content-length' => '',
  29. )
  30. [ info ] [ PARAM ] array (
  31. )
  32. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000079s ]
  33. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  34. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000044s ]
  35. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  36. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  37. 0 => 'user',
  38. 1 => 'site',
  39. 2 => 'config',
  40. ) ]
  41. [ info ] [ LOG ] INIT File
  42. ---------------------------------------------------------------
  43. [ 2021-12-15T01:33:17+08:00 ] 3.127.119.25 GET voicechat.lanmaonet.com/apple-app-site-association
  44. [运行时间:0.004672s] [吞吐率:214.04req/s] [内存消耗:338.22kb] [文件加载:123]
  45. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  46. [ info ] [ CACHE ] INIT File
  47. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000181s ]
  48. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000027s ]
  49. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  50. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  51. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  52. [ info ] [ ROUTE ] array (
  53. 'type' => 'module',
  54. 'module' =>
  55. array (
  56. 0 => 'apple-app-site-association',
  57. 1 => NULL,
  58. 2 => NULL,
  59. ),
  60. )
  61. [ info ] [ HEADER ] array (
  62. 'accept-encoding' => 'gzip',
  63. 'user-agent' => 'AASA-Bot/1.0.0',
  64. 'host' => 'voicechat.lanmaonet.com',
  65. 'content-type' => '',
  66. 'content-length' => '',
  67. )
  68. [ info ] [ PARAM ] array (
  69. )
  70. [ info ] [ LOG ] INIT File
  71. ---------------------------------------------------------------
  72. [ 2021-12-15T06:57:13+08:00 ] 40.77.167.80 GET voicechat.lanmaonet.com/
  73. [运行时间:0.010835s] [吞吐率:92.29req/s] [内存消耗:468.58kb] [文件加载:135]
  74. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  75. [ info ] [ CACHE ] INIT File
  76. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000246s ]
  77. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  78. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  79. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  80. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000056s ]
  81. [ info ] [ ROUTE ] array (
  82. 'type' => 'module',
  83. 'module' =>
  84. array (
  85. 0 => '',
  86. 1 => NULL,
  87. 2 => NULL,
  88. ),
  89. )
  90. [ info ] [ HEADER ] array (
  91. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  92. 'from' => 'bingbot(at)microsoft.com',
  93. 'accept-encoding' => 'gzip, deflate',
  94. 'accept' => '*/*',
  95. 'pragma' => 'no-cache',
  96. 'cache-control' => 'no-cache',
  97. 'host' => 'voicechat.lanmaonet.com',
  98. 'content-type' => '',
  99. 'content-length' => '',
  100. )
  101. [ info ] [ PARAM ] array (
  102. )
  103. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  104. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000070s ]
  105. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  106. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000040s ]
  107. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  108. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  109. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  110. 0 => 'user',
  111. 1 => 'site',
  112. 2 => 'config',
  113. ) ]
  114. [ info ] [ LOG ] INIT File
  115. ---------------------------------------------------------------
  116. [ 2021-12-15T09:05:49+08:00 ] 40.77.167.71 GET voicechat.lanmaonet.com/
  117. [运行时间:0.005802s] [吞吐率:172.35req/s] [内存消耗:468.62kb] [文件加载:135]
  118. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  119. [ info ] [ CACHE ] INIT File
  120. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000265s ]
  121. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  122. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  123. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  124. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  125. [ info ] [ ROUTE ] array (
  126. 'type' => 'module',
  127. 'module' =>
  128. array (
  129. 0 => '',
  130. 1 => NULL,
  131. 2 => NULL,
  132. ),
  133. )
  134. [ info ] [ HEADER ] array (
  135. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  136. 'host' => 'voicechat.lanmaonet.com',
  137. 'from' => 'bingbot(at)microsoft.com',
  138. 'accept-encoding' => 'gzip, deflate',
  139. 'accept' => '*/*',
  140. 'pragma' => 'no-cache',
  141. 'connection' => 'Keep-Alive',
  142. 'cache-control' => 'no-cache',
  143. 'content-type' => '',
  144. 'content-length' => '',
  145. )
  146. [ info ] [ PARAM ] array (
  147. )
  148. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  149. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  150. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000076s ]
  151. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000040s ]
  152. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  153. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  154. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  155. 0 => 'user',
  156. 1 => 'site',
  157. 2 => 'config',
  158. ) ]
  159. [ info ] [ LOG ] INIT File
  160. ---------------------------------------------------------------
  161. [ 2021-12-15T09:41:00+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  162. [运行时间:0.007817s] [吞吐率:127.93req/s] [内存消耗:338.22kb] [文件加载:123]
  163. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  164. [ info ] [ CACHE ] INIT File
  165. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000288s ]
  166. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  167. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  168. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  169. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  170. [ info ] [ ROUTE ] array (
  171. 'type' => 'module',
  172. 'module' =>
  173. array (
  174. 0 => 'apple-app-site-association',
  175. 1 => NULL,
  176. 2 => NULL,
  177. ),
  178. )
  179. [ info ] [ HEADER ] array (
  180. 'accept-encoding' => 'gzip',
  181. 'user-agent' => 'AASA-Bot/1.0.0',
  182. 'host' => 'voicechat.lanmaonet.com',
  183. 'content-type' => '',
  184. 'content-length' => '',
  185. )
  186. [ info ] [ PARAM ] array (
  187. )
  188. [ info ] [ LOG ] INIT File
  189. ---------------------------------------------------------------
  190. [ 2021-12-15T09:50:31+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getEdition
  191. [运行时间:0.014975s] [吞吐率:66.78req/s] [内存消耗:633.13kb] [文件加载:143]
  192. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  193. [ info ] [ CACHE ] INIT File
  194. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000158s ]
  195. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  196. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  197. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  198. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  199. [ info ] [ ROUTE ] array (
  200. 'type' => 'module',
  201. 'module' =>
  202. array (
  203. 0 => 'api',
  204. 1 => 'index',
  205. 2 => 'getEdition',
  206. ),
  207. )
  208. [ info ] [ HEADER ] array (
  209. 'accept-encoding' => 'gzip',
  210. 'connection' => 'Keep-Alive',
  211. 'host' => 'voicechat.lanmaonet.com',
  212. 'content-length' => '62',
  213. 'content-type' => 'application/x-www-form-urlencoded',
  214. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  215. 'accept-language' => 'zh-CN,zh;q=0.8',
  216. )
  217. [ info ] [ PARAM ] array (
  218. 'params_from' => 'android',
  219. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  220. )
  221. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  222. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  223. [ info ] [ TOKEN ] INIT Mysql
  224. [ info ] [ DB ] INIT mysql
  225. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000127s ]
  226. [ info ] [ RUN ] app\api\controller\Index->getEdition[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  227. [ info ] [ LOG ] INIT File
  228. ---------------------------------------------------------------
  229. [ 2021-12-15T09:50:31+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/tenim/getUsersig
  230. [运行时间:0.022477s] [吞吐率:44.49req/s] [内存消耗:634.47kb] [文件加载:144]
  231. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  232. [ info ] [ CACHE ] INIT File
  233. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000258s ]
  234. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  235. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  236. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  237. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000049s ]
  238. [ info ] [ ROUTE ] array (
  239. 'type' => 'module',
  240. 'module' =>
  241. array (
  242. 0 => 'api',
  243. 1 => 'tenim',
  244. 2 => 'getUsersig',
  245. ),
  246. )
  247. [ info ] [ HEADER ] array (
  248. 'accept-encoding' => 'gzip',
  249. 'connection' => 'Keep-Alive',
  250. 'host' => 'voicechat.lanmaonet.com',
  251. 'content-length' => '62',
  252. 'content-type' => 'application/x-www-form-urlencoded',
  253. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  254. 'accept-language' => 'zh-CN,zh;q=0.8',
  255. )
  256. [ info ] [ PARAM ] array (
  257. 'params_from' => 'android',
  258. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  259. )
  260. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  261. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000095s ]
  262. [ info ] [ TOKEN ] INIT Mysql
  263. [ info ] [ DB ] INIT mysql
  264. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  265. [ info ] [ RUN ] app\api\controller\Tenim->getUsersig[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  266. [ info ] [ LOG ] INIT File
  267. ---------------------------------------------------------------
  268. [ 2021-12-15T09:50:31+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  269. [运行时间:0.020658s] [吞吐率:48.41req/s] [内存消耗:731.26kb] [文件加载:147]
  270. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  271. [ info ] [ CACHE ] INIT File
  272. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000237s ]
  273. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  274. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  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.000026s ]
  277. [ info ] [ ROUTE ] array (
  278. 'type' => 'module',
  279. 'module' =>
  280. array (
  281. 0 => 'api',
  282. 1 => 'userCenter',
  283. 2 => 'getMyUserInfo',
  284. ),
  285. )
  286. [ info ] [ HEADER ] array (
  287. 'accept-encoding' => 'gzip',
  288. 'connection' => 'Keep-Alive',
  289. 'host' => 'voicechat.lanmaonet.com',
  290. 'content-length' => '72',
  291. 'content-type' => 'application/x-www-form-urlencoded',
  292. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  293. 'accept-language' => 'zh-CN,zh;q=0.8',
  294. )
  295. [ info ] [ PARAM ] array (
  296. 'params_from' => 'android',
  297. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  298. 'user_id' => '3',
  299. )
  300. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  301. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  302. [ info ] [ TOKEN ] INIT Mysql
  303. [ info ] [ DB ] INIT mysql
  304. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  305. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  306. [ info ] [ LOG ] INIT File
  307. ---------------------------------------------------------------
  308. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getSwitch
  309. [运行时间:0.007932s] [吞吐率:126.07req/s] [内存消耗:633.13kb] [文件加载:143]
  310. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  311. [ info ] [ CACHE ] INIT File
  312. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000176s ]
  313. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  314. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  315. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  316. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  317. [ info ] [ ROUTE ] array (
  318. 'type' => 'module',
  319. 'module' =>
  320. array (
  321. 0 => 'api',
  322. 1 => 'index',
  323. 2 => 'getSwitch',
  324. ),
  325. )
  326. [ info ] [ HEADER ] array (
  327. 'accept-encoding' => 'gzip',
  328. 'connection' => 'Keep-Alive',
  329. 'host' => 'voicechat.lanmaonet.com',
  330. 'content-length' => '62',
  331. 'content-type' => 'application/x-www-form-urlencoded',
  332. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  333. 'accept-language' => 'zh-CN,zh;q=0.8',
  334. )
  335. [ info ] [ PARAM ] array (
  336. 'params_from' => 'android',
  337. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  338. )
  339. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  340. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000079s ]
  341. [ info ] [ TOKEN ] INIT Mysql
  342. [ info ] [ DB ] INIT mysql
  343. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  344. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  345. [ info ] [ LOG ] INIT File
  346. ---------------------------------------------------------------
  347. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  348. [运行时间:0.012529s] [吞吐率:79.81req/s] [内存消耗:713.95kb] [文件加载:146]
  349. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  350. [ info ] [ CACHE ] INIT File
  351. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000180s ]
  352. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  353. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  354. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  355. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  356. [ info ] [ ROUTE ] array (
  357. 'type' => 'module',
  358. 'module' =>
  359. array (
  360. 0 => 'Api',
  361. 1 => 'party',
  362. 2 => 'getPartyRankList',
  363. ),
  364. )
  365. [ info ] [ HEADER ] array (
  366. 'accept-encoding' => 'gzip',
  367. 'connection' => 'Keep-Alive',
  368. 'host' => 'voicechat.lanmaonet.com',
  369. 'content-length' => '114',
  370. 'content-type' => 'application/x-www-form-urlencoded',
  371. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  372. 'accept-language' => 'zh-CN,zh;q=0.8',
  373. )
  374. [ info ] [ PARAM ] array (
  375. 'params_from' => 'android',
  376. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  377. 'type_id' => '',
  378. 'all' => '1',
  379. 'is_recommend' => '1',
  380. 'room_type' => '1',
  381. 'pagenum' => '3',
  382. )
  383. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  384. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  385. [ info ] [ TOKEN ] INIT Mysql
  386. [ info ] [ DB ] INIT mysql
  387. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000071s ]
  388. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  389. [ info ] [ LOG ] INIT File
  390. ---------------------------------------------------------------
  391. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  392. [运行时间:0.006935s] [吞吐率:144.19req/s] [内存消耗:713.95kb] [文件加载:146]
  393. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  394. [ info ] [ CACHE ] INIT File
  395. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000160s ]
  396. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  397. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  398. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  399. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000045s ]
  400. [ info ] [ ROUTE ] array (
  401. 'type' => 'module',
  402. 'module' =>
  403. array (
  404. 0 => 'Api',
  405. 1 => 'party',
  406. 2 => 'getPartyRankList',
  407. ),
  408. )
  409. [ info ] [ HEADER ] array (
  410. 'accept-encoding' => 'gzip',
  411. 'connection' => 'Keep-Alive',
  412. 'host' => 'voicechat.lanmaonet.com',
  413. 'content-length' => '114',
  414. 'content-type' => 'application/x-www-form-urlencoded',
  415. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  416. 'accept-language' => 'zh-CN,zh;q=0.8',
  417. )
  418. [ info ] [ PARAM ] array (
  419. 'params_from' => 'android',
  420. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  421. 'type_id' => '',
  422. 'all' => '1',
  423. 'is_recommend' => '0',
  424. 'room_type' => '1',
  425. 'pagenum' => '6',
  426. )
  427. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  428. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  429. [ info ] [ TOKEN ] INIT Mysql
  430. [ info ] [ DB ] INIT mysql
  431. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  432. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  433. [ info ] [ LOG ] INIT File
  434. ---------------------------------------------------------------
  435. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  436. [运行时间:0.009831s] [吞吐率:101.72req/s] [内存消耗:713.95kb] [文件加载:146]
  437. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  438. [ info ] [ CACHE ] INIT File
  439. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000169s ]
  440. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  441. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  442. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  443. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  444. [ info ] [ ROUTE ] array (
  445. 'type' => 'module',
  446. 'module' =>
  447. array (
  448. 0 => 'Api',
  449. 1 => 'party',
  450. 2 => 'getPartyRankList',
  451. ),
  452. )
  453. [ info ] [ HEADER ] array (
  454. 'accept-encoding' => 'gzip',
  455. 'connection' => 'Keep-Alive',
  456. 'host' => 'voicechat.lanmaonet.com',
  457. 'content-length' => '114',
  458. 'content-type' => 'application/x-www-form-urlencoded',
  459. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  460. 'accept-language' => 'zh-CN,zh;q=0.8',
  461. )
  462. [ info ] [ PARAM ] array (
  463. 'params_from' => 'android',
  464. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  465. 'type_id' => '',
  466. 'all' => '1',
  467. 'is_recommend' => '1',
  468. 'room_type' => '1',
  469. 'pagenum' => '3',
  470. )
  471. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  472. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  473. [ info ] [ TOKEN ] INIT Mysql
  474. [ info ] [ DB ] INIT mysql
  475. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  476. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  477. [ info ] [ LOG ] INIT File
  478. ---------------------------------------------------------------
  479. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  480. [运行时间:0.012482s] [吞吐率:80.12req/s] [内存消耗:714.33kb] [文件加载:146]
  481. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  482. [ info ] [ CACHE ] INIT File
  483. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000172s ]
  484. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  485. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  486. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  487. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  488. [ info ] [ ROUTE ] array (
  489. 'type' => 'module',
  490. 'module' =>
  491. array (
  492. 0 => 'Api',
  493. 1 => 'party',
  494. 2 => 'getPartyRankList',
  495. ),
  496. )
  497. [ info ] [ HEADER ] array (
  498. 'accept-encoding' => 'gzip',
  499. 'connection' => 'Keep-Alive',
  500. 'host' => 'voicechat.lanmaonet.com',
  501. 'content-length' => '126',
  502. 'content-type' => 'application/x-www-form-urlencoded',
  503. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  504. 'accept-language' => 'zh-CN,zh;q=0.8',
  505. )
  506. [ info ] [ PARAM ] array (
  507. 'params_from' => 'android',
  508. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  509. 'type_id' => '0',
  510. 'all' => '1',
  511. 'is_recommend' => '0',
  512. 'thispage' => '1',
  513. 'room_type' => '2',
  514. 'pagenum' => '6',
  515. )
  516. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  517. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  518. [ info ] [ TOKEN ] INIT Mysql
  519. [ info ] [ DB ] INIT mysql
  520. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000135s ]
  521. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  522. [ info ] [ LOG ] INIT File
  523. ---------------------------------------------------------------
  524. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  525. [运行时间:0.009501s] [吞吐率:105.25req/s] [内存消耗:713.95kb] [文件加载:146]
  526. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000081s ]
  527. [ info ] [ CACHE ] INIT File
  528. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000159s ]
  529. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  530. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  531. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  532. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  533. [ info ] [ ROUTE ] array (
  534. 'type' => 'module',
  535. 'module' =>
  536. array (
  537. 0 => 'Api',
  538. 1 => 'party',
  539. 2 => 'getPartyRankList',
  540. ),
  541. )
  542. [ info ] [ HEADER ] array (
  543. 'accept-encoding' => 'gzip',
  544. 'connection' => 'Keep-Alive',
  545. 'host' => 'voicechat.lanmaonet.com',
  546. 'content-length' => '114',
  547. 'content-type' => 'application/x-www-form-urlencoded',
  548. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  549. 'accept-language' => 'zh-CN,zh;q=0.8',
  550. )
  551. [ info ] [ PARAM ] array (
  552. 'params_from' => 'android',
  553. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  554. 'type_id' => '',
  555. 'all' => '1',
  556. 'is_recommend' => '0',
  557. 'room_type' => '1',
  558. 'pagenum' => '6',
  559. )
  560. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  561. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  562. [ info ] [ TOKEN ] INIT Mysql
  563. [ info ] [ DB ] INIT mysql
  564. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  565. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  566. [ info ] [ LOG ] INIT File
  567. ---------------------------------------------------------------
  568. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  569. [运行时间:0.011122s] [吞吐率:89.91req/s] [内存消耗:701.39kb] [文件加载:146]
  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.000186s ]
  573. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  574. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  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.000051s ]
  577. [ info ] [ ROUTE ] array (
  578. 'type' => 'module',
  579. 'module' =>
  580. array (
  581. 0 => 'Api',
  582. 1 => 'party',
  583. 2 => 'getPatyType',
  584. ),
  585. )
  586. [ info ] [ HEADER ] array (
  587. 'accept-encoding' => 'gzip',
  588. 'connection' => 'Keep-Alive',
  589. 'host' => 'voicechat.lanmaonet.com',
  590. 'content-length' => '74',
  591. 'content-type' => 'application/x-www-form-urlencoded',
  592. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  593. 'accept-language' => 'zh-CN,zh;q=0.8',
  594. )
  595. [ info ] [ PARAM ] array (
  596. 'params_from' => 'android',
  597. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  598. 'room_type' => '2',
  599. )
  600. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  601. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000093s ]
  602. [ info ] [ TOKEN ] INIT Mysql
  603. [ info ] [ DB ] INIT mysql
  604. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  605. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  606. [ info ] [ LOG ] INIT File
  607. ---------------------------------------------------------------
  608. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getSwitch
  609. [运行时间:0.007665s] [吞吐率:130.46req/s] [内存消耗:633.13kb] [文件加载:143]
  610. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  611. [ info ] [ CACHE ] INIT File
  612. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000145s ]
  613. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  614. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  615. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  616. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  617. [ info ] [ ROUTE ] array (
  618. 'type' => 'module',
  619. 'module' =>
  620. array (
  621. 0 => 'api',
  622. 1 => 'index',
  623. 2 => 'getSwitch',
  624. ),
  625. )
  626. [ info ] [ HEADER ] array (
  627. 'accept-encoding' => 'gzip',
  628. 'connection' => 'Keep-Alive',
  629. 'host' => 'voicechat.lanmaonet.com',
  630. 'content-length' => '62',
  631. 'content-type' => 'application/x-www-form-urlencoded',
  632. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  633. 'accept-language' => 'zh-CN,zh;q=0.8',
  634. )
  635. [ info ] [ PARAM ] array (
  636. 'params_from' => 'android',
  637. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  638. )
  639. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  640. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  641. [ info ] [ TOKEN ] INIT Mysql
  642. [ info ] [ DB ] INIT mysql
  643. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  644. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  645. [ info ] [ LOG ] INIT File
  646. ---------------------------------------------------------------
  647. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  648. [运行时间:0.017245s] [吞吐率:57.99req/s] [内存消耗:701.34kb] [文件加载:146]
  649. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  650. [ info ] [ CACHE ] INIT File
  651. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000182s ]
  652. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000045s ]
  653. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000065s ]
  654. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  655. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  656. [ info ] [ ROUTE ] array (
  657. 'type' => 'module',
  658. 'module' =>
  659. array (
  660. 0 => 'Api',
  661. 1 => 'party',
  662. 2 => 'getPatyType',
  663. ),
  664. )
  665. [ info ] [ HEADER ] array (
  666. 'accept-encoding' => 'gzip',
  667. 'connection' => 'Keep-Alive',
  668. 'host' => 'voicechat.lanmaonet.com',
  669. 'content-length' => '62',
  670. 'content-type' => 'application/x-www-form-urlencoded',
  671. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  672. 'accept-language' => 'zh-CN,zh;q=0.8',
  673. )
  674. [ info ] [ PARAM ] array (
  675. 'params_from' => 'android',
  676. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  677. )
  678. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  679. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000070s ]
  680. [ info ] [ TOKEN ] INIT Mysql
  681. [ info ] [ DB ] INIT mysql
  682. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  683. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  684. [ info ] [ LOG ] INIT File
  685. ---------------------------------------------------------------
  686. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  687. [运行时间:0.015855s] [吞吐率:63.07req/s] [内存消耗:731.26kb] [文件加载:147]
  688. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  689. [ info ] [ CACHE ] INIT File
  690. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000147s ]
  691. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  692. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000065s ]
  693. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  694. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  695. [ info ] [ ROUTE ] array (
  696. 'type' => 'module',
  697. 'module' =>
  698. array (
  699. 0 => 'api',
  700. 1 => 'userCenter',
  701. 2 => 'getMyUserInfo',
  702. ),
  703. )
  704. [ info ] [ HEADER ] array (
  705. 'accept-encoding' => 'gzip',
  706. 'connection' => 'Keep-Alive',
  707. 'host' => 'voicechat.lanmaonet.com',
  708. 'content-length' => '72',
  709. 'content-type' => 'application/x-www-form-urlencoded',
  710. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  711. 'accept-language' => 'zh-CN,zh;q=0.8',
  712. )
  713. [ info ] [ PARAM ] array (
  714. 'params_from' => 'android',
  715. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  716. 'user_id' => '3',
  717. )
  718. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  719. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000067s ]
  720. [ info ] [ TOKEN ] INIT Mysql
  721. [ info ] [ DB ] INIT mysql
  722. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  723. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  724. [ info ] [ LOG ] INIT File
  725. ---------------------------------------------------------------
  726. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  727. [运行时间:0.005466s] [吞吐率:182.95req/s] [内存消耗:714.33kb] [文件加载:146]
  728. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
  729. [ info ] [ CACHE ] INIT File
  730. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000165s ]
  731. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  732. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  733. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  734. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000021s ]
  735. [ info ] [ ROUTE ] array (
  736. 'type' => 'module',
  737. 'module' =>
  738. array (
  739. 0 => 'Api',
  740. 1 => 'party',
  741. 2 => 'getPartyRankList',
  742. ),
  743. )
  744. [ info ] [ HEADER ] array (
  745. 'accept-encoding' => 'gzip',
  746. 'connection' => 'Keep-Alive',
  747. 'host' => 'voicechat.lanmaonet.com',
  748. 'content-length' => '126',
  749. 'content-type' => 'application/x-www-form-urlencoded',
  750. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  751. 'accept-language' => 'zh-CN,zh;q=0.8',
  752. )
  753. [ info ] [ PARAM ] array (
  754. 'params_from' => 'android',
  755. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  756. 'type_id' => '0',
  757. 'all' => '1',
  758. 'is_recommend' => '0',
  759. 'thispage' => '1',
  760. 'room_type' => '2',
  761. 'pagenum' => '6',
  762. )
  763. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  764. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  765. [ info ] [ TOKEN ] INIT Mysql
  766. [ info ] [ DB ] INIT mysql
  767. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000044s ]
  768. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  769. [ info ] [ LOG ] INIT File
  770. ---------------------------------------------------------------
  771. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/index/getMessage
  772. [运行时间:0.006843s] [吞吐率:146.13req/s] [内存消耗:698.54kb] [文件加载:145]
  773. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  774. [ info ] [ CACHE ] INIT File
  775. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000157s ]
  776. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  777. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  778. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  779. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000045s ]
  780. [ info ] [ ROUTE ] array (
  781. 'type' => 'module',
  782. 'module' =>
  783. array (
  784. 0 => 'Api',
  785. 1 => 'index',
  786. 2 => 'getMessage',
  787. ),
  788. )
  789. [ info ] [ HEADER ] array (
  790. 'accept-encoding' => 'gzip',
  791. 'connection' => 'Keep-Alive',
  792. 'host' => 'voicechat.lanmaonet.com',
  793. 'content-length' => '69',
  794. 'content-type' => 'application/x-www-form-urlencoded',
  795. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  796. 'accept-language' => 'zh-CN,zh;q=0.8',
  797. )
  798. [ info ] [ PARAM ] array (
  799. 'params_from' => 'android',
  800. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  801. 'flag' => '1',
  802. )
  803. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  804. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000071s ]
  805. [ info ] [ TOKEN ] INIT Mysql
  806. [ info ] [ DB ] INIT mysql
  807. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  808. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  809. [ info ] [ LOG ] INIT File
  810. ---------------------------------------------------------------
  811. [ 2021-12-15T09:50:32+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  812. [运行时间:0.008465s] [吞吐率:118.13req/s] [内存消耗:731.26kb] [文件加载:147]
  813. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  814. [ info ] [ CACHE ] INIT File
  815. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000155s ]
  816. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  817. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  818. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  819. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  820. [ info ] [ ROUTE ] array (
  821. 'type' => 'module',
  822. 'module' =>
  823. array (
  824. 0 => 'api',
  825. 1 => 'userCenter',
  826. 2 => 'getMyUserInfo',
  827. ),
  828. )
  829. [ info ] [ HEADER ] array (
  830. 'accept-encoding' => 'gzip',
  831. 'connection' => 'Keep-Alive',
  832. 'host' => 'voicechat.lanmaonet.com',
  833. 'content-length' => '72',
  834. 'content-type' => 'application/x-www-form-urlencoded',
  835. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  836. 'accept-language' => 'zh-CN,zh;q=0.8',
  837. )
  838. [ info ] [ PARAM ] array (
  839. 'params_from' => 'android',
  840. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  841. 'user_id' => '3',
  842. )
  843. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  844. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  845. [ info ] [ TOKEN ] INIT Mysql
  846. [ info ] [ DB ] INIT mysql
  847. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000047s ]
  848. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  849. [ info ] [ LOG ] INIT File
  850. ---------------------------------------------------------------
  851. [ 2021-12-15T09:50:32+08:00 ] 154.8.248.247 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2505679733-144115262077148813-Login-Register&SdkAppid=1400556860&contenttype=json
  852. [运行时间:0.011997s] [吞吐率:83.35req/s] [内存消耗:620.98kb] [文件加载:136]
  853. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  854. [ info ] [ CACHE ] INIT File
  855. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000232s ]
  856. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  857. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  858. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  859. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  860. [ info ] [ ROUTE ] array (
  861. 'type' => 'module',
  862. 'module' =>
  863. array (
  864. 0 => 'api',
  865. 1 => 'tenim',
  866. 2 => 'callback',
  867. ),
  868. )
  869. [ info ] [ HEADER ] array (
  870. 'content-type' => 'application/json',
  871. 'content-length' => '128',
  872. 'connection' => 'keep-alive',
  873. 'host' => 'voicechat.lanmaonet.com',
  874. )
  875. [ info ] [ PARAM ] array (
  876. 'CallbackCommand' => 'State.StateChange',
  877. 'ClientIP' => '112.6.63.60',
  878. 'OptPlatform' => 'Android',
  879. 'RequestId' => '2505679733-144115262077148813-Login-Register',
  880. 'SdkAppid' => '1400556860',
  881. 'contenttype' => 'json',
  882. 'EventTime' => 1639533032539,
  883. 'Info' =>
  884. array (
  885. 'To_Account' => '3',
  886. 'Action' => 'Login',
  887. 'Reason' => 'Register',
  888. ),
  889. )
  890. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  891. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000076s ]
  892. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  893. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  894. [ info ] [ DB ] INIT mysql
  895. [ info ] [ LOG ] INIT File
  896. ---------------------------------------------------------------
  897. [ 2021-12-15T09:50:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  898. [运行时间:0.007005s] [吞吐率:142.76req/s] [内存消耗:701.29kb] [文件加载:146]
  899. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  900. [ info ] [ CACHE ] INIT File
  901. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000178s ]
  902. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  903. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  904. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  905. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  906. [ info ] [ ROUTE ] array (
  907. 'type' => 'module',
  908. 'module' =>
  909. array (
  910. 0 => 'Api',
  911. 1 => 'dispatch',
  912. 2 => 'getSkillList',
  913. ),
  914. )
  915. [ info ] [ HEADER ] array (
  916. 'accept-encoding' => 'gzip',
  917. 'connection' => 'Keep-Alive',
  918. 'host' => 'voicechat.lanmaonet.com',
  919. 'content-length' => '62',
  920. 'content-type' => 'application/x-www-form-urlencoded',
  921. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  922. 'accept-language' => 'zh-CN,zh;q=0.8',
  923. )
  924. [ info ] [ PARAM ] array (
  925. 'params_from' => 'android',
  926. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  927. )
  928. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  929. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  930. [ info ] [ TOKEN ] INIT Mysql
  931. [ info ] [ DB ] INIT mysql
  932. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  933. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  934. [ info ] [ LOG ] INIT File
  935. ---------------------------------------------------------------
  936. [ 2021-12-15T09:50:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  937. [运行时间:0.007839s] [吞吐率:127.57req/s] [内存消耗:701.29kb] [文件加载:146]
  938. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  939. [ info ] [ CACHE ] INIT File
  940. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000196s ]
  941. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  942. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  943. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  944. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  945. [ info ] [ ROUTE ] array (
  946. 'type' => 'module',
  947. 'module' =>
  948. array (
  949. 0 => 'Api',
  950. 1 => 'dispatch',
  951. 2 => 'getSkillList',
  952. ),
  953. )
  954. [ info ] [ HEADER ] array (
  955. 'accept-encoding' => 'gzip',
  956. 'connection' => 'Keep-Alive',
  957. 'host' => 'voicechat.lanmaonet.com',
  958. 'content-length' => '62',
  959. 'content-type' => 'application/x-www-form-urlencoded',
  960. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  961. 'accept-language' => 'zh-CN,zh;q=0.8',
  962. )
  963. [ info ] [ PARAM ] array (
  964. 'params_from' => 'android',
  965. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  966. )
  967. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  968. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  969. [ info ] [ TOKEN ] INIT Mysql
  970. [ info ] [ DB ] INIT mysql
  971. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  972. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  973. [ info ] [ LOG ] INIT File
  974. ---------------------------------------------------------------
  975. [ 2021-12-15T09:50:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  976. [运行时间:0.009548s] [吞吐率:104.73req/s] [内存消耗:731.26kb] [文件加载:147]
  977. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  978. [ info ] [ CACHE ] INIT File
  979. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000208s ]
  980. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000053s ]
  981. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000068s ]
  982. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  983. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  984. [ info ] [ ROUTE ] array (
  985. 'type' => 'module',
  986. 'module' =>
  987. array (
  988. 0 => 'api',
  989. 1 => 'userCenter',
  990. 2 => 'getMyUserInfo',
  991. ),
  992. )
  993. [ info ] [ HEADER ] array (
  994. 'accept-encoding' => 'gzip',
  995. 'connection' => 'Keep-Alive',
  996. 'host' => 'voicechat.lanmaonet.com',
  997. 'content-length' => '72',
  998. 'content-type' => 'application/x-www-form-urlencoded',
  999. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1000. 'accept-language' => 'zh-CN,zh;q=0.8',
  1001. )
  1002. [ info ] [ PARAM ] array (
  1003. 'params_from' => 'android',
  1004. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1005. 'user_id' => '3',
  1006. )
  1007. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1008. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  1009. [ info ] [ TOKEN ] INIT Mysql
  1010. [ info ] [ DB ] INIT mysql
  1011. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  1012. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1013. [ info ] [ LOG ] INIT File
  1014. ---------------------------------------------------------------
  1015. [ 2021-12-15T09:50:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  1016. [运行时间:0.013921s] [吞吐率:71.83req/s] [内存消耗:702.44kb] [文件加载:146]
  1017. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1018. [ info ] [ CACHE ] INIT File
  1019. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000150s ]
  1020. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  1021. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  1022. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1023. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  1024. [ info ] [ ROUTE ] array (
  1025. 'type' => 'module',
  1026. 'module' =>
  1027. array (
  1028. 0 => 'Api',
  1029. 1 => 'userCenter',
  1030. 2 => 'getFollowsLive',
  1031. ),
  1032. )
  1033. [ info ] [ HEADER ] array (
  1034. 'accept-encoding' => 'gzip',
  1035. 'connection' => 'Keep-Alive',
  1036. 'host' => 'voicechat.lanmaonet.com',
  1037. 'content-length' => '91',
  1038. 'content-type' => 'application/x-www-form-urlencoded',
  1039. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1040. 'accept-language' => 'zh-CN,zh;q=0.8',
  1041. )
  1042. [ info ] [ PARAM ] array (
  1043. 'params_from' => 'android',
  1044. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1045. 'is_online' => '1',
  1046. 'page' => '1',
  1047. 'pageNum' => '3',
  1048. )
  1049. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1050. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  1051. [ info ] [ TOKEN ] INIT Mysql
  1052. [ info ] [ DB ] INIT mysql
  1053. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  1054. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1055. [ info ] [ LOG ] INIT File
  1056. ---------------------------------------------------------------
  1057. [ 2021-12-15T09:50:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/cellectionPartyList
  1058. [运行时间:0.018447s] [吞吐率:54.21req/s] [内存消耗:701.81kb] [文件加载:146]
  1059. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1060. [ info ] [ CACHE ] INIT File
  1061. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000197s ]
  1062. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1063. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  1064. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1065. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1066. [ info ] [ ROUTE ] array (
  1067. 'type' => 'module',
  1068. 'module' =>
  1069. array (
  1070. 0 => 'Api',
  1071. 1 => 'party',
  1072. 2 => 'cellectionPartyList',
  1073. ),
  1074. )
  1075. [ info ] [ HEADER ] array (
  1076. 'accept-encoding' => 'gzip',
  1077. 'connection' => 'Keep-Alive',
  1078. 'host' => 'voicechat.lanmaonet.com',
  1079. 'content-length' => '79',
  1080. 'content-type' => 'application/x-www-form-urlencoded',
  1081. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1082. 'accept-language' => 'zh-CN,zh;q=0.8',
  1083. )
  1084. [ info ] [ PARAM ] array (
  1085. 'params_from' => 'android',
  1086. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1087. 'page' => '1',
  1088. 'pageNum' => '2',
  1089. )
  1090. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1091. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  1092. [ info ] [ TOKEN ] INIT Mysql
  1093. [ info ] [ DB ] INIT mysql
  1094. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  1095. [ info ] [ RUN ] app\api\controller\Party->cellectionPartyList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1096. [ info ] [ LOG ] INIT File
  1097. ---------------------------------------------------------------
  1098. [ 2021-12-15T09:50:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  1099. [运行时间:0.023316s] [吞吐率:42.89req/s] [内存消耗:702.77kb] [文件加载:146]
  1100. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1101. [ info ] [ CACHE ] INIT File
  1102. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000182s ]
  1103. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000044s ]
  1104. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  1105. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1106. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1107. [ info ] [ ROUTE ] array (
  1108. 'type' => 'module',
  1109. 'module' =>
  1110. array (
  1111. 0 => 'Api',
  1112. 1 => 'userCenter',
  1113. 2 => 'getFollowsLive',
  1114. ),
  1115. )
  1116. [ info ] [ HEADER ] array (
  1117. 'accept-encoding' => 'gzip',
  1118. 'connection' => 'Keep-Alive',
  1119. 'host' => 'voicechat.lanmaonet.com',
  1120. 'content-length' => '91',
  1121. 'content-type' => 'application/x-www-form-urlencoded',
  1122. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1123. 'accept-language' => 'zh-CN,zh;q=0.8',
  1124. )
  1125. [ info ] [ PARAM ] array (
  1126. 'params_from' => 'android',
  1127. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1128. 'is_online' => '0',
  1129. 'page' => '1',
  1130. 'pageNum' => '2',
  1131. )
  1132. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1133. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  1134. [ info ] [ TOKEN ] INIT Mysql
  1135. [ info ] [ DB ] INIT mysql
  1136. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  1137. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1138. [ info ] [ LOG ] INIT File
  1139. ---------------------------------------------------------------
  1140. [ 2021-12-15T09:50:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  1141. [运行时间:0.025588s] [吞吐率:39.08req/s] [内存消耗:680.81kb] [文件加载:148]
  1142. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1143. [ info ] [ CACHE ] INIT File
  1144. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000193s ]
  1145. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000048s ]
  1146. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000068s ]
  1147. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1148. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  1149. [ info ] [ ROUTE ] array (
  1150. 'type' => 'module',
  1151. 'module' =>
  1152. array (
  1153. 0 => 'Api',
  1154. 1 => 'dynamic',
  1155. 2 => 'getDynamicList',
  1156. ),
  1157. )
  1158. [ info ] [ HEADER ] array (
  1159. 'accept-encoding' => 'gzip',
  1160. 'connection' => 'Keep-Alive',
  1161. 'host' => 'voicechat.lanmaonet.com',
  1162. 'content-length' => '76',
  1163. 'content-type' => 'application/x-www-form-urlencoded',
  1164. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1165. 'accept-language' => 'zh-CN,zh;q=0.8',
  1166. )
  1167. [ info ] [ PARAM ] array (
  1168. 'params_from' => 'android',
  1169. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1170. 'type' => '2',
  1171. 'page' => '1',
  1172. )
  1173. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1174. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000076s ]
  1175. [ info ] [ TOKEN ] INIT Mysql
  1176. [ info ] [ DB ] INIT mysql
  1177. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  1178. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  1179. [ info ] [ LOG ] INIT File
  1180. ---------------------------------------------------------------
  1181. [ 2021-12-15T09:50:33+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  1182. [运行时间:0.023817s] [吞吐率:41.99req/s] [内存消耗:680.81kb] [文件加载:148]
  1183. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1184. [ info ] [ CACHE ] INIT File
  1185. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000178s ]
  1186. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  1187. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  1188. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1189. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1190. [ info ] [ ROUTE ] array (
  1191. 'type' => 'module',
  1192. 'module' =>
  1193. array (
  1194. 0 => 'Api',
  1195. 1 => 'dynamic',
  1196. 2 => 'getDynamicList',
  1197. ),
  1198. )
  1199. [ info ] [ HEADER ] array (
  1200. 'accept-encoding' => 'gzip',
  1201. 'connection' => 'Keep-Alive',
  1202. 'host' => 'voicechat.lanmaonet.com',
  1203. 'content-length' => '76',
  1204. 'content-type' => 'application/x-www-form-urlencoded',
  1205. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1206. 'accept-language' => 'zh-CN,zh;q=0.8',
  1207. )
  1208. [ info ] [ PARAM ] array (
  1209. 'params_from' => 'android',
  1210. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1211. 'type' => '1',
  1212. 'page' => '1',
  1213. )
  1214. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1215. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1216. [ info ] [ TOKEN ] INIT Mysql
  1217. [ info ] [ DB ] INIT mysql
  1218. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  1219. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  1220. [ info ] [ LOG ] INIT File
  1221. ---------------------------------------------------------------
  1222. [ 2021-12-15T09:50:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1223. [运行时间:0.019684s] [吞吐率:50.80req/s] [内存消耗:713.95kb] [文件加载:146]
  1224. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  1225. [ info ] [ CACHE ] INIT File
  1226. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000186s ]
  1227. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1228. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1229. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1230. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1231. [ info ] [ ROUTE ] array (
  1232. 'type' => 'module',
  1233. 'module' =>
  1234. array (
  1235. 0 => 'Api',
  1236. 1 => 'party',
  1237. 2 => 'getPartyRankList',
  1238. ),
  1239. )
  1240. [ info ] [ HEADER ] array (
  1241. 'accept-encoding' => 'gzip',
  1242. 'connection' => 'Keep-Alive',
  1243. 'host' => 'voicechat.lanmaonet.com',
  1244. 'content-length' => '116',
  1245. 'content-type' => 'application/x-www-form-urlencoded',
  1246. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1247. 'accept-language' => 'zh-CN,zh;q=0.8',
  1248. )
  1249. [ info ] [ PARAM ] array (
  1250. 'params_from' => 'android',
  1251. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1252. 'type_id' => '7',
  1253. 'all' => '0',
  1254. 'is_recommend' => '0',
  1255. 'thispage' => '1',
  1256. 'room_type' => '2',
  1257. )
  1258. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1259. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  1260. [ info ] [ TOKEN ] INIT Mysql
  1261. [ info ] [ DB ] INIT mysql
  1262. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  1263. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1264. [ info ] [ LOG ] INIT File
  1265. ---------------------------------------------------------------
  1266. [ 2021-12-15T09:50:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1267. [运行时间:0.009349s] [吞吐率:106.96req/s] [内存消耗:713.95kb] [文件加载:146]
  1268. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1269. [ info ] [ CACHE ] INIT File
  1270. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  1271. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1272. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  1273. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1274. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  1275. [ info ] [ ROUTE ] array (
  1276. 'type' => 'module',
  1277. 'module' =>
  1278. array (
  1279. 0 => 'Api',
  1280. 1 => 'party',
  1281. 2 => 'getPartyRankList',
  1282. ),
  1283. )
  1284. [ info ] [ HEADER ] array (
  1285. 'accept-encoding' => 'gzip',
  1286. 'connection' => 'Keep-Alive',
  1287. 'host' => 'voicechat.lanmaonet.com',
  1288. 'content-length' => '116',
  1289. 'content-type' => 'application/x-www-form-urlencoded',
  1290. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1291. 'accept-language' => 'zh-CN,zh;q=0.8',
  1292. )
  1293. [ info ] [ PARAM ] array (
  1294. 'params_from' => 'android',
  1295. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1296. 'type_id' => '0',
  1297. 'all' => '1',
  1298. 'is_recommend' => '0',
  1299. 'thispage' => '1',
  1300. 'room_type' => '2',
  1301. )
  1302. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1303. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000075s ]
  1304. [ info ] [ TOKEN ] INIT Mysql
  1305. [ info ] [ DB ] INIT mysql
  1306. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  1307. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1308. [ info ] [ LOG ] INIT File
  1309. ---------------------------------------------------------------
  1310. [ 2021-12-15T09:50:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1311. [运行时间:0.018537s] [吞吐率:53.95req/s] [内存消耗:713.89kb] [文件加载:146]
  1312. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  1313. [ info ] [ CACHE ] INIT File
  1314. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000161s ]
  1315. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1316. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  1317. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1318. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1319. [ info ] [ ROUTE ] array (
  1320. 'type' => 'module',
  1321. 'module' =>
  1322. array (
  1323. 0 => 'Api',
  1324. 1 => 'party',
  1325. 2 => 'getPartyRankList',
  1326. ),
  1327. )
  1328. [ info ] [ HEADER ] array (
  1329. 'accept-encoding' => 'gzip',
  1330. 'connection' => 'Keep-Alive',
  1331. 'host' => 'voicechat.lanmaonet.com',
  1332. 'content-length' => '104',
  1333. 'content-type' => 'application/x-www-form-urlencoded',
  1334. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1335. 'accept-language' => 'zh-CN,zh;q=0.8',
  1336. )
  1337. [ info ] [ PARAM ] array (
  1338. 'params_from' => 'android',
  1339. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1340. 'type_id' => '2',
  1341. 'all' => '0',
  1342. 'is_recommend' => '0',
  1343. 'thispage' => '1',
  1344. )
  1345. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1346. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  1347. [ info ] [ TOKEN ] INIT Mysql
  1348. [ info ] [ DB ] INIT mysql
  1349. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  1350. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1351. [ info ] [ LOG ] INIT File
  1352. ---------------------------------------------------------------
  1353. [ 2021-12-15T09:50:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1354. [运行时间:0.011568s] [吞吐率:86.44req/s] [内存消耗:713.89kb] [文件加载:146]
  1355. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1356. [ info ] [ CACHE ] INIT File
  1357. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000143s ]
  1358. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1359. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  1360. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1361. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  1362. [ info ] [ ROUTE ] array (
  1363. 'type' => 'module',
  1364. 'module' =>
  1365. array (
  1366. 0 => 'Api',
  1367. 1 => 'party',
  1368. 2 => 'getPartyRankList',
  1369. ),
  1370. )
  1371. [ info ] [ HEADER ] array (
  1372. 'accept-encoding' => 'gzip',
  1373. 'connection' => 'Keep-Alive',
  1374. 'host' => 'voicechat.lanmaonet.com',
  1375. 'content-length' => '104',
  1376. 'content-type' => 'application/x-www-form-urlencoded',
  1377. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1378. 'accept-language' => 'zh-CN,zh;q=0.8',
  1379. )
  1380. [ info ] [ PARAM ] array (
  1381. 'params_from' => 'android',
  1382. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1383. 'type_id' => '1',
  1384. 'all' => '0',
  1385. 'is_recommend' => '0',
  1386. 'thispage' => '1',
  1387. )
  1388. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1389. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000105s ]
  1390. [ info ] [ TOKEN ] INIT Mysql
  1391. [ info ] [ DB ] INIT mysql
  1392. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000143s ]
  1393. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1394. [ info ] [ LOG ] INIT File
  1395. ---------------------------------------------------------------
  1396. [ 2021-12-15T09:50:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1397. [运行时间:0.020140s] [吞吐率:49.65req/s] [内存消耗:713.86kb] [文件加载:146]
  1398. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1399. [ info ] [ CACHE ] INIT File
  1400. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000237s ]
  1401. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000045s ]
  1402. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  1403. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1404. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  1405. [ info ] [ ROUTE ] array (
  1406. 'type' => 'module',
  1407. 'module' =>
  1408. array (
  1409. 0 => 'Api',
  1410. 1 => 'party',
  1411. 2 => 'getPartyRankList',
  1412. ),
  1413. )
  1414. [ info ] [ HEADER ] array (
  1415. 'accept-encoding' => 'gzip',
  1416. 'connection' => 'Keep-Alive',
  1417. 'host' => 'voicechat.lanmaonet.com',
  1418. 'content-length' => '103',
  1419. 'content-type' => 'application/x-www-form-urlencoded',
  1420. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1421. 'accept-language' => 'zh-CN,zh;q=0.8',
  1422. )
  1423. [ info ] [ PARAM ] array (
  1424. 'params_from' => 'android',
  1425. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1426. 'type_id' => '',
  1427. 'all' => '1',
  1428. 'is_recommend' => '0',
  1429. 'thispage' => '1',
  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.000063s ]
  1433. [ info ] [ TOKEN ] INIT Mysql
  1434. [ info ] [ DB ] INIT mysql
  1435. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1436. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1437. [ info ] [ LOG ] INIT File
  1438. ---------------------------------------------------------------
  1439. [ 2021-12-15T09:50:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1440. [运行时间:0.006349s] [吞吐率:157.50req/s] [内存消耗:713.89kb] [文件加载:146]
  1441. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  1442. [ info ] [ CACHE ] INIT File
  1443. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000173s ]
  1444. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  1445. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  1446. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1447. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1448. [ info ] [ ROUTE ] array (
  1449. 'type' => 'module',
  1450. 'module' =>
  1451. array (
  1452. 0 => 'Api',
  1453. 1 => 'party',
  1454. 2 => 'getPartyRankList',
  1455. ),
  1456. )
  1457. [ info ] [ HEADER ] array (
  1458. 'accept-encoding' => 'gzip',
  1459. 'connection' => 'Keep-Alive',
  1460. 'host' => 'voicechat.lanmaonet.com',
  1461. 'content-length' => '104',
  1462. 'content-type' => 'application/x-www-form-urlencoded',
  1463. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1464. 'accept-language' => 'zh-CN,zh;q=0.8',
  1465. )
  1466. [ info ] [ PARAM ] array (
  1467. 'params_from' => 'android',
  1468. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1469. 'type_id' => '3',
  1470. 'all' => '0',
  1471. 'is_recommend' => '0',
  1472. 'thispage' => '1',
  1473. )
  1474. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1475. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  1476. [ info ] [ TOKEN ] INIT Mysql
  1477. [ info ] [ DB ] INIT mysql
  1478. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000050s ]
  1479. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1480. [ info ] [ LOG ] INIT File
  1481. ---------------------------------------------------------------
  1482. [ 2021-12-15T09:50:34+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1483. [运行时间:0.007056s] [吞吐率:141.72req/s] [内存消耗:713.89kb] [文件加载:146]
  1484. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1485. [ info ] [ CACHE ] INIT File
  1486. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000172s ]
  1487. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1488. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000046s ]
  1489. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1490. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  1491. [ info ] [ ROUTE ] array (
  1492. 'type' => 'module',
  1493. 'module' =>
  1494. array (
  1495. 0 => 'Api',
  1496. 1 => 'party',
  1497. 2 => 'getPartyRankList',
  1498. ),
  1499. )
  1500. [ info ] [ HEADER ] array (
  1501. 'accept-encoding' => 'gzip',
  1502. 'connection' => 'Keep-Alive',
  1503. 'host' => 'voicechat.lanmaonet.com',
  1504. 'content-length' => '104',
  1505. 'content-type' => 'application/x-www-form-urlencoded',
  1506. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1507. 'accept-language' => 'zh-CN,zh;q=0.8',
  1508. )
  1509. [ info ] [ PARAM ] array (
  1510. 'params_from' => 'android',
  1511. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1512. 'type_id' => '4',
  1513. 'all' => '0',
  1514. 'is_recommend' => '0',
  1515. 'thispage' => '1',
  1516. )
  1517. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1518. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000047s ]
  1519. [ info ] [ TOKEN ] INIT Mysql
  1520. [ info ] [ DB ] INIT mysql
  1521. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000096s ]
  1522. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1523. [ info ] [ LOG ] INIT File
  1524. ---------------------------------------------------------------
  1525. [ 2021-12-15T09:50:41+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1526. [运行时间:0.016760s] [吞吐率:59.67req/s] [内存消耗:714.33kb] [文件加载:146]
  1527. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  1528. [ info ] [ CACHE ] INIT File
  1529. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000173s ]
  1530. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1531. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  1532. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1533. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1534. [ info ] [ ROUTE ] array (
  1535. 'type' => 'module',
  1536. 'module' =>
  1537. array (
  1538. 0 => 'Api',
  1539. 1 => 'party',
  1540. 2 => 'getPartyRankList',
  1541. ),
  1542. )
  1543. [ info ] [ HEADER ] array (
  1544. 'accept-encoding' => 'gzip',
  1545. 'connection' => 'Keep-Alive',
  1546. 'host' => 'voicechat.lanmaonet.com',
  1547. 'content-length' => '126',
  1548. 'content-type' => 'application/x-www-form-urlencoded',
  1549. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1550. 'accept-language' => 'zh-CN,zh;q=0.8',
  1551. )
  1552. [ info ] [ PARAM ] array (
  1553. 'params_from' => 'android',
  1554. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1555. 'type_id' => '0',
  1556. 'all' => '1',
  1557. 'is_recommend' => '0',
  1558. 'thispage' => '1',
  1559. 'room_type' => '2',
  1560. 'pagenum' => '6',
  1561. )
  1562. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1563. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  1564. [ info ] [ TOKEN ] INIT Mysql
  1565. [ info ] [ DB ] INIT mysql
  1566. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000077s ]
  1567. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1568. [ info ] [ LOG ] INIT File
  1569. ---------------------------------------------------------------
  1570. [ 2021-12-15T09:50:41+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getSwitch
  1571. [运行时间:0.018720s] [吞吐率:53.42req/s] [内存消耗:633.13kb] [文件加载:143]
  1572. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1573. [ info ] [ CACHE ] INIT File
  1574. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000160s ]
  1575. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1576. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  1577. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1578. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  1579. [ info ] [ ROUTE ] array (
  1580. 'type' => 'module',
  1581. 'module' =>
  1582. array (
  1583. 0 => 'api',
  1584. 1 => 'index',
  1585. 2 => 'getSwitch',
  1586. ),
  1587. )
  1588. [ info ] [ HEADER ] array (
  1589. 'accept-encoding' => 'gzip',
  1590. 'connection' => 'Keep-Alive',
  1591. 'host' => 'voicechat.lanmaonet.com',
  1592. 'content-length' => '62',
  1593. 'content-type' => 'application/x-www-form-urlencoded',
  1594. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1595. 'accept-language' => 'zh-CN,zh;q=0.8',
  1596. )
  1597. [ info ] [ PARAM ] array (
  1598. 'params_from' => 'android',
  1599. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1600. )
  1601. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1602. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  1603. [ info ] [ TOKEN ] INIT Mysql
  1604. [ info ] [ DB ] INIT mysql
  1605. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  1606. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1607. [ info ] [ LOG ] INIT File
  1608. ---------------------------------------------------------------
  1609. [ 2021-12-15T09:50:41+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1610. [运行时间:0.017636s] [吞吐率:56.70req/s] [内存消耗:713.95kb] [文件加载:146]
  1611. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1612. [ info ] [ CACHE ] INIT File
  1613. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000156s ]
  1614. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  1615. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  1616. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1617. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1618. [ info ] [ ROUTE ] array (
  1619. 'type' => 'module',
  1620. 'module' =>
  1621. array (
  1622. 0 => 'Api',
  1623. 1 => 'party',
  1624. 2 => 'getPartyRankList',
  1625. ),
  1626. )
  1627. [ info ] [ HEADER ] array (
  1628. 'accept-encoding' => 'gzip',
  1629. 'connection' => 'Keep-Alive',
  1630. 'host' => 'voicechat.lanmaonet.com',
  1631. 'content-length' => '114',
  1632. 'content-type' => 'application/x-www-form-urlencoded',
  1633. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1634. 'accept-language' => 'zh-CN,zh;q=0.8',
  1635. )
  1636. [ info ] [ PARAM ] array (
  1637. 'params_from' => 'android',
  1638. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1639. 'type_id' => '',
  1640. 'all' => '1',
  1641. 'is_recommend' => '0',
  1642. 'room_type' => '1',
  1643. 'pagenum' => '6',
  1644. )
  1645. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1646. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  1647. [ info ] [ TOKEN ] INIT Mysql
  1648. [ info ] [ DB ] INIT mysql
  1649. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1650. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1651. [ info ] [ LOG ] INIT File
  1652. ---------------------------------------------------------------
  1653. [ 2021-12-15T09:50:41+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/index/getMessage
  1654. [运行时间:0.027284s] [吞吐率:36.65req/s] [内存消耗:698.54kb] [文件加载:145]
  1655. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  1656. [ info ] [ CACHE ] INIT File
  1657. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000167s ]
  1658. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1659. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  1660. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1661. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  1662. [ info ] [ ROUTE ] array (
  1663. 'type' => 'module',
  1664. 'module' =>
  1665. array (
  1666. 0 => 'Api',
  1667. 1 => 'index',
  1668. 2 => 'getMessage',
  1669. ),
  1670. )
  1671. [ info ] [ HEADER ] array (
  1672. 'accept-encoding' => 'gzip',
  1673. 'connection' => 'Keep-Alive',
  1674. 'host' => 'voicechat.lanmaonet.com',
  1675. 'content-length' => '69',
  1676. 'content-type' => 'application/x-www-form-urlencoded',
  1677. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1678. 'accept-language' => 'zh-CN,zh;q=0.8',
  1679. )
  1680. [ info ] [ PARAM ] array (
  1681. 'params_from' => 'android',
  1682. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1683. 'flag' => '1',
  1684. )
  1685. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1686. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  1687. [ info ] [ TOKEN ] INIT Mysql
  1688. [ info ] [ DB ] INIT mysql
  1689. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000174s ]
  1690. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1691. [ info ] [ LOG ] INIT File
  1692. ---------------------------------------------------------------
  1693. [ 2021-12-15T09:50:41+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1694. [运行时间:0.031681s] [吞吐率:31.56req/s] [内存消耗:713.95kb] [文件加载:146]
  1695. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  1696. [ info ] [ CACHE ] INIT File
  1697. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000273s ]
  1698. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000048s ]
  1699. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  1700. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1701. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000054s ]
  1702. [ info ] [ ROUTE ] array (
  1703. 'type' => 'module',
  1704. 'module' =>
  1705. array (
  1706. 0 => 'Api',
  1707. 1 => 'party',
  1708. 2 => 'getPartyRankList',
  1709. ),
  1710. )
  1711. [ info ] [ HEADER ] array (
  1712. 'accept-encoding' => 'gzip',
  1713. 'connection' => 'Keep-Alive',
  1714. 'host' => 'voicechat.lanmaonet.com',
  1715. 'content-length' => '114',
  1716. 'content-type' => 'application/x-www-form-urlencoded',
  1717. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1718. 'accept-language' => 'zh-CN,zh;q=0.8',
  1719. )
  1720. [ info ] [ PARAM ] array (
  1721. 'params_from' => 'android',
  1722. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1723. 'type_id' => '',
  1724. 'all' => '1',
  1725. 'is_recommend' => '1',
  1726. 'room_type' => '1',
  1727. 'pagenum' => '3',
  1728. )
  1729. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1730. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000107s ]
  1731. [ info ] [ TOKEN ] INIT Mysql
  1732. [ info ] [ DB ] INIT mysql
  1733. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  1734. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1735. [ info ] [ LOG ] INIT File
  1736. ---------------------------------------------------------------
  1737. [ 2021-12-15T09:50:41+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  1738. [运行时间:0.009109s] [吞吐率:109.78req/s] [内存消耗:731.26kb] [文件加载:147]
  1739. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1740. [ info ] [ CACHE ] INIT File
  1741. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000152s ]
  1742. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1743. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  1744. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1745. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1746. [ info ] [ ROUTE ] array (
  1747. 'type' => 'module',
  1748. 'module' =>
  1749. array (
  1750. 0 => 'api',
  1751. 1 => 'userCenter',
  1752. 2 => 'getMyUserInfo',
  1753. ),
  1754. )
  1755. [ info ] [ HEADER ] array (
  1756. 'accept-encoding' => 'gzip',
  1757. 'connection' => 'Keep-Alive',
  1758. 'host' => 'voicechat.lanmaonet.com',
  1759. 'content-length' => '72',
  1760. 'content-type' => 'application/x-www-form-urlencoded',
  1761. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1762. 'accept-language' => 'zh-CN,zh;q=0.8',
  1763. )
  1764. [ info ] [ PARAM ] array (
  1765. 'params_from' => 'android',
  1766. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1767. 'user_id' => '3',
  1768. )
  1769. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1770. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  1771. [ info ] [ TOKEN ] INIT Mysql
  1772. [ info ] [ DB ] INIT mysql
  1773. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  1774. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1775. [ info ] [ LOG ] INIT File
  1776. ---------------------------------------------------------------
  1777. [ 2021-12-15T09:50:41+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  1778. [运行时间:0.006780s] [吞吐率:147.49req/s] [内存消耗:701.29kb] [文件加载:146]
  1779. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1780. [ info ] [ CACHE ] INIT File
  1781. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000178s ]
  1782. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1783. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1784. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1785. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1786. [ info ] [ ROUTE ] array (
  1787. 'type' => 'module',
  1788. 'module' =>
  1789. array (
  1790. 0 => 'Api',
  1791. 1 => 'dispatch',
  1792. 2 => 'getSkillList',
  1793. ),
  1794. )
  1795. [ info ] [ HEADER ] array (
  1796. 'accept-encoding' => 'gzip',
  1797. 'connection' => 'Keep-Alive',
  1798. 'host' => 'voicechat.lanmaonet.com',
  1799. 'content-length' => '62',
  1800. 'content-type' => 'application/x-www-form-urlencoded',
  1801. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1802. 'accept-language' => 'zh-CN,zh;q=0.8',
  1803. )
  1804. [ info ] [ PARAM ] array (
  1805. 'params_from' => 'android',
  1806. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1807. )
  1808. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1809. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  1810. [ info ] [ TOKEN ] INIT Mysql
  1811. [ info ] [ DB ] INIT mysql
  1812. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  1813. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  1814. [ info ] [ LOG ] INIT File
  1815. ---------------------------------------------------------------
  1816. [ 2021-12-15T09:50:42+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  1817. [运行时间:0.009862s] [吞吐率:101.40req/s] [内存消耗:731.26kb] [文件加载:147]
  1818. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  1819. [ info ] [ CACHE ] INIT File
  1820. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000208s ]
  1821. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1822. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  1823. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1824. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  1825. [ info ] [ ROUTE ] array (
  1826. 'type' => 'module',
  1827. 'module' =>
  1828. array (
  1829. 0 => 'api',
  1830. 1 => 'userCenter',
  1831. 2 => 'getMyUserInfo',
  1832. ),
  1833. )
  1834. [ info ] [ HEADER ] array (
  1835. 'accept-encoding' => 'gzip',
  1836. 'connection' => 'Keep-Alive',
  1837. 'host' => 'voicechat.lanmaonet.com',
  1838. 'content-length' => '72',
  1839. 'content-type' => 'application/x-www-form-urlencoded',
  1840. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1841. 'accept-language' => 'zh-CN,zh;q=0.8',
  1842. )
  1843. [ info ] [ PARAM ] array (
  1844. 'params_from' => 'android',
  1845. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1846. 'user_id' => '3',
  1847. )
  1848. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1849. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  1850. [ info ] [ TOKEN ] INIT Mysql
  1851. [ info ] [ DB ] INIT mysql
  1852. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000073s ]
  1853. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  1854. [ info ] [ LOG ] INIT File
  1855. ---------------------------------------------------------------
  1856. [ 2021-12-15T09:51:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getSwitch
  1857. [运行时间:0.012929s] [吞吐率:77.35req/s] [内存消耗:633.13kb] [文件加载:143]
  1858. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1859. [ info ] [ CACHE ] INIT File
  1860. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000160s ]
  1861. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1862. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  1863. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1864. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  1865. [ info ] [ ROUTE ] array (
  1866. 'type' => 'module',
  1867. 'module' =>
  1868. array (
  1869. 0 => 'api',
  1870. 1 => 'index',
  1871. 2 => 'getSwitch',
  1872. ),
  1873. )
  1874. [ info ] [ HEADER ] array (
  1875. 'accept-encoding' => 'gzip',
  1876. 'connection' => 'Keep-Alive',
  1877. 'host' => 'voicechat.lanmaonet.com',
  1878. 'content-length' => '62',
  1879. 'content-type' => 'application/x-www-form-urlencoded',
  1880. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1881. 'accept-language' => 'zh-CN,zh;q=0.8',
  1882. )
  1883. [ info ] [ PARAM ] array (
  1884. 'params_from' => 'android',
  1885. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1886. )
  1887. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1888. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  1889. [ info ] [ TOKEN ] INIT Mysql
  1890. [ info ] [ DB ] INIT mysql
  1891. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000078s ]
  1892. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1893. [ info ] [ LOG ] INIT File
  1894. ---------------------------------------------------------------
  1895. [ 2021-12-15T09:51:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/index/getMessage
  1896. [运行时间:0.018901s] [吞吐率:52.91req/s] [内存消耗:698.54kb] [文件加载:145]
  1897. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  1898. [ info ] [ CACHE ] INIT File
  1899. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000252s ]
  1900. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1901. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  1902. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1903. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000051s ]
  1904. [ info ] [ ROUTE ] array (
  1905. 'type' => 'module',
  1906. 'module' =>
  1907. array (
  1908. 0 => 'Api',
  1909. 1 => 'index',
  1910. 2 => 'getMessage',
  1911. ),
  1912. )
  1913. [ info ] [ HEADER ] array (
  1914. 'accept-encoding' => 'gzip',
  1915. 'connection' => 'Keep-Alive',
  1916. 'host' => 'voicechat.lanmaonet.com',
  1917. 'content-length' => '69',
  1918. 'content-type' => 'application/x-www-form-urlencoded',
  1919. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1920. 'accept-language' => 'zh-CN,zh;q=0.8',
  1921. )
  1922. [ info ] [ PARAM ] array (
  1923. 'params_from' => 'android',
  1924. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1925. 'flag' => '1',
  1926. )
  1927. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1928. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000085s ]
  1929. [ info ] [ TOKEN ] INIT Mysql
  1930. [ info ] [ DB ] INIT mysql
  1931. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  1932. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  1933. [ info ] [ LOG ] INIT File
  1934. ---------------------------------------------------------------
  1935. [ 2021-12-15T09:51:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1936. [运行时间:0.013473s] [吞吐率:74.22req/s] [内存消耗:713.95kb] [文件加载:146]
  1937. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  1938. [ info ] [ CACHE ] INIT File
  1939. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000160s ]
  1940. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  1941. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  1942. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1943. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  1944. [ info ] [ ROUTE ] array (
  1945. 'type' => 'module',
  1946. 'module' =>
  1947. array (
  1948. 0 => 'Api',
  1949. 1 => 'party',
  1950. 2 => 'getPartyRankList',
  1951. ),
  1952. )
  1953. [ info ] [ HEADER ] array (
  1954. 'accept-encoding' => 'gzip',
  1955. 'connection' => 'Keep-Alive',
  1956. 'host' => 'voicechat.lanmaonet.com',
  1957. 'content-length' => '114',
  1958. 'content-type' => 'application/x-www-form-urlencoded',
  1959. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  1960. 'accept-language' => 'zh-CN,zh;q=0.8',
  1961. )
  1962. [ info ] [ PARAM ] array (
  1963. 'params_from' => 'android',
  1964. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  1965. 'type_id' => '',
  1966. 'all' => '1',
  1967. 'is_recommend' => '0',
  1968. 'room_type' => '1',
  1969. 'pagenum' => '6',
  1970. )
  1971. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  1972. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  1973. [ info ] [ TOKEN ] INIT Mysql
  1974. [ info ] [ DB ] INIT mysql
  1975. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  1976. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  1977. [ info ] [ LOG ] INIT File
  1978. ---------------------------------------------------------------
  1979. [ 2021-12-15T09:51:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  1980. [运行时间:0.015089s] [吞吐率:66.27req/s] [内存消耗:713.95kb] [文件加载:146]
  1981. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  1982. [ info ] [ CACHE ] INIT File
  1983. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000162s ]
  1984. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1985. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  1986. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1987. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  1988. [ info ] [ ROUTE ] array (
  1989. 'type' => 'module',
  1990. 'module' =>
  1991. array (
  1992. 0 => 'Api',
  1993. 1 => 'party',
  1994. 2 => 'getPartyRankList',
  1995. ),
  1996. )
  1997. [ info ] [ HEADER ] array (
  1998. 'accept-encoding' => 'gzip',
  1999. 'connection' => 'Keep-Alive',
  2000. 'host' => 'voicechat.lanmaonet.com',
  2001. 'content-length' => '114',
  2002. 'content-type' => 'application/x-www-form-urlencoded',
  2003. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2004. 'accept-language' => 'zh-CN,zh;q=0.8',
  2005. )
  2006. [ info ] [ PARAM ] array (
  2007. 'params_from' => 'android',
  2008. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2009. 'type_id' => '',
  2010. 'all' => '1',
  2011. 'is_recommend' => '1',
  2012. 'room_type' => '1',
  2013. 'pagenum' => '3',
  2014. )
  2015. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2016. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  2017. [ info ] [ TOKEN ] INIT Mysql
  2018. [ info ] [ DB ] INIT mysql
  2019. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  2020. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2021. [ info ] [ LOG ] INIT File
  2022. ---------------------------------------------------------------
  2023. [ 2021-12-15T09:51:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2024. [运行时间:0.021823s] [吞吐率:45.82req/s] [内存消耗:714.33kb] [文件加载:146]
  2025. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2026. [ info ] [ CACHE ] INIT File
  2027. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000263s ]
  2028. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  2029. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  2030. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2031. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000050s ]
  2032. [ info ] [ ROUTE ] array (
  2033. 'type' => 'module',
  2034. 'module' =>
  2035. array (
  2036. 0 => 'Api',
  2037. 1 => 'party',
  2038. 2 => 'getPartyRankList',
  2039. ),
  2040. )
  2041. [ info ] [ HEADER ] array (
  2042. 'accept-encoding' => 'gzip',
  2043. 'connection' => 'Keep-Alive',
  2044. 'host' => 'voicechat.lanmaonet.com',
  2045. 'content-length' => '126',
  2046. 'content-type' => 'application/x-www-form-urlencoded',
  2047. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2048. 'accept-language' => 'zh-CN,zh;q=0.8',
  2049. )
  2050. [ info ] [ PARAM ] array (
  2051. 'params_from' => 'android',
  2052. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2053. 'type_id' => '0',
  2054. 'all' => '1',
  2055. 'is_recommend' => '0',
  2056. 'thispage' => '1',
  2057. 'room_type' => '2',
  2058. 'pagenum' => '6',
  2059. )
  2060. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2061. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  2062. [ info ] [ TOKEN ] INIT Mysql
  2063. [ info ] [ DB ] INIT mysql
  2064. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  2065. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2066. [ info ] [ LOG ] INIT File
  2067. ---------------------------------------------------------------
  2068. [ 2021-12-15T09:51:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2069. [运行时间:0.009686s] [吞吐率:103.24req/s] [内存消耗:731.26kb] [文件加载:147]
  2070. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2071. [ info ] [ CACHE ] INIT File
  2072. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000253s ]
  2073. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  2074. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  2075. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2076. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  2077. [ info ] [ ROUTE ] array (
  2078. 'type' => 'module',
  2079. 'module' =>
  2080. array (
  2081. 0 => 'api',
  2082. 1 => 'userCenter',
  2083. 2 => 'getMyUserInfo',
  2084. ),
  2085. )
  2086. [ info ] [ HEADER ] array (
  2087. 'accept-encoding' => 'gzip',
  2088. 'connection' => 'Keep-Alive',
  2089. 'host' => 'voicechat.lanmaonet.com',
  2090. 'content-length' => '72',
  2091. 'content-type' => 'application/x-www-form-urlencoded',
  2092. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2093. 'accept-language' => 'zh-CN,zh;q=0.8',
  2094. )
  2095. [ info ] [ PARAM ] array (
  2096. 'params_from' => 'android',
  2097. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2098. 'user_id' => '3',
  2099. )
  2100. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2101. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  2102. [ info ] [ TOKEN ] INIT Mysql
  2103. [ info ] [ DB ] INIT mysql
  2104. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000071s ]
  2105. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2106. [ info ] [ LOG ] INIT File
  2107. ---------------------------------------------------------------
  2108. [ 2021-12-15T09:51:26+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  2109. [运行时间:0.007059s] [吞吐率:141.66req/s] [内存消耗:701.29kb] [文件加载:146]
  2110. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2111. [ info ] [ CACHE ] INIT File
  2112. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000178s ]
  2113. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  2114. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  2115. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2116. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  2117. [ info ] [ ROUTE ] array (
  2118. 'type' => 'module',
  2119. 'module' =>
  2120. array (
  2121. 0 => 'Api',
  2122. 1 => 'dispatch',
  2123. 2 => 'getSkillList',
  2124. ),
  2125. )
  2126. [ info ] [ HEADER ] array (
  2127. 'accept-encoding' => 'gzip',
  2128. 'connection' => 'Keep-Alive',
  2129. 'host' => 'voicechat.lanmaonet.com',
  2130. 'content-length' => '62',
  2131. 'content-type' => 'application/x-www-form-urlencoded',
  2132. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2133. 'accept-language' => 'zh-CN,zh;q=0.8',
  2134. )
  2135. [ info ] [ PARAM ] array (
  2136. 'params_from' => 'android',
  2137. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2138. )
  2139. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2140. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  2141. [ info ] [ TOKEN ] INIT Mysql
  2142. [ info ] [ DB ] INIT mysql
  2143. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  2144. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  2145. [ info ] [ LOG ] INIT File
  2146. ---------------------------------------------------------------
  2147. [ 2021-12-15T09:51:27+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2148. [运行时间:0.009507s] [吞吐率:105.19req/s] [内存消耗:731.26kb] [文件加载:147]
  2149. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2150. [ info ] [ CACHE ] INIT File
  2151. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000214s ]
  2152. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2153. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  2154. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2155. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  2156. [ info ] [ ROUTE ] array (
  2157. 'type' => 'module',
  2158. 'module' =>
  2159. array (
  2160. 0 => 'api',
  2161. 1 => 'userCenter',
  2162. 2 => 'getMyUserInfo',
  2163. ),
  2164. )
  2165. [ info ] [ HEADER ] array (
  2166. 'accept-encoding' => 'gzip',
  2167. 'connection' => 'Keep-Alive',
  2168. 'host' => 'voicechat.lanmaonet.com',
  2169. 'content-length' => '72',
  2170. 'content-type' => 'application/x-www-form-urlencoded',
  2171. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2172. 'accept-language' => 'zh-CN,zh;q=0.8',
  2173. )
  2174. [ info ] [ PARAM ] array (
  2175. 'params_from' => 'android',
  2176. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2177. 'user_id' => '3',
  2178. )
  2179. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2180. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000056s ]
  2181. [ info ] [ TOKEN ] INIT Mysql
  2182. [ info ] [ DB ] INIT mysql
  2183. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  2184. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2185. [ info ] [ LOG ] INIT File
  2186. ---------------------------------------------------------------
  2187. [ 2021-12-15T09:51:29+08:00 ] 146.56.222.186 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2505681712-144115262077148813-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  2188. [运行时间:0.360569s] [吞吐率:2.77req/s] [内存消耗:690.29kb] [文件加载:140]
  2189. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2190. [ info ] [ CACHE ] INIT File
  2191. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000199s ]
  2192. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  2193. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  2194. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2195. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  2196. [ info ] [ ROUTE ] array (
  2197. 'type' => 'module',
  2198. 'module' =>
  2199. array (
  2200. 0 => 'api',
  2201. 1 => 'tenim',
  2202. 2 => 'callback',
  2203. ),
  2204. )
  2205. [ info ] [ HEADER ] array (
  2206. 'content-type' => 'application/json',
  2207. 'content-length' => '134',
  2208. 'connection' => 'keep-alive',
  2209. 'host' => 'voicechat.lanmaonet.com',
  2210. )
  2211. [ info ] [ PARAM ] array (
  2212. 'CallbackCommand' => 'State.StateChange',
  2213. 'ClientIP' => '112.6.63.60',
  2214. 'OptPlatform' => 'Android',
  2215. 'RequestId' => '2505681712-144115262077148813-Disconnect-LinkClose',
  2216. 'SdkAppid' => '1400556860',
  2217. 'contenttype' => 'json',
  2218. 'EventTime' => 1639533088965,
  2219. 'Info' =>
  2220. array (
  2221. 'To_Account' => '3',
  2222. 'Action' => 'Disconnect',
  2223. 'Reason' => 'LinkClose',
  2224. ),
  2225. )
  2226. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2227. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  2228. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  2229. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2230. [ info ] [ DB ] INIT mysql
  2231. [ info ] [ LOG ] INIT File
  2232. ---------------------------------------------------------------
  2233. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2234. [运行时间:0.008390s] [吞吐率:119.19req/s] [内存消耗:713.95kb] [文件加载:146]
  2235. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2236. [ info ] [ CACHE ] INIT File
  2237. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000156s ]
  2238. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  2239. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  2240. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2241. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  2242. [ info ] [ ROUTE ] array (
  2243. 'type' => 'module',
  2244. 'module' =>
  2245. array (
  2246. 0 => 'Api',
  2247. 1 => 'party',
  2248. 2 => 'getPartyRankList',
  2249. ),
  2250. )
  2251. [ info ] [ HEADER ] array (
  2252. 'accept-encoding' => 'gzip',
  2253. 'connection' => 'Keep-Alive',
  2254. 'host' => 'voicechat.lanmaonet.com',
  2255. 'content-length' => '114',
  2256. 'content-type' => 'application/x-www-form-urlencoded',
  2257. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2258. 'accept-language' => 'zh-CN,zh;q=0.8',
  2259. )
  2260. [ info ] [ PARAM ] array (
  2261. 'params_from' => 'android',
  2262. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2263. 'type_id' => '',
  2264. 'all' => '1',
  2265. 'is_recommend' => '1',
  2266. 'room_type' => '1',
  2267. 'pagenum' => '3',
  2268. )
  2269. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2270. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  2271. [ info ] [ TOKEN ] INIT Mysql
  2272. [ info ] [ DB ] INIT mysql
  2273. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000078s ]
  2274. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2275. [ info ] [ LOG ] INIT File
  2276. ---------------------------------------------------------------
  2277. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getSwitch
  2278. [运行时间:0.012277s] [吞吐率:81.45req/s] [内存消耗:633.13kb] [文件加载:143]
  2279. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2280. [ info ] [ CACHE ] INIT File
  2281. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000168s ]
  2282. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  2283. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  2284. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2285. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  2286. [ info ] [ ROUTE ] array (
  2287. 'type' => 'module',
  2288. 'module' =>
  2289. array (
  2290. 0 => 'api',
  2291. 1 => 'index',
  2292. 2 => 'getSwitch',
  2293. ),
  2294. )
  2295. [ info ] [ HEADER ] array (
  2296. 'accept-encoding' => 'gzip',
  2297. 'connection' => 'Keep-Alive',
  2298. 'host' => 'voicechat.lanmaonet.com',
  2299. 'content-length' => '62',
  2300. 'content-type' => 'application/x-www-form-urlencoded',
  2301. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2302. 'accept-language' => 'zh-CN,zh;q=0.8',
  2303. )
  2304. [ info ] [ PARAM ] array (
  2305. 'params_from' => 'android',
  2306. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2307. )
  2308. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2309. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  2310. [ info ] [ TOKEN ] INIT Mysql
  2311. [ info ] [ DB ] INIT mysql
  2312. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  2313. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  2314. [ info ] [ LOG ] INIT File
  2315. ---------------------------------------------------------------
  2316. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getEdition
  2317. [运行时间:0.018184s] [吞吐率:54.99req/s] [内存消耗:633.13kb] [文件加载:143]
  2318. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2319. [ info ] [ CACHE ] INIT File
  2320. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000170s ]
  2321. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000048s ]
  2322. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000067s ]
  2323. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2324. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000052s ]
  2325. [ info ] [ ROUTE ] array (
  2326. 'type' => 'module',
  2327. 'module' =>
  2328. array (
  2329. 0 => 'api',
  2330. 1 => 'index',
  2331. 2 => 'getEdition',
  2332. ),
  2333. )
  2334. [ info ] [ HEADER ] array (
  2335. 'accept-encoding' => 'gzip',
  2336. 'connection' => 'Keep-Alive',
  2337. 'host' => 'voicechat.lanmaonet.com',
  2338. 'content-length' => '62',
  2339. 'content-type' => 'application/x-www-form-urlencoded',
  2340. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2341. 'accept-language' => 'zh-CN,zh;q=0.8',
  2342. )
  2343. [ info ] [ PARAM ] array (
  2344. 'params_from' => 'android',
  2345. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2346. )
  2347. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2348. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  2349. [ info ] [ TOKEN ] INIT Mysql
  2350. [ info ] [ DB ] INIT mysql
  2351. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  2352. [ info ] [ RUN ] app\api\controller\Index->getEdition[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  2353. [ info ] [ LOG ] INIT File
  2354. ---------------------------------------------------------------
  2355. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2356. [运行时间:0.013463s] [吞吐率:74.28req/s] [内存消耗:731.26kb] [文件加载:147]
  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.000143s ]
  2360. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  2361. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  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.000030s ]
  2364. [ info ] [ ROUTE ] array (
  2365. 'type' => 'module',
  2366. 'module' =>
  2367. array (
  2368. 0 => 'api',
  2369. 1 => 'userCenter',
  2370. 2 => 'getMyUserInfo',
  2371. ),
  2372. )
  2373. [ info ] [ HEADER ] array (
  2374. 'accept-encoding' => 'gzip',
  2375. 'connection' => 'Keep-Alive',
  2376. 'host' => 'voicechat.lanmaonet.com',
  2377. 'content-length' => '72',
  2378. 'content-type' => 'application/x-www-form-urlencoded',
  2379. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2380. 'accept-language' => 'zh-CN,zh;q=0.8',
  2381. )
  2382. [ info ] [ PARAM ] array (
  2383. 'params_from' => 'android',
  2384. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2385. 'user_id' => '3',
  2386. )
  2387. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2388. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000070s ]
  2389. [ info ] [ TOKEN ] INIT Mysql
  2390. [ info ] [ DB ] INIT mysql
  2391. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  2392. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2393. [ info ] [ LOG ] INIT File
  2394. ---------------------------------------------------------------
  2395. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/tenim/getUsersig
  2396. [运行时间:0.023767s] [吞吐率:42.08req/s] [内存消耗:634.47kb] [文件加载:144]
  2397. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  2398. [ info ] [ CACHE ] INIT File
  2399. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000293s ]
  2400. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  2401. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  2402. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2403. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000052s ]
  2404. [ info ] [ ROUTE ] array (
  2405. 'type' => 'module',
  2406. 'module' =>
  2407. array (
  2408. 0 => 'api',
  2409. 1 => 'tenim',
  2410. 2 => 'getUsersig',
  2411. ),
  2412. )
  2413. [ info ] [ HEADER ] array (
  2414. 'accept-encoding' => 'gzip',
  2415. 'connection' => 'Keep-Alive',
  2416. 'host' => 'voicechat.lanmaonet.com',
  2417. 'content-length' => '62',
  2418. 'content-type' => 'application/x-www-form-urlencoded',
  2419. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2420. 'accept-language' => 'zh-CN,zh;q=0.8',
  2421. )
  2422. [ info ] [ PARAM ] array (
  2423. 'params_from' => 'android',
  2424. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2425. )
  2426. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2427. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  2428. [ info ] [ TOKEN ] INIT Mysql
  2429. [ info ] [ DB ] INIT mysql
  2430. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000043s ]
  2431. [ info ] [ RUN ] app\api\controller\Tenim->getUsersig[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  2432. [ info ] [ LOG ] INIT File
  2433. ---------------------------------------------------------------
  2434. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2435. [运行时间:0.014610s] [吞吐率:68.45req/s] [内存消耗:714.33kb] [文件加载:146]
  2436. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2437. [ info ] [ CACHE ] INIT File
  2438. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000185s ]
  2439. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000046s ]
  2440. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  2441. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2442. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  2443. [ info ] [ ROUTE ] array (
  2444. 'type' => 'module',
  2445. 'module' =>
  2446. array (
  2447. 0 => 'Api',
  2448. 1 => 'party',
  2449. 2 => 'getPartyRankList',
  2450. ),
  2451. )
  2452. [ info ] [ HEADER ] array (
  2453. 'accept-encoding' => 'gzip',
  2454. 'connection' => 'Keep-Alive',
  2455. 'host' => 'voicechat.lanmaonet.com',
  2456. 'content-length' => '126',
  2457. 'content-type' => 'application/x-www-form-urlencoded',
  2458. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2459. 'accept-language' => 'zh-CN,zh;q=0.8',
  2460. )
  2461. [ info ] [ PARAM ] array (
  2462. 'params_from' => 'android',
  2463. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2464. 'type_id' => '0',
  2465. 'all' => '1',
  2466. 'is_recommend' => '0',
  2467. 'thispage' => '1',
  2468. 'room_type' => '2',
  2469. 'pagenum' => '6',
  2470. )
  2471. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2472. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  2473. [ info ] [ TOKEN ] INIT Mysql
  2474. [ info ] [ DB ] INIT mysql
  2475. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000061s ]
  2476. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2477. [ info ] [ LOG ] INIT File
  2478. ---------------------------------------------------------------
  2479. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/index/getSwitch
  2480. [运行时间:0.011842s] [吞吐率:84.45req/s] [内存消耗:633.13kb] [文件加载:143]
  2481. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2482. [ info ] [ CACHE ] INIT File
  2483. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000155s ]
  2484. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  2485. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  2486. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2487. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  2488. [ info ] [ ROUTE ] array (
  2489. 'type' => 'module',
  2490. 'module' =>
  2491. array (
  2492. 0 => 'api',
  2493. 1 => 'index',
  2494. 2 => 'getSwitch',
  2495. ),
  2496. )
  2497. [ info ] [ HEADER ] array (
  2498. 'accept-encoding' => 'gzip',
  2499. 'connection' => 'Keep-Alive',
  2500. 'host' => 'voicechat.lanmaonet.com',
  2501. 'content-length' => '62',
  2502. 'content-type' => 'application/x-www-form-urlencoded',
  2503. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2504. 'accept-language' => 'zh-CN,zh;q=0.8',
  2505. )
  2506. [ info ] [ PARAM ] array (
  2507. 'params_from' => 'android',
  2508. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2509. )
  2510. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2511. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  2512. [ info ] [ TOKEN ] INIT Mysql
  2513. [ info ] [ DB ] INIT mysql
  2514. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  2515. [ info ] [ RUN ] app\api\controller\Index->getSwitch[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  2516. [ info ] [ LOG ] INIT File
  2517. ---------------------------------------------------------------
  2518. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2519. [运行时间:0.008967s] [吞吐率:111.52req/s] [内存消耗:713.95kb] [文件加载:146]
  2520. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2521. [ info ] [ CACHE ] INIT File
  2522. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000206s ]
  2523. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000085s ]
  2524. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000105s ]
  2525. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2526. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000085s ]
  2527. [ info ] [ ROUTE ] array (
  2528. 'type' => 'module',
  2529. 'module' =>
  2530. array (
  2531. 0 => 'Api',
  2532. 1 => 'party',
  2533. 2 => 'getPartyRankList',
  2534. ),
  2535. )
  2536. [ info ] [ HEADER ] array (
  2537. 'accept-encoding' => 'gzip',
  2538. 'connection' => 'Keep-Alive',
  2539. 'host' => 'voicechat.lanmaonet.com',
  2540. 'content-length' => '114',
  2541. 'content-type' => 'application/x-www-form-urlencoded',
  2542. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2543. 'accept-language' => 'zh-CN,zh;q=0.8',
  2544. )
  2545. [ info ] [ PARAM ] array (
  2546. 'params_from' => 'android',
  2547. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2548. 'type_id' => '',
  2549. 'all' => '1',
  2550. 'is_recommend' => '1',
  2551. 'room_type' => '1',
  2552. 'pagenum' => '3',
  2553. )
  2554. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2555. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000115s ]
  2556. [ info ] [ TOKEN ] INIT Mysql
  2557. [ info ] [ DB ] INIT mysql
  2558. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000059s ]
  2559. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2560. [ info ] [ LOG ] INIT File
  2561. ---------------------------------------------------------------
  2562. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2563. [运行时间:0.009670s] [吞吐率:103.41req/s] [内存消耗:713.95kb] [文件加载:146]
  2564. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2565. [ info ] [ CACHE ] INIT File
  2566. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000163s ]
  2567. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  2568. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  2569. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2570. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  2571. [ info ] [ ROUTE ] array (
  2572. 'type' => 'module',
  2573. 'module' =>
  2574. array (
  2575. 0 => 'Api',
  2576. 1 => 'party',
  2577. 2 => 'getPartyRankList',
  2578. ),
  2579. )
  2580. [ info ] [ HEADER ] array (
  2581. 'accept-encoding' => 'gzip',
  2582. 'connection' => 'Keep-Alive',
  2583. 'host' => 'voicechat.lanmaonet.com',
  2584. 'content-length' => '114',
  2585. 'content-type' => 'application/x-www-form-urlencoded',
  2586. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2587. 'accept-language' => 'zh-CN,zh;q=0.8',
  2588. )
  2589. [ info ] [ PARAM ] array (
  2590. 'params_from' => 'android',
  2591. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2592. 'type_id' => '',
  2593. 'all' => '1',
  2594. 'is_recommend' => '0',
  2595. 'room_type' => '1',
  2596. 'pagenum' => '6',
  2597. )
  2598. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2599. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000060s ]
  2600. [ info ] [ TOKEN ] INIT Mysql
  2601. [ info ] [ DB ] INIT mysql
  2602. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  2603. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2604. [ info ] [ LOG ] INIT File
  2605. ---------------------------------------------------------------
  2606. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2607. [运行时间:0.005322s] [吞吐率:187.90req/s] [内存消耗:713.95kb] [文件加载:146]
  2608. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
  2609. [ info ] [ CACHE ] INIT File
  2610. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000119s ]
  2611. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2612. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  2613. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2614. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  2615. [ info ] [ ROUTE ] array (
  2616. 'type' => 'module',
  2617. 'module' =>
  2618. array (
  2619. 0 => 'Api',
  2620. 1 => 'party',
  2621. 2 => 'getPartyRankList',
  2622. ),
  2623. )
  2624. [ info ] [ HEADER ] array (
  2625. 'accept-encoding' => 'gzip',
  2626. 'connection' => 'Keep-Alive',
  2627. 'host' => 'voicechat.lanmaonet.com',
  2628. 'content-length' => '114',
  2629. 'content-type' => 'application/x-www-form-urlencoded',
  2630. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2631. 'accept-language' => 'zh-CN,zh;q=0.8',
  2632. )
  2633. [ info ] [ PARAM ] array (
  2634. 'params_from' => 'android',
  2635. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2636. 'type_id' => '',
  2637. 'all' => '1',
  2638. 'is_recommend' => '0',
  2639. 'room_type' => '1',
  2640. 'pagenum' => '6',
  2641. )
  2642. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2643. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000042s ]
  2644. [ info ] [ TOKEN ] INIT Mysql
  2645. [ info ] [ DB ] INIT mysql
  2646. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000040s ]
  2647. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2648. [ info ] [ LOG ] INIT File
  2649. ---------------------------------------------------------------
  2650. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  2651. [运行时间:0.006792s] [吞吐率:147.23req/s] [内存消耗:714.33kb] [文件加载:146]
  2652. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2653. [ info ] [ CACHE ] INIT File
  2654. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000153s ]
  2655. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  2656. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2657. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2658. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  2659. [ info ] [ ROUTE ] array (
  2660. 'type' => 'module',
  2661. 'module' =>
  2662. array (
  2663. 0 => 'Api',
  2664. 1 => 'party',
  2665. 2 => 'getPartyRankList',
  2666. ),
  2667. )
  2668. [ info ] [ HEADER ] array (
  2669. 'accept-encoding' => 'gzip',
  2670. 'connection' => 'Keep-Alive',
  2671. 'host' => 'voicechat.lanmaonet.com',
  2672. 'content-length' => '126',
  2673. 'content-type' => 'application/x-www-form-urlencoded',
  2674. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2675. 'accept-language' => 'zh-CN,zh;q=0.8',
  2676. )
  2677. [ info ] [ PARAM ] array (
  2678. 'params_from' => 'android',
  2679. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2680. 'type_id' => '0',
  2681. 'all' => '1',
  2682. 'is_recommend' => '0',
  2683. 'thispage' => '1',
  2684. 'room_type' => '2',
  2685. 'pagenum' => '6',
  2686. )
  2687. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2688. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000053s ]
  2689. [ info ] [ TOKEN ] INIT Mysql
  2690. [ info ] [ DB ] INIT mysql
  2691. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  2692. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2693. [ info ] [ LOG ] INIT File
  2694. ---------------------------------------------------------------
  2695. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  2696. [运行时间:0.008976s] [吞吐率:111.41req/s] [内存消耗:701.39kb] [文件加载:146]
  2697. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2698. [ info ] [ CACHE ] INIT File
  2699. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000207s ]
  2700. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  2701. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  2702. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2703. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  2704. [ info ] [ ROUTE ] array (
  2705. 'type' => 'module',
  2706. 'module' =>
  2707. array (
  2708. 0 => 'Api',
  2709. 1 => 'party',
  2710. 2 => 'getPatyType',
  2711. ),
  2712. )
  2713. [ info ] [ HEADER ] array (
  2714. 'accept-encoding' => 'gzip',
  2715. 'connection' => 'Keep-Alive',
  2716. 'host' => 'voicechat.lanmaonet.com',
  2717. 'content-length' => '74',
  2718. 'content-type' => 'application/x-www-form-urlencoded',
  2719. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2720. 'accept-language' => 'zh-CN,zh;q=0.8',
  2721. )
  2722. [ info ] [ PARAM ] array (
  2723. 'params_from' => 'android',
  2724. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2725. 'room_type' => '2',
  2726. )
  2727. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2728. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000073s ]
  2729. [ info ] [ TOKEN ] INIT Mysql
  2730. [ info ] [ DB ] INIT mysql
  2731. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  2732. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2733. [ info ] [ LOG ] INIT File
  2734. ---------------------------------------------------------------
  2735. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPatyType
  2736. [运行时间:0.007656s] [吞吐率:130.61req/s] [内存消耗:701.34kb] [文件加载:146]
  2737. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2738. [ info ] [ CACHE ] INIT File
  2739. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000140s ]
  2740. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000093s ]
  2741. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000115s ]
  2742. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2743. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  2744. [ info ] [ ROUTE ] array (
  2745. 'type' => 'module',
  2746. 'module' =>
  2747. array (
  2748. 0 => 'Api',
  2749. 1 => 'party',
  2750. 2 => 'getPatyType',
  2751. ),
  2752. )
  2753. [ info ] [ HEADER ] array (
  2754. 'accept-encoding' => 'gzip',
  2755. 'connection' => 'Keep-Alive',
  2756. 'host' => 'voicechat.lanmaonet.com',
  2757. 'content-length' => '62',
  2758. 'content-type' => 'application/x-www-form-urlencoded',
  2759. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2760. 'accept-language' => 'zh-CN,zh;q=0.8',
  2761. )
  2762. [ info ] [ PARAM ] array (
  2763. 'params_from' => 'android',
  2764. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2765. )
  2766. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2767. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  2768. [ info ] [ TOKEN ] INIT Mysql
  2769. [ info ] [ DB ] INIT mysql
  2770. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  2771. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2772. [ info ] [ LOG ] INIT File
  2773. ---------------------------------------------------------------
  2774. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2775. [运行时间:0.009071s] [吞吐率:110.24req/s] [内存消耗:731.26kb] [文件加载:147]
  2776. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  2777. [ info ] [ CACHE ] INIT File
  2778. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000128s ]
  2779. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  2780. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  2781. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2782. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  2783. [ info ] [ ROUTE ] array (
  2784. 'type' => 'module',
  2785. 'module' =>
  2786. array (
  2787. 0 => 'api',
  2788. 1 => 'userCenter',
  2789. 2 => 'getMyUserInfo',
  2790. ),
  2791. )
  2792. [ info ] [ HEADER ] array (
  2793. 'accept-encoding' => 'gzip',
  2794. 'connection' => 'Keep-Alive',
  2795. 'host' => 'voicechat.lanmaonet.com',
  2796. 'content-length' => '72',
  2797. 'content-type' => 'application/x-www-form-urlencoded',
  2798. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2799. 'accept-language' => 'zh-CN,zh;q=0.8',
  2800. )
  2801. [ info ] [ PARAM ] array (
  2802. 'params_from' => 'android',
  2803. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2804. 'user_id' => '3',
  2805. )
  2806. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2807. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000046s ]
  2808. [ info ] [ TOKEN ] INIT Mysql
  2809. [ info ] [ DB ] INIT mysql
  2810. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000051s ]
  2811. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2812. [ info ] [ LOG ] INIT File
  2813. ---------------------------------------------------------------
  2814. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/index/getMessage
  2815. [运行时间:0.007531s] [吞吐率:132.78req/s] [内存消耗:698.54kb] [文件加载:145]
  2816. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  2817. [ info ] [ CACHE ] INIT File
  2818. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000159s ]
  2819. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000044s ]
  2820. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  2821. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2822. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  2823. [ info ] [ ROUTE ] array (
  2824. 'type' => 'module',
  2825. 'module' =>
  2826. array (
  2827. 0 => 'Api',
  2828. 1 => 'index',
  2829. 2 => 'getMessage',
  2830. ),
  2831. )
  2832. [ info ] [ HEADER ] array (
  2833. 'accept-encoding' => 'gzip',
  2834. 'connection' => 'Keep-Alive',
  2835. 'host' => 'voicechat.lanmaonet.com',
  2836. 'content-length' => '69',
  2837. 'content-type' => 'application/x-www-form-urlencoded',
  2838. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2839. 'accept-language' => 'zh-CN,zh;q=0.8',
  2840. )
  2841. [ info ] [ PARAM ] array (
  2842. 'params_from' => 'android',
  2843. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2844. 'flag' => '1',
  2845. )
  2846. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2847. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000059s ]
  2848. [ info ] [ TOKEN ] INIT Mysql
  2849. [ info ] [ DB ] INIT mysql
  2850. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  2851. [ info ] [ RUN ] app\api\controller\Index->getMessage[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Index.php ]
  2852. [ info ] [ LOG ] INIT File
  2853. ---------------------------------------------------------------
  2854. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  2855. [运行时间:0.009912s] [吞吐率:100.89req/s] [内存消耗:731.26kb] [文件加载:147]
  2856. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  2857. [ info ] [ CACHE ] INIT File
  2858. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000182s ]
  2859. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  2860. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  2861. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2862. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  2863. [ info ] [ ROUTE ] array (
  2864. 'type' => 'module',
  2865. 'module' =>
  2866. array (
  2867. 0 => 'api',
  2868. 1 => 'userCenter',
  2869. 2 => 'getMyUserInfo',
  2870. ),
  2871. )
  2872. [ info ] [ HEADER ] array (
  2873. 'accept-encoding' => 'gzip',
  2874. 'connection' => 'Keep-Alive',
  2875. 'host' => 'voicechat.lanmaonet.com',
  2876. 'content-length' => '72',
  2877. 'content-type' => 'application/x-www-form-urlencoded',
  2878. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2879. 'accept-language' => 'zh-CN,zh;q=0.8',
  2880. )
  2881. [ info ] [ PARAM ] array (
  2882. 'params_from' => 'android',
  2883. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2884. 'user_id' => '3',
  2885. )
  2886. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2887. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  2888. [ info ] [ TOKEN ] INIT Mysql
  2889. [ info ] [ DB ] INIT mysql
  2890. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  2891. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  2892. [ info ] [ LOG ] INIT File
  2893. ---------------------------------------------------------------
  2894. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  2895. [运行时间:0.006778s] [吞吐率:147.54req/s] [内存消耗:701.29kb] [文件加载:146]
  2896. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2897. [ info ] [ CACHE ] INIT File
  2898. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000178s ]
  2899. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000044s ]
  2900. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  2901. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2902. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  2903. [ info ] [ ROUTE ] array (
  2904. 'type' => 'module',
  2905. 'module' =>
  2906. array (
  2907. 0 => 'Api',
  2908. 1 => 'dispatch',
  2909. 2 => 'getSkillList',
  2910. ),
  2911. )
  2912. [ info ] [ HEADER ] array (
  2913. 'accept-encoding' => 'gzip',
  2914. 'connection' => 'Keep-Alive',
  2915. 'host' => 'voicechat.lanmaonet.com',
  2916. 'content-length' => '62',
  2917. 'content-type' => 'application/x-www-form-urlencoded',
  2918. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2919. 'accept-language' => 'zh-CN,zh;q=0.8',
  2920. )
  2921. [ info ] [ PARAM ] array (
  2922. 'params_from' => 'android',
  2923. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2924. )
  2925. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2926. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000136s ]
  2927. [ info ] [ TOKEN ] INIT Mysql
  2928. [ info ] [ DB ] INIT mysql
  2929. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  2930. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  2931. [ info ] [ LOG ] INIT File
  2932. ---------------------------------------------------------------
  2933. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/cellectionPartyList
  2934. [运行时间:0.009160s] [吞吐率:109.17req/s] [内存消耗:701.81kb] [文件加载:146]
  2935. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2936. [ info ] [ CACHE ] INIT File
  2937. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000194s ]
  2938. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  2939. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  2940. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2941. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  2942. [ info ] [ ROUTE ] array (
  2943. 'type' => 'module',
  2944. 'module' =>
  2945. array (
  2946. 0 => 'Api',
  2947. 1 => 'party',
  2948. 2 => 'cellectionPartyList',
  2949. ),
  2950. )
  2951. [ info ] [ HEADER ] array (
  2952. 'accept-encoding' => 'gzip',
  2953. 'connection' => 'Keep-Alive',
  2954. 'host' => 'voicechat.lanmaonet.com',
  2955. 'content-length' => '79',
  2956. 'content-type' => 'application/x-www-form-urlencoded',
  2957. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2958. 'accept-language' => 'zh-CN,zh;q=0.8',
  2959. )
  2960. [ info ] [ PARAM ] array (
  2961. 'params_from' => 'android',
  2962. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  2963. 'page' => '1',
  2964. 'pageNum' => '2',
  2965. )
  2966. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  2967. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000070s ]
  2968. [ info ] [ TOKEN ] INIT Mysql
  2969. [ info ] [ DB ] INIT mysql
  2970. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  2971. [ info ] [ RUN ] app\api\controller\Party->cellectionPartyList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  2972. [ info ] [ LOG ] INIT File
  2973. ---------------------------------------------------------------
  2974. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  2975. [运行时间:0.009348s] [吞吐率:106.97req/s] [内存消耗:702.77kb] [文件加载:146]
  2976. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  2977. [ info ] [ CACHE ] INIT File
  2978. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  2979. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  2980. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  2981. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2982. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  2983. [ info ] [ ROUTE ] array (
  2984. 'type' => 'module',
  2985. 'module' =>
  2986. array (
  2987. 0 => 'Api',
  2988. 1 => 'userCenter',
  2989. 2 => 'getFollowsLive',
  2990. ),
  2991. )
  2992. [ info ] [ HEADER ] array (
  2993. 'accept-encoding' => 'gzip',
  2994. 'connection' => 'Keep-Alive',
  2995. 'host' => 'voicechat.lanmaonet.com',
  2996. 'content-length' => '91',
  2997. 'content-type' => 'application/x-www-form-urlencoded',
  2998. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  2999. 'accept-language' => 'zh-CN,zh;q=0.8',
  3000. )
  3001. [ info ] [ PARAM ] array (
  3002. 'params_from' => 'android',
  3003. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3004. 'is_online' => '0',
  3005. 'page' => '1',
  3006. 'pageNum' => '2',
  3007. )
  3008. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3009. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000066s ]
  3010. [ info ] [ TOKEN ] INIT Mysql
  3011. [ info ] [ DB ] INIT mysql
  3012. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  3013. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  3014. [ info ] [ LOG ] INIT File
  3015. ---------------------------------------------------------------
  3016. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  3017. [运行时间:0.013508s] [吞吐率:74.03req/s] [内存消耗:702.44kb] [文件加载:146]
  3018. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  3019. [ info ] [ CACHE ] INIT File
  3020. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000143s ]
  3021. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  3022. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  3023. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3024. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  3025. [ info ] [ ROUTE ] array (
  3026. 'type' => 'module',
  3027. 'module' =>
  3028. array (
  3029. 0 => 'Api',
  3030. 1 => 'userCenter',
  3031. 2 => 'getFollowsLive',
  3032. ),
  3033. )
  3034. [ info ] [ HEADER ] array (
  3035. 'accept-encoding' => 'gzip',
  3036. 'connection' => 'Keep-Alive',
  3037. 'host' => 'voicechat.lanmaonet.com',
  3038. 'content-length' => '91',
  3039. 'content-type' => 'application/x-www-form-urlencoded',
  3040. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3041. 'accept-language' => 'zh-CN,zh;q=0.8',
  3042. )
  3043. [ info ] [ PARAM ] array (
  3044. 'params_from' => 'android',
  3045. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3046. 'is_online' => '1',
  3047. 'page' => '1',
  3048. 'pageNum' => '3',
  3049. )
  3050. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3051. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000048s ]
  3052. [ info ] [ TOKEN ] INIT Mysql
  3053. [ info ] [ DB ] INIT mysql
  3054. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000075s ]
  3055. [ info ] [ RUN ] app\api\controller\UserCenter->getFollowsLive[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  3056. [ info ] [ LOG ] INIT File
  3057. ---------------------------------------------------------------
  3058. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  3059. [运行时间:0.010000s] [吞吐率:100.00req/s] [内存消耗:680.81kb] [文件加载:148]
  3060. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  3061. [ info ] [ CACHE ] INIT File
  3062. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000148s ]
  3063. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  3064. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  3065. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3066. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  3067. [ info ] [ ROUTE ] array (
  3068. 'type' => 'module',
  3069. 'module' =>
  3070. array (
  3071. 0 => 'Api',
  3072. 1 => 'dynamic',
  3073. 2 => 'getDynamicList',
  3074. ),
  3075. )
  3076. [ info ] [ HEADER ] array (
  3077. 'accept-encoding' => 'gzip',
  3078. 'connection' => 'Keep-Alive',
  3079. 'host' => 'voicechat.lanmaonet.com',
  3080. 'content-length' => '76',
  3081. 'content-type' => 'application/x-www-form-urlencoded',
  3082. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3083. 'accept-language' => 'zh-CN,zh;q=0.8',
  3084. )
  3085. [ info ] [ PARAM ] array (
  3086. 'params_from' => 'android',
  3087. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3088. 'type' => '1',
  3089. 'page' => '1',
  3090. )
  3091. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3092. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  3093. [ info ] [ TOKEN ] INIT Mysql
  3094. [ info ] [ DB ] INIT mysql
  3095. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  3096. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  3097. [ info ] [ LOG ] INIT File
  3098. ---------------------------------------------------------------
  3099. [ 2021-12-15T10:13:57+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  3100. [运行时间:0.011474s] [吞吐率:87.15req/s] [内存消耗:680.81kb] [文件加载:148]
  3101. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3102. [ info ] [ CACHE ] INIT File
  3103. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000144s ]
  3104. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  3105. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  3106. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3107. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  3108. [ info ] [ ROUTE ] array (
  3109. 'type' => 'module',
  3110. 'module' =>
  3111. array (
  3112. 0 => 'Api',
  3113. 1 => 'dynamic',
  3114. 2 => 'getDynamicList',
  3115. ),
  3116. )
  3117. [ info ] [ HEADER ] array (
  3118. 'accept-encoding' => 'gzip',
  3119. 'connection' => 'Keep-Alive',
  3120. 'host' => 'voicechat.lanmaonet.com',
  3121. 'content-length' => '76',
  3122. 'content-type' => 'application/x-www-form-urlencoded',
  3123. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3124. 'accept-language' => 'zh-CN,zh;q=0.8',
  3125. )
  3126. [ info ] [ PARAM ] array (
  3127. 'params_from' => 'android',
  3128. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3129. 'type' => '2',
  3130. 'page' => '1',
  3131. )
  3132. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3133. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  3134. [ info ] [ TOKEN ] INIT Mysql
  3135. [ info ] [ DB ] INIT mysql
  3136. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000043s ]
  3137. [ info ] [ RUN ] app\api\controller\Dynamic->getDynamicList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dynamic.php ]
  3138. [ info ] [ LOG ] INIT File
  3139. ---------------------------------------------------------------
  3140. [ 2021-12-15T10:13:57+08:00 ] 175.27.128.203 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2505728621-144115262077148813-Login-Register&SdkAppid=1400556860&contenttype=json
  3141. [运行时间:0.018471s] [吞吐率:54.14req/s] [内存消耗:620.98kb] [文件加载:136]
  3142. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  3143. [ info ] [ CACHE ] INIT File
  3144. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000197s ]
  3145. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  3146. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  3147. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3148. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000032s ]
  3149. [ info ] [ ROUTE ] array (
  3150. 'type' => 'module',
  3151. 'module' =>
  3152. array (
  3153. 0 => 'api',
  3154. 1 => 'tenim',
  3155. 2 => 'callback',
  3156. ),
  3157. )
  3158. [ info ] [ HEADER ] array (
  3159. 'content-type' => 'application/json',
  3160. 'content-length' => '128',
  3161. 'connection' => 'keep-alive',
  3162. 'host' => 'voicechat.lanmaonet.com',
  3163. )
  3164. [ info ] [ PARAM ] array (
  3165. 'CallbackCommand' => 'State.StateChange',
  3166. 'ClientIP' => '112.6.63.60',
  3167. 'OptPlatform' => 'Android',
  3168. 'RequestId' => '2505728621-144115262077148813-Login-Register',
  3169. 'SdkAppid' => '1400556860',
  3170. 'contenttype' => 'json',
  3171. 'EventTime' => 1639534437517,
  3172. 'Info' =>
  3173. array (
  3174. 'To_Account' => '3',
  3175. 'Action' => 'Login',
  3176. 'Reason' => 'Register',
  3177. ),
  3178. )
  3179. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3180. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000053s ]
  3181. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000049s ]
  3182. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3183. [ info ] [ DB ] INIT mysql
  3184. [ info ] [ LOG ] INIT File
  3185. ---------------------------------------------------------------
  3186. [ 2021-12-15T10:13:58+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  3187. [运行时间:0.007170s] [吞吐率:139.47req/s] [内存消耗:701.29kb] [文件加载:146]
  3188. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3189. [ info ] [ CACHE ] INIT File
  3190. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000203s ]
  3191. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  3192. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  3193. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3194. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  3195. [ info ] [ ROUTE ] array (
  3196. 'type' => 'module',
  3197. 'module' =>
  3198. array (
  3199. 0 => 'Api',
  3200. 1 => 'dispatch',
  3201. 2 => 'getSkillList',
  3202. ),
  3203. )
  3204. [ info ] [ HEADER ] array (
  3205. 'accept-encoding' => 'gzip',
  3206. 'connection' => 'Keep-Alive',
  3207. 'host' => 'voicechat.lanmaonet.com',
  3208. 'content-length' => '62',
  3209. 'content-type' => 'application/x-www-form-urlencoded',
  3210. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3211. 'accept-language' => 'zh-CN,zh;q=0.8',
  3212. )
  3213. [ info ] [ PARAM ] array (
  3214. 'params_from' => 'android',
  3215. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3216. )
  3217. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3218. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  3219. [ info ] [ TOKEN ] INIT Mysql
  3220. [ info ] [ DB ] INIT mysql
  3221. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000054s ]
  3222. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  3223. [ info ] [ LOG ] INIT File
  3224. ---------------------------------------------------------------
  3225. [ 2021-12-15T10:13:58+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  3226. [运行时间:0.009948s] [吞吐率:100.52req/s] [内存消耗:731.26kb] [文件加载:147]
  3227. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3228. [ info ] [ CACHE ] INIT File
  3229. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000172s ]
  3230. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  3231. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  3232. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3233. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  3234. [ info ] [ ROUTE ] array (
  3235. 'type' => 'module',
  3236. 'module' =>
  3237. array (
  3238. 0 => 'api',
  3239. 1 => 'userCenter',
  3240. 2 => 'getMyUserInfo',
  3241. ),
  3242. )
  3243. [ info ] [ HEADER ] array (
  3244. 'accept-encoding' => 'gzip',
  3245. 'connection' => 'Keep-Alive',
  3246. 'host' => 'voicechat.lanmaonet.com',
  3247. 'content-length' => '72',
  3248. 'content-type' => 'application/x-www-form-urlencoded',
  3249. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3250. 'accept-language' => 'zh-CN,zh;q=0.8',
  3251. )
  3252. [ info ] [ PARAM ] array (
  3253. 'params_from' => 'android',
  3254. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3255. 'user_id' => '3',
  3256. )
  3257. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3258. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000055s ]
  3259. [ info ] [ TOKEN ] INIT Mysql
  3260. [ info ] [ DB ] INIT mysql
  3261. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  3262. [ info ] [ RUN ] app\api\controller\UserCenter->getMyUserInfo[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Usercenter.php ]
  3263. [ info ] [ LOG ] INIT File
  3264. ---------------------------------------------------------------
  3265. [ 2021-12-15T10:13:59+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3266. [运行时间:0.016419s] [吞吐率:60.91req/s] [内存消耗:713.86kb] [文件加载:146]
  3267. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3268. [ info ] [ CACHE ] INIT File
  3269. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000189s ]
  3270. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  3271. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  3272. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3273. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  3274. [ info ] [ ROUTE ] array (
  3275. 'type' => 'module',
  3276. 'module' =>
  3277. array (
  3278. 0 => 'Api',
  3279. 1 => 'party',
  3280. 2 => 'getPartyRankList',
  3281. ),
  3282. )
  3283. [ info ] [ HEADER ] array (
  3284. 'accept-encoding' => 'gzip',
  3285. 'connection' => 'Keep-Alive',
  3286. 'host' => 'voicechat.lanmaonet.com',
  3287. 'content-length' => '103',
  3288. 'content-type' => 'application/x-www-form-urlencoded',
  3289. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3290. 'accept-language' => 'zh-CN,zh;q=0.8',
  3291. )
  3292. [ info ] [ PARAM ] array (
  3293. 'params_from' => 'android',
  3294. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3295. 'type_id' => '',
  3296. 'all' => '1',
  3297. 'is_recommend' => '0',
  3298. 'thispage' => '1',
  3299. )
  3300. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3301. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  3302. [ info ] [ TOKEN ] INIT Mysql
  3303. [ info ] [ DB ] INIT mysql
  3304. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000062s ]
  3305. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3306. [ info ] [ LOG ] INIT File
  3307. ---------------------------------------------------------------
  3308. [ 2021-12-15T10:13:59+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3309. [运行时间:0.011501s] [吞吐率:86.95req/s] [内存消耗:713.89kb] [文件加载:146]
  3310. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  3311. [ info ] [ CACHE ] INIT File
  3312. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000130s ]
  3313. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  3314. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  3315. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3316. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  3317. [ info ] [ ROUTE ] array (
  3318. 'type' => 'module',
  3319. 'module' =>
  3320. array (
  3321. 0 => 'Api',
  3322. 1 => 'party',
  3323. 2 => 'getPartyRankList',
  3324. ),
  3325. )
  3326. [ info ] [ HEADER ] array (
  3327. 'accept-encoding' => 'gzip',
  3328. 'connection' => 'Keep-Alive',
  3329. 'host' => 'voicechat.lanmaonet.com',
  3330. 'content-length' => '104',
  3331. 'content-type' => 'application/x-www-form-urlencoded',
  3332. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3333. 'accept-language' => 'zh-CN,zh;q=0.8',
  3334. )
  3335. [ info ] [ PARAM ] array (
  3336. 'params_from' => 'android',
  3337. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3338. 'type_id' => '3',
  3339. 'all' => '0',
  3340. 'is_recommend' => '0',
  3341. 'thispage' => '1',
  3342. )
  3343. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3344. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000069s ]
  3345. [ info ] [ TOKEN ] INIT Mysql
  3346. [ info ] [ DB ] INIT mysql
  3347. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000071s ]
  3348. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3349. [ info ] [ LOG ] INIT File
  3350. ---------------------------------------------------------------
  3351. [ 2021-12-15T10:13:59+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3352. [运行时间:0.012715s] [吞吐率:78.65req/s] [内存消耗:713.89kb] [文件加载:146]
  3353. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3354. [ info ] [ CACHE ] INIT File
  3355. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000143s ]
  3356. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000057s ]
  3357. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000075s ]
  3358. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3359. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  3360. [ info ] [ ROUTE ] array (
  3361. 'type' => 'module',
  3362. 'module' =>
  3363. array (
  3364. 0 => 'Api',
  3365. 1 => 'party',
  3366. 2 => 'getPartyRankList',
  3367. ),
  3368. )
  3369. [ info ] [ HEADER ] array (
  3370. 'accept-encoding' => 'gzip',
  3371. 'connection' => 'Keep-Alive',
  3372. 'host' => 'voicechat.lanmaonet.com',
  3373. 'content-length' => '104',
  3374. 'content-type' => 'application/x-www-form-urlencoded',
  3375. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3376. 'accept-language' => 'zh-CN,zh;q=0.8',
  3377. )
  3378. [ info ] [ PARAM ] array (
  3379. 'params_from' => 'android',
  3380. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3381. 'type_id' => '4',
  3382. 'all' => '0',
  3383. 'is_recommend' => '0',
  3384. 'thispage' => '1',
  3385. )
  3386. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3387. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000064s ]
  3388. [ info ] [ TOKEN ] INIT Mysql
  3389. [ info ] [ DB ] INIT mysql
  3390. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  3391. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3392. [ info ] [ LOG ] INIT File
  3393. ---------------------------------------------------------------
  3394. [ 2021-12-15T10:13:59+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3395. [运行时间:0.015374s] [吞吐率:65.04req/s] [内存消耗:713.89kb] [文件加载:146]
  3396. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  3397. [ info ] [ CACHE ] INIT File
  3398. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000154s ]
  3399. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  3400. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  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.000028s ]
  3403. [ info ] [ ROUTE ] array (
  3404. 'type' => 'module',
  3405. 'module' =>
  3406. array (
  3407. 0 => 'Api',
  3408. 1 => 'party',
  3409. 2 => 'getPartyRankList',
  3410. ),
  3411. )
  3412. [ info ] [ HEADER ] array (
  3413. 'accept-encoding' => 'gzip',
  3414. 'connection' => 'Keep-Alive',
  3415. 'host' => 'voicechat.lanmaonet.com',
  3416. 'content-length' => '104',
  3417. 'content-type' => 'application/x-www-form-urlencoded',
  3418. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3419. 'accept-language' => 'zh-CN,zh;q=0.8',
  3420. )
  3421. [ info ] [ PARAM ] array (
  3422. 'params_from' => 'android',
  3423. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3424. 'type_id' => '2',
  3425. 'all' => '0',
  3426. 'is_recommend' => '0',
  3427. 'thispage' => '1',
  3428. )
  3429. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3430. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000078s ]
  3431. [ info ] [ TOKEN ] INIT Mysql
  3432. [ info ] [ DB ] INIT mysql
  3433. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000057s ]
  3434. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3435. [ info ] [ LOG ] INIT File
  3436. ---------------------------------------------------------------
  3437. [ 2021-12-15T10:13:59+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3438. [运行时间:0.018824s] [吞吐率:53.12req/s] [内存消耗:713.89kb] [文件加载:146]
  3439. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3440. [ info ] [ CACHE ] INIT File
  3441. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000155s ]
  3442. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  3443. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  3444. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3445. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  3446. [ info ] [ ROUTE ] array (
  3447. 'type' => 'module',
  3448. 'module' =>
  3449. array (
  3450. 0 => 'Api',
  3451. 1 => 'party',
  3452. 2 => 'getPartyRankList',
  3453. ),
  3454. )
  3455. [ info ] [ HEADER ] array (
  3456. 'accept-encoding' => 'gzip',
  3457. 'connection' => 'Keep-Alive',
  3458. 'host' => 'voicechat.lanmaonet.com',
  3459. 'content-length' => '104',
  3460. 'content-type' => 'application/x-www-form-urlencoded',
  3461. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3462. 'accept-language' => 'zh-CN,zh;q=0.8',
  3463. )
  3464. [ info ] [ PARAM ] array (
  3465. 'params_from' => 'android',
  3466. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3467. 'type_id' => '1',
  3468. 'all' => '0',
  3469. 'is_recommend' => '0',
  3470. 'thispage' => '1',
  3471. )
  3472. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3473. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000078s ]
  3474. [ info ] [ TOKEN ] INIT Mysql
  3475. [ info ] [ DB ] INIT mysql
  3476. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000058s ]
  3477. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3478. [ info ] [ LOG ] INIT File
  3479. ---------------------------------------------------------------
  3480. [ 2021-12-15T10:13:59+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3481. [运行时间:0.006778s] [吞吐率:147.54req/s] [内存消耗:713.95kb] [文件加载:146]
  3482. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000034s ]
  3483. [ info ] [ CACHE ] INIT File
  3484. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000167s ]
  3485. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  3486. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  3487. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3488. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  3489. [ info ] [ ROUTE ] array (
  3490. 'type' => 'module',
  3491. 'module' =>
  3492. array (
  3493. 0 => 'Api',
  3494. 1 => 'party',
  3495. 2 => 'getPartyRankList',
  3496. ),
  3497. )
  3498. [ info ] [ HEADER ] array (
  3499. 'accept-encoding' => 'gzip',
  3500. 'connection' => 'Keep-Alive',
  3501. 'host' => 'voicechat.lanmaonet.com',
  3502. 'content-length' => '116',
  3503. 'content-type' => 'application/x-www-form-urlencoded',
  3504. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3505. 'accept-language' => 'zh-CN,zh;q=0.8',
  3506. )
  3507. [ info ] [ PARAM ] array (
  3508. 'params_from' => 'android',
  3509. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3510. 'type_id' => '0',
  3511. 'all' => '1',
  3512. 'is_recommend' => '0',
  3513. 'thispage' => '1',
  3514. 'room_type' => '2',
  3515. )
  3516. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3517. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  3518. [ info ] [ TOKEN ] INIT Mysql
  3519. [ info ] [ DB ] INIT mysql
  3520. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000053s ]
  3521. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3522. [ info ] [ LOG ] INIT File
  3523. ---------------------------------------------------------------
  3524. [ 2021-12-15T10:13:59+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3525. [运行时间:0.005473s] [吞吐率:182.71req/s] [内存消耗:713.95kb] [文件加载:146]
  3526. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  3527. [ info ] [ CACHE ] INIT File
  3528. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000137s ]
  3529. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  3530. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  3531. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3532. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  3533. [ info ] [ ROUTE ] array (
  3534. 'type' => 'module',
  3535. 'module' =>
  3536. array (
  3537. 0 => 'Api',
  3538. 1 => 'party',
  3539. 2 => 'getPartyRankList',
  3540. ),
  3541. )
  3542. [ info ] [ HEADER ] array (
  3543. 'accept-encoding' => 'gzip',
  3544. 'connection' => 'Keep-Alive',
  3545. 'host' => 'voicechat.lanmaonet.com',
  3546. 'content-length' => '116',
  3547. 'content-type' => 'application/x-www-form-urlencoded',
  3548. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3549. 'accept-language' => 'zh-CN,zh;q=0.8',
  3550. )
  3551. [ info ] [ PARAM ] array (
  3552. 'params_from' => 'android',
  3553. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3554. 'type_id' => '7',
  3555. 'all' => '0',
  3556. 'is_recommend' => '0',
  3557. 'thispage' => '1',
  3558. 'room_type' => '2',
  3559. )
  3560. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3561. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000052s ]
  3562. [ info ] [ TOKEN ] INIT Mysql
  3563. [ info ] [ DB ] INIT mysql
  3564. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  3565. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3566. [ info ] [ LOG ] INIT File
  3567. ---------------------------------------------------------------
  3568. [ 2021-12-15T10:14:06+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3569. [运行时间:0.009879s] [吞吐率:101.22req/s] [内存消耗:713.95kb] [文件加载:146]
  3570. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  3571. [ info ] [ CACHE ] INIT File
  3572. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000233s ]
  3573. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  3574. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  3575. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3576. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  3577. [ info ] [ ROUTE ] array (
  3578. 'type' => 'module',
  3579. 'module' =>
  3580. array (
  3581. 0 => 'Api',
  3582. 1 => 'party',
  3583. 2 => 'getPartyRankList',
  3584. ),
  3585. )
  3586. [ info ] [ HEADER ] array (
  3587. 'accept-encoding' => 'gzip',
  3588. 'connection' => 'Keep-Alive',
  3589. 'host' => 'voicechat.lanmaonet.com',
  3590. 'content-length' => '116',
  3591. 'content-type' => 'application/x-www-form-urlencoded',
  3592. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3593. 'accept-language' => 'zh-CN,zh;q=0.8',
  3594. )
  3595. [ info ] [ PARAM ] array (
  3596. 'params_from' => 'android',
  3597. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3598. 'type_id' => '8',
  3599. 'all' => '0',
  3600. 'is_recommend' => '0',
  3601. 'thispage' => '1',
  3602. 'room_type' => '2',
  3603. )
  3604. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3605. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000062s ]
  3606. [ info ] [ TOKEN ] INIT Mysql
  3607. [ info ] [ DB ] INIT mysql
  3608. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  3609. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3610. [ info ] [ LOG ] INIT File
  3611. ---------------------------------------------------------------
  3612. [ 2021-12-15T10:14:07+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3613. [运行时间:0.006296s] [吞吐率:158.83req/s] [内存消耗:713.95kb] [文件加载:146]
  3614. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3615. [ info ] [ CACHE ] INIT File
  3616. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000180s ]
  3617. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  3618. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000064s ]
  3619. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3620. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000034s ]
  3621. [ info ] [ ROUTE ] array (
  3622. 'type' => 'module',
  3623. 'module' =>
  3624. array (
  3625. 0 => 'Api',
  3626. 1 => 'party',
  3627. 2 => 'getPartyRankList',
  3628. ),
  3629. )
  3630. [ info ] [ HEADER ] array (
  3631. 'accept-encoding' => 'gzip',
  3632. 'connection' => 'Keep-Alive',
  3633. 'host' => 'voicechat.lanmaonet.com',
  3634. 'content-length' => '116',
  3635. 'content-type' => 'application/x-www-form-urlencoded',
  3636. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3637. 'accept-language' => 'zh-CN,zh;q=0.8',
  3638. )
  3639. [ info ] [ PARAM ] array (
  3640. 'params_from' => 'android',
  3641. 'token' => 'b7b9d816-8a20-4b2e-b428-03129492c30c',
  3642. 'type_id' => '9',
  3643. 'all' => '0',
  3644. 'is_recommend' => '0',
  3645. 'thispage' => '1',
  3646. 'room_type' => '2',
  3647. )
  3648. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3649. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000053s ]
  3650. [ info ] [ TOKEN ] INIT Mysql
  3651. [ info ] [ DB ] INIT mysql
  3652. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000052s ]
  3653. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3654. [ info ] [ LOG ] INIT File
  3655. ---------------------------------------------------------------
  3656. [ 2021-12-15T10:34:57+08:00 ] 119.45.33.146 POST voicechat.lanmaonet.com/api/tenim/callback?CallbackCommand=State.StateChange&ClientIP=112.6.63.60&OptPlatform=Android&RequestId=2505773629-144115262077148813-Disconnect-LinkClose&SdkAppid=1400556860&contenttype=json
  3657. [运行时间:0.355949s] [吞吐率:2.81req/s] [内存消耗:690.29kb] [文件加载:140]
  3658. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  3659. [ info ] [ CACHE ] INIT File
  3660. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000216s ]
  3661. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000082s ]
  3662. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000104s ]
  3663. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3664. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  3665. [ info ] [ ROUTE ] array (
  3666. 'type' => 'module',
  3667. 'module' =>
  3668. array (
  3669. 0 => 'api',
  3670. 1 => 'tenim',
  3671. 2 => 'callback',
  3672. ),
  3673. )
  3674. [ info ] [ HEADER ] array (
  3675. 'content-type' => 'application/json',
  3676. 'content-length' => '134',
  3677. 'connection' => 'keep-alive',
  3678. 'host' => 'voicechat.lanmaonet.com',
  3679. )
  3680. [ info ] [ PARAM ] array (
  3681. 'CallbackCommand' => 'State.StateChange',
  3682. 'ClientIP' => '112.6.63.60',
  3683. 'OptPlatform' => 'Android',
  3684. 'RequestId' => '2505773629-144115262077148813-Disconnect-LinkClose',
  3685. 'SdkAppid' => '1400556860',
  3686. 'contenttype' => 'json',
  3687. 'EventTime' => 1639535697058,
  3688. 'Info' =>
  3689. array (
  3690. 'To_Account' => '3',
  3691. 'Action' => 'Disconnect',
  3692. 'Reason' => 'LinkClose',
  3693. ),
  3694. )
  3695. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3696. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  3697. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000078s ]
  3698. [ info ] [ RUN ] app\api\controller\Tenim->callback[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Tenim.php ]
  3699. [ info ] [ DB ] INIT mysql
  3700. [ info ] [ LOG ] INIT File
  3701. ---------------------------------------------------------------
  3702. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  3703. [运行时间:0.008613s] [吞吐率:116.10req/s] [内存消耗:605.54kb] [文件加载:145]
  3704. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3705. [ info ] [ CACHE ] INIT File
  3706. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000142s ]
  3707. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  3708. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  3709. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3710. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  3711. [ info ] [ ROUTE ] array (
  3712. 'type' => 'module',
  3713. 'module' =>
  3714. array (
  3715. 0 => 'Api',
  3716. 1 => 'dispatch',
  3717. 2 => 'getSkillList',
  3718. ),
  3719. )
  3720. [ info ] [ HEADER ] array (
  3721. 'accept-encoding' => 'gzip',
  3722. 'connection' => 'Keep-Alive',
  3723. 'host' => 'voicechat.lanmaonet.com',
  3724. 'content-length' => '42',
  3725. 'content-type' => 'application/x-www-form-urlencoded',
  3726. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3727. 'accept-language' => 'zh-CN,zh;q=0.8',
  3728. )
  3729. [ info ] [ PARAM ] array (
  3730. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  3731. )
  3732. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3733. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000063s ]
  3734. [ info ] [ TOKEN ] INIT Mysql
  3735. [ info ] [ DB ] INIT mysql
  3736. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000078s ]
  3737. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  3738. [ info ] [ LOG ] INIT File
  3739. ---------------------------------------------------------------
  3740. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3741. [运行时间:0.006671s] [吞吐率:149.90req/s] [内存消耗:603.62kb] [文件加载:145]
  3742. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3743. [ info ] [ CACHE ] INIT File
  3744. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  3745. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  3746. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  3747. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3748. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  3749. [ info ] [ ROUTE ] array (
  3750. 'type' => 'module',
  3751. 'module' =>
  3752. array (
  3753. 0 => 'Api',
  3754. 1 => 'party',
  3755. 2 => 'getPartyRankList',
  3756. ),
  3757. )
  3758. [ info ] [ HEADER ] array (
  3759. 'accept-encoding' => 'gzip',
  3760. 'connection' => 'Keep-Alive',
  3761. 'host' => 'voicechat.lanmaonet.com',
  3762. 'content-length' => '106',
  3763. 'content-type' => 'application/x-www-form-urlencoded',
  3764. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3765. 'accept-language' => 'zh-CN,zh;q=0.8',
  3766. )
  3767. [ info ] [ PARAM ] array (
  3768. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  3769. 'type_id' => '0',
  3770. 'all' => '1',
  3771. 'is_recommend' => '0',
  3772. 'thispage' => '1',
  3773. 'room_type' => '2',
  3774. 'pagenum' => '6',
  3775. )
  3776. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3777. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000069s ]
  3778. [ info ] [ TOKEN ] INIT Mysql
  3779. [ info ] [ DB ] INIT mysql
  3780. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  3781. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3782. [ info ] [ LOG ] INIT File
  3783. ---------------------------------------------------------------
  3784. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3785. [运行时间:0.011870s] [吞吐率:84.25req/s] [内存消耗:603.55kb] [文件加载:145]
  3786. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
  3787. [ info ] [ CACHE ] INIT File
  3788. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000115s ]
  3789. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  3790. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  3791. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3792. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
  3793. [ info ] [ ROUTE ] array (
  3794. 'type' => 'module',
  3795. 'module' =>
  3796. array (
  3797. 0 => 'Api',
  3798. 1 => 'party',
  3799. 2 => 'getPartyRankList',
  3800. ),
  3801. )
  3802. [ info ] [ HEADER ] array (
  3803. 'accept-encoding' => 'gzip',
  3804. 'connection' => 'Keep-Alive',
  3805. 'host' => 'voicechat.lanmaonet.com',
  3806. 'content-length' => '94',
  3807. 'content-type' => 'application/x-www-form-urlencoded',
  3808. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3809. 'accept-language' => 'zh-CN,zh;q=0.8',
  3810. )
  3811. [ info ] [ PARAM ] array (
  3812. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  3813. 'type_id' => '',
  3814. 'all' => '1',
  3815. 'is_recommend' => '0',
  3816. 'room_type' => '1',
  3817. 'pagenum' => '6',
  3818. )
  3819. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3820. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000073s ]
  3821. [ info ] [ TOKEN ] INIT Mysql
  3822. [ info ] [ DB ] INIT mysql
  3823. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000116s ]
  3824. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3825. [ info ] [ LOG ] INIT File
  3826. ---------------------------------------------------------------
  3827. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/dispatch/getSkillList
  3828. [运行时间:0.018294s] [吞吐率:54.66req/s] [内存消耗:605.54kb] [文件加载:145]
  3829. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  3830. [ info ] [ CACHE ] INIT File
  3831. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000298s ]
  3832. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000048s ]
  3833. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000068s ]
  3834. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3835. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000057s ]
  3836. [ info ] [ ROUTE ] array (
  3837. 'type' => 'module',
  3838. 'module' =>
  3839. array (
  3840. 0 => 'Api',
  3841. 1 => 'dispatch',
  3842. 2 => 'getSkillList',
  3843. ),
  3844. )
  3845. [ info ] [ HEADER ] array (
  3846. 'accept-encoding' => 'gzip',
  3847. 'connection' => 'Keep-Alive',
  3848. 'host' => 'voicechat.lanmaonet.com',
  3849. 'content-length' => '42',
  3850. 'content-type' => 'application/x-www-form-urlencoded',
  3851. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3852. 'accept-language' => 'zh-CN,zh;q=0.8',
  3853. )
  3854. [ info ] [ PARAM ] array (
  3855. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  3856. )
  3857. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3858. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000072s ]
  3859. [ info ] [ TOKEN ] INIT Mysql
  3860. [ info ] [ DB ] INIT mysql
  3861. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000063s ]
  3862. [ info ] [ RUN ] app\api\controller\Dispatch->getSkillList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Dispatch.php ]
  3863. [ info ] [ LOG ] INIT File
  3864. ---------------------------------------------------------------
  3865. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3866. [运行时间:0.019357s] [吞吐率:51.66req/s] [内存消耗:603.55kb] [文件加载:145]
  3867. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  3868. [ info ] [ CACHE ] INIT File
  3869. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000298s ]
  3870. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000047s ]
  3871. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000067s ]
  3872. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3873. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000057s ]
  3874. [ info ] [ ROUTE ] array (
  3875. 'type' => 'module',
  3876. 'module' =>
  3877. array (
  3878. 0 => 'Api',
  3879. 1 => 'party',
  3880. 2 => 'getPartyRankList',
  3881. ),
  3882. )
  3883. [ info ] [ HEADER ] array (
  3884. 'accept-encoding' => 'gzip',
  3885. 'connection' => 'Keep-Alive',
  3886. 'host' => 'voicechat.lanmaonet.com',
  3887. 'content-length' => '94',
  3888. 'content-type' => 'application/x-www-form-urlencoded',
  3889. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3890. 'accept-language' => 'zh-CN,zh;q=0.8',
  3891. )
  3892. [ info ] [ PARAM ] array (
  3893. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  3894. 'type_id' => '',
  3895. 'all' => '1',
  3896. 'is_recommend' => '1',
  3897. 'room_type' => '1',
  3898. 'pagenum' => '3',
  3899. )
  3900. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3901. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000102s ]
  3902. [ info ] [ TOKEN ] INIT Mysql
  3903. [ info ] [ DB ] INIT mysql
  3904. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  3905. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3906. [ info ] [ LOG ] INIT File
  3907. ---------------------------------------------------------------
  3908. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  3909. [运行时间:0.005434s] [吞吐率:184.03req/s] [内存消耗:603.55kb] [文件加载:145]
  3910. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  3911. [ info ] [ CACHE ] INIT File
  3912. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000172s ]
  3913. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  3914. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  3915. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3916. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  3917. [ info ] [ ROUTE ] array (
  3918. 'type' => 'module',
  3919. 'module' =>
  3920. array (
  3921. 0 => 'Api',
  3922. 1 => 'party',
  3923. 2 => 'getPartyRankList',
  3924. ),
  3925. )
  3926. [ info ] [ HEADER ] array (
  3927. 'accept-encoding' => 'gzip',
  3928. 'connection' => 'Keep-Alive',
  3929. 'host' => 'voicechat.lanmaonet.com',
  3930. 'content-length' => '94',
  3931. 'content-type' => 'application/x-www-form-urlencoded',
  3932. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3933. 'accept-language' => 'zh-CN,zh;q=0.8',
  3934. )
  3935. [ info ] [ PARAM ] array (
  3936. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  3937. 'type_id' => '',
  3938. 'all' => '1',
  3939. 'is_recommend' => '1',
  3940. 'room_type' => '1',
  3941. 'pagenum' => '3',
  3942. )
  3943. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3944. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000128s ]
  3945. [ info ] [ TOKEN ] INIT Mysql
  3946. [ info ] [ DB ] INIT mysql
  3947. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000071s ]
  3948. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3949. [ info ] [ LOG ] INIT File
  3950. ---------------------------------------------------------------
  3951. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/party/getPatyType
  3952. [运行时间:0.006045s] [吞吐率:165.43req/s] [内存消耗:605.52kb] [文件加载:145]
  3953. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  3954. [ info ] [ CACHE ] INIT File
  3955. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000105s ]
  3956. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000026s ]
  3957. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  3958. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3959. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000018s ]
  3960. [ info ] [ ROUTE ] array (
  3961. 'type' => 'module',
  3962. 'module' =>
  3963. array (
  3964. 0 => 'Api',
  3965. 1 => 'party',
  3966. 2 => 'getPatyType',
  3967. ),
  3968. )
  3969. [ info ] [ HEADER ] array (
  3970. 'accept-encoding' => 'gzip',
  3971. 'connection' => 'Keep-Alive',
  3972. 'host' => 'voicechat.lanmaonet.com',
  3973. 'content-length' => '54',
  3974. 'content-type' => 'application/x-www-form-urlencoded',
  3975. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  3976. 'accept-language' => 'zh-CN,zh;q=0.8',
  3977. )
  3978. [ info ] [ PARAM ] array (
  3979. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  3980. 'room_type' => '2',
  3981. )
  3982. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  3983. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000045s ]
  3984. [ info ] [ TOKEN ] INIT Mysql
  3985. [ info ] [ DB ] INIT mysql
  3986. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000068s ]
  3987. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  3988. [ info ] [ LOG ] INIT File
  3989. ---------------------------------------------------------------
  3990. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/party/getPatyType
  3991. [运行时间:0.008519s] [吞吐率:117.38req/s] [内存消耗:605.23kb] [文件加载:145]
  3992. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
  3993. [ info ] [ CACHE ] INIT File
  3994. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000169s ]
  3995. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  3996. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  3997. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  3998. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000026s ]
  3999. [ info ] [ ROUTE ] array (
  4000. 'type' => 'module',
  4001. 'module' =>
  4002. array (
  4003. 0 => 'Api',
  4004. 1 => 'party',
  4005. 2 => 'getPatyType',
  4006. ),
  4007. )
  4008. [ info ] [ HEADER ] array (
  4009. 'accept-encoding' => 'gzip',
  4010. 'connection' => 'Keep-Alive',
  4011. 'host' => 'voicechat.lanmaonet.com',
  4012. 'content-length' => '42',
  4013. 'content-type' => 'application/x-www-form-urlencoded',
  4014. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4015. 'accept-language' => 'zh-CN,zh;q=0.8',
  4016. )
  4017. [ info ] [ PARAM ] array (
  4018. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4019. )
  4020. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4021. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  4022. [ info ] [ TOKEN ] INIT Mysql
  4023. [ info ] [ DB ] INIT mysql
  4024. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000128s ]
  4025. [ info ] [ RUN ] app\api\controller\Party->getPatyType[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  4026. [ info ] [ LOG ] INIT File
  4027. ---------------------------------------------------------------
  4028. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  4029. [运行时间:0.014966s] [吞吐率:66.82req/s] [内存消耗:603.55kb] [文件加载:145]
  4030. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  4031. [ info ] [ CACHE ] INIT File
  4032. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000147s ]
  4033. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  4034. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  4035. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4036. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  4037. [ info ] [ ROUTE ] array (
  4038. 'type' => 'module',
  4039. 'module' =>
  4040. array (
  4041. 0 => 'Api',
  4042. 1 => 'party',
  4043. 2 => 'getPartyRankList',
  4044. ),
  4045. )
  4046. [ info ] [ HEADER ] array (
  4047. 'accept-encoding' => 'gzip',
  4048. 'connection' => 'Keep-Alive',
  4049. 'host' => 'voicechat.lanmaonet.com',
  4050. 'content-length' => '94',
  4051. 'content-type' => 'application/x-www-form-urlencoded',
  4052. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4053. 'accept-language' => 'zh-CN,zh;q=0.8',
  4054. )
  4055. [ info ] [ PARAM ] array (
  4056. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4057. 'type_id' => '',
  4058. 'all' => '1',
  4059. 'is_recommend' => '0',
  4060. 'room_type' => '1',
  4061. 'pagenum' => '6',
  4062. )
  4063. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4064. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000077s ]
  4065. [ info ] [ TOKEN ] INIT Mysql
  4066. [ info ] [ DB ] INIT mysql
  4067. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  4068. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  4069. [ info ] [ LOG ] INIT File
  4070. ---------------------------------------------------------------
  4071. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/party/getPartyRankList
  4072. [运行时间:0.010834s] [吞吐率:92.30req/s] [内存消耗:603.62kb] [文件加载:145]
  4073. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
  4074. [ info ] [ CACHE ] INIT File
  4075. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000165s ]
  4076. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000065s ]
  4077. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000083s ]
  4078. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4079. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000027s ]
  4080. [ info ] [ ROUTE ] array (
  4081. 'type' => 'module',
  4082. 'module' =>
  4083. array (
  4084. 0 => 'Api',
  4085. 1 => 'party',
  4086. 2 => 'getPartyRankList',
  4087. ),
  4088. )
  4089. [ info ] [ HEADER ] array (
  4090. 'accept-encoding' => 'gzip',
  4091. 'connection' => 'Keep-Alive',
  4092. 'host' => 'voicechat.lanmaonet.com',
  4093. 'content-length' => '106',
  4094. 'content-type' => 'application/x-www-form-urlencoded',
  4095. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4096. 'accept-language' => 'zh-CN,zh;q=0.8',
  4097. )
  4098. [ info ] [ PARAM ] array (
  4099. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4100. 'type_id' => '0',
  4101. 'all' => '1',
  4102. 'is_recommend' => '0',
  4103. 'thispage' => '1',
  4104. 'room_type' => '2',
  4105. 'pagenum' => '6',
  4106. )
  4107. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4108. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000072s ]
  4109. [ info ] [ TOKEN ] INIT Mysql
  4110. [ info ] [ DB ] INIT mysql
  4111. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000076s ]
  4112. [ info ] [ RUN ] app\api\controller\Party->getPartyRankList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Party.php ]
  4113. [ info ] [ LOG ] INIT File
  4114. ---------------------------------------------------------------
  4115. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  4116. [运行时间:0.003614s] [吞吐率:276.69req/s] [内存消耗:561.03kb] [文件加载:139]
  4117. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  4118. [ info ] [ CACHE ] INIT File
  4119. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000225s ]
  4120. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  4121. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  4122. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4123. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000045s ]
  4124. [ info ] [ ROUTE ] array (
  4125. 'type' => 'module',
  4126. 'module' =>
  4127. array (
  4128. 0 => 'api',
  4129. 1 => 'userCenter',
  4130. 2 => 'getMyUserInfo',
  4131. ),
  4132. )
  4133. [ info ] [ HEADER ] array (
  4134. 'accept-encoding' => 'gzip',
  4135. 'connection' => 'Keep-Alive',
  4136. 'host' => 'voicechat.lanmaonet.com',
  4137. 'content-length' => '53',
  4138. 'content-type' => 'application/x-www-form-urlencoded',
  4139. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4140. 'accept-language' => 'zh-CN,zh;q=0.8',
  4141. )
  4142. [ info ] [ PARAM ] array (
  4143. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4144. 'user_id' => '35',
  4145. )
  4146. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4147. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000058s ]
  4148. [ info ] [ TOKEN ] INIT Mysql
  4149. [ info ] [ DB ] INIT mysql
  4150. [ info ] [ LOG ] INIT File
  4151. ---------------------------------------------------------------
  4152. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/index/getMessage
  4153. [运行时间:0.003178s] [吞吐率:314.68req/s] [内存消耗:558.45kb] [文件加载:139]
  4154. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  4155. [ info ] [ CACHE ] INIT File
  4156. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000126s ]
  4157. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  4158. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  4159. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4160. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  4161. [ info ] [ ROUTE ] array (
  4162. 'type' => 'module',
  4163. 'module' =>
  4164. array (
  4165. 0 => 'Api',
  4166. 1 => 'index',
  4167. 2 => 'getMessage',
  4168. ),
  4169. )
  4170. [ info ] [ HEADER ] array (
  4171. 'accept-encoding' => 'gzip',
  4172. 'connection' => 'Keep-Alive',
  4173. 'host' => 'voicechat.lanmaonet.com',
  4174. 'content-length' => '49',
  4175. 'content-type' => 'application/x-www-form-urlencoded',
  4176. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4177. 'accept-language' => 'zh-CN,zh;q=0.8',
  4178. )
  4179. [ info ] [ PARAM ] array (
  4180. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4181. 'flag' => '1',
  4182. )
  4183. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4184. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000053s ]
  4185. [ info ] [ TOKEN ] INIT Mysql
  4186. [ info ] [ DB ] INIT mysql
  4187. [ info ] [ LOG ] INIT File
  4188. ---------------------------------------------------------------
  4189. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  4190. [运行时间:0.003037s] [吞吐率:329.27req/s] [内存消耗:561.03kb] [文件加载:139]
  4191. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  4192. [ info ] [ CACHE ] INIT File
  4193. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000146s ]
  4194. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  4195. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  4196. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4197. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  4198. [ info ] [ ROUTE ] array (
  4199. 'type' => 'module',
  4200. 'module' =>
  4201. array (
  4202. 0 => 'api',
  4203. 1 => 'userCenter',
  4204. 2 => 'getMyUserInfo',
  4205. ),
  4206. )
  4207. [ info ] [ HEADER ] array (
  4208. 'accept-encoding' => 'gzip',
  4209. 'connection' => 'Keep-Alive',
  4210. 'host' => 'voicechat.lanmaonet.com',
  4211. 'content-length' => '53',
  4212. 'content-type' => 'application/x-www-form-urlencoded',
  4213. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4214. 'accept-language' => 'zh-CN,zh;q=0.8',
  4215. )
  4216. [ info ] [ PARAM ] array (
  4217. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4218. 'user_id' => '35',
  4219. )
  4220. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4221. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000054s ]
  4222. [ info ] [ TOKEN ] INIT Mysql
  4223. [ info ] [ DB ] INIT mysql
  4224. [ info ] [ LOG ] INIT File
  4225. ---------------------------------------------------------------
  4226. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  4227. [运行时间:0.004296s] [吞吐率:232.77req/s] [内存消耗:561.93kb] [文件加载:140]
  4228. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  4229. [ info ] [ CACHE ] INIT File
  4230. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000155s ]
  4231. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  4232. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000060s ]
  4233. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4234. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000029s ]
  4235. [ info ] [ ROUTE ] array (
  4236. 'type' => 'module',
  4237. 'module' =>
  4238. array (
  4239. 0 => 'Api',
  4240. 1 => 'userCenter',
  4241. 2 => 'getFollowsLive',
  4242. ),
  4243. )
  4244. [ info ] [ HEADER ] array (
  4245. 'accept-encoding' => 'gzip',
  4246. 'connection' => 'Keep-Alive',
  4247. 'host' => 'voicechat.lanmaonet.com',
  4248. 'content-length' => '71',
  4249. 'content-type' => 'application/x-www-form-urlencoded',
  4250. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4251. 'accept-language' => 'zh-CN,zh;q=0.8',
  4252. )
  4253. [ info ] [ PARAM ] array (
  4254. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4255. 'is_online' => '0',
  4256. 'page' => '1',
  4257. 'pageNum' => '2',
  4258. )
  4259. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4260. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000087s ]
  4261. [ info ] [ TOKEN ] INIT Mysql
  4262. [ info ] [ DB ] INIT mysql
  4263. [ info ] [ LOG ] INIT File
  4264. ---------------------------------------------------------------
  4265. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/userCenter/getFollowsLive
  4266. [运行时间:0.004184s] [吞吐率:239.01req/s] [内存消耗:561.93kb] [文件加载:140]
  4267. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  4268. [ info ] [ CACHE ] INIT File
  4269. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000135s ]
  4270. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  4271. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000109s ]
  4272. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4273. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000028s ]
  4274. [ info ] [ ROUTE ] array (
  4275. 'type' => 'module',
  4276. 'module' =>
  4277. array (
  4278. 0 => 'Api',
  4279. 1 => 'userCenter',
  4280. 2 => 'getFollowsLive',
  4281. ),
  4282. )
  4283. [ info ] [ HEADER ] array (
  4284. 'accept-encoding' => 'gzip',
  4285. 'connection' => 'Keep-Alive',
  4286. 'host' => 'voicechat.lanmaonet.com',
  4287. 'content-length' => '71',
  4288. 'content-type' => 'application/x-www-form-urlencoded',
  4289. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4290. 'accept-language' => 'zh-CN,zh;q=0.8',
  4291. )
  4292. [ info ] [ PARAM ] array (
  4293. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4294. 'is_online' => '1',
  4295. 'page' => '1',
  4296. 'pageNum' => '3',
  4297. )
  4298. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4299. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  4300. [ info ] [ TOKEN ] INIT Mysql
  4301. [ info ] [ DB ] INIT mysql
  4302. [ info ] [ LOG ] INIT File
  4303. ---------------------------------------------------------------
  4304. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/party/cellectionPartyList
  4305. [运行时间:0.003014s] [吞吐率:331.80req/s] [内存消耗:561.90kb] [文件加载:140]
  4306. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  4307. [ info ] [ CACHE ] INIT File
  4308. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000114s ]
  4309. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  4310. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  4311. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4312. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  4313. [ info ] [ ROUTE ] array (
  4314. 'type' => 'module',
  4315. 'module' =>
  4316. array (
  4317. 0 => 'Api',
  4318. 1 => 'party',
  4319. 2 => 'cellectionPartyList',
  4320. ),
  4321. )
  4322. [ info ] [ HEADER ] array (
  4323. 'accept-encoding' => 'gzip',
  4324. 'connection' => 'Keep-Alive',
  4325. 'host' => 'voicechat.lanmaonet.com',
  4326. 'content-length' => '59',
  4327. 'content-type' => 'application/x-www-form-urlencoded',
  4328. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4329. 'accept-language' => 'zh-CN,zh;q=0.8',
  4330. )
  4331. [ info ] [ PARAM ] array (
  4332. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4333. 'page' => '1',
  4334. 'pageNum' => '2',
  4335. )
  4336. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4337. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000049s ]
  4338. [ info ] [ TOKEN ] INIT Mysql
  4339. [ info ] [ DB ] INIT mysql
  4340. [ info ] [ LOG ] INIT File
  4341. ---------------------------------------------------------------
  4342. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  4343. [运行时间:0.002958s] [吞吐率:338.09req/s] [内存消耗:558.53kb] [文件加载:139]
  4344. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
  4345. [ info ] [ CACHE ] INIT File
  4346. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000125s ]
  4347. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  4348. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000042s ]
  4349. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4350. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  4351. [ info ] [ ROUTE ] array (
  4352. 'type' => 'module',
  4353. 'module' =>
  4354. array (
  4355. 0 => 'Api',
  4356. 1 => 'dynamic',
  4357. 2 => 'getDynamicList',
  4358. ),
  4359. )
  4360. [ info ] [ HEADER ] array (
  4361. 'accept-encoding' => 'gzip',
  4362. 'connection' => 'Keep-Alive',
  4363. 'host' => 'voicechat.lanmaonet.com',
  4364. 'content-length' => '56',
  4365. 'content-type' => 'application/x-www-form-urlencoded',
  4366. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4367. 'accept-language' => 'zh-CN,zh;q=0.8',
  4368. )
  4369. [ info ] [ PARAM ] array (
  4370. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4371. 'type' => '1',
  4372. 'page' => '1',
  4373. )
  4374. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4375. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000050s ]
  4376. [ info ] [ TOKEN ] INIT Mysql
  4377. [ info ] [ DB ] INIT mysql
  4378. [ info ] [ LOG ] INIT File
  4379. ---------------------------------------------------------------
  4380. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/dynamic/getDynamicList
  4381. [运行时间:0.003202s] [吞吐率:312.31req/s] [内存消耗:558.53kb] [文件加载:139]
  4382. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
  4383. [ info ] [ CACHE ] INIT File
  4384. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000134s ]
  4385. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  4386. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  4387. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4388. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000019s ]
  4389. [ info ] [ ROUTE ] array (
  4390. 'type' => 'module',
  4391. 'module' =>
  4392. array (
  4393. 0 => 'Api',
  4394. 1 => 'dynamic',
  4395. 2 => 'getDynamicList',
  4396. ),
  4397. )
  4398. [ info ] [ HEADER ] array (
  4399. 'accept-encoding' => 'gzip',
  4400. 'connection' => 'Keep-Alive',
  4401. 'host' => 'voicechat.lanmaonet.com',
  4402. 'content-length' => '56',
  4403. 'content-type' => 'application/x-www-form-urlencoded',
  4404. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4405. 'accept-language' => 'zh-CN,zh;q=0.8',
  4406. )
  4407. [ info ] [ PARAM ] array (
  4408. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4409. 'type' => '2',
  4410. 'page' => '1',
  4411. )
  4412. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4413. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000051s ]
  4414. [ info ] [ TOKEN ] INIT Mysql
  4415. [ info ] [ DB ] INIT mysql
  4416. [ info ] [ LOG ] INIT File
  4417. ---------------------------------------------------------------
  4418. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/party/cellectionPartyList
  4419. [运行时间:0.003689s] [吞吐率:271.07req/s] [内存消耗:561.90kb] [文件加载:140]
  4420. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
  4421. [ info ] [ CACHE ] INIT File
  4422. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000160s ]
  4423. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  4424. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  4425. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4426. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
  4427. [ info ] [ ROUTE ] array (
  4428. 'type' => 'module',
  4429. 'module' =>
  4430. array (
  4431. 0 => 'Api',
  4432. 1 => 'party',
  4433. 2 => 'cellectionPartyList',
  4434. ),
  4435. )
  4436. [ info ] [ HEADER ] array (
  4437. 'accept-encoding' => 'gzip',
  4438. 'connection' => 'Keep-Alive',
  4439. 'host' => 'voicechat.lanmaonet.com',
  4440. 'content-length' => '60',
  4441. 'content-type' => 'application/x-www-form-urlencoded',
  4442. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4443. 'accept-language' => 'zh-CN,zh;q=0.8',
  4444. )
  4445. [ info ] [ PARAM ] array (
  4446. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4447. 'page' => '1',
  4448. 'pageNum' => '10',
  4449. )
  4450. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4451. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000057s ]
  4452. [ info ] [ TOKEN ] INIT Mysql
  4453. [ info ] [ DB ] INIT mysql
  4454. [ info ] [ LOG ] INIT File
  4455. ---------------------------------------------------------------
  4456. [ 2021-12-15T13:04:42+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/api/userCenter/getMyUserInfo
  4457. [运行时间:0.003786s] [吞吐率:264.12req/s] [内存消耗:561.03kb] [文件加载:139]
  4458. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4459. [ info ] [ CACHE ] INIT File
  4460. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000149s ]
  4461. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000029s ]
  4462. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000043s ]
  4463. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4464. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  4465. [ info ] [ ROUTE ] array (
  4466. 'type' => 'module',
  4467. 'module' =>
  4468. array (
  4469. 0 => 'api',
  4470. 1 => 'userCenter',
  4471. 2 => 'getMyUserInfo',
  4472. ),
  4473. )
  4474. [ info ] [ HEADER ] array (
  4475. 'accept-encoding' => 'gzip',
  4476. 'connection' => 'Keep-Alive',
  4477. 'host' => 'voicechat.lanmaonet.com',
  4478. 'content-length' => '53',
  4479. 'content-type' => 'application/x-www-form-urlencoded',
  4480. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4481. 'accept-language' => 'zh-CN,zh;q=0.8',
  4482. )
  4483. [ info ] [ PARAM ] array (
  4484. 'token' => 'bdae4c5d-acda-4996-b47a-2035bd31f1df',
  4485. 'user_id' => '35',
  4486. )
  4487. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4488. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000061s ]
  4489. [ info ] [ TOKEN ] INIT Mysql
  4490. [ info ] [ DB ] INIT mysql
  4491. [ info ] [ LOG ] INIT File
  4492. ---------------------------------------------------------------
  4493. [ 2021-12-15T13:05:06+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/sms/send
  4494. [运行时间:0.045287s] [吞吐率:22.08req/s] [内存消耗:717.98kb] [文件加载:147]
  4495. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  4496. [ info ] [ CACHE ] INIT File
  4497. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000214s ]
  4498. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  4499. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  4500. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4501. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  4502. [ info ] [ ROUTE ] array (
  4503. 'type' => 'module',
  4504. 'module' =>
  4505. array (
  4506. 0 => 'Api',
  4507. 1 => 'sms',
  4508. 2 => 'send',
  4509. ),
  4510. )
  4511. [ info ] [ HEADER ] array (
  4512. 'accept-encoding' => 'gzip',
  4513. 'connection' => 'Keep-Alive',
  4514. 'host' => 'voicechat.lanmaonet.com',
  4515. 'content-length' => '36',
  4516. 'content-type' => 'application/x-www-form-urlencoded',
  4517. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4518. 'accept-language' => 'zh-CN,zh;q=0.8',
  4519. )
  4520. [ info ] [ PARAM ] array (
  4521. 'mobile' => '18518923608',
  4522. 'event' => 'mobilelogin',
  4523. )
  4524. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4525. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000077s ]
  4526. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000074s ]
  4527. [ info ] [ RUN ] app\api\controller\Sms->send[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Sms.php ]
  4528. [ info ] [ DB ] INIT mysql
  4529. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @sms_send [ RunTime:0.001692s ]
  4530. [ info ] [ LOG ] INIT File
  4531. ---------------------------------------------------------------
  4532. [ 2021-12-15T13:05:23+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/sms/send
  4533. [运行时间:0.021848s] [吞吐率:45.77req/s] [内存消耗:717.98kb] [文件加载:147]
  4534. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  4535. [ info ] [ CACHE ] INIT File
  4536. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000234s ]
  4537. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  4538. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  4539. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4540. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  4541. [ info ] [ ROUTE ] array (
  4542. 'type' => 'module',
  4543. 'module' =>
  4544. array (
  4545. 0 => 'Api',
  4546. 1 => 'sms',
  4547. 2 => 'send',
  4548. ),
  4549. )
  4550. [ info ] [ HEADER ] array (
  4551. 'accept-encoding' => 'gzip',
  4552. 'connection' => 'Keep-Alive',
  4553. 'host' => 'voicechat.lanmaonet.com',
  4554. 'content-length' => '36',
  4555. 'content-type' => 'application/x-www-form-urlencoded',
  4556. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4557. 'accept-language' => 'zh-CN,zh;q=0.8',
  4558. )
  4559. [ info ] [ PARAM ] array (
  4560. 'mobile' => '18518923608',
  4561. 'event' => 'mobilelogin',
  4562. )
  4563. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4564. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  4565. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000073s ]
  4566. [ info ] [ RUN ] app\api\controller\Sms->send[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Sms.php ]
  4567. [ info ] [ DB ] INIT mysql
  4568. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @sms_send [ RunTime:0.000260s ]
  4569. [ info ] [ LOG ] INIT File
  4570. ---------------------------------------------------------------
  4571. [ 2021-12-15T13:05:35+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/sms/send
  4572. [运行时间:0.016958s] [吞吐率:58.97req/s] [内存消耗:717.98kb] [文件加载:147]
  4573. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4574. [ info ] [ CACHE ] INIT File
  4575. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000223s ]
  4576. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  4577. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000044s ]
  4578. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4579. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000047s ]
  4580. [ info ] [ ROUTE ] array (
  4581. 'type' => 'module',
  4582. 'module' =>
  4583. array (
  4584. 0 => 'Api',
  4585. 1 => 'sms',
  4586. 2 => 'send',
  4587. ),
  4588. )
  4589. [ info ] [ HEADER ] array (
  4590. 'accept-encoding' => 'gzip',
  4591. 'connection' => 'Keep-Alive',
  4592. 'host' => 'voicechat.lanmaonet.com',
  4593. 'content-length' => '36',
  4594. 'content-type' => 'application/x-www-form-urlencoded',
  4595. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4596. 'accept-language' => 'zh-CN,zh;q=0.8',
  4597. )
  4598. [ info ] [ PARAM ] array (
  4599. 'mobile' => '18518923608',
  4600. 'event' => 'mobilelogin',
  4601. )
  4602. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4603. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000072s ]
  4604. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  4605. [ info ] [ RUN ] app\api\controller\Sms->send[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Sms.php ]
  4606. [ info ] [ DB ] INIT mysql
  4607. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @sms_send [ RunTime:0.000232s ]
  4608. [ info ] [ LOG ] INIT File
  4609. ---------------------------------------------------------------
  4610. [ 2021-12-15T13:06:31+08:00 ] 43.254.91.131 POST voicechat.lanmaonet.com/Api/sms/send
  4611. [运行时间:0.026924s] [吞吐率:37.14req/s] [内存消耗:717.98kb] [文件加载:147]
  4612. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
  4613. [ info ] [ CACHE ] INIT File
  4614. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000222s ]
  4615. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000047s ]
  4616. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000067s ]
  4617. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4618. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000047s ]
  4619. [ info ] [ ROUTE ] array (
  4620. 'type' => 'module',
  4621. 'module' =>
  4622. array (
  4623. 0 => 'Api',
  4624. 1 => 'sms',
  4625. 2 => 'send',
  4626. ),
  4627. )
  4628. [ info ] [ HEADER ] array (
  4629. 'accept-encoding' => 'gzip',
  4630. 'connection' => 'Keep-Alive',
  4631. 'host' => 'voicechat.lanmaonet.com',
  4632. 'content-length' => '36',
  4633. 'content-type' => 'application/x-www-form-urlencoded',
  4634. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4635. 'accept-language' => 'zh-CN,zh;q=0.8',
  4636. )
  4637. [ info ] [ PARAM ] array (
  4638. 'mobile' => '18518923608',
  4639. 'event' => 'mobilelogin',
  4640. )
  4641. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4642. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000087s ]
  4643. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000083s ]
  4644. [ info ] [ RUN ] app\api\controller\Sms->send[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Sms.php ]
  4645. [ info ] [ DB ] INIT mysql
  4646. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @sms_send [ RunTime:0.000364s ]
  4647. [ info ] [ LOG ] INIT File
  4648. ---------------------------------------------------------------
  4649. [ 2021-12-15T13:43:48+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  4650. [运行时间:0.003990s] [吞吐率:250.63req/s] [内存消耗:338.22kb] [文件加载:123]
  4651. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4652. [ info ] [ CACHE ] INIT File
  4653. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000220s ]
  4654. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  4655. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000050s ]
  4656. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4657. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  4658. [ info ] [ ROUTE ] array (
  4659. 'type' => 'module',
  4660. 'module' =>
  4661. array (
  4662. 0 => 'apple-app-site-association',
  4663. 1 => NULL,
  4664. 2 => NULL,
  4665. ),
  4666. )
  4667. [ info ] [ HEADER ] array (
  4668. 'accept-encoding' => 'gzip',
  4669. 'user-agent' => 'AASA-Bot/1.0.0',
  4670. 'host' => 'voicechat.lanmaonet.com',
  4671. 'content-type' => '',
  4672. 'content-length' => '',
  4673. )
  4674. [ info ] [ PARAM ] array (
  4675. )
  4676. [ info ] [ LOG ] INIT File
  4677. ---------------------------------------------------------------
  4678. [ 2021-12-15T13:53:49+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/api/match/getVoiceTypeList
  4679. [运行时间:0.010888s] [吞吐率:91.84req/s] [内存消耗:602.66kb] [文件加载:144]
  4680. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4681. [ info ] [ CACHE ] INIT File
  4682. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000208s ]
  4683. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  4684. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  4685. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4686. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  4687. [ info ] [ ROUTE ] array (
  4688. 'type' => 'module',
  4689. 'module' =>
  4690. array (
  4691. 0 => 'api',
  4692. 1 => 'match',
  4693. 2 => 'getVoiceTypeList',
  4694. ),
  4695. )
  4696. [ info ] [ HEADER ] array (
  4697. 'accept-encoding' => 'gzip',
  4698. 'content-length' => '42',
  4699. 'content-type' => 'application/x-www-form-urlencoded',
  4700. 'user-agent' => 'okhttp-okgo/jeasonlzy',
  4701. 'accept-language' => 'zh-CN,zh;q=0.8',
  4702. 'host' => 'voicechat.lanmaonet.com',
  4703. )
  4704. [ info ] [ PARAM ] array (
  4705. 'token' => '168e411a-a6ae-4a4e-862d-a7db97940ce0',
  4706. )
  4707. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/api/lang/zh-cn.php
  4708. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  4709. [ info ] [ TOKEN ] INIT Mysql
  4710. [ info ] [ DB ] INIT mysql
  4711. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000091s ]
  4712. [ info ] [ RUN ] app\api\controller\Match->getVoiceTypeList[ /www/wwwroot/voicechat.lanmaonet.com/application/api/controller/Match.php ]
  4713. [ info ] [ LOG ] INIT File
  4714. ---------------------------------------------------------------
  4715. [ 2021-12-15T16:32:33+08:00 ] 40.77.167.80 GET voicechat.lanmaonet.com/
  4716. [运行时间:0.017457s] [吞吐率:57.28req/s] [内存消耗:468.58kb] [文件加载:135]
  4717. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  4718. [ info ] [ CACHE ] INIT File
  4719. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000250s ]
  4720. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  4721. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  4722. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4723. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  4724. [ info ] [ ROUTE ] array (
  4725. 'type' => 'module',
  4726. 'module' =>
  4727. array (
  4728. 0 => '',
  4729. 1 => NULL,
  4730. 2 => NULL,
  4731. ),
  4732. )
  4733. [ info ] [ HEADER ] array (
  4734. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  4735. 'from' => 'bingbot(at)microsoft.com',
  4736. 'accept-encoding' => 'gzip, deflate',
  4737. 'accept' => '*/*',
  4738. 'pragma' => 'no-cache',
  4739. 'cache-control' => 'no-cache',
  4740. 'host' => 'voicechat.lanmaonet.com',
  4741. 'content-type' => '',
  4742. 'content-length' => '',
  4743. )
  4744. [ info ] [ PARAM ] array (
  4745. )
  4746. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  4747. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000068s ]
  4748. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000060s ]
  4749. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000039s ]
  4750. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  4751. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  4752. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  4753. 0 => 'user',
  4754. 1 => 'site',
  4755. 2 => 'config',
  4756. ) ]
  4757. [ info ] [ LOG ] INIT File
  4758. ---------------------------------------------------------------
  4759. [ 2021-12-15T16:56:14+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  4760. [运行时间:0.003503s] [吞吐率:285.46req/s] [内存消耗:338.22kb] [文件加载:123]
  4761. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4762. [ info ] [ CACHE ] INIT File
  4763. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000204s ]
  4764. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  4765. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  4766. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4767. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  4768. [ info ] [ ROUTE ] array (
  4769. 'type' => 'module',
  4770. 'module' =>
  4771. array (
  4772. 0 => 'apple-app-site-association',
  4773. 1 => NULL,
  4774. 2 => NULL,
  4775. ),
  4776. )
  4777. [ info ] [ HEADER ] array (
  4778. 'accept-encoding' => 'gzip',
  4779. 'user-agent' => 'AASA-Bot/1.0.0',
  4780. 'host' => 'voicechat.lanmaonet.com',
  4781. 'content-type' => '',
  4782. 'content-length' => '',
  4783. )
  4784. [ info ] [ PARAM ] array (
  4785. )
  4786. [ info ] [ LOG ] INIT File
  4787. ---------------------------------------------------------------
  4788. [ 2021-12-15T18:39:57+08:00 ] 40.77.167.71 GET voicechat.lanmaonet.com/
  4789. [运行时间:0.005125s] [吞吐率:195.12req/s] [内存消耗:468.62kb] [文件加载:135]
  4790. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
  4791. [ info ] [ CACHE ] INIT File
  4792. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000279s ]
  4793. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000047s ]
  4794. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000072s ]
  4795. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4796. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000051s ]
  4797. [ info ] [ ROUTE ] array (
  4798. 'type' => 'module',
  4799. 'module' =>
  4800. array (
  4801. 0 => '',
  4802. 1 => NULL,
  4803. 2 => NULL,
  4804. ),
  4805. )
  4806. [ info ] [ HEADER ] array (
  4807. 'user-agent' => 'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
  4808. 'host' => 'voicechat.lanmaonet.com',
  4809. 'from' => 'bingbot(at)microsoft.com',
  4810. 'accept-encoding' => 'gzip, deflate',
  4811. 'accept' => '*/*',
  4812. 'pragma' => 'no-cache',
  4813. 'connection' => 'Keep-Alive',
  4814. 'cache-control' => 'no-cache',
  4815. 'content-type' => '',
  4816. 'content-length' => '',
  4817. )
  4818. [ info ] [ PARAM ] array (
  4819. )
  4820. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  4821. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000078s ]
  4822. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000068s ]
  4823. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000044s ]
  4824. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  4825. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  4826. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  4827. 0 => 'user',
  4828. 1 => 'site',
  4829. 2 => 'config',
  4830. ) ]
  4831. [ info ] [ LOG ] INIT File
  4832. ---------------------------------------------------------------
  4833. [ 2021-12-15T18:55:17+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  4834. [运行时间:0.011343s] [吞吐率:88.16req/s] [内存消耗:338.22kb] [文件加载:123]
  4835. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4836. [ info ] [ CACHE ] INIT File
  4837. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000281s ]
  4838. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  4839. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  4840. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4841. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000046s ]
  4842. [ info ] [ ROUTE ] array (
  4843. 'type' => 'module',
  4844. 'module' =>
  4845. array (
  4846. 0 => 'apple-app-site-association',
  4847. 1 => NULL,
  4848. 2 => NULL,
  4849. ),
  4850. )
  4851. [ info ] [ HEADER ] array (
  4852. 'accept-encoding' => 'gzip',
  4853. 'user-agent' => 'AASA-Bot/1.0.0',
  4854. 'host' => 'voicechat.lanmaonet.com',
  4855. 'content-type' => '',
  4856. 'content-length' => '',
  4857. )
  4858. [ info ] [ PARAM ] array (
  4859. )
  4860. [ info ] [ LOG ] INIT File
  4861. ---------------------------------------------------------------
  4862. [ 2021-12-15T21:03:23+08:00 ] 122.96.44.9 GET voicechat.lanmaonet.com/apple-app-site-association
  4863. [运行时间:0.004290s] [吞吐率:233.11req/s] [内存消耗:340.17kb] [文件加载:123]
  4864. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4865. [ info ] [ CACHE ] INIT File
  4866. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000244s ]
  4867. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  4868. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  4869. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4870. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  4871. [ info ] [ ROUTE ] array (
  4872. 'type' => 'module',
  4873. 'module' =>
  4874. array (
  4875. 0 => 'apple-app-site-association',
  4876. 1 => NULL,
  4877. 2 => NULL,
  4878. ),
  4879. )
  4880. [ info ] [ HEADER ] array (
  4881. 'user-agent' => 'swcd (unknown version) CFNetwork/1125.2 Darwin/19.4.0',
  4882. 'accept-encoding' => 'gzip, deflate, br',
  4883. 'connection' => 'keep-alive',
  4884. 'accept-language' => 'zh-cn',
  4885. 'accept' => '*/*',
  4886. 'host' => 'voicechat.lanmaonet.com',
  4887. 'content-type' => '',
  4888. 'content-length' => '',
  4889. )
  4890. [ info ] [ PARAM ] array (
  4891. )
  4892. [ info ] [ LOG ] INIT File
  4893. ---------------------------------------------------------------
  4894. [ 2021-12-15T22:04:11+08:00 ] 117.93.159.252 GET voicechat.lanmaonet.com/apple-app-site-association
  4895. [运行时间:0.005365s] [吞吐率:186.39req/s] [内存消耗:340.17kb] [文件加载:123]
  4896. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4897. [ info ] [ CACHE ] INIT File
  4898. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000337s ]
  4899. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  4900. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  4901. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4902. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  4903. [ info ] [ ROUTE ] array (
  4904. 'type' => 'module',
  4905. 'module' =>
  4906. array (
  4907. 0 => 'apple-app-site-association',
  4908. 1 => NULL,
  4909. 2 => NULL,
  4910. ),
  4911. )
  4912. [ info ] [ HEADER ] array (
  4913. 'user-agent' => 'swcd (unknown version) CFNetwork/1121.2.2 Darwin/19.2.0',
  4914. 'accept-encoding' => 'gzip, deflate, br',
  4915. 'connection' => 'keep-alive',
  4916. 'accept-language' => 'zh-cn',
  4917. 'accept' => '*/*',
  4918. 'host' => 'voicechat.lanmaonet.com',
  4919. 'content-type' => '',
  4920. 'content-length' => '',
  4921. )
  4922. [ info ] [ PARAM ] array (
  4923. )
  4924. [ info ] [ LOG ] INIT File
  4925. ---------------------------------------------------------------
  4926. [ 2021-12-15T22:08:11+08:00 ] 3.127.119.25 GET voicechat.lanmaonet.com/apple-app-site-association
  4927. [运行时间:0.003402s] [吞吐率:293.95req/s] [内存消耗:338.22kb] [文件加载:123]
  4928. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
  4929. [ info ] [ CACHE ] INIT File
  4930. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000190s ]
  4931. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  4932. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  4933. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4934. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  4935. [ info ] [ ROUTE ] array (
  4936. 'type' => 'module',
  4937. 'module' =>
  4938. array (
  4939. 0 => 'apple-app-site-association',
  4940. 1 => NULL,
  4941. 2 => NULL,
  4942. ),
  4943. )
  4944. [ info ] [ HEADER ] array (
  4945. 'accept-encoding' => 'gzip',
  4946. 'user-agent' => 'AASA-Bot/1.0.0',
  4947. 'host' => 'voicechat.lanmaonet.com',
  4948. 'content-type' => '',
  4949. 'content-length' => '',
  4950. )
  4951. [ info ] [ PARAM ] array (
  4952. )
  4953. [ info ] [ LOG ] INIT File
  4954. ---------------------------------------------------------------
  4955. [ 2021-12-15T22:12:30+08:00 ] 34.223.250.191 GET voicechat.lanmaonet.com/
  4956. [运行时间:0.014296s] [吞吐率:69.95req/s] [内存消耗:467.63kb] [文件加载:135]
  4957. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
  4958. [ info ] [ CACHE ] INIT File
  4959. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000203s ]
  4960. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  4961. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  4962. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  4963. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  4964. [ info ] [ ROUTE ] array (
  4965. 'type' => 'module',
  4966. 'module' =>
  4967. array (
  4968. 0 => '',
  4969. 1 => NULL,
  4970. 2 => NULL,
  4971. ),
  4972. )
  4973. [ info ] [ HEADER ] array (
  4974. 'user-agent' => 'Mozilla/5.0 (X11; U; Linux x86_64; en-us) AppleWebKit/531.2+ (KHTML, like Gecko) Version/5.0 Safari/531.2+',
  4975. 'accept' => '*/*',
  4976. 'host' => 'voicechat.lanmaonet.com',
  4977. 'content-type' => '',
  4978. 'content-length' => '',
  4979. )
  4980. [ info ] [ PARAM ] array (
  4981. )
  4982. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  4983. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000727s ]
  4984. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000081s ]
  4985. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000051s ]
  4986. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  4987. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  4988. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  4989. 0 => 'user',
  4990. 1 => 'site',
  4991. 2 => 'config',
  4992. ) ]
  4993. [ info ] [ LOG ] INIT File
  4994. ---------------------------------------------------------------
  4995. [ 2021-12-15T22:14:38+08:00 ] 27.44.245.103 GET voicechat.lanmaonet.com/apple-app-site-association
  4996. [运行时间:0.003593s] [吞吐率:278.32req/s] [内存消耗:340.17kb] [文件加载:123]
  4997. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
  4998. [ info ] [ CACHE ] INIT File
  4999. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000187s ]
  5000. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  5001. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000045s ]
  5002. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  5003. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  5004. [ info ] [ ROUTE ] array (
  5005. 'type' => 'module',
  5006. 'module' =>
  5007. array (
  5008. 0 => 'apple-app-site-association',
  5009. 1 => NULL,
  5010. 2 => NULL,
  5011. ),
  5012. )
  5013. [ info ] [ HEADER ] array (
  5014. 'user-agent' => 'swcd (unknown version) CFNetwork/978.0.7 Darwin/18.6.0',
  5015. 'accept-encoding' => 'br, gzip, deflate',
  5016. 'connection' => 'keep-alive',
  5017. 'accept-language' => 'zh-cn',
  5018. 'accept' => '*/*',
  5019. 'host' => 'voicechat.lanmaonet.com',
  5020. 'content-type' => '',
  5021. 'content-length' => '',
  5022. )
  5023. [ info ] [ PARAM ] array (
  5024. )
  5025. [ info ] [ LOG ] INIT File