20.log 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. ---------------------------------------------------------------
  2. [ 2021-08-20T00:38:51+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  3. [运行时间:0.004477s] [吞吐率:223.36req/s] [内存消耗:338.21kb] [文件加载:123]
  4. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
  5. [ info ] [ CACHE ] INIT File
  6. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000304s ]
  7. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000058s ]
  8. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000080s ]
  9. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  10. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  11. [ info ] [ ROUTE ] array (
  12. 'type' => 'module',
  13. 'module' =>
  14. array (
  15. 0 => 'apple-app-site-association',
  16. 1 => NULL,
  17. 2 => NULL,
  18. ),
  19. )
  20. [ info ] [ HEADER ] array (
  21. 'accept-encoding' => 'gzip',
  22. 'user-agent' => 'AASA-Bot/1.0.0',
  23. 'host' => 'voicechat.lanmaonet.com',
  24. 'content-type' => '',
  25. 'content-length' => '',
  26. )
  27. [ info ] [ PARAM ] array (
  28. )
  29. [ info ] [ LOG ] INIT File
  30. ---------------------------------------------------------------
  31. [ 2021-08-20T01:10:24+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  32. [运行时间:0.004821s] [吞吐率:207.42req/s] [内存消耗:338.22kb] [文件加载:123]
  33. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
  34. [ info ] [ CACHE ] INIT File
  35. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000363s ]
  36. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000064s ]
  37. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000083s ]
  38. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  39. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  40. [ info ] [ ROUTE ] array (
  41. 'type' => 'module',
  42. 'module' =>
  43. array (
  44. 0 => 'apple-app-site-association',
  45. 1 => NULL,
  46. 2 => NULL,
  47. ),
  48. )
  49. [ info ] [ HEADER ] array (
  50. 'accept-encoding' => 'gzip',
  51. 'user-agent' => 'AASA-Bot/1.0.0',
  52. 'host' => 'voicechat.lanmaonet.com',
  53. 'content-type' => '',
  54. 'content-length' => '',
  55. )
  56. [ info ] [ PARAM ] array (
  57. )
  58. [ info ] [ LOG ] INIT File
  59. ---------------------------------------------------------------
  60. [ 2021-08-20T01:15:37+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  61. [运行时间:0.004840s] [吞吐率:206.62req/s] [内存消耗:338.22kb] [文件加载:123]
  62. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
  63. [ info ] [ CACHE ] INIT File
  64. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000349s ]
  65. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000044s ]
  66. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  67. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  68. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000054s ]
  69. [ info ] [ ROUTE ] array (
  70. 'type' => 'module',
  71. 'module' =>
  72. array (
  73. 0 => 'apple-app-site-association',
  74. 1 => NULL,
  75. 2 => NULL,
  76. ),
  77. )
  78. [ info ] [ HEADER ] array (
  79. 'accept-encoding' => 'gzip',
  80. 'user-agent' => 'AASA-Bot/1.0.0',
  81. 'host' => 'voicechat.lanmaonet.com',
  82. 'content-type' => '',
  83. 'content-length' => '',
  84. )
  85. [ info ] [ PARAM ] array (
  86. )
  87. [ info ] [ LOG ] INIT File
  88. ---------------------------------------------------------------
  89. [ 2021-08-20T01:21:50+08:00 ] 52.81.7.166 GET voicechat.lanmaonet.com/
  90. [运行时间:0.010814s] [吞吐率:92.47req/s] [内存消耗:448.62kb] [文件加载:132]
  91. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  92. [ info ] [ CACHE ] INIT File
  93. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000322s ]
  94. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  95. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  96. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  97. [ info ] [ ROUTE ] array (
  98. 'type' => 'module',
  99. 'module' =>
  100. array (
  101. 0 => '',
  102. 1 => NULL,
  103. 2 => NULL,
  104. ),
  105. )
  106. [ info ] [ HEADER ] array (
  107. 'connection' => 'Keep-Alive',
  108. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
  109. 'accept-encoding' => 'gzip, deflate',
  110. 'accept-language' => 'zh,zh-CN;q=0.9',
  111. 'user-agent' => 'Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.9307.1696 Mobile Safari/537.36',
  112. 'upgrade-insecure-requests' => '1',
  113. 'host' => 'voicechat.lanmaonet.com',
  114. 'content-type' => '',
  115. 'content-length' => '',
  116. )
  117. [ info ] [ PARAM ] array (
  118. )
  119. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000717s ]
  120. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000090s ]
  121. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000042s ]
  122. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  123. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  124. 0 => 'user',
  125. 1 => 'site',
  126. 2 => 'config',
  127. ) ]
  128. [ info ] [ LOG ] INIT File
  129. ---------------------------------------------------------------
  130. [ 2021-08-20T01:59:40+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  131. [运行时间:0.004808s] [吞吐率:207.99req/s] [内存消耗:338.22kb] [文件加载:123]
  132. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  133. [ info ] [ CACHE ] INIT File
  134. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000347s ]
  135. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000045s ]
  136. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  137. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  138. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  139. [ info ] [ ROUTE ] array (
  140. 'type' => 'module',
  141. 'module' =>
  142. array (
  143. 0 => 'apple-app-site-association',
  144. 1 => NULL,
  145. 2 => NULL,
  146. ),
  147. )
  148. [ info ] [ HEADER ] array (
  149. 'accept-encoding' => 'gzip',
  150. 'user-agent' => 'AASA-Bot/1.0.0',
  151. 'host' => 'voicechat.lanmaonet.com',
  152. 'content-type' => '',
  153. 'content-length' => '',
  154. )
  155. [ info ] [ PARAM ] array (
  156. )
  157. [ info ] [ LOG ] INIT File
  158. ---------------------------------------------------------------
  159. [ 2021-08-20T02:03:22+08:00 ] 220.243.135.169 GET voicechat.lanmaonet.com/index/index/privacy
  160. [运行时间:0.006364s] [吞吐率:157.13req/s] [内存消耗:451.73kb] [文件加载:131]
  161. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  162. [ info ] [ CACHE ] INIT File
  163. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000329s ]
  164. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  165. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  166. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  167. [ info ] [ ROUTE ] array (
  168. 'type' => 'module',
  169. 'module' =>
  170. array (
  171. 0 => 'index',
  172. 1 => 'index',
  173. 2 => 'privacy',
  174. ),
  175. )
  176. [ info ] [ HEADER ] array (
  177. 'connection' => 'Keep-Alive',
  178. 'accept-encoding' => 'gzip, deflate',
  179. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
  180. 'accept-language' => 'zh,zh-CN;q=0.9',
  181. 'user-agent' => 'Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; https://zhanzhang.toutiao.com/)',
  182. 'upgrade-insecure-requests' => '1',
  183. 'host' => 'voicechat.lanmaonet.com',
  184. 'content-type' => '',
  185. 'content-length' => '',
  186. )
  187. [ info ] [ PARAM ] array (
  188. )
  189. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000084s ]
  190. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000068s ]
  191. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000041s ]
  192. [ info ] [ RUN ] app\index\controller\Index->privacy[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  193. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/privacy.html [ array (
  194. 0 => 'user',
  195. 1 => 'site',
  196. 2 => 'config',
  197. 3 => 'content',
  198. ) ]
  199. [ info ] [ LOG ] INIT File
  200. ---------------------------------------------------------------
  201. [ 2021-08-20T02:27:27+08:00 ] 93.119.227.19 GET voicechat.lanmaonet.com/
  202. [运行时间:0.005597s] [吞吐率:178.67req/s] [内存消耗:467.67kb] [文件加载:135]
  203. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  204. [ info ] [ CACHE ] INIT File
  205. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000322s ]
  206. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  207. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  208. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  209. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000050s ]
  210. [ info ] [ ROUTE ] array (
  211. 'type' => 'module',
  212. 'module' =>
  213. array (
  214. 0 => '',
  215. 1 => NULL,
  216. 2 => NULL,
  217. ),
  218. )
  219. [ info ] [ HEADER ] array (
  220. 'connection' => 'close',
  221. 'host' => 'voicechat.lanmaonet.com',
  222. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0',
  223. 'accept-encoding' => 'identity',
  224. 'content-type' => '',
  225. 'content-length' => '',
  226. )
  227. [ info ] [ PARAM ] array (
  228. )
  229. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  230. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000070s ]
  231. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000068s ]
  232. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000041s ]
  233. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  234. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  235. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  236. 0 => 'user',
  237. 1 => 'site',
  238. 2 => 'config',
  239. ) ]
  240. [ info ] [ LOG ] INIT File
  241. ---------------------------------------------------------------
  242. [ 2021-08-20T03:36:10+08:00 ] 61.183.201.26 GET voicechat.lanmaonet.com/
  243. [运行时间:0.005925s] [吞吐率:168.78req/s] [内存消耗:468.75kb] [文件加载:135]
  244. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  245. [ info ] [ CACHE ] INIT File
  246. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000313s ]
  247. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000061s ]
  248. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000078s ]
  249. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  250. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  251. [ info ] [ ROUTE ] array (
  252. 'type' => 'module',
  253. 'module' =>
  254. array (
  255. 0 => '',
  256. 1 => NULL,
  257. 2 => NULL,
  258. ),
  259. )
  260. [ info ] [ HEADER ] array (
  261. 'connection' => 'close',
  262. 'cache-control' => 'max-age=0',
  263. 'accept-language' => 'zh-CN,zh;q=0.8',
  264. 'accept-encoding' => 'gzip,deflate,sdch',
  265. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  266. 'user-agent' => 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36',
  267. 'host' => 'voicechat.lanmaonet.com',
  268. 'content-type' => '',
  269. 'content-length' => '',
  270. )
  271. [ info ] [ PARAM ] array (
  272. )
  273. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  274. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000075s ]
  275. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000080s ]
  276. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000045s ]
  277. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  278. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  279. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  280. 0 => 'user',
  281. 1 => 'site',
  282. 2 => 'config',
  283. ) ]
  284. [ info ] [ LOG ] INIT File
  285. ---------------------------------------------------------------
  286. [ 2021-08-20T03:43:41+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  287. [运行时间:0.004879s] [吞吐率:204.96req/s] [内存消耗:338.22kb] [文件加载:123]
  288. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  289. [ info ] [ CACHE ] INIT File
  290. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000330s ]
  291. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000050s ]
  292. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000068s ]
  293. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  294. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  295. [ info ] [ ROUTE ] array (
  296. 'type' => 'module',
  297. 'module' =>
  298. array (
  299. 0 => 'apple-app-site-association',
  300. 1 => NULL,
  301. 2 => NULL,
  302. ),
  303. )
  304. [ info ] [ HEADER ] array (
  305. 'accept-encoding' => 'gzip',
  306. 'user-agent' => 'AASA-Bot/1.0.0',
  307. 'host' => 'voicechat.lanmaonet.com',
  308. 'content-type' => '',
  309. 'content-length' => '',
  310. )
  311. [ info ] [ PARAM ] array (
  312. )
  313. [ info ] [ LOG ] INIT File
  314. ---------------------------------------------------------------
  315. [ 2021-08-20T05:41:09+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  316. [运行时间:0.016247s] [吞吐率:61.55req/s] [内存消耗:338.22kb] [文件加载:123]
  317. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000026s ]
  318. [ info ] [ CACHE ] INIT File
  319. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.002035s ]
  320. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000051s ]
  321. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000089s ]
  322. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  323. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000814s ]
  324. [ info ] [ ROUTE ] array (
  325. 'type' => 'module',
  326. 'module' =>
  327. array (
  328. 0 => 'apple-app-site-association',
  329. 1 => NULL,
  330. 2 => NULL,
  331. ),
  332. )
  333. [ info ] [ HEADER ] array (
  334. 'accept-encoding' => 'gzip',
  335. 'user-agent' => 'AASA-Bot/1.0.0',
  336. 'host' => 'voicechat.lanmaonet.com',
  337. 'content-type' => '',
  338. 'content-length' => '',
  339. )
  340. [ info ] [ PARAM ] array (
  341. )
  342. [ info ] [ LOG ] INIT File
  343. ---------------------------------------------------------------
  344. [ 2021-08-20T06:20:23+08:00 ] 17.149.210.222 HEAD voicechat.lanmaonet.com/
  345. [运行时间:0.006446s] [吞吐率:155.13req/s] [内存消耗:467.70kb] [文件加载:135]
  346. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  347. [ info ] [ CACHE ] INIT File
  348. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000331s ]
  349. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  350. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  351. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  352. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000035s ]
  353. [ info ] [ ROUTE ] array (
  354. 'type' => 'module',
  355. 'module' =>
  356. array (
  357. 0 => '',
  358. 1 => NULL,
  359. 2 => NULL,
  360. ),
  361. )
  362. [ info ] [ HEADER ] array (
  363. 'connection' => 'keep-alive',
  364. 'accept' => '*/*',
  365. 'accept-encoding' => 'gzip, deflate',
  366. 'user-agent' => 'python-requests/2.26.0',
  367. 'host' => 'voicechat.lanmaonet.com',
  368. 'content-type' => '',
  369. 'content-length' => '',
  370. )
  371. [ info ] [ PARAM ] array (
  372. )
  373. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  374. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000106s ]
  375. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000075s ]
  376. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000044s ]
  377. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  378. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  379. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  380. 0 => 'user',
  381. 1 => 'site',
  382. 2 => 'config',
  383. ) ]
  384. [ info ] [ LOG ] INIT File
  385. ---------------------------------------------------------------
  386. [ 2021-08-20T08:03:37+08:00 ] 11.187.182.145 GET voicechat.lanmaonet.com/
  387. [运行时间:0.005957s] [吞吐率:167.87req/s] [内存消耗:468.37kb] [文件加载:135]
  388. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000025s ]
  389. [ info ] [ CACHE ] INIT File
  390. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000342s ]
  391. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  392. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  393. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  394. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  395. [ info ] [ ROUTE ] array (
  396. 'type' => 'module',
  397. 'module' =>
  398. array (
  399. 0 => '',
  400. 1 => NULL,
  401. 2 => NULL,
  402. ),
  403. )
  404. [ info ] [ HEADER ] array (
  405. 'via' => 'http/1.1 traffic_server[ddcbe3ed-ba46-43bc-8d45-26c1aae57187] (ApacheTrafficServer/9.0.0)',
  406. 'x-forwarded-for' => '11.187.182.145',
  407. 'client-ip' => '11.187.182.145',
  408. 'accept-encoding' => 'gzip',
  409. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',
  410. 'host' => 'voicechat.lanmaonet.com',
  411. 'content-type' => '',
  412. 'content-length' => '',
  413. )
  414. [ info ] [ PARAM ] array (
  415. )
  416. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  417. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000079s ]
  418. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  419. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000041s ]
  420. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  421. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  422. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  423. 0 => 'user',
  424. 1 => 'site',
  425. 2 => 'config',
  426. ) ]
  427. [ info ] [ LOG ] INIT File
  428. ---------------------------------------------------------------
  429. [ 2021-08-20T08:30:14+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  430. [运行时间:0.006250s] [吞吐率:160.00req/s] [内存消耗:338.22kb] [文件加载:123]
  431. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  432. [ info ] [ CACHE ] INIT File
  433. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000336s ]
  434. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  435. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  436. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  437. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000044s ]
  438. [ info ] [ ROUTE ] array (
  439. 'type' => 'module',
  440. 'module' =>
  441. array (
  442. 0 => 'apple-app-site-association',
  443. 1 => NULL,
  444. 2 => NULL,
  445. ),
  446. )
  447. [ info ] [ HEADER ] array (
  448. 'accept-encoding' => 'gzip',
  449. 'user-agent' => 'AASA-Bot/1.0.0',
  450. 'host' => 'voicechat.lanmaonet.com',
  451. 'content-type' => '',
  452. 'content-length' => '',
  453. )
  454. [ info ] [ PARAM ] array (
  455. )
  456. [ info ] [ LOG ] INIT File
  457. ---------------------------------------------------------------
  458. [ 2021-08-20T09:28:05+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  459. [运行时间:0.010201s] [吞吐率:98.03req/s] [内存消耗:338.22kb] [文件加载:123]
  460. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  461. [ info ] [ CACHE ] INIT File
  462. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.005632s ]
  463. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000071s ]
  464. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000091s ]
  465. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  466. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000044s ]
  467. [ info ] [ ROUTE ] array (
  468. 'type' => 'module',
  469. 'module' =>
  470. array (
  471. 0 => 'apple-app-site-association',
  472. 1 => NULL,
  473. 2 => NULL,
  474. ),
  475. )
  476. [ info ] [ HEADER ] array (
  477. 'accept-encoding' => 'gzip',
  478. 'user-agent' => 'AASA-Bot/1.0.0',
  479. 'host' => 'voicechat.lanmaonet.com',
  480. 'content-type' => '',
  481. 'content-length' => '',
  482. )
  483. [ info ] [ PARAM ] array (
  484. )
  485. [ info ] [ LOG ] INIT File
  486. ---------------------------------------------------------------
  487. [ 2021-08-20T09:30:11+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  488. [运行时间:0.004681s] [吞吐率:213.62req/s] [内存消耗:338.22kb] [文件加载:123]
  489. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  490. [ info ] [ CACHE ] INIT File
  491. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000265s ]
  492. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  493. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000067s ]
  494. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  495. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000060s ]
  496. [ info ] [ ROUTE ] array (
  497. 'type' => 'module',
  498. 'module' =>
  499. array (
  500. 0 => 'apple-app-site-association',
  501. 1 => NULL,
  502. 2 => NULL,
  503. ),
  504. )
  505. [ info ] [ HEADER ] array (
  506. 'accept-encoding' => 'gzip',
  507. 'user-agent' => 'AASA-Bot/1.0.0',
  508. 'host' => 'voicechat.lanmaonet.com',
  509. 'content-type' => '',
  510. 'content-length' => '',
  511. )
  512. [ info ] [ PARAM ] array (
  513. )
  514. [ info ] [ LOG ] INIT File
  515. ---------------------------------------------------------------
  516. [ 2021-08-20T10:12:14+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  517. [运行时间:0.004663s] [吞吐率:214.45req/s] [内存消耗:338.22kb] [文件加载:123]
  518. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  519. [ info ] [ CACHE ] INIT File
  520. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000294s ]
  521. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  522. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  523. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  524. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  525. [ info ] [ ROUTE ] array (
  526. 'type' => 'module',
  527. 'module' =>
  528. array (
  529. 0 => 'apple-app-site-association',
  530. 1 => NULL,
  531. 2 => NULL,
  532. ),
  533. )
  534. [ info ] [ HEADER ] array (
  535. 'accept-encoding' => 'gzip',
  536. 'user-agent' => 'AASA-Bot/1.0.0',
  537. 'host' => 'voicechat.lanmaonet.com',
  538. 'content-type' => '',
  539. 'content-length' => '',
  540. )
  541. [ info ] [ PARAM ] array (
  542. )
  543. [ info ] [ LOG ] INIT File
  544. ---------------------------------------------------------------
  545. [ 2021-08-20T10:49:19+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  546. [运行时间:0.005686s] [吞吐率:175.87req/s] [内存消耗:338.22kb] [文件加载:123]
  547. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  548. [ info ] [ CACHE ] INIT File
  549. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000328s ]
  550. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  551. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  552. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  553. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  554. [ info ] [ ROUTE ] array (
  555. 'type' => 'module',
  556. 'module' =>
  557. array (
  558. 0 => 'apple-app-site-association',
  559. 1 => NULL,
  560. 2 => NULL,
  561. ),
  562. )
  563. [ info ] [ HEADER ] array (
  564. 'accept-encoding' => 'gzip',
  565. 'user-agent' => 'AASA-Bot/1.0.0',
  566. 'host' => 'voicechat.lanmaonet.com',
  567. 'content-type' => '',
  568. 'content-length' => '',
  569. )
  570. [ info ] [ PARAM ] array (
  571. )
  572. [ info ] [ LOG ] INIT File
  573. ---------------------------------------------------------------
  574. [ 2021-08-20T11:05:40+08:00 ] 58.219.87.158 GET voicechat.lanmaonet.com/apple-app-site-association
  575. [运行时间:0.004668s] [吞吐率:214.22req/s] [内存消耗:340.17kb] [文件加载:123]
  576. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  577. [ info ] [ CACHE ] INIT File
  578. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000328s ]
  579. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000039s ]
  580. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  581. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  582. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000046s ]
  583. [ info ] [ ROUTE ] array (
  584. 'type' => 'module',
  585. 'module' =>
  586. array (
  587. 0 => 'apple-app-site-association',
  588. 1 => NULL,
  589. 2 => NULL,
  590. ),
  591. )
  592. [ info ] [ HEADER ] array (
  593. 'user-agent' => 'swcd (unknown version) CFNetwork/1128.0.1 Darwin/19.6.0',
  594. 'accept-encoding' => 'gzip, deflate, br',
  595. 'connection' => 'keep-alive',
  596. 'accept-language' => 'zh-cn',
  597. 'accept' => '*/*',
  598. 'host' => 'voicechat.lanmaonet.com',
  599. 'content-type' => '',
  600. 'content-length' => '',
  601. )
  602. [ info ] [ PARAM ] array (
  603. )
  604. [ info ] [ LOG ] INIT File
  605. ---------------------------------------------------------------
  606. [ 2021-08-20T11:49:32+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  607. [运行时间:0.004839s] [吞吐率:206.66req/s] [内存消耗:338.22kb] [文件加载:123]
  608. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
  609. [ info ] [ CACHE ] INIT File
  610. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000307s ]
  611. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  612. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  613. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  614. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000053s ]
  615. [ info ] [ ROUTE ] array (
  616. 'type' => 'module',
  617. 'module' =>
  618. array (
  619. 0 => 'apple-app-site-association',
  620. 1 => NULL,
  621. 2 => NULL,
  622. ),
  623. )
  624. [ info ] [ HEADER ] array (
  625. 'accept-encoding' => 'gzip',
  626. 'user-agent' => 'AASA-Bot/1.0.0',
  627. 'host' => 'voicechat.lanmaonet.com',
  628. 'content-type' => '',
  629. 'content-length' => '',
  630. )
  631. [ info ] [ PARAM ] array (
  632. )
  633. [ info ] [ LOG ] INIT File
  634. ---------------------------------------------------------------
  635. [ 2021-08-20T12:23:58+08:00 ] 11.187.185.43 GET voicechat.lanmaonet.com/
  636. [运行时间:0.015309s] [吞吐率:65.32req/s] [内存消耗:468.37kb] [文件加载:135]
  637. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000039s ]
  638. [ info ] [ CACHE ] INIT File
  639. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000407s ]
  640. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000087s ]
  641. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000115s ]
  642. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  643. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000062s ]
  644. [ info ] [ ROUTE ] array (
  645. 'type' => 'module',
  646. 'module' =>
  647. array (
  648. 0 => '',
  649. 1 => NULL,
  650. 2 => NULL,
  651. ),
  652. )
  653. [ info ] [ HEADER ] array (
  654. 'via' => 'http/1.1 traffic_server[ab3ee077-1a0c-4e69-be8c-82ebe5cf23c2] (ApacheTrafficServer/9.0.0)',
  655. 'x-forwarded-for' => '11.187.185.43',
  656. 'client-ip' => '11.187.185.43',
  657. 'accept-encoding' => 'gzip',
  658. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',
  659. 'host' => 'voicechat.lanmaonet.com',
  660. 'content-type' => '',
  661. 'content-length' => '',
  662. )
  663. [ info ] [ PARAM ] array (
  664. )
  665. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  666. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000926s ]
  667. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000084s ]
  668. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000046s ]
  669. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  670. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  671. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  672. 0 => 'user',
  673. 1 => 'site',
  674. 2 => 'config',
  675. ) ]
  676. [ info ] [ LOG ] INIT File
  677. ---------------------------------------------------------------
  678. [ 2021-08-20T12:30:10+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  679. [运行时间:0.004760s] [吞吐率:210.08req/s] [内存消耗:338.22kb] [文件加载:123]
  680. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  681. [ info ] [ CACHE ] INIT File
  682. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000343s ]
  683. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000046s ]
  684. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000066s ]
  685. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  686. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  687. [ info ] [ ROUTE ] array (
  688. 'type' => 'module',
  689. 'module' =>
  690. array (
  691. 0 => 'apple-app-site-association',
  692. 1 => NULL,
  693. 2 => NULL,
  694. ),
  695. )
  696. [ info ] [ HEADER ] array (
  697. 'accept-encoding' => 'gzip',
  698. 'user-agent' => 'AASA-Bot/1.0.0',
  699. 'host' => 'voicechat.lanmaonet.com',
  700. 'content-type' => '',
  701. 'content-length' => '',
  702. )
  703. [ info ] [ PARAM ] array (
  704. )
  705. [ info ] [ LOG ] INIT File
  706. ---------------------------------------------------------------
  707. [ 2021-08-20T12:30:33+08:00 ] 117.87.135.248 GET voicechat.lanmaonet.com/apple-app-site-association
  708. [运行时间:0.005996s] [吞吐率:166.78req/s] [内存消耗:340.17kb] [文件加载:123]
  709. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000028s ]
  710. [ info ] [ CACHE ] INIT File
  711. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000346s ]
  712. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000053s ]
  713. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000077s ]
  714. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  715. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000066s ]
  716. [ info ] [ ROUTE ] array (
  717. 'type' => 'module',
  718. 'module' =>
  719. array (
  720. 0 => 'apple-app-site-association',
  721. 1 => NULL,
  722. 2 => NULL,
  723. ),
  724. )
  725. [ info ] [ HEADER ] array (
  726. 'user-agent' => 'swcd (unknown version) CFNetwork/1125.2 Darwin/19.4.0',
  727. 'accept-encoding' => 'gzip, deflate, br',
  728. 'connection' => 'keep-alive',
  729. 'accept-language' => 'zh-cn',
  730. 'accept' => '*/*',
  731. 'host' => 'voicechat.lanmaonet.com',
  732. 'content-type' => '',
  733. 'content-length' => '',
  734. )
  735. [ info ] [ PARAM ] array (
  736. )
  737. [ info ] [ LOG ] INIT File
  738. ---------------------------------------------------------------
  739. [ 2021-08-20T12:37:34+08:00 ] 183.208.211.201 GET voicechat.lanmaonet.com/apple-app-site-association
  740. [运行时间:0.004627s] [吞吐率:216.12req/s] [内存消耗:340.17kb] [文件加载:123]
  741. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  742. [ info ] [ CACHE ] INIT File
  743. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000296s ]
  744. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  745. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  746. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  747. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  748. [ info ] [ ROUTE ] array (
  749. 'type' => 'module',
  750. 'module' =>
  751. array (
  752. 0 => 'apple-app-site-association',
  753. 1 => NULL,
  754. 2 => NULL,
  755. ),
  756. )
  757. [ info ] [ HEADER ] array (
  758. 'user-agent' => 'swcd (unknown version) CFNetwork/978.0.7 Darwin/18.7.0',
  759. 'accept-encoding' => 'br, gzip, deflate',
  760. 'connection' => 'keep-alive',
  761. 'accept-language' => 'zh-cn',
  762. 'accept' => '*/*',
  763. 'host' => 'voicechat.lanmaonet.com',
  764. 'content-type' => '',
  765. 'content-length' => '',
  766. )
  767. [ info ] [ PARAM ] array (
  768. )
  769. [ info ] [ LOG ] INIT File
  770. ---------------------------------------------------------------
  771. [ 2021-08-20T12:45:04+08:00 ] 183.213.50.54 GET voicechat.lanmaonet.com/
  772. [运行时间:0.007824s] [吞吐率:127.81req/s] [内存消耗:469.00kb] [文件加载:135]
  773. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  774. [ info ] [ CACHE ] INIT File
  775. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000350s ]
  776. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000052s ]
  777. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  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.000043s ]
  780. [ info ] [ ROUTE ] array (
  781. 'type' => 'module',
  782. 'module' =>
  783. array (
  784. 0 => '',
  785. 1 => NULL,
  786. 2 => NULL,
  787. ),
  788. )
  789. [ info ] [ HEADER ] array (
  790. 'accept-language' => 'zh-CN,zh;q=0.9',
  791. 'cache-control' => 'no-cache',
  792. 'connection' => 'keep-alive',
  793. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  794. 'accept-encoding' => 'gzip, deflate',
  795. 'user-agent' => 'Dalvik/2.1.0 (Linux; U; Android 7.0; ZTE BA520 Build/MRA58K)',
  796. 'host' => 'voicechat.lanmaonet.com',
  797. 'content-type' => '',
  798. 'content-length' => '',
  799. )
  800. [ info ] [ PARAM ] array (
  801. )
  802. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  803. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000073s ]
  804. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000075s ]
  805. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000040s ]
  806. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  807. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  808. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  809. 0 => 'user',
  810. 1 => 'site',
  811. 2 => 'config',
  812. ) ]
  813. [ info ] [ LOG ] INIT File
  814. ---------------------------------------------------------------
  815. [ 2021-08-20T12:45:32+08:00 ] 183.213.50.54 GET voicechat.lanmaonet.com/
  816. [运行时间:0.008906s] [吞吐率:112.29req/s] [内存消耗:469.00kb] [文件加载:135]
  817. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
  818. [ info ] [ CACHE ] INIT File
  819. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000292s ]
  820. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  821. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  822. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  823. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  824. [ info ] [ ROUTE ] array (
  825. 'type' => 'module',
  826. 'module' =>
  827. array (
  828. 0 => '',
  829. 1 => NULL,
  830. 2 => NULL,
  831. ),
  832. )
  833. [ info ] [ HEADER ] array (
  834. 'accept-language' => 'zh-CN,zh;q=0.9',
  835. 'cache-control' => 'no-cache',
  836. 'connection' => 'keep-alive',
  837. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  838. 'accept-encoding' => 'gzip, deflate',
  839. 'user-agent' => 'Dalvik/2.1.0 (Linux; U; Android 7.0; ZTE BA520 Build/MRA58K)',
  840. 'host' => 'voicechat.lanmaonet.com',
  841. 'content-type' => '',
  842. 'content-length' => '',
  843. )
  844. [ info ] [ PARAM ] array (
  845. )
  846. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  847. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000077s ]
  848. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000070s ]
  849. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000042s ]
  850. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  851. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  852. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  853. 0 => 'user',
  854. 1 => 'site',
  855. 2 => 'config',
  856. ) ]
  857. [ info ] [ LOG ] INIT File
  858. ---------------------------------------------------------------
  859. [ 2021-08-20T12:46:34+08:00 ] 183.213.50.54 GET voicechat.lanmaonet.com/
  860. [运行时间:0.008305s] [吞吐率:120.41req/s] [内存消耗:469.00kb] [文件加载:135]
  861. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  862. [ info ] [ CACHE ] INIT File
  863. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000291s ]
  864. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  865. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000051s ]
  866. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  867. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  868. [ info ] [ ROUTE ] array (
  869. 'type' => 'module',
  870. 'module' =>
  871. array (
  872. 0 => '',
  873. 1 => NULL,
  874. 2 => NULL,
  875. ),
  876. )
  877. [ info ] [ HEADER ] array (
  878. 'accept-language' => 'zh-CN,zh;q=0.9',
  879. 'cache-control' => 'no-cache',
  880. 'connection' => 'keep-alive',
  881. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  882. 'accept-encoding' => 'gzip, deflate',
  883. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.27 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/601.1.27',
  884. 'host' => 'voicechat.lanmaonet.com',
  885. 'content-type' => '',
  886. 'content-length' => '',
  887. )
  888. [ info ] [ PARAM ] array (
  889. )
  890. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  891. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000074s ]
  892. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000086s ]
  893. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000042s ]
  894. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  895. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  896. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  897. 0 => 'user',
  898. 1 => 'site',
  899. 2 => 'config',
  900. ) ]
  901. [ info ] [ LOG ] INIT File
  902. ---------------------------------------------------------------
  903. [ 2021-08-20T12:47:36+08:00 ] 183.213.50.54 GET voicechat.lanmaonet.com/
  904. [运行时间:0.017977s] [吞吐率:55.63req/s] [内存消耗:469.00kb] [文件加载:135]
  905. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000027s ]
  906. [ info ] [ CACHE ] INIT File
  907. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000269s ]
  908. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000035s ]
  909. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  910. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  911. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  912. [ info ] [ ROUTE ] array (
  913. 'type' => 'module',
  914. 'module' =>
  915. array (
  916. 0 => '',
  917. 1 => NULL,
  918. 2 => NULL,
  919. ),
  920. )
  921. [ info ] [ HEADER ] array (
  922. 'accept-language' => 'zh-CN,zh;q=0.9',
  923. 'cache-control' => 'no-cache',
  924. 'connection' => 'keep-alive',
  925. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
  926. 'accept-encoding' => 'gzip, deflate',
  927. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11) AppleWebKit/601.1.27 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/601.1.27',
  928. 'host' => 'voicechat.lanmaonet.com',
  929. 'content-type' => '',
  930. 'content-length' => '',
  931. )
  932. [ info ] [ PARAM ] array (
  933. )
  934. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  935. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000080s ]
  936. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000067s ]
  937. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000037s ]
  938. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  939. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  940. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  941. 0 => 'user',
  942. 1 => 'site',
  943. 2 => 'config',
  944. ) ]
  945. [ info ] [ LOG ] INIT File
  946. ---------------------------------------------------------------
  947. [ 2021-08-20T12:58:31+08:00 ] 223.74.197.80 GET voicechat.lanmaonet.com/apple-app-site-association
  948. [运行时间:0.007458s] [吞吐率:134.08req/s] [内存消耗:340.17kb] [文件加载:123]
  949. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  950. [ info ] [ CACHE ] INIT File
  951. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000298s ]
  952. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  953. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  954. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  955. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000056s ]
  956. [ info ] [ ROUTE ] array (
  957. 'type' => 'module',
  958. 'module' =>
  959. array (
  960. 0 => 'apple-app-site-association',
  961. 1 => NULL,
  962. 2 => NULL,
  963. ),
  964. )
  965. [ info ] [ HEADER ] array (
  966. 'user-agent' => 'swcd (unknown version) CFNetwork/1126 Darwin/19.5.0',
  967. 'accept-encoding' => 'gzip, deflate, br',
  968. 'connection' => 'keep-alive',
  969. 'accept-language' => 'zh-cn',
  970. 'accept' => '*/*',
  971. 'host' => 'voicechat.lanmaonet.com',
  972. 'content-type' => '',
  973. 'content-length' => '',
  974. )
  975. [ info ] [ PARAM ] array (
  976. )
  977. [ info ] [ LOG ] INIT File
  978. ---------------------------------------------------------------
  979. [ 2021-08-20T13:47:45+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  980. [运行时间:0.004760s] [吞吐率:210.08req/s] [内存消耗:338.22kb] [文件加载:123]
  981. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000027s ]
  982. [ info ] [ CACHE ] INIT File
  983. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000289s ]
  984. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  985. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  986. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  987. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  988. [ info ] [ ROUTE ] array (
  989. 'type' => 'module',
  990. 'module' =>
  991. array (
  992. 0 => 'apple-app-site-association',
  993. 1 => NULL,
  994. 2 => NULL,
  995. ),
  996. )
  997. [ info ] [ HEADER ] array (
  998. 'accept-encoding' => 'gzip',
  999. 'user-agent' => 'AASA-Bot/1.0.0',
  1000. 'host' => 'voicechat.lanmaonet.com',
  1001. 'content-type' => '',
  1002. 'content-length' => '',
  1003. )
  1004. [ info ] [ PARAM ] array (
  1005. )
  1006. [ info ] [ LOG ] INIT File
  1007. ---------------------------------------------------------------
  1008. [ 2021-08-20T14:16:14+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  1009. [运行时间:0.004616s] [吞吐率:216.64req/s] [内存消耗:338.22kb] [文件加载:123]
  1010. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
  1011. [ info ] [ CACHE ] INIT File
  1012. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000331s ]
  1013. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000045s ]
  1014. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  1015. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1016. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000044s ]
  1017. [ info ] [ ROUTE ] array (
  1018. 'type' => 'module',
  1019. 'module' =>
  1020. array (
  1021. 0 => 'apple-app-site-association',
  1022. 1 => NULL,
  1023. 2 => NULL,
  1024. ),
  1025. )
  1026. [ info ] [ HEADER ] array (
  1027. 'accept-encoding' => 'gzip',
  1028. 'user-agent' => 'AASA-Bot/1.0.0',
  1029. 'host' => 'voicechat.lanmaonet.com',
  1030. 'content-type' => '',
  1031. 'content-length' => '',
  1032. )
  1033. [ info ] [ PARAM ] array (
  1034. )
  1035. [ info ] [ LOG ] INIT File
  1036. ---------------------------------------------------------------
  1037. [ 2021-08-20T15:08:56+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  1038. [运行时间:0.004684s] [吞吐率:213.49req/s] [内存消耗:338.22kb] [文件加载:123]
  1039. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000023s ]
  1040. [ info ] [ CACHE ] INIT File
  1041. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000320s ]
  1042. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000064s ]
  1043. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000083s ]
  1044. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1045. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000040s ]
  1046. [ info ] [ ROUTE ] array (
  1047. 'type' => 'module',
  1048. 'module' =>
  1049. array (
  1050. 0 => 'apple-app-site-association',
  1051. 1 => NULL,
  1052. 2 => NULL,
  1053. ),
  1054. )
  1055. [ info ] [ HEADER ] array (
  1056. 'accept-encoding' => 'gzip',
  1057. 'user-agent' => 'AASA-Bot/1.0.0',
  1058. 'host' => 'voicechat.lanmaonet.com',
  1059. 'content-type' => '',
  1060. 'content-length' => '',
  1061. )
  1062. [ info ] [ PARAM ] array (
  1063. )
  1064. [ info ] [ LOG ] INIT File
  1065. ---------------------------------------------------------------
  1066. [ 2021-08-20T15:10:02+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  1067. [运行时间:0.004513s] [吞吐率:221.58req/s] [内存消耗:338.22kb] [文件加载:123]
  1068. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
  1069. [ info ] [ CACHE ] INIT File
  1070. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000285s ]
  1071. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  1072. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  1073. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1074. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  1075. [ info ] [ ROUTE ] array (
  1076. 'type' => 'module',
  1077. 'module' =>
  1078. array (
  1079. 0 => 'apple-app-site-association',
  1080. 1 => NULL,
  1081. 2 => NULL,
  1082. ),
  1083. )
  1084. [ info ] [ HEADER ] array (
  1085. 'accept-encoding' => 'gzip',
  1086. 'user-agent' => 'AASA-Bot/1.0.0',
  1087. 'host' => 'voicechat.lanmaonet.com',
  1088. 'content-type' => '',
  1089. 'content-length' => '',
  1090. )
  1091. [ info ] [ PARAM ] array (
  1092. )
  1093. [ info ] [ LOG ] INIT File
  1094. ---------------------------------------------------------------
  1095. [ 2021-08-20T15:20:51+08:00 ] 9.223.43.34 GET voicechat.lanmaonet.com/
  1096. [运行时间:0.012306s] [吞吐率:81.26req/s] [内存消耗:468.37kb] [文件加载:135]
  1097. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  1098. [ info ] [ CACHE ] INIT File
  1099. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000262s ]
  1100. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1101. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000049s ]
  1102. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1103. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000033s ]
  1104. [ info ] [ ROUTE ] array (
  1105. 'type' => 'module',
  1106. 'module' =>
  1107. array (
  1108. 0 => '',
  1109. 1 => NULL,
  1110. 2 => NULL,
  1111. ),
  1112. )
  1113. [ info ] [ HEADER ] array (
  1114. 'via' => 'http/1.1 traffic_server[a035a00c-4223-464c-8182-425825bb898f] (ApacheTrafficServer/9.0.0)',
  1115. 'x-forwarded-for' => '9.223.43.34',
  1116. 'client-ip' => '9.223.43.34',
  1117. 'accept-encoding' => 'gzip',
  1118. 'user-agent' => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',
  1119. 'host' => 'voicechat.lanmaonet.com',
  1120. 'content-type' => '',
  1121. 'content-length' => '',
  1122. )
  1123. [ info ] [ PARAM ] array (
  1124. )
  1125. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn.php
  1126. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.002636s ]
  1127. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000075s ]
  1128. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000062s ]
  1129. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/lang/zh-cn/index.php
  1130. [ info ] [ RUN ] app\index\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/index/controller/Index.php ]
  1131. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/index/view/index/index.html [ array (
  1132. 0 => 'user',
  1133. 1 => 'site',
  1134. 2 => 'config',
  1135. ) ]
  1136. [ info ] [ LOG ] INIT File
  1137. ---------------------------------------------------------------
  1138. [ 2021-08-20T15:48:38+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  1139. [运行时间:0.004731s] [吞吐率:211.37req/s] [内存消耗:338.22kb] [文件加载:123]
  1140. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  1141. [ info ] [ CACHE ] INIT File
  1142. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000316s ]
  1143. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000042s ]
  1144. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000061s ]
  1145. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1146. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000044s ]
  1147. [ info ] [ ROUTE ] array (
  1148. 'type' => 'module',
  1149. 'module' =>
  1150. array (
  1151. 0 => 'apple-app-site-association',
  1152. 1 => NULL,
  1153. 2 => NULL,
  1154. ),
  1155. )
  1156. [ info ] [ HEADER ] array (
  1157. 'accept-encoding' => 'gzip',
  1158. 'user-agent' => 'AASA-Bot/1.0.0',
  1159. 'host' => 'voicechat.lanmaonet.com',
  1160. 'content-type' => '',
  1161. 'content-length' => '',
  1162. )
  1163. [ info ] [ PARAM ] array (
  1164. )
  1165. [ info ] [ LOG ] INIT File
  1166. ---------------------------------------------------------------
  1167. [ 2021-08-20T15:50:38+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  1168. [运行时间:0.004700s] [吞吐率:212.77req/s] [内存消耗:338.22kb] [文件加载:123]
  1169. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000024s ]
  1170. [ info ] [ CACHE ] INIT File
  1171. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000282s ]
  1172. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1173. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000054s ]
  1174. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1175. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000050s ]
  1176. [ info ] [ ROUTE ] array (
  1177. 'type' => 'module',
  1178. 'module' =>
  1179. array (
  1180. 0 => 'apple-app-site-association',
  1181. 1 => NULL,
  1182. 2 => NULL,
  1183. ),
  1184. )
  1185. [ info ] [ HEADER ] array (
  1186. 'accept-encoding' => 'gzip',
  1187. 'user-agent' => 'AASA-Bot/1.0.0',
  1188. 'host' => 'voicechat.lanmaonet.com',
  1189. 'content-type' => '',
  1190. 'content-length' => '',
  1191. )
  1192. [ info ] [ PARAM ] array (
  1193. )
  1194. [ info ] [ LOG ] INIT File
  1195. ---------------------------------------------------------------
  1196. [ 2021-08-20T16:20:11+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/index/login?url=%2FlcFzdPIjLH.php%2Findex%2Findex%E5%90%8E%E5%8F%B0%E5%9C%B0%E5%9D%80
  1197. [运行时间:0.068962s] [吞吐率:14.50req/s] [内存消耗:553.45kb] [文件加载:139]
  1198. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  1199. [ info ] [ CACHE ] INIT File
  1200. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000292s ]
  1201. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000034s ]
  1202. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000052s ]
  1203. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1204. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  1205. [ info ] [ ROUTE ] array (
  1206. 'type' => 'module',
  1207. 'module' =>
  1208. array (
  1209. 0 => 'admin',
  1210. 1 => 'index',
  1211. 2 => 'login',
  1212. ),
  1213. )
  1214. [ info ] [ HEADER ] array (
  1215. 'te' => 'trailers',
  1216. 'sec-fetch-user' => '?1',
  1217. 'sec-fetch-site' => 'none',
  1218. 'sec-fetch-mode' => 'navigate',
  1219. 'sec-fetch-dest' => 'document',
  1220. 'upgrade-insecure-requests' => '1',
  1221. 'accept-encoding' => 'gzip, deflate, br',
  1222. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1223. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  1224. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1225. 'host' => 'voicechat.lanmaonet.com',
  1226. 'content-type' => '',
  1227. 'content-length' => '',
  1228. )
  1229. [ info ] [ PARAM ] array (
  1230. 'url' => '/lcFzdPIjLH.php/index/index后台地址',
  1231. )
  1232. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1233. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000106s ]
  1234. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000103s ]
  1235. [ info ] [ SESSION ] INIT array (
  1236. 'id' => '',
  1237. 'var_session_id' => '',
  1238. 'prefix' => 'think',
  1239. 'type' => '',
  1240. 'auto_start' => true,
  1241. )
  1242. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000053s ]
  1243. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  1244. [ info ] [ RUN ] app\admin\controller\Index->login[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Index.php ]
  1245. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/index/login.html [ array (
  1246. 0 => 'breadcrumb',
  1247. 1 => 'site',
  1248. 2 => 'config',
  1249. 3 => 'auth',
  1250. 4 => 'admin',
  1251. 5 => 'background',
  1252. 6 => 'title',
  1253. ) ]
  1254. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.002609s ]
  1255. [ info ] [ LOG ] INIT File
  1256. ---------------------------------------------------------------
  1257. [ 2021-08-20T16:20:12+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/index.php?s=/captcha
  1258. [运行时间:0.018975s] [吞吐率:52.70req/s] [内存消耗:345.52kb] [文件加载:122]
  1259. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  1260. [ info ] [ CACHE ] INIT File
  1261. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000255s ]
  1262. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  1263. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  1264. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1265. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000031s ]
  1266. [ info ] [ ROUTE ] array (
  1267. 'type' => 'method',
  1268. 'method' =>
  1269. array (
  1270. 0 => '\\think\\captcha\\CaptchaController',
  1271. 1 => 'index',
  1272. ),
  1273. 'var' =>
  1274. array (
  1275. ),
  1276. )
  1277. [ info ] [ HEADER ] array (
  1278. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9',
  1279. 'te' => 'trailers',
  1280. 'sec-fetch-site' => 'same-origin',
  1281. 'sec-fetch-mode' => 'no-cors',
  1282. 'sec-fetch-dest' => 'image',
  1283. 'accept-encoding' => 'gzip, deflate, br',
  1284. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1285. 'accept' => 'image/webp,*/*',
  1286. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1287. 'host' => 'voicechat.lanmaonet.com',
  1288. 'content-type' => '',
  1289. 'content-length' => '',
  1290. )
  1291. [ info ] [ PARAM ] array (
  1292. 'id' => NULL,
  1293. )
  1294. [ info ] [ RUN ] think\captcha\CaptchaController->index[ /www/wwwroot/voicechat.lanmaonet.com/vendor/topthink/think-captcha/src/CaptchaController.php ]
  1295. [ info ] [ SESSION ] INIT array (
  1296. 'id' => '',
  1297. 'var_session_id' => '',
  1298. 'prefix' => 'think',
  1299. 'type' => '',
  1300. 'auto_start' => true,
  1301. )
  1302. [ info ] [ LOG ] INIT File
  1303. ---------------------------------------------------------------
  1304. [ 2021-08-20T16:20:12+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1629447611&v=1629447611
  1305. [运行时间:0.008372s] [吞吐率:119.44req/s] [内存消耗:553.89kb] [文件加载:140]
  1306. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000028s ]
  1307. [ info ] [ CACHE ] INIT File
  1308. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000279s ]
  1309. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000051s ]
  1310. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000073s ]
  1311. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1312. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000042s ]
  1313. [ info ] [ ROUTE ] array (
  1314. 'type' => 'module',
  1315. 'module' =>
  1316. array (
  1317. 0 => 'admin',
  1318. 1 => 'ajax',
  1319. 2 => 'lang',
  1320. ),
  1321. )
  1322. [ info ] [ HEADER ] array (
  1323. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9',
  1324. 'te' => 'trailers',
  1325. 'sec-fetch-site' => 'same-origin',
  1326. 'sec-fetch-mode' => 'no-cors',
  1327. 'sec-fetch-dest' => 'script',
  1328. 'accept-encoding' => 'gzip, deflate, br',
  1329. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1330. 'accept' => '*/*',
  1331. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1332. 'host' => 'voicechat.lanmaonet.com',
  1333. 'content-type' => '',
  1334. 'content-length' => '',
  1335. )
  1336. [ info ] [ PARAM ] array (
  1337. 'callback' => 'define',
  1338. 'controllername' => 'index',
  1339. 'lang' => 'zh-cn',
  1340. 'v' => '1629447611',
  1341. )
  1342. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1343. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000135s ]
  1344. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000083s ]
  1345. [ info ] [ SESSION ] INIT array (
  1346. 'id' => '',
  1347. 'var_session_id' => '',
  1348. 'prefix' => 'think',
  1349. 'type' => '',
  1350. 'auto_start' => true,
  1351. )
  1352. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000052s ]
  1353. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1354. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1355. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  1356. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000037s ]
  1357. [ info ] [ LOG ] INIT File
  1358. ---------------------------------------------------------------
  1359. [ 2021-08-20T16:20:14+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/index.php?s=/captcha&r=0.7345864518078853
  1360. [运行时间:0.008026s] [吞吐率:124.60req/s] [内存消耗:344.45kb] [文件加载:122]
  1361. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
  1362. [ info ] [ CACHE ] INIT File
  1363. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000264s ]
  1364. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1365. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000053s ]
  1366. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1367. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  1368. [ info ] [ ROUTE ] array (
  1369. 'type' => 'method',
  1370. 'method' =>
  1371. array (
  1372. 0 => '\\think\\captcha\\CaptchaController',
  1373. 1 => 'index',
  1374. ),
  1375. 'var' =>
  1376. array (
  1377. ),
  1378. )
  1379. [ info ] [ HEADER ] array (
  1380. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1381. 'te' => 'trailers',
  1382. 'sec-fetch-site' => 'same-origin',
  1383. 'sec-fetch-mode' => 'no-cors',
  1384. 'sec-fetch-dest' => 'image',
  1385. 'accept-encoding' => 'gzip, deflate, br',
  1386. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1387. 'accept' => 'image/webp,*/*',
  1388. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1389. 'host' => 'voicechat.lanmaonet.com',
  1390. 'content-type' => '',
  1391. 'content-length' => '',
  1392. )
  1393. [ info ] [ PARAM ] array (
  1394. 'r' => '0.7345864518078853',
  1395. 'id' => NULL,
  1396. )
  1397. [ info ] [ RUN ] think\captcha\CaptchaController->index[ /www/wwwroot/voicechat.lanmaonet.com/vendor/topthink/think-captcha/src/CaptchaController.php ]
  1398. [ info ] [ SESSION ] INIT array (
  1399. 'id' => '',
  1400. 'var_session_id' => '',
  1401. 'prefix' => 'think',
  1402. 'type' => '',
  1403. 'auto_start' => true,
  1404. )
  1405. [ info ] [ LOG ] INIT File
  1406. ---------------------------------------------------------------
  1407. [ 2021-08-20T16:20:18+08:00 ] 112.6.63.60 POST voicechat.lanmaonet.com/lcFzdPIjLH.php/index/login?url=%2FlcFzdPIjLH.php%2Findex%2Findex%E5%90%8E%E5%8F%B0%E5%9C%B0%E5%9D%80
  1408. [运行时间:0.086244s] [吞吐率:11.60req/s] [内存消耗:767.71kb] [文件加载:149]
  1409. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  1410. [ info ] [ CACHE ] INIT File
  1411. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000262s ]
  1412. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1413. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1414. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1415. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  1416. [ info ] [ ROUTE ] array (
  1417. 'type' => 'module',
  1418. 'module' =>
  1419. array (
  1420. 0 => 'admin',
  1421. 1 => 'index',
  1422. 2 => 'login',
  1423. ),
  1424. )
  1425. [ info ] [ HEADER ] array (
  1426. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1427. 'te' => 'trailers',
  1428. 'sec-fetch-site' => 'same-origin',
  1429. 'sec-fetch-mode' => 'cors',
  1430. 'sec-fetch-dest' => 'empty',
  1431. 'origin' => 'https://voicechat.lanmaonet.com',
  1432. 'content-length' => '86',
  1433. 'x-requested-with' => 'XMLHttpRequest',
  1434. 'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
  1435. 'accept-encoding' => 'gzip, deflate, br',
  1436. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1437. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1438. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1439. 'host' => 'voicechat.lanmaonet.com',
  1440. )
  1441. [ info ] [ PARAM ] array (
  1442. 'url' => '/lcFzdPIjLH.php/index/index后台地址',
  1443. '__token__' => '6820b3b691eb9daf5236fd83ca6e8692',
  1444. 'username' => 'admin',
  1445. 'password' => '123456',
  1446. 'captcha' => 'mznx',
  1447. )
  1448. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1449. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000087s ]
  1450. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000066s ]
  1451. [ info ] [ SESSION ] INIT array (
  1452. 'id' => '',
  1453. 'var_session_id' => '',
  1454. 'prefix' => 'think',
  1455. 'type' => '',
  1456. 'auto_start' => true,
  1457. )
  1458. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000053s ]
  1459. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  1460. [ info ] [ RUN ] app\admin\controller\Index->login[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Index.php ]
  1461. [ info ] [ DB ] INIT mysql
  1462. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.008499s ]
  1463. [ info ] [ LOG ] INIT File
  1464. ---------------------------------------------------------------
  1465. [ 2021-08-20T16:20:18+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/index/index%E5%90%8E%E5%8F%B0%E5%9C%B0%E5%9D%80
  1466. [运行时间:0.026624s] [吞吐率:37.56req/s] [内存消耗:1,327.73kb] [文件加载:146]
  1467. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  1468. [ info ] [ CACHE ] INIT File
  1469. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000220s ]
  1470. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000057s ]
  1471. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000076s ]
  1472. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1473. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000025s ]
  1474. [ info ] [ ROUTE ] array (
  1475. 'type' => 'module',
  1476. 'module' =>
  1477. array (
  1478. 0 => 'admin',
  1479. 1 => 'index',
  1480. 2 => 'index%E5%90%8E%E5%8F%B0%E5%9C%B0%E5%9D%80',
  1481. ),
  1482. )
  1483. [ info ] [ HEADER ] array (
  1484. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1485. 'te' => 'trailers',
  1486. 'sec-fetch-user' => '?1',
  1487. 'sec-fetch-site' => 'same-origin',
  1488. 'sec-fetch-mode' => 'navigate',
  1489. 'sec-fetch-dest' => 'document',
  1490. 'upgrade-insecure-requests' => '1',
  1491. 'accept-encoding' => 'gzip, deflate, br',
  1492. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1493. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  1494. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1495. 'host' => 'voicechat.lanmaonet.com',
  1496. 'content-type' => '',
  1497. 'content-length' => '',
  1498. )
  1499. [ info ] [ PARAM ] array (
  1500. )
  1501. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1502. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000065s ]
  1503. [ info ] [ SESSION ] INIT array (
  1504. 'id' => '',
  1505. 'var_session_id' => '',
  1506. 'prefix' => 'think',
  1507. 'type' => '',
  1508. 'auto_start' => true,
  1509. )
  1510. [ info ] [ DB ] INIT mysql
  1511. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000072s ]
  1512. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000033s ]
  1513. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  1514. [ info ] [ LOG ] INIT File
  1515. ---------------------------------------------------------------
  1516. [ 2021-08-20T16:20:19+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/favicon.ico
  1517. [运行时间:0.002797s] [吞吐率:357.51req/s] [内存消耗:341.55kb] [文件加载:123]
  1518. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  1519. [ info ] [ CACHE ] INIT File
  1520. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000257s ]
  1521. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000041s ]
  1522. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  1523. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1524. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1525. [ info ] [ ROUTE ] array (
  1526. 'type' => 'module',
  1527. 'module' =>
  1528. array (
  1529. 0 => 'favicon.ico',
  1530. 1 => NULL,
  1531. 2 => NULL,
  1532. ),
  1533. )
  1534. [ info ] [ HEADER ] array (
  1535. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1536. 'te' => 'trailers',
  1537. 'sec-fetch-site' => 'same-origin',
  1538. 'sec-fetch-mode' => 'no-cors',
  1539. 'sec-fetch-dest' => 'image',
  1540. 'referer' => 'https://voicechat.lanmaonet.com/lcFzdPIjLH.php/index/index%E5%90%8E%E5%8F%B0%E5%9C%B0%E5%9D%80',
  1541. 'accept-encoding' => 'gzip, deflate, br',
  1542. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1543. 'accept' => 'image/webp,*/*',
  1544. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1545. 'host' => 'voicechat.lanmaonet.com',
  1546. 'content-type' => '',
  1547. 'content-length' => '',
  1548. )
  1549. [ info ] [ PARAM ] array (
  1550. )
  1551. [ info ] [ LOG ] INIT File
  1552. ---------------------------------------------------------------
  1553. [ 2021-08-20T16:20:44+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/index/index
  1554. [运行时间:0.125281s] [吞吐率:7.98req/s] [内存消耗:1,452.00kb] [文件加载:158]
  1555. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  1556. [ info ] [ CACHE ] INIT File
  1557. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000260s ]
  1558. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000030s ]
  1559. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  1560. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1561. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000037s ]
  1562. [ info ] [ ROUTE ] array (
  1563. 'type' => 'module',
  1564. 'module' =>
  1565. array (
  1566. 0 => 'admin',
  1567. 1 => 'index',
  1568. 2 => 'index',
  1569. ),
  1570. )
  1571. [ info ] [ HEADER ] array (
  1572. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1573. 'te' => 'trailers',
  1574. 'sec-fetch-user' => '?1',
  1575. 'sec-fetch-site' => 'none',
  1576. 'sec-fetch-mode' => 'navigate',
  1577. 'sec-fetch-dest' => 'document',
  1578. 'upgrade-insecure-requests' => '1',
  1579. 'accept-encoding' => 'gzip, deflate, br',
  1580. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1581. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  1582. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1583. 'host' => 'voicechat.lanmaonet.com',
  1584. 'content-type' => '',
  1585. 'content-length' => '',
  1586. )
  1587. [ info ] [ PARAM ] array (
  1588. )
  1589. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1590. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000092s ]
  1591. [ info ] [ SESSION ] INIT array (
  1592. 'id' => '',
  1593. 'var_session_id' => '',
  1594. 'prefix' => 'think',
  1595. 'type' => '',
  1596. 'auto_start' => true,
  1597. )
  1598. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000066s ]
  1599. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000039s ]
  1600. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  1601. [ info ] [ RUN ] app\admin\controller\Index->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Index.php ]
  1602. [ info ] [ DB ] INIT mysql
  1603. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/index/index.html [ array (
  1604. 0 => 'breadcrumb',
  1605. 1 => 'site',
  1606. 2 => 'config',
  1607. 3 => 'auth',
  1608. 4 => 'admin',
  1609. 5 => 'menulist',
  1610. 6 => 'navlist',
  1611. 7 => 'fixedmenu',
  1612. 8 => 'referermenu',
  1613. 9 => 'title',
  1614. ) ]
  1615. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000043s ]
  1616. [ info ] [ LOG ] INIT File
  1617. ---------------------------------------------------------------
  1618. [ 2021-08-20T16:20:45+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/dashboard?addtabs=1
  1619. [运行时间:0.384901s] [吞吐率:2.60req/s] [内存消耗:1,485.84kb] [文件加载:146]
  1620. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000082s ]
  1621. [ info ] [ CACHE ] INIT File
  1622. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.014458s ]
  1623. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000045s ]
  1624. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000063s ]
  1625. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1626. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000978s ]
  1627. [ info ] [ ROUTE ] array (
  1628. 'type' => 'module',
  1629. 'module' =>
  1630. array (
  1631. 0 => 'admin',
  1632. 1 => 'dashboard',
  1633. 2 => NULL,
  1634. ),
  1635. )
  1636. [ info ] [ HEADER ] array (
  1637. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1638. 'te' => 'trailers',
  1639. 'sec-fetch-site' => 'same-origin',
  1640. 'sec-fetch-mode' => 'navigate',
  1641. 'sec-fetch-dest' => 'iframe',
  1642. 'upgrade-insecure-requests' => '1',
  1643. 'accept-encoding' => 'gzip, deflate, br',
  1644. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1645. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  1646. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1647. 'host' => 'voicechat.lanmaonet.com',
  1648. 'content-type' => '',
  1649. 'content-length' => '',
  1650. )
  1651. [ info ] [ PARAM ] array (
  1652. 'addtabs' => '1',
  1653. )
  1654. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1655. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.008298s ]
  1656. [ info ] [ SESSION ] INIT array (
  1657. 'id' => '',
  1658. 'var_session_id' => '',
  1659. 'prefix' => 'think',
  1660. 'type' => '',
  1661. 'auto_start' => true,
  1662. )
  1663. [ info ] [ DB ] INIT mysql
  1664. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.011532s ]
  1665. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.001048s ]
  1666. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/dashboard.php
  1667. [ info ] [ RUN ] app\admin\controller\Dashboard->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Dashboard.php ]
  1668. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/dashboard/index.html [ array (
  1669. 0 => 'breadcrumb',
  1670. 1 => 'site',
  1671. 2 => 'config',
  1672. 3 => 'auth',
  1673. 4 => 'admin',
  1674. 5 => 'todayRechargeMoney',
  1675. 6 => 'yesterdayRechargeMoney',
  1676. 7 => 'monthRechargeMoney',
  1677. 8 => 'lastMonthRechargeMoney',
  1678. ) ]
  1679. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000110s ]
  1680. [ info ] [ LOG ] INIT File
  1681. ---------------------------------------------------------------
  1682. [ 2021-08-20T16:20:45+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1629447644&v=1629447644
  1683. [运行时间:0.006559s] [吞吐率:152.46req/s] [内存消耗:555.52kb] [文件加载:140]
  1684. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000065s ]
  1685. [ info ] [ CACHE ] INIT File
  1686. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000242s ]
  1687. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000036s ]
  1688. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000059s ]
  1689. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1690. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000030s ]
  1691. [ info ] [ ROUTE ] array (
  1692. 'type' => 'module',
  1693. 'module' =>
  1694. array (
  1695. 0 => 'admin',
  1696. 1 => 'ajax',
  1697. 2 => 'lang',
  1698. ),
  1699. )
  1700. [ info ] [ HEADER ] array (
  1701. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1702. 'te' => 'trailers',
  1703. 'sec-fetch-site' => 'same-origin',
  1704. 'sec-fetch-mode' => 'no-cors',
  1705. 'sec-fetch-dest' => 'script',
  1706. 'accept-encoding' => 'gzip, deflate, br',
  1707. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1708. 'accept' => '*/*',
  1709. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1710. 'host' => 'voicechat.lanmaonet.com',
  1711. 'content-type' => '',
  1712. 'content-length' => '',
  1713. )
  1714. [ info ] [ PARAM ] array (
  1715. 'callback' => 'define',
  1716. 'controllername' => 'index',
  1717. 'lang' => 'zh-cn',
  1718. 'v' => '1629447644',
  1719. )
  1720. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1721. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.001767s ]
  1722. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000056s ]
  1723. [ info ] [ SESSION ] INIT array (
  1724. 'id' => '',
  1725. 'var_session_id' => '',
  1726. 'prefix' => 'think',
  1727. 'type' => '',
  1728. 'auto_start' => true,
  1729. )
  1730. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000038s ]
  1731. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1732. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1733. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/index.php
  1734. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000021s ]
  1735. [ info ] [ LOG ] INIT File
  1736. ---------------------------------------------------------------
  1737. [ 2021-08-20T16:20:45+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=dashboard&lang=zh-cn&v=1629447644&v=1629447644
  1738. [运行时间:0.002856s] [吞吐率:350.14req/s] [内存消耗:553.12kb] [文件加载:140]
  1739. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  1740. [ info ] [ CACHE ] INIT File
  1741. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000164s ]
  1742. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000028s ]
  1743. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000041s ]
  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.000020s ]
  1746. [ info ] [ ROUTE ] array (
  1747. 'type' => 'module',
  1748. 'module' =>
  1749. array (
  1750. 0 => 'admin',
  1751. 1 => 'ajax',
  1752. 2 => 'lang',
  1753. ),
  1754. )
  1755. [ info ] [ HEADER ] array (
  1756. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1757. 'te' => 'trailers',
  1758. 'sec-fetch-site' => 'same-origin',
  1759. 'sec-fetch-mode' => 'no-cors',
  1760. 'sec-fetch-dest' => 'script',
  1761. 'accept-encoding' => 'gzip, deflate, br',
  1762. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1763. 'accept' => '*/*',
  1764. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1765. 'host' => 'voicechat.lanmaonet.com',
  1766. 'content-type' => '',
  1767. 'content-length' => '',
  1768. )
  1769. [ info ] [ PARAM ] array (
  1770. 'callback' => 'define',
  1771. 'controllername' => 'dashboard',
  1772. 'lang' => 'zh-cn',
  1773. 'v' => '1629447644',
  1774. )
  1775. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1776. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000134s ]
  1777. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000046s ]
  1778. [ info ] [ SESSION ] INIT array (
  1779. 'id' => '',
  1780. 'var_session_id' => '',
  1781. 'prefix' => 'think',
  1782. 'type' => '',
  1783. 'auto_start' => true,
  1784. )
  1785. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000030s ]
  1786. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1787. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1788. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/dashboard.php
  1789. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000027s ]
  1790. [ info ] [ LOG ] INIT File
  1791. ---------------------------------------------------------------
  1792. [ 2021-08-20T16:20:53+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/user?addtabs=1
  1793. [运行时间:0.016736s] [吞吐率:59.75req/s] [内存消耗:1,132.48kb] [文件加载:146]
  1794. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000066s ]
  1795. [ info ] [ CACHE ] INIT File
  1796. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000254s ]
  1797. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000033s ]
  1798. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1799. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1800. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000036s ]
  1801. [ info ] [ ROUTE ] array (
  1802. 'type' => 'module',
  1803. 'module' =>
  1804. array (
  1805. 0 => 'admin',
  1806. 1 => 'user.user',
  1807. 2 => NULL,
  1808. ),
  1809. )
  1810. [ info ] [ HEADER ] array (
  1811. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1812. 'te' => 'trailers',
  1813. 'sec-fetch-site' => 'same-origin',
  1814. 'sec-fetch-mode' => 'navigate',
  1815. 'sec-fetch-dest' => 'iframe',
  1816. 'upgrade-insecure-requests' => '1',
  1817. 'accept-encoding' => 'gzip, deflate, br',
  1818. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1819. 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
  1820. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1821. 'host' => 'voicechat.lanmaonet.com',
  1822. 'content-type' => '',
  1823. 'content-length' => '',
  1824. )
  1825. [ info ] [ PARAM ] array (
  1826. 'addtabs' => '1',
  1827. )
  1828. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1829. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000124s ]
  1830. [ info ] [ SESSION ] INIT array (
  1831. 'id' => '',
  1832. 'var_session_id' => '',
  1833. 'prefix' => 'think',
  1834. 'type' => '',
  1835. 'auto_start' => true,
  1836. )
  1837. [ info ] [ DB ] INIT mysql
  1838. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000071s ]
  1839. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000039s ]
  1840. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1841. [ info ] [ RUN ] app\admin\controller\user\User->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/User.php ]
  1842. [ info ] [ VIEW ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/view/user/user/index.html [ array (
  1843. 0 => 'breadcrumb',
  1844. 1 => 'site',
  1845. 2 => 'config',
  1846. 3 => 'auth',
  1847. 4 => 'admin',
  1848. ) ]
  1849. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000034s ]
  1850. [ info ] [ LOG ] INIT File
  1851. ---------------------------------------------------------------
  1852. [ 2021-08-20T16:20:54+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/ajax/lang?callback=define&controllername=user.user&lang=zh-cn&v=1629447653&v=1629447653
  1853. [运行时间:0.003381s] [吞吐率:295.77req/s] [内存消耗:552.48kb] [文件加载:140]
  1854. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000081s ]
  1855. [ info ] [ CACHE ] INIT File
  1856. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000214s ]
  1857. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1858. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1859. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1860. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000023s ]
  1861. [ info ] [ ROUTE ] array (
  1862. 'type' => 'module',
  1863. 'module' =>
  1864. array (
  1865. 0 => 'admin',
  1866. 1 => 'ajax',
  1867. 2 => 'lang',
  1868. ),
  1869. )
  1870. [ info ] [ HEADER ] array (
  1871. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1872. 'te' => 'trailers',
  1873. 'sec-fetch-site' => 'same-origin',
  1874. 'sec-fetch-mode' => 'no-cors',
  1875. 'sec-fetch-dest' => 'script',
  1876. 'accept-encoding' => 'gzip, deflate, br',
  1877. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1878. 'accept' => '*/*',
  1879. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1880. 'host' => 'voicechat.lanmaonet.com',
  1881. 'content-type' => '',
  1882. 'content-length' => '',
  1883. )
  1884. [ info ] [ PARAM ] array (
  1885. 'callback' => 'define',
  1886. 'controllername' => 'user.user',
  1887. 'lang' => 'zh-cn',
  1888. 'v' => '1629447653',
  1889. )
  1890. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1891. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000148s ]
  1892. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000055s ]
  1893. [ info ] [ SESSION ] INIT array (
  1894. 'id' => '',
  1895. 'var_session_id' => '',
  1896. 'prefix' => 'think',
  1897. 'type' => '',
  1898. 'auto_start' => true,
  1899. )
  1900. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000033s ]
  1901. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/ajax.php
  1902. [ info ] [ RUN ] app\admin\controller\Ajax->lang[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/Ajax.php ]
  1903. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1904. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000022s ]
  1905. [ info ] [ LOG ] INIT File
  1906. ---------------------------------------------------------------
  1907. [ 2021-08-20T16:20:55+08:00 ] 112.6.63.60 GET voicechat.lanmaonet.com/lcFzdPIjLH.php/user/user/index?sort=user.id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1629447653365
  1908. [运行时间:0.048119s] [吞吐率:20.78req/s] [内存消耗:1,348.89kb] [文件加载:154]
  1909. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000094s ]
  1910. [ info ] [ CACHE ] INIT File
  1911. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000219s ]
  1912. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000031s ]
  1913. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000047s ]
  1914. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1915. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000024s ]
  1916. [ info ] [ ROUTE ] array (
  1917. 'type' => 'module',
  1918. 'module' =>
  1919. array (
  1920. 0 => 'admin',
  1921. 1 => 'user.user',
  1922. 2 => 'index',
  1923. ),
  1924. )
  1925. [ info ] [ HEADER ] array (
  1926. 'cookie' => 'PHPSESSID=0gpbimlc07qqn3todvj1qc5me9; think_var=zh-cn',
  1927. 'te' => 'trailers',
  1928. 'sec-fetch-site' => 'same-origin',
  1929. 'sec-fetch-mode' => 'cors',
  1930. 'sec-fetch-dest' => 'empty',
  1931. 'x-requested-with' => 'XMLHttpRequest',
  1932. 'content-type' => 'application/json',
  1933. 'accept-encoding' => 'gzip, deflate, br',
  1934. 'accept-language' => 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2',
  1935. 'accept' => 'application/json, text/javascript, */*; q=0.01',
  1936. 'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0',
  1937. 'host' => 'voicechat.lanmaonet.com',
  1938. 'content-length' => '',
  1939. )
  1940. [ info ] [ PARAM ] array (
  1941. 'sort' => 'user.id',
  1942. 'order' => 'desc',
  1943. 'offset' => '0',
  1944. 'limit' => '10',
  1945. 'filter' => '{}',
  1946. 'op' => '{}',
  1947. '_' => '1629447653365',
  1948. )
  1949. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn.php
  1950. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000108s ]
  1951. [ info ] [ SESSION ] INIT array (
  1952. 'id' => '',
  1953. 'var_session_id' => '',
  1954. 'prefix' => 'think',
  1955. 'type' => '',
  1956. 'auto_start' => true,
  1957. )
  1958. [ info ] [ DB ] INIT mysql
  1959. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @upload_config_init [ RunTime:0.000064s ]
  1960. [ info ] [ BEHAVIOR ] Run \addons\qcloudsms\Qcloudsms @config_init [ RunTime:0.000029s ]
  1961. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/public/../application/admin/lang/zh-cn/user/user.php
  1962. [ info ] [ RUN ] app\admin\controller\user\User->index[ /www/wwwroot/voicechat.lanmaonet.com/application/admin/controller/user/User.php ]
  1963. [ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000029s ]
  1964. [ info ] [ LOG ] INIT File
  1965. ---------------------------------------------------------------
  1966. [ 2021-08-20T16:21:27+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  1967. [运行时间:0.008419s] [吞吐率:118.78req/s] [内存消耗:339.02kb] [文件加载:123]
  1968. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000069s ]
  1969. [ info ] [ CACHE ] INIT File
  1970. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000261s ]
  1971. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000032s ]
  1972. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000048s ]
  1973. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  1974. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  1975. [ info ] [ ROUTE ] array (
  1976. 'type' => 'module',
  1977. 'module' =>
  1978. array (
  1979. 0 => 'apple-app-site-association',
  1980. 1 => NULL,
  1981. 2 => NULL,
  1982. ),
  1983. )
  1984. [ info ] [ HEADER ] array (
  1985. 'accept-encoding' => 'gzip',
  1986. 'user-agent' => 'AASA-Bot/1.0.0',
  1987. 'host' => 'voicechat.lanmaonet.com',
  1988. 'content-type' => '',
  1989. 'content-length' => '',
  1990. )
  1991. [ info ] [ PARAM ] array (
  1992. )
  1993. [ info ] [ LOG ] INIT File
  1994. ---------------------------------------------------------------
  1995. [ 2021-08-20T16:21:53+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  1996. [运行时间:0.004618s] [吞吐率:216.55req/s] [内存消耗:338.22kb] [文件加载:123]
  1997. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000068s ]
  1998. [ info ] [ CACHE ] INIT File
  1999. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000309s ]
  2000. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  2001. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  2002. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2003. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  2004. [ info ] [ ROUTE ] array (
  2005. 'type' => 'module',
  2006. 'module' =>
  2007. array (
  2008. 0 => 'apple-app-site-association',
  2009. 1 => NULL,
  2010. 2 => NULL,
  2011. ),
  2012. )
  2013. [ info ] [ HEADER ] array (
  2014. 'accept-encoding' => 'gzip',
  2015. 'user-agent' => 'AASA-Bot/1.0.0',
  2016. 'host' => 'voicechat.lanmaonet.com',
  2017. 'content-type' => '',
  2018. 'content-length' => '',
  2019. )
  2020. [ info ] [ PARAM ] array (
  2021. )
  2022. [ info ] [ LOG ] INIT File
  2023. ---------------------------------------------------------------
  2024. [ 2021-08-20T17:05:49+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  2025. [运行时间:0.004537s] [吞吐率:220.42req/s] [内存消耗:338.22kb] [文件加载:123]
  2026. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  2027. [ info ] [ CACHE ] INIT File
  2028. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000288s ]
  2029. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  2030. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000058s ]
  2031. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2032. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  2033. [ info ] [ ROUTE ] array (
  2034. 'type' => 'module',
  2035. 'module' =>
  2036. array (
  2037. 0 => 'apple-app-site-association',
  2038. 1 => NULL,
  2039. 2 => NULL,
  2040. ),
  2041. )
  2042. [ info ] [ HEADER ] array (
  2043. 'accept-encoding' => 'gzip',
  2044. 'user-agent' => 'AASA-Bot/1.0.0',
  2045. 'host' => 'voicechat.lanmaonet.com',
  2046. 'content-type' => '',
  2047. 'content-length' => '',
  2048. )
  2049. [ info ] [ PARAM ] array (
  2050. )
  2051. [ info ] [ LOG ] INIT File
  2052. ---------------------------------------------------------------
  2053. [ 2021-08-20T17:39:17+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  2054. [运行时间:0.004646s] [吞吐率:215.24req/s] [内存消耗:338.22kb] [文件加载:123]
  2055. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000020s ]
  2056. [ info ] [ CACHE ] INIT File
  2057. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000320s ]
  2058. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000043s ]
  2059. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000062s ]
  2060. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2061. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  2062. [ info ] [ ROUTE ] array (
  2063. 'type' => 'module',
  2064. 'module' =>
  2065. array (
  2066. 0 => 'apple-app-site-association',
  2067. 1 => NULL,
  2068. 2 => NULL,
  2069. ),
  2070. )
  2071. [ info ] [ HEADER ] array (
  2072. 'accept-encoding' => 'gzip',
  2073. 'user-agent' => 'AASA-Bot/1.0.0',
  2074. 'host' => 'voicechat.lanmaonet.com',
  2075. 'content-type' => '',
  2076. 'content-length' => '',
  2077. )
  2078. [ info ] [ PARAM ] array (
  2079. )
  2080. [ info ] [ LOG ] INIT File
  2081. ---------------------------------------------------------------
  2082. [ 2021-08-20T18:31:56+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  2083. [运行时间:0.004666s] [吞吐率:214.32req/s] [内存消耗:338.22kb] [文件加载:123]
  2084. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000028s ]
  2085. [ info ] [ CACHE ] INIT File
  2086. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000309s ]
  2087. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000038s ]
  2088. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000056s ]
  2089. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2090. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000039s ]
  2091. [ info ] [ ROUTE ] array (
  2092. 'type' => 'module',
  2093. 'module' =>
  2094. array (
  2095. 0 => 'apple-app-site-association',
  2096. 1 => NULL,
  2097. 2 => NULL,
  2098. ),
  2099. )
  2100. [ info ] [ HEADER ] array (
  2101. 'accept-encoding' => 'gzip',
  2102. 'user-agent' => 'AASA-Bot/1.0.0',
  2103. 'host' => 'voicechat.lanmaonet.com',
  2104. 'content-type' => '',
  2105. 'content-length' => '',
  2106. )
  2107. [ info ] [ PARAM ] array (
  2108. )
  2109. [ info ] [ LOG ] INIT File
  2110. ---------------------------------------------------------------
  2111. [ 2021-08-20T18:57:32+08:00 ] 52.197.143.91 GET voicechat.lanmaonet.com/apple-app-site-association
  2112. [运行时间:0.004451s] [吞吐率:224.67req/s] [内存消耗:338.22kb] [文件加载:123]
  2113. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
  2114. [ info ] [ CACHE ] INIT File
  2115. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000302s ]
  2116. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000040s ]
  2117. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000057s ]
  2118. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2119. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000038s ]
  2120. [ info ] [ ROUTE ] array (
  2121. 'type' => 'module',
  2122. 'module' =>
  2123. array (
  2124. 0 => 'apple-app-site-association',
  2125. 1 => NULL,
  2126. 2 => NULL,
  2127. ),
  2128. )
  2129. [ info ] [ HEADER ] array (
  2130. 'accept-encoding' => 'gzip',
  2131. 'user-agent' => 'AASA-Bot/1.0.0',
  2132. 'host' => 'voicechat.lanmaonet.com',
  2133. 'content-type' => '',
  2134. 'content-length' => '',
  2135. )
  2136. [ info ] [ PARAM ] array (
  2137. )
  2138. [ info ] [ LOG ] INIT File
  2139. ---------------------------------------------------------------
  2140. [ 2021-08-20T20:24:27+08:00 ] 54.238.28.27 GET voicechat.lanmaonet.com/apple-app-site-association
  2141. [运行时间:0.004677s] [吞吐率:213.81req/s] [内存消耗:338.22kb] [文件加载:123]
  2142. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  2143. [ info ] [ CACHE ] INIT File
  2144. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000310s ]
  2145. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000037s ]
  2146. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000055s ]
  2147. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2148. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000041s ]
  2149. [ info ] [ ROUTE ] array (
  2150. 'type' => 'module',
  2151. 'module' =>
  2152. array (
  2153. 0 => 'apple-app-site-association',
  2154. 1 => NULL,
  2155. 2 => NULL,
  2156. ),
  2157. )
  2158. [ info ] [ HEADER ] array (
  2159. 'accept-encoding' => 'gzip',
  2160. 'user-agent' => 'AASA-Bot/1.0.0',
  2161. 'host' => 'voicechat.lanmaonet.com',
  2162. 'content-type' => '',
  2163. 'content-length' => '',
  2164. )
  2165. [ info ] [ PARAM ] array (
  2166. )
  2167. [ info ] [ LOG ] INIT File
  2168. ---------------------------------------------------------------
  2169. [ 2021-08-20T21:58:16+08:00 ] 52.68.93.59 GET voicechat.lanmaonet.com/apple-app-site-association
  2170. [运行时间:0.004856s] [吞吐率:205.93req/s] [内存消耗:338.22kb] [文件加载:123]
  2171. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
  2172. [ info ] [ CACHE ] INIT File
  2173. [ info ] [ BEHAVIOR ] Run \addons\cos\Cos @app_init [ RunTime:0.000353s ]
  2174. [ info ] [ BEHAVIOR ] Run \addons\epay\Epay @app_init [ RunTime:0.000061s ]
  2175. [ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000082s ]
  2176. [ info ] [ LANG ] /www/wwwroot/voicechat.lanmaonet.com/thinkphp/lang/zh-cn.php
  2177. [ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000043s ]
  2178. [ info ] [ ROUTE ] array (
  2179. 'type' => 'module',
  2180. 'module' =>
  2181. array (
  2182. 0 => 'apple-app-site-association',
  2183. 1 => NULL,
  2184. 2 => NULL,
  2185. ),
  2186. )
  2187. [ info ] [ HEADER ] array (
  2188. 'accept-encoding' => 'gzip',
  2189. 'user-agent' => 'AASA-Bot/1.0.0',
  2190. 'host' => 'voicechat.lanmaonet.com',
  2191. 'content-type' => '',
  2192. 'content-length' => '',
  2193. )
  2194. [ info ] [ PARAM ] array (
  2195. )
  2196. [ info ] [ LOG ] INIT File