202111.log 473 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756
  1. 2021-11-17 09:39:19.7002 Info: [source]:runtime,[msg]:Runtime 启动
  2. 2021-11-17 09:39:19.7372 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3. 2021-11-17 09:39:19.8362 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  4. 2021-11-17 09:39:19.8522 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  5. 2021-11-17 09:39:19.8682 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  6. 2021-11-17 09:39:19.8682 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  7. 2021-11-17 09:39:19.8682 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  8. 2021-11-17 09:39:19.8682 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  9. 2021-11-17 09:39:19.8682 Info: [source]:runtime,[msg]:Runtime 启动完成
  10. 2021-11-17 09:39:25.8102 Info: [source]:runtime,[msg]:AppHost 停止插件
  11. 2021-11-17 09:39:25.8102 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  12. 2021-11-17 09:39:25.8102 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  13. 2021-11-17 09:39:25.8102 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  14. 2021-11-17 09:39:25.8102 Info: [source]:runtime,[msg]:Runtime 关闭
  15. 2021-11-17 09:39:25.9572 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  16. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  17. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  18. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  19. 在 System.Activator.CreateInstance(Type type, Object[] args)
  20. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  21. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  22. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype)
  23. 在 DevicesApp.VisaBus.SearchDevices()
  24. 2021-11-17 11:40:46.4752 Info: [source]:runtime,[msg]:Runtime 启动
  25. 2021-11-17 11:40:46.5062 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  26. 2021-11-17 11:40:46.5922 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  27. 2021-11-17 11:40:46.6212 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  28. 2021-11-17 11:40:46.6392 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  29. 2021-11-17 11:40:46.6452 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  30. 2021-11-17 11:40:46.6452 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  31. 2021-11-17 11:40:46.6452 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  32. 2021-11-17 11:40:46.6452 Info: [source]:runtime,[msg]:Runtime 启动完成
  33. 2021-11-17 11:40:54.0722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  34. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  35. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  36. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  37. 在 System.Activator.CreateInstance(Type type, Object[] args)
  38. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  39. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  40. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  41. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  42. 2021-11-17 11:40:56.1032 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  43. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  44. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  45. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  46. 在 System.Activator.CreateInstance(Type type, Object[] args)
  47. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  48. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  49. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  50. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  51. 2021-11-17 11:40:58.1302 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  52. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  53. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  54. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  55. 在 System.Activator.CreateInstance(Type type, Object[] args)
  56. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  57. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  58. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  59. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  60. 2021-11-17 11:41:00.1552 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  61. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  62. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  63. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  64. 在 System.Activator.CreateInstance(Type type, Object[] args)
  65. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  66. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  67. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  68. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  69. 2021-11-17 11:41:02.1752 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  70. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  71. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  72. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  73. 在 System.Activator.CreateInstance(Type type, Object[] args)
  74. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  75. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  76. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  77. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  78. 2021-11-17 11:41:04.1932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  79. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  80. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  81. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  82. 在 System.Activator.CreateInstance(Type type, Object[] args)
  83. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  84. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  85. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  86. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  87. 2021-11-17 11:41:06.2122 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  88. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  89. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  90. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  91. 在 System.Activator.CreateInstance(Type type, Object[] args)
  92. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  93. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  94. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  95. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  96. 2021-11-17 11:41:08.2382 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  97. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  98. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  99. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  100. 在 System.Activator.CreateInstance(Type type, Object[] args)
  101. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  102. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  103. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  104. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  105. 2021-11-17 11:41:10.2712 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  106. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  107. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  108. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  109. 在 System.Activator.CreateInstance(Type type, Object[] args)
  110. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  111. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  112. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  113. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  114. 2021-11-17 11:41:12.3062 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  115. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  116. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  117. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  118. 在 System.Activator.CreateInstance(Type type, Object[] args)
  119. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  120. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  121. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  122. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  123. 2021-11-17 11:41:12.3062 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  124. 2021-11-17 11:41:12.3452 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  125. 2021-11-17 11:42:24.0082 Info: [source]:runtime,[msg]:AppHost 停止插件
  126. 2021-11-17 11:42:24.0082 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  127. 2021-11-17 11:42:24.0082 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  128. 2021-11-17 11:42:24.0082 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  129. 2021-11-17 11:42:24.0082 Info: [source]:runtime,[msg]:Runtime 关闭
  130. 2021-11-17 11:42:31.5092 Info: [source]:runtime,[msg]:Runtime 启动
  131. 2021-11-17 11:42:31.5612 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  132. 2021-11-17 11:42:31.6922 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  133. 2021-11-17 11:42:31.7162 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  134. 2021-11-17 11:42:31.7952 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  135. 2021-11-17 11:42:31.7952 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  136. 2021-11-17 11:42:31.8012 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  137. 2021-11-17 11:42:31.8012 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  138. 2021-11-17 11:42:31.8012 Info: [source]:runtime,[msg]:Runtime 启动完成
  139. 2021-11-17 11:42:38.3222 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  140. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  141. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  142. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  143. 在 System.Activator.CreateInstance(Type type, Object[] args)
  144. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  145. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  146. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  147. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  148. 2021-11-17 11:42:40.3452 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  149. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  150. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  151. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  152. 在 System.Activator.CreateInstance(Type type, Object[] args)
  153. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  154. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  155. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  156. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  157. 2021-11-17 11:42:42.3682 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  158. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  159. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  160. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  161. 在 System.Activator.CreateInstance(Type type, Object[] args)
  162. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  163. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  164. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  165. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  166. 2021-11-17 11:42:44.3892 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  167. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  168. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  169. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  170. 在 System.Activator.CreateInstance(Type type, Object[] args)
  171. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  172. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  173. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  174. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  175. 2021-11-17 11:42:46.4052 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  176. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  177. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  178. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  179. 在 System.Activator.CreateInstance(Type type, Object[] args)
  180. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  181. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  182. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  183. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  184. 2021-11-17 11:42:48.4302 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  185. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  186. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  187. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  188. 在 System.Activator.CreateInstance(Type type, Object[] args)
  189. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  190. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  191. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  192. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  193. 2021-11-17 11:42:49.7932 Info: [source]:runtime,[msg]:AppHost 停止插件
  194. 2021-11-17 11:42:49.7932 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  195. 2021-11-17 11:42:49.7932 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  196. 2021-11-17 11:42:49.8042 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  197. 2021-11-17 11:42:49.8042 Info: [source]:runtime,[msg]:Runtime 关闭
  198. 2021-11-17 11:44:53.6802 Info: [source]:runtime,[msg]:Runtime 启动
  199. 2021-11-17 11:44:53.7522 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  200. 2021-11-17 11:44:53.9432 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  201. 2021-11-17 11:44:54.0132 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  202. 2021-11-17 11:44:54.0652 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  203. 2021-11-17 11:44:54.0652 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  204. 2021-11-17 11:44:54.0652 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  205. 2021-11-17 11:44:54.0652 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  206. 2021-11-17 11:44:54.0652 Info: [source]:runtime,[msg]:Runtime 启动完成
  207. 2021-11-17 11:45:01.5002 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  208. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  209. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  210. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  211. 在 System.Activator.CreateInstance(Type type, Object[] args)
  212. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  213. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  214. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  215. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  216. 2021-11-17 11:45:03.5162 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  217. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  218. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  219. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  220. 在 System.Activator.CreateInstance(Type type, Object[] args)
  221. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  222. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  223. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  224. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  225. 2021-11-17 11:45:05.5542 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  226. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  227. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  228. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  229. 在 System.Activator.CreateInstance(Type type, Object[] args)
  230. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  231. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  232. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  233. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  234. 2021-11-17 11:45:07.5882 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  235. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  236. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  237. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  238. 在 System.Activator.CreateInstance(Type type, Object[] args)
  239. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  240. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  241. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  242. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  243. 2021-11-17 11:45:09.6392 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  244. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  245. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  246. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  247. 在 System.Activator.CreateInstance(Type type, Object[] args)
  248. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  249. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  250. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  251. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  252. 2021-11-17 11:45:10.2562 Info: [source]:runtime,[msg]:AppHost 停止插件
  253. 2021-11-17 11:45:10.2562 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  254. 2021-11-17 11:45:10.2562 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  255. 2021-11-17 11:45:10.2562 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  256. 2021-11-17 11:45:10.2562 Info: [source]:runtime,[msg]:Runtime 关闭
  257. 2021-11-17 11:50:52.9072 Info: [source]:runtime,[msg]:Runtime 启动
  258. 2021-11-17 11:50:52.9542 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  259. 2021-11-17 11:50:53.0532 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  260. 2021-11-17 11:50:53.0992 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  261. 2021-11-17 11:50:53.1352 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  262. 2021-11-17 11:50:53.1352 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  263. 2021-11-17 11:50:53.1422 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  264. 2021-11-17 11:50:53.1422 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  265. 2021-11-17 11:50:53.1422 Info: [source]:runtime,[msg]:Runtime 启动完成
  266. 2021-11-17 11:51:00.1892 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  267. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  268. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  269. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  270. 在 System.Activator.CreateInstance(Type type, Object[] args)
  271. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  272. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  273. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  274. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  275. 2021-11-17 11:51:02.2142 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  276. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  277. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  278. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  279. 在 System.Activator.CreateInstance(Type type, Object[] args)
  280. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  281. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  282. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  283. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  284. 2021-11-17 11:51:04.2372 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  285. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  286. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  287. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  288. 在 System.Activator.CreateInstance(Type type, Object[] args)
  289. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  290. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  291. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  292. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  293. 2021-11-17 11:51:06.2672 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  294. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  295. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  296. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  297. 在 System.Activator.CreateInstance(Type type, Object[] args)
  298. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  299. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  300. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  301. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  302. 2021-11-17 11:51:08.2912 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  303. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  304. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  305. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  306. 在 System.Activator.CreateInstance(Type type, Object[] args)
  307. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  308. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  309. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  310. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  311. 2021-11-17 11:51:10.3102 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  312. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  313. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  314. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  315. 在 System.Activator.CreateInstance(Type type, Object[] args)
  316. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  317. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  318. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  319. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  320. 2021-11-17 11:51:12.3752 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  321. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  322. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  323. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  324. 在 System.Activator.CreateInstance(Type type, Object[] args)
  325. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  326. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  327. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  328. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  329. 2021-11-17 11:51:13.8572 Info: [source]:runtime,[msg]:AppHost 停止插件
  330. 2021-11-17 11:51:13.8572 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  331. 2021-11-17 11:51:13.8662 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  332. 2021-11-17 11:51:13.8662 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  333. 2021-11-17 11:51:13.8662 Info: [source]:runtime,[msg]:Runtime 关闭
  334. 2021-11-17 14:04:13.8342 Info: [source]:runtime,[msg]:Runtime 启动
  335. 2021-11-17 14:04:13.8672 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  336. 2021-11-17 14:04:13.9562 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  337. 2021-11-17 14:04:13.9722 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  338. 2021-11-17 14:04:13.9992 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  339. 2021-11-17 14:04:13.9992 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  340. 2021-11-17 14:04:13.9992 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  341. 2021-11-17 14:04:13.9992 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  342. 2021-11-17 14:04:13.9992 Info: [source]:runtime,[msg]:Runtime 启动完成
  343. 2021-11-17 14:04:20.4112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  344. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  345. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  346. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  347. 在 System.Activator.CreateInstance(Type type, Object[] args)
  348. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  349. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  350. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  351. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  352. 2021-11-17 14:04:22.4372 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  353. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  354. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  355. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  356. 在 System.Activator.CreateInstance(Type type, Object[] args)
  357. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  358. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  359. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  360. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  361. 2021-11-17 14:04:25.5992 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  362. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  363. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  364. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  365. 在 System.Activator.CreateInstance(Type type, Object[] args)
  366. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  367. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  368. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  369. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  370. 2021-11-17 14:04:28.2422 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  371. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  372. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  373. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  374. 在 System.Activator.CreateInstance(Type type, Object[] args)
  375. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  376. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  377. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  378. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  379. 2021-11-17 14:04:30.2822 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  380. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  381. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  382. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  383. 在 System.Activator.CreateInstance(Type type, Object[] args)
  384. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  385. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  386. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  387. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  388. 2021-11-17 14:04:32.3232 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  389. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  390. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  391. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  392. 在 System.Activator.CreateInstance(Type type, Object[] args)
  393. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  394. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  395. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  396. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  397. 2021-11-17 14:04:33.8972 Info: [source]:runtime,[msg]:AppHost 停止插件
  398. 2021-11-17 14:04:33.8972 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  399. 2021-11-17 14:04:33.8972 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  400. 2021-11-17 14:04:33.8972 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  401. 2021-11-17 14:04:33.8972 Info: [source]:runtime,[msg]:Runtime 关闭
  402. 2021-11-17 14:09:01.5532 Info: [source]:runtime,[msg]:Runtime 启动
  403. 2021-11-17 14:09:01.5892 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  404. 2021-11-17 14:09:01.6522 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  405. 2021-11-17 14:09:01.6682 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  406. 2021-11-17 14:09:01.6982 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  407. 2021-11-17 14:09:01.6982 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  408. 2021-11-17 14:09:01.6982 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  409. 2021-11-17 14:09:01.6982 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  410. 2021-11-17 14:09:01.6982 Info: [source]:runtime,[msg]:Runtime 启动完成
  411. 2021-11-17 14:09:07.7172 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  412. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  413. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  414. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  415. 在 System.Activator.CreateInstance(Type type, Object[] args)
  416. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  417. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  418. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  419. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  420. 2021-11-17 14:09:09.7532 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  421. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  422. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  423. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  424. 在 System.Activator.CreateInstance(Type type, Object[] args)
  425. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  426. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  427. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  428. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  429. 2021-11-17 14:09:11.8012 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  430. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  431. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  432. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  433. 在 System.Activator.CreateInstance(Type type, Object[] args)
  434. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  435. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  436. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  437. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  438. 2021-11-17 14:09:13.8482 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  439. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  440. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  441. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  442. 在 System.Activator.CreateInstance(Type type, Object[] args)
  443. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  444. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  445. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  446. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  447. 2021-11-17 14:09:15.8822 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  448. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  449. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  450. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  451. 在 System.Activator.CreateInstance(Type type, Object[] args)
  452. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  453. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  454. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  455. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  456. 2021-11-17 14:09:17.9232 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  457. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  458. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  459. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  460. 在 System.Activator.CreateInstance(Type type, Object[] args)
  461. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  462. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  463. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  464. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  465. 2021-11-17 14:09:23.1932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  466. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  467. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  468. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  469. 在 System.Activator.CreateInstance(Type type, Object[] args)
  470. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  471. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  472. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  473. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  474. 2021-11-17 14:09:27.9152 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  475. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  476. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  477. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  478. 在 System.Activator.CreateInstance(Type type, Object[] args)
  479. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  480. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  481. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  482. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  483. 2021-11-17 14:09:29.9392 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  484. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  485. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  486. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  487. 在 System.Activator.CreateInstance(Type type, Object[] args)
  488. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  489. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  490. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  491. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  492. 2021-11-17 14:09:31.9722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  493. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  494. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  495. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  496. 在 System.Activator.CreateInstance(Type type, Object[] args)
  497. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  498. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  499. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  500. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  501. 2021-11-17 14:09:31.9782 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  502. 2021-11-17 14:09:32.0232 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  503. 2021-11-17 14:16:39.4742 Info: [source]:runtime,[msg]:AppHost 停止插件
  504. 2021-11-17 14:16:39.4782 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  505. 2021-11-17 14:16:39.4782 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  506. 2021-11-17 14:16:39.4782 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  507. 2021-11-17 14:16:39.4782 Info: [source]:runtime,[msg]:Runtime 关闭
  508. 2021-11-17 14:17:47.7212 Info: [source]:runtime,[msg]:Runtime 启动
  509. 2021-11-17 14:17:47.7602 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  510. 2021-11-17 14:17:47.8322 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  511. 2021-11-17 14:17:47.8492 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  512. 2021-11-17 14:17:47.8912 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  513. 2021-11-17 14:17:47.8912 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  514. 2021-11-17 14:17:47.8912 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  515. 2021-11-17 14:17:47.8912 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  516. 2021-11-17 14:17:47.8912 Info: [source]:runtime,[msg]:Runtime 启动完成
  517. 2021-11-17 14:17:53.8312 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  518. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  519. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  520. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  521. 在 System.Activator.CreateInstance(Type type, Object[] args)
  522. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  523. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  524. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  525. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  526. 2021-11-17 14:17:55.8722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  527. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  528. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  529. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  530. 在 System.Activator.CreateInstance(Type type, Object[] args)
  531. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  532. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  533. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  534. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  535. 2021-11-17 14:17:57.9112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  536. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  537. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  538. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  539. 在 System.Activator.CreateInstance(Type type, Object[] args)
  540. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  541. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  542. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  543. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  544. 2021-11-17 14:17:59.9282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  545. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  546. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  547. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  548. 在 System.Activator.CreateInstance(Type type, Object[] args)
  549. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  550. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  551. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  552. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  553. 2021-11-17 14:18:01.9482 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  554. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  555. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  556. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  557. 在 System.Activator.CreateInstance(Type type, Object[] args)
  558. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  559. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  560. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  561. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  562. 2021-11-17 14:18:03.9832 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  563. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  564. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  565. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  566. 在 System.Activator.CreateInstance(Type type, Object[] args)
  567. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  568. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  569. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  570. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  571. 2021-11-17 14:18:06.0072 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  572. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  573. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  574. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  575. 在 System.Activator.CreateInstance(Type type, Object[] args)
  576. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  577. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  578. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  579. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  580. 2021-11-17 14:18:20.2932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  581. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  582. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  583. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  584. 在 System.Activator.CreateInstance(Type type, Object[] args)
  585. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  586. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  587. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  588. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  589. 2021-11-17 14:18:22.3202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  590. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  591. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  592. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  593. 在 System.Activator.CreateInstance(Type type, Object[] args)
  594. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  595. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  596. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  597. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  598. 2021-11-17 14:18:24.3542 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  599. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  600. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  601. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  602. 在 System.Activator.CreateInstance(Type type, Object[] args)
  603. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  604. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  605. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  606. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  607. 2021-11-17 14:18:24.3632 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  608. 2021-11-17 14:18:24.3972 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  609. 2021-11-17 14:20:56.4872 Info: [source]:runtime,[msg]:Runtime 启动
  610. 2021-11-17 14:20:56.5362 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  611. 2021-11-17 14:20:56.6862 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  612. 2021-11-17 14:20:56.7192 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  613. 2021-11-17 14:20:56.7882 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  614. 2021-11-17 14:20:56.7882 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  615. 2021-11-17 14:20:56.7882 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  616. 2021-11-17 14:20:56.7882 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  617. 2021-11-17 14:20:56.7882 Info: [source]:runtime,[msg]:Runtime 启动完成
  618. 2021-11-17 14:21:02.5452 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  619. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  620. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  621. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  622. 在 System.Activator.CreateInstance(Type type, Object[] args)
  623. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  624. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  625. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  626. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  627. 2021-11-17 14:21:04.5822 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  628. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  629. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  630. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  631. 在 System.Activator.CreateInstance(Type type, Object[] args)
  632. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  633. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  634. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  635. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  636. 2021-11-17 14:21:06.6092 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  637. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  638. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  639. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  640. 在 System.Activator.CreateInstance(Type type, Object[] args)
  641. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  642. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  643. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  644. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  645. 2021-11-17 14:21:08.6282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  646. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  647. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  648. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  649. 在 System.Activator.CreateInstance(Type type, Object[] args)
  650. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  651. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  652. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  653. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  654. 2021-11-17 14:21:10.6752 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  655. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  656. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  657. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  658. 在 System.Activator.CreateInstance(Type type, Object[] args)
  659. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  660. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  661. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  662. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  663. 2021-11-17 14:21:12.7042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  664. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  665. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  666. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  667. 在 System.Activator.CreateInstance(Type type, Object[] args)
  668. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  669. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  670. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  671. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  672. 2021-11-17 14:21:14.7212 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  673. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  674. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  675. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  676. 在 System.Activator.CreateInstance(Type type, Object[] args)
  677. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  678. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  679. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  680. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  681. 2021-11-17 14:21:16.7432 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  682. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  683. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  684. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  685. 在 System.Activator.CreateInstance(Type type, Object[] args)
  686. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  687. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  688. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  689. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  690. 2021-11-17 14:22:44.5952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  691. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  692. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  693. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  694. 在 System.Activator.CreateInstance(Type type, Object[] args)
  695. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  696. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  697. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  698. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  699. 2021-11-17 14:22:46.6232 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  700. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  701. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  702. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  703. 在 System.Activator.CreateInstance(Type type, Object[] args)
  704. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  705. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  706. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  707. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  708. 2021-11-17 14:22:46.6292 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  709. 2021-11-17 14:22:46.6532 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  710. 2021-11-17 14:23:34.3412 Info: [source]:runtime,[msg]:Runtime 启动
  711. 2021-11-17 14:23:34.3952 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  712. 2021-11-17 14:23:34.5432 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  713. 2021-11-17 14:23:34.5972 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  714. 2021-11-17 14:23:34.6402 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  715. 2021-11-17 14:23:34.6402 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  716. 2021-11-17 14:23:34.6452 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  717. 2021-11-17 14:23:34.6452 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  718. 2021-11-17 14:23:34.6452 Info: [source]:runtime,[msg]:Runtime 启动完成
  719. 2021-11-17 14:23:40.4022 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  720. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  721. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  722. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  723. 在 System.Activator.CreateInstance(Type type, Object[] args)
  724. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  725. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  726. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  727. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  728. 2021-11-17 14:23:42.4352 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  729. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  730. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  731. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  732. 在 System.Activator.CreateInstance(Type type, Object[] args)
  733. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  734. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  735. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  736. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  737. 2021-11-17 14:23:44.4742 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  738. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  739. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  740. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  741. 在 System.Activator.CreateInstance(Type type, Object[] args)
  742. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  743. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  744. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  745. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  746. 2021-11-17 14:23:46.5082 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  747. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  748. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  749. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  750. 在 System.Activator.CreateInstance(Type type, Object[] args)
  751. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  752. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  753. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  754. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  755. 2021-11-17 14:23:48.5582 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  756. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  757. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  758. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  759. 在 System.Activator.CreateInstance(Type type, Object[] args)
  760. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  761. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  762. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  763. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  764. 2021-11-17 14:23:50.5932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  765. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  766. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  767. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  768. 在 System.Activator.CreateInstance(Type type, Object[] args)
  769. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  770. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  771. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  772. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  773. 2021-11-17 14:23:52.6102 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  774. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  775. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  776. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  777. 在 System.Activator.CreateInstance(Type type, Object[] args)
  778. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  779. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  780. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  781. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  782. 2021-11-17 14:23:54.6252 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  783. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  784. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  785. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  786. 在 System.Activator.CreateInstance(Type type, Object[] args)
  787. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  788. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  789. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  790. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  791. 2021-11-17 14:23:56.6442 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  792. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  793. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  794. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  795. 在 System.Activator.CreateInstance(Type type, Object[] args)
  796. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  797. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  798. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  799. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  800. 2021-11-17 14:23:58.6892 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  801. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  802. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  803. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  804. 在 System.Activator.CreateInstance(Type type, Object[] args)
  805. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  806. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  807. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  808. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  809. 2021-11-17 14:23:58.6892 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  810. 2021-11-17 14:23:58.7232 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  811. 2021-11-17 14:26:47.8272 Info: [source]:runtime,[msg]:Runtime 启动
  812. 2021-11-17 14:26:47.8802 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  813. 2021-11-17 14:26:47.9612 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  814. 2021-11-17 14:26:47.9792 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  815. 2021-11-17 14:26:48.0092 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  816. 2021-11-17 14:26:48.0092 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  817. 2021-11-17 14:26:48.0092 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  818. 2021-11-17 14:26:48.0092 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  819. 2021-11-17 14:26:48.0092 Info: [source]:runtime,[msg]:Runtime 启动完成
  820. 2021-11-17 14:26:55.1192 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  821. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  822. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  823. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  824. 在 System.Activator.CreateInstance(Type type, Object[] args)
  825. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  826. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  827. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  828. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  829. 2021-11-17 14:26:57.1372 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  830. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  831. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  832. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  833. 在 System.Activator.CreateInstance(Type type, Object[] args)
  834. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  835. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  836. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  837. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  838. 2021-11-17 14:26:59.1552 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  839. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  840. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  841. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  842. 在 System.Activator.CreateInstance(Type type, Object[] args)
  843. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  844. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  845. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  846. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  847. 2021-11-17 14:27:04.9122 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  848. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  849. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  850. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  851. 在 System.Activator.CreateInstance(Type type, Object[] args)
  852. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  853. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  854. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  855. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  856. 2021-11-17 14:28:03.4602 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  857. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  858. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  859. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  860. 在 System.Activator.CreateInstance(Type type, Object[] args)
  861. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  862. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  863. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  864. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  865. 2021-11-17 14:28:05.5172 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  866. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  867. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  868. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  869. 在 System.Activator.CreateInstance(Type type, Object[] args)
  870. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  871. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  872. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  873. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  874. 2021-11-17 14:28:07.5442 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  875. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  876. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  877. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  878. 在 System.Activator.CreateInstance(Type type, Object[] args)
  879. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  880. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  881. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  882. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  883. 2021-11-17 14:28:09.5802 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  884. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  885. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  886. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  887. 在 System.Activator.CreateInstance(Type type, Object[] args)
  888. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  889. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  890. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  891. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  892. 2021-11-17 14:28:11.6012 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  893. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  894. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  895. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  896. 在 System.Activator.CreateInstance(Type type, Object[] args)
  897. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  898. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  899. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  900. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  901. 2021-11-17 14:28:39.5082 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  902. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  903. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  904. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  905. 在 System.Activator.CreateInstance(Type type, Object[] args)
  906. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  907. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  908. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  909. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  910. 2021-11-17 14:28:41.5092 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  911. 2021-11-17 14:29:33.7022 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  912. 2021-11-17 15:36:56.9352 Info: [source]:runtime,[msg]:Runtime 启动
  913. 2021-11-17 15:36:56.9752 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  914. 2021-11-17 15:36:57.0462 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  915. 2021-11-17 15:36:57.0652 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  916. 2021-11-17 15:36:57.0902 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  917. 2021-11-17 15:36:57.0902 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  918. 2021-11-17 15:36:57.0902 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  919. 2021-11-17 15:36:57.0902 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  920. 2021-11-17 15:36:57.0902 Info: [source]:runtime,[msg]:Runtime 启动完成
  921. 2021-11-17 15:37:02.5872 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  922. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  923. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  924. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  925. 在 System.Activator.CreateInstance(Type type, Object[] args)
  926. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  927. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  928. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  929. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  930. 2021-11-17 15:37:04.6042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  931. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  932. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  933. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  934. 在 System.Activator.CreateInstance(Type type, Object[] args)
  935. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  936. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  937. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  938. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  939. 2021-11-17 15:37:06.6202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  940. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  941. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  942. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  943. 在 System.Activator.CreateInstance(Type type, Object[] args)
  944. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  945. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  946. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  947. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  948. 2021-11-17 15:37:08.6522 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  949. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  950. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  951. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  952. 在 System.Activator.CreateInstance(Type type, Object[] args)
  953. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  954. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  955. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  956. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  957. 2021-11-17 15:37:10.6722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  958. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  959. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  960. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  961. 在 System.Activator.CreateInstance(Type type, Object[] args)
  962. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  963. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  964. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  965. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  966. 2021-11-17 15:37:12.6902 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  967. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  968. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  969. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  970. 在 System.Activator.CreateInstance(Type type, Object[] args)
  971. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  972. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  973. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  974. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  975. 2021-11-17 15:37:14.7112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  976. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  977. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  978. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  979. 在 System.Activator.CreateInstance(Type type, Object[] args)
  980. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  981. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  982. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  983. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  984. 2021-11-17 15:37:16.7312 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  985. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  986. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  987. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  988. 在 System.Activator.CreateInstance(Type type, Object[] args)
  989. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  990. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  991. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  992. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  993. 2021-11-17 15:37:18.7662 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  994. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  995. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  996. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  997. 在 System.Activator.CreateInstance(Type type, Object[] args)
  998. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  999. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1000. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1001. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1002. 2021-11-17 15:37:20.8102 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1003. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1004. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1005. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1006. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1007. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1008. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1009. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1010. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1011. 2021-11-17 15:37:20.8162 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1012. 2021-11-17 15:37:20.8432 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  1013. 2021-11-17 17:43:50.5102 Info: [source]:runtime,[msg]:Runtime 启动
  1014. 2021-11-17 17:43:50.5512 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1015. 2021-11-17 17:43:50.7262 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1016. 2021-11-17 17:43:50.8052 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1017. 2021-11-17 17:43:50.8352 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1018. 2021-11-17 17:43:50.8392 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1019. 2021-11-17 17:43:50.8392 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1020. 2021-11-17 17:43:50.8392 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  1021. 2021-11-17 17:43:50.8392 Info: [source]:runtime,[msg]:Runtime 启动完成
  1022. 2021-11-17 17:43:57.0042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1023. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1024. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1025. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1026. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1027. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1028. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1029. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1030. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1031. 2021-11-17 17:43:59.0282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1032. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1033. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1034. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1035. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1036. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1037. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1038. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1039. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1040. 2021-11-17 17:44:01.0612 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1041. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1042. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1043. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1044. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1045. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1046. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1047. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1048. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1049. 2021-11-17 17:44:03.0982 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1050. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1051. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1052. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1053. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1054. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1055. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1056. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1057. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1058. 2021-11-17 17:44:05.1222 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1059. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1060. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1061. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1062. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1063. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1064. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1065. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1066. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1067. 2021-11-17 17:44:07.1542 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1068. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1069. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1070. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1071. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1072. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1073. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1074. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1075. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1076. 2021-11-17 17:44:09.1762 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1077. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1078. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1079. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1080. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1081. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1082. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1083. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1084. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1085. 2021-11-17 17:44:11.1932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1086. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1087. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1088. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1089. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1090. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1091. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1092. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1093. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1094. 2021-11-17 17:44:13.2142 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1095. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1096. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1097. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1098. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1099. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1100. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1101. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1102. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1103. 2021-11-17 17:44:15.2442 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1104. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1105. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1106. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1107. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1108. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1109. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1110. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1111. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1112. 2021-11-17 17:44:15.2442 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1113. 2021-11-17 17:44:15.2832 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  1114. 2021-11-17 17:50:42.8572 Info: [source]:runtime,[msg]:Runtime 启动
  1115. 2021-11-17 17:50:42.9212 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1116. 2021-11-17 17:50:43.0842 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1117. 2021-11-17 17:50:43.1622 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1118. 2021-11-17 17:50:43.2502 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1119. 2021-11-17 17:50:43.2502 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1120. 2021-11-17 17:50:43.2632 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1121. 2021-11-17 17:50:43.2632 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  1122. 2021-11-17 17:50:43.2632 Info: [source]:runtime,[msg]:Runtime 启动完成
  1123. 2021-11-17 17:50:49.7322 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1124. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1125. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1126. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1127. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1128. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1129. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1130. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1131. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1132. 2021-11-17 17:50:51.7732 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1133. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1134. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1135. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1136. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1137. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1138. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1139. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1140. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1141. 2021-11-17 17:50:53.7952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1142. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1143. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1144. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1145. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1146. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1147. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1148. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1149. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1150. 2021-11-17 17:50:55.8172 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1151. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1152. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1153. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1154. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1155. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1156. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1157. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1158. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1159. 2021-11-17 17:50:57.8562 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1160. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1161. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1162. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1163. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1164. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1165. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1166. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1167. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1168. 2021-11-17 17:50:59.8952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1169. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1170. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1171. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1172. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1173. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1174. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1175. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1176. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1177. 2021-11-17 17:51:01.9132 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1178. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1179. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1180. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1181. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1182. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1183. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1184. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1185. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1186. 2021-11-17 17:51:03.9442 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1187. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1188. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1189. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1190. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1191. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1192. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1193. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1194. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1195. 2021-11-17 17:51:05.9662 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1196. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1197. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1198. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1199. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1200. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1201. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1202. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1203. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1204. 2021-11-17 17:51:07.9842 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1205. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1206. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1207. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1208. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1209. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1210. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1211. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1212. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1213. 2021-11-17 17:51:07.9882 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1214. 2021-11-17 17:51:08.0142 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  1215. 2021-11-17 17:53:30.7872 Info: [source]:runtime,[msg]:Runtime 启动
  1216. 2021-11-17 17:53:30.8332 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1217. 2021-11-17 17:53:30.9362 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1218. 2021-11-17 17:53:30.9682 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1219. 2021-11-17 17:53:31.0352 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1220. 2021-11-17 17:53:31.0392 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1221. 2021-11-17 17:53:31.0392 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1222. 2021-11-17 17:53:31.0392 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  1223. 2021-11-17 17:53:31.0392 Info: [source]:runtime,[msg]:Runtime 启动完成
  1224. 2021-11-17 17:53:37.0022 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1225. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1226. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1227. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1228. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1229. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1230. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1231. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1232. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1233. 2021-11-17 17:53:39.0192 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1234. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1235. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1236. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1237. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1238. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1239. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1240. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1241. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1242. 2021-11-17 17:53:41.0352 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1243. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1244. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1245. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1246. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1247. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1248. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1249. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1250. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1251. 2021-11-17 17:53:43.0662 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1252. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1253. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1254. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1255. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1256. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1257. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1258. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1259. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1260. 2021-11-17 17:53:45.0842 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1261. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1262. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1263. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1264. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1265. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1266. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1267. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1268. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1269. 2021-11-17 17:53:47.1132 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1270. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1271. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1272. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1273. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1274. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1275. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1276. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1277. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1278. 2021-11-17 17:53:49.1362 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1279. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1280. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1281. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1282. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1283. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1284. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1285. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1286. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1287. 2021-11-17 17:53:51.1622 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1288. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1289. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1290. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1291. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1292. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1293. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1294. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1295. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1296. 2021-11-17 17:53:53.1892 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1297. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1298. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1299. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1300. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1301. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1302. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1303. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1304. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1305. 2021-11-17 17:53:55.2262 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1306. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1307. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1308. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1309. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1310. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1311. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1312. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1313. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1314. 2021-11-17 17:53:55.2352 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1315. 2021-11-17 17:53:55.2592 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  1316. 2021-11-17 17:55:52.1482 Info: [source]:runtime,[msg]:Runtime 启动
  1317. 2021-11-17 17:55:52.1942 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1318. 2021-11-17 17:55:52.2872 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1319. 2021-11-17 17:55:52.3042 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1320. 2021-11-17 17:55:52.3372 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1321. 2021-11-17 17:55:52.3372 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1322. 2021-11-17 17:55:52.3372 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1323. 2021-11-17 17:55:52.3442 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  1324. 2021-11-17 17:55:52.3442 Info: [source]:runtime,[msg]:Runtime 启动完成
  1325. 2021-11-17 17:55:57.8522 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1326. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1327. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1328. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1329. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1330. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1331. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1332. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1333. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1334. 2021-11-17 17:55:59.8952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1335. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1336. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1337. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1338. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1339. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1340. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1341. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1342. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1343. 2021-11-17 17:56:01.9262 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1344. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1345. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1346. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1347. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1348. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1349. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1350. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1351. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1352. 2021-11-17 17:56:03.9442 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1353. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1354. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1355. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1356. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1357. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1358. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1359. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1360. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1361. 2021-11-17 17:56:05.9632 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1362. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1363. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1364. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1365. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1366. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1367. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1368. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1369. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1370. 2021-11-17 17:56:07.9972 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1371. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1372. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1373. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1374. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1375. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1376. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1377. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1378. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1379. 2021-11-17 17:56:10.0342 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1380. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1381. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1382. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1383. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1384. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1385. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1386. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1387. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1388. 2021-11-17 17:56:12.0812 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1389. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1390. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1391. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1392. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1393. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1394. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1395. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1396. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1397. 2021-11-17 17:56:14.1052 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1398. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1399. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1400. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1401. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1402. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1403. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1404. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1405. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1406. 2021-11-17 17:56:16.1582 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1407. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1408. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1409. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1410. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1411. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1412. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1413. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1414. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1415. 2021-11-17 17:56:16.1582 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1416. 2021-11-17 17:56:16.1972 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  1417. 2021-11-17 17:56:52.9472 Info: [source]:runtime,[msg]:Runtime 启动
  1418. 2021-11-17 17:56:53.0002 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1419. 2021-11-17 17:56:53.1902 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1420. 2021-11-17 17:56:53.2242 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1421. 2021-11-17 17:56:53.2712 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1422. 2021-11-17 17:56:53.2712 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1423. 2021-11-17 17:56:53.2782 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1424. 2021-11-17 17:56:53.2782 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  1425. 2021-11-17 17:56:53.2782 Info: [source]:runtime,[msg]:Runtime 启动完成
  1426. 2021-11-17 17:56:58.9842 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1427. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1428. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1429. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1430. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1431. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1432. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1433. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1434. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1435. 2021-11-17 17:57:01.0092 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1436. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1437. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1438. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1439. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1440. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1441. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1442. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1443. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1444. 2021-11-17 17:57:03.0392 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1445. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1446. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1447. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1448. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1449. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1450. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1451. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1452. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1453. 2021-11-17 17:57:05.0672 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1454. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1455. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1456. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1457. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1458. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1459. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1460. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1461. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1462. 2021-11-17 17:57:07.0882 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1463. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1464. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1465. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1466. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1467. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1468. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1469. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1470. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1471. 2021-11-17 17:57:09.1282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1472. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1473. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1474. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1475. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1476. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1477. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1478. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1479. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1480. 2021-11-17 17:57:11.1502 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1481. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1482. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1483. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1484. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1485. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1486. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1487. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1488. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1489. 2021-11-17 17:57:13.1982 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1490. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1491. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1492. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1493. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1494. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1495. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1496. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1497. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1498. 2021-11-17 17:57:15.2632 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1499. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1500. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1501. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1502. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1503. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1504. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1505. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1506. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1507. 2021-11-17 17:57:17.2972 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1508. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1509. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1510. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1511. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1512. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1513. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1514. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1515. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1516. 2021-11-17 17:57:17.3032 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1517. 2021-11-17 17:57:17.3332 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  1518. 2021-11-17 17:57:38.0622 Info: [source]:runtime,[msg]:Runtime 启动
  1519. 2021-11-17 17:57:38.1222 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1520. 2021-11-17 17:57:38.2852 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1521. 2021-11-17 17:57:38.3052 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1522. 2021-11-17 17:57:38.3432 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1523. 2021-11-17 17:57:38.3482 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1524. 2021-11-17 17:57:38.3482 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1525. 2021-11-17 17:57:38.3482 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  1526. 2021-11-17 17:57:38.3482 Info: [source]:runtime,[msg]:Runtime 启动完成
  1527. 2021-11-17 17:57:44.1112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1528. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1529. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1530. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1531. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1532. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1533. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1534. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1535. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1536. 2021-11-17 17:57:46.1522 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1537. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1538. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1539. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1540. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1541. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1542. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1543. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1544. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1545. 2021-11-17 17:57:48.2102 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1546. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1547. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1548. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1549. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1550. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1551. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1552. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1553. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1554. 2021-11-17 17:57:50.2422 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1555. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1556. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1557. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1558. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1559. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1560. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1561. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1562. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1563. 2021-11-17 17:57:52.2612 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1564. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1565. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1566. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1567. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1568. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1569. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1570. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1571. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1572. 2021-11-17 17:57:54.3112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1573. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1574. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1575. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1576. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1577. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1578. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1579. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1580. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1581. 2021-11-17 17:57:56.3292 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1582. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1583. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1584. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1585. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1586. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1587. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1588. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1589. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1590. 2021-11-17 17:57:58.3732 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1591. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1592. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1593. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1594. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1595. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1596. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1597. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1598. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1599. 2021-11-17 17:58:00.3922 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1600. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1601. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1602. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1603. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1604. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1605. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1606. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1607. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1608. 2021-11-17 17:58:02.4072 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1609. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1610. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1611. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1612. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1613. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1614. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1615. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1616. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1617. 2021-11-17 17:58:02.4072 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1618. 2021-11-17 17:58:02.4542 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  1619. 2021-11-17 18:00:53.4762 Info: [source]:runtime,[msg]:Runtime 启动
  1620. 2021-11-17 18:00:53.5352 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1621. 2021-11-17 18:00:53.6472 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1622. 2021-11-17 18:00:53.6742 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1623. 2021-11-17 18:00:53.7062 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1624. 2021-11-17 18:00:53.7062 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1625. 2021-11-17 18:00:53.7062 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1626. 2021-11-17 18:00:53.7062 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  1627. 2021-11-17 18:00:53.7062 Info: [source]:runtime,[msg]:Runtime 启动完成
  1628. 2021-11-17 18:01:00.3022 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1629. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1630. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1631. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1632. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1633. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1634. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1635. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1636. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1637. 2021-11-17 18:01:02.3192 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1638. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1639. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1640. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1641. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1642. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1643. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1644. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1645. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1646. 2021-11-17 18:01:04.3352 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1647. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1648. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1649. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1650. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1651. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1652. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1653. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1654. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1655. 2021-11-17 18:01:06.3632 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1656. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1657. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1658. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1659. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1660. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1661. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1662. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1663. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1664. 2021-11-17 18:01:08.3822 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1665. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1666. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1667. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1668. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1669. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1670. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1671. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1672. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1673. 2021-11-17 18:01:10.4022 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1674. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1675. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1676. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1677. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1678. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1679. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1680. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1681. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1682. 2021-11-17 18:01:12.4202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1683. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1684. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1685. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1686. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1687. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1688. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1689. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1690. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1691. 2021-11-17 18:01:14.4592 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1692. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1693. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1694. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1695. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1696. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1697. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1698. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1699. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1700. 2021-11-17 18:01:16.5012 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1701. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1702. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1703. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1704. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1705. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1706. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1707. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1708. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1709. 2021-11-17 18:01:18.5292 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1710. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1711. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1712. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1713. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1714. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1715. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1716. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1717. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1718. 2021-11-17 18:01:18.5292 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1719. 2021-11-17 18:01:18.5602 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  1720. 2021-11-17 18:01:33.7512 Info: [source]:runtime,[msg]:Runtime 启动
  1721. 2021-11-17 18:01:33.7912 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1722. 2021-11-17 18:01:33.8652 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1723. 2021-11-17 18:01:33.8802 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1724. 2021-11-17 18:01:33.9072 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1725. 2021-11-17 18:01:33.9112 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1726. 2021-11-17 18:01:33.9112 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1727. 2021-11-17 18:01:33.9112 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  1728. 2021-11-17 18:01:33.9112 Info: [source]:runtime,[msg]:Runtime 启动完成
  1729. 2021-11-17 18:01:40.2102 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1730. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1731. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1732. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1733. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1734. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1735. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1736. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1737. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1738. 2021-11-17 18:01:42.2532 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1739. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1740. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1741. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1742. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1743. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1744. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1745. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1746. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1747. 2021-11-17 18:01:44.3222 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1748. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1749. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1750. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1751. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1752. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1753. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1754. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1755. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1756. 2021-11-17 18:01:46.3392 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1757. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1758. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1759. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1760. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1761. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1762. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1763. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1764. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1765. 2021-11-17 18:01:48.3732 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1766. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1767. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1768. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1769. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1770. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1771. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1772. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1773. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1774. 2021-11-17 18:01:50.3942 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1775. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1776. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1777. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1778. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1779. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1780. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1781. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1782. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1783. 2021-11-17 18:01:52.4452 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1784. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1785. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1786. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1787. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1788. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1789. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1790. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1791. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1792. 2021-11-17 18:01:54.4782 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1793. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1794. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1795. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1796. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1797. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1798. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1799. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1800. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1801. 2021-11-17 18:01:56.5042 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1802. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1803. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1804. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1805. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1806. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1807. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1808. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1809. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1810. 2021-11-17 18:01:58.5202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1811. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1812. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1813. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1814. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1815. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1816. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1817. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1818. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1819. 2021-11-17 18:01:58.5202 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1820. 2021-11-17 18:01:58.5482 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  1821. 2021-11-17 18:34:22.0352 Info: [source]:runtime,[msg]:Runtime 启动
  1822. 2021-11-17 18:34:22.0742 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1823. 2021-11-17 18:34:22.2032 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1824. 2021-11-17 18:34:22.2272 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1825. 2021-11-17 18:34:22.2982 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1826. 2021-11-17 18:34:22.2982 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1827. 2021-11-17 18:34:22.2982 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1828. 2021-11-17 18:34:22.2982 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  1829. 2021-11-17 18:34:22.2982 Info: [source]:runtime,[msg]:Runtime 启动完成
  1830. 2021-11-17 18:34:27.7302 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1831. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1832. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1833. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1834. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1835. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1836. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1837. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1838. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1839. 2021-11-17 18:34:29.7722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1840. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1841. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1842. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1843. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1844. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1845. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1846. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1847. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1848. 2021-11-17 18:34:31.7942 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1849. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1850. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1851. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1852. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1853. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1854. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1855. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1856. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1857. 2021-11-17 18:34:33.8112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1858. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1859. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1860. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1861. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1862. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1863. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1864. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1865. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1866. 2021-11-17 18:34:35.8332 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1867. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1868. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1869. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1870. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1871. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1872. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1873. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1874. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1875. 2021-11-17 18:34:37.8722 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1876. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1877. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1878. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1879. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1880. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1881. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1882. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1883. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1884. 2021-11-17 18:34:39.9112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1885. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1886. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1887. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1888. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1889. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1890. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1891. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1892. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1893. 2021-11-17 18:34:41.9492 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1894. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1895. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1896. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1897. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1898. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1899. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1900. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1901. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1902. 2021-11-17 18:34:43.9962 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1903. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1904. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1905. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1906. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1907. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1908. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1909. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1910. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1911. 2021-11-17 18:34:46.0582 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1912. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1913. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1914. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1915. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1916. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1917. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1918. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1919. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1920. 2021-11-17 18:34:46.0582 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  1921. 2021-11-17 18:34:46.1152 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  1922. 2021-11-17 18:42:45.1642 Info: [source]:runtime,[msg]:Runtime 启动
  1923. 2021-11-17 18:42:45.1982 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  1924. 2021-11-17 18:42:45.2692 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  1925. 2021-11-17 18:42:45.2912 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  1926. 2021-11-17 18:42:45.3262 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  1927. 2021-11-17 18:42:45.3262 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  1928. 2021-11-17 18:42:45.3262 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  1929. 2021-11-17 18:42:45.3262 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  1930. 2021-11-17 18:42:45.3262 Info: [source]:runtime,[msg]:Runtime 启动完成
  1931. 2021-11-17 18:42:51.3632 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1932. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1933. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1934. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1935. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1936. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1937. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1938. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1939. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1940. 2021-11-17 18:42:53.3792 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1941. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1942. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1943. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1944. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1945. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1946. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1947. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1948. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1949. 2021-11-17 18:42:55.3992 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1950. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1951. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1952. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1953. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1954. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1955. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1956. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1957. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1958. 2021-11-17 18:42:57.4212 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1959. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1960. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1961. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1962. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1963. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1964. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1965. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1966. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1967. 2021-11-17 18:42:59.4422 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1968. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1969. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1970. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1971. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1972. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1973. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1974. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1975. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1976. 2021-11-17 18:43:01.4632 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1977. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1978. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1979. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1980. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1981. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1982. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1983. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1984. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1985. 2021-11-17 18:43:03.4792 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1986. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1987. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1988. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1989. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1990. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  1991. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  1992. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  1993. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  1994. 2021-11-17 18:43:05.4972 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  1995. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  1996. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  1997. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  1998. 在 System.Activator.CreateInstance(Type type, Object[] args)
  1999. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2000. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2001. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2002. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2003. 2021-11-17 18:43:07.5202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2004. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2005. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2006. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2007. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2008. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2009. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2010. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2011. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2012. 2021-11-17 18:43:09.5522 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2013. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2014. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2015. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2016. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2017. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2018. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2019. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2020. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2021. 2021-11-17 18:43:09.5522 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2022. 2021-11-17 18:43:09.6512 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  2023. 2021-11-17 20:16:03.0912 Info: [source]:runtime,[msg]:Runtime 启动
  2024. 2021-11-17 20:16:03.1512 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2025. 2021-11-17 20:16:03.3132 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2026. 2021-11-17 20:16:03.4502 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2027. 2021-11-17 20:16:03.5232 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2028. 2021-11-17 20:16:03.5282 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2029. 2021-11-17 20:16:03.5282 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2030. 2021-11-17 20:16:03.5282 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2031. 2021-11-17 20:16:03.5282 Info: [source]:runtime,[msg]:Runtime 启动完成
  2032. 2021-11-17 20:16:09.6432 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2033. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2034. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2035. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2036. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2037. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2038. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2039. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2040. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2041. 2021-11-17 20:16:11.6802 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2042. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2043. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2044. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2045. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2046. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2047. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2048. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2049. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2050. 2021-11-17 20:16:13.7202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2051. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2052. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2053. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2054. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2055. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2056. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2057. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2058. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2059. 2021-11-17 20:16:15.7542 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2060. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2061. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2062. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2063. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2064. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2065. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2066. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2067. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2068. 2021-11-17 20:16:17.8032 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2069. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2070. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2071. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2072. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2073. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2074. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2075. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2076. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2077. 2021-11-17 20:16:19.8232 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2078. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2079. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2080. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2081. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2082. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2083. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2084. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2085. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2086. 2021-11-17 20:16:21.8612 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2087. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2088. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2089. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2090. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2091. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2092. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2093. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2094. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2095. 2021-11-17 20:16:23.8882 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2096. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2097. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2098. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2099. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2100. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2101. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2102. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2103. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2104. 2021-11-17 20:16:25.9112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2105. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2106. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2107. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2108. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2109. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2110. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2111. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2112. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2113. 2021-11-17 20:16:27.9312 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2114. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2115. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2116. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2117. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2118. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2119. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2120. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2121. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2122. 2021-11-17 20:16:27.9312 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2123. 2021-11-17 20:16:27.9652 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  2124. 2021-11-17 20:17:29.2752 Info: [source]:runtime,[msg]:Runtime 启动
  2125. 2021-11-17 20:17:29.3282 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2126. 2021-11-17 20:17:29.6002 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2127. 2021-11-17 20:17:29.6832 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2128. 2021-11-17 20:17:29.7532 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2129. 2021-11-17 20:17:29.7532 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2130. 2021-11-17 20:17:29.7532 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2131. 2021-11-17 20:17:29.7532 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2132. 2021-11-17 20:17:29.7532 Info: [source]:runtime,[msg]:Runtime 启动完成
  2133. 2021-11-17 20:17:36.0932 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2134. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2135. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2136. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2137. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2138. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2139. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2140. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2141. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2142. 2021-11-17 20:17:38.1812 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2143. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2144. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2145. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2146. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2147. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2148. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2149. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2150. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2151. 2021-11-17 20:17:40.2192 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2152. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2153. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2154. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2155. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2156. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2157. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2158. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2159. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2160. 2021-11-17 20:17:42.2502 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2161. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2162. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2163. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2164. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2165. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2166. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2167. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2168. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2169. 2021-11-17 20:17:44.2672 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2170. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2171. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2172. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2173. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2174. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2175. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2176. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2177. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2178. 2021-11-17 20:17:46.3092 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2179. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2180. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2181. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2182. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2183. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2184. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2185. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2186. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2187. 2021-11-17 20:17:48.3492 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2188. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2189. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2190. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2191. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2192. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2193. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2194. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2195. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2196. 2021-11-17 20:17:50.3762 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2197. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2198. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2199. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2200. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2201. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2202. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2203. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2204. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2205. 2021-11-17 20:17:52.4202 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2206. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2207. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2208. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2209. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2210. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2211. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2212. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2213. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2214. 2021-11-17 20:17:54.4802 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2215. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2216. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2217. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2218. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2219. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2220. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2221. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2222. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2223. 2021-11-17 20:17:54.4802 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2224. 2021-11-17 20:17:54.5132 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  2225. 2021-11-17 20:18:25.5272 Info: [source]:runtime,[msg]:Runtime 启动
  2226. 2021-11-17 20:18:25.5752 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2227. 2021-11-17 20:18:25.7582 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2228. 2021-11-17 20:18:25.7752 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2229. 2021-11-17 20:18:25.8102 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2230. 2021-11-17 20:18:25.8102 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2231. 2021-11-17 20:18:25.8102 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2232. 2021-11-17 20:18:25.8172 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2233. 2021-11-17 20:18:25.8172 Info: [source]:runtime,[msg]:Runtime 启动完成
  2234. 2021-11-17 20:18:31.7082 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2235. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2236. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2237. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2238. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2239. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2240. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2241. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2242. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2243. 2021-11-17 20:18:33.7252 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2244. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2245. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2246. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2247. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2248. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2249. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2250. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2251. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2252. 2021-11-17 20:18:35.7492 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2253. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2254. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2255. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2256. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2257. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2258. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2259. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2260. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2261. 2021-11-17 20:18:37.7712 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2262. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2263. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2264. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2265. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2266. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2267. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2268. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2269. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2270. 2021-11-17 20:18:39.7972 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2271. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2272. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2273. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2274. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2275. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2276. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2277. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2278. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2279. 2021-11-17 20:18:41.8192 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2280. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2281. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2282. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2283. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2284. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2285. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2286. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2287. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2288. 2021-11-17 20:18:43.8832 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2289. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2290. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2291. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2292. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2293. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2294. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2295. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2296. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2297. 2021-11-17 20:18:45.9002 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2298. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2299. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2300. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2301. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2302. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2303. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2304. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2305. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2306. 2021-11-17 20:18:47.9352 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2307. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2308. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2309. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2310. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2311. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2312. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2313. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2314. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2315. 2021-11-17 20:18:49.9612 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2316. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2317. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2318. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2319. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2320. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2321. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2322. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2323. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2324. 2021-11-17 20:18:49.9662 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2325. 2021-11-17 20:18:49.9872 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  2326. 2021-11-17 20:24:26.4112 Info: [source]:runtime,[msg]:Runtime 启动
  2327. 2021-11-17 20:24:26.4502 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2328. 2021-11-17 20:24:26.5582 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2329. 2021-11-17 20:24:26.5832 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2330. 2021-11-17 20:24:26.6422 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2331. 2021-11-17 20:24:26.6462 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2332. 2021-11-17 20:24:26.6462 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2333. 2021-11-17 20:24:26.6462 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2334. 2021-11-17 20:24:26.6462 Info: [source]:runtime,[msg]:Runtime 启动完成
  2335. 2021-11-17 20:24:32.8302 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2336. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2337. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2338. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2339. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2340. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2341. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2342. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2343. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2344. 2021-11-17 20:24:34.8622 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2345. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2346. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2347. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2348. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2349. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2350. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2351. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2352. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2353. 2021-11-17 20:24:36.8952 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2354. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2355. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2356. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2357. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2358. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2359. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2360. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2361. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2362. 2021-11-17 20:24:38.9462 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2363. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2364. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2365. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2366. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2367. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2368. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2369. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2370. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2371. 2021-11-17 20:24:40.9702 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2372. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2373. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2374. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2375. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2376. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2377. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2378. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2379. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2380. 2021-11-17 20:24:42.9862 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2381. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2382. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2383. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2384. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2385. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2386. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2387. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2388. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2389. 2021-11-17 20:24:45.0292 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2390. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2391. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2392. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2393. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2394. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2395. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2396. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2397. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2398. 2021-11-17 20:24:48.9642 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2399. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2400. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2401. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2402. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2403. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2404. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2405. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2406. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2407. 2021-11-17 20:24:52.1282 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2408. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2409. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2410. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2411. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2412. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2413. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2414. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2415. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2416. 2021-11-17 20:25:07.2112 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2417. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2418. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2419. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2420. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2421. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2422. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2423. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2424. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2425. 2021-11-17 20:25:07.2112 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2426. 2021-11-17 20:25:08.8392 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  2427. 2021-11-18 09:13:31.0474 Info: [source]:runtime,[msg]:Runtime 启动
  2428. 2021-11-18 09:13:31.0864 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2429. 2021-11-18 09:13:31.1894 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2430. 2021-11-18 09:13:31.2104 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2431. 2021-11-18 09:13:31.2474 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2432. 2021-11-18 09:13:31.2514 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2433. 2021-11-18 09:13:31.2514 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2434. 2021-11-18 09:13:31.2514 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2435. 2021-11-18 09:13:31.2514 Info: [source]:runtime,[msg]:Runtime 启动完成
  2436. 2021-11-18 09:13:37.8174 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2437. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2438. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2439. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2440. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2441. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2442. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2443. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2444. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2445. 2021-11-18 09:13:39.8394 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2446. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2447. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2448. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2449. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2450. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2451. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2452. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2453. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2454. 2021-11-18 09:13:41.8604 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2455. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2456. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2457. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2458. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2459. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2460. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2461. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2462. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2463. 2021-11-18 09:13:43.8984 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2464. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2465. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2466. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2467. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2468. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2469. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2470. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2471. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2472. 2021-11-18 09:13:45.9284 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2473. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2474. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2475. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2476. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2477. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2478. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2479. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2480. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2481. 2021-11-18 09:13:47.9514 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2482. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2483. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2484. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2485. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2486. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2487. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2488. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2489. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2490. 2021-11-18 09:13:49.9984 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2491. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2492. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2493. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2494. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2495. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2496. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2497. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2498. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2499. 2021-11-18 09:15:00.3064 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2500. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2501. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2502. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2503. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2504. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2505. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2506. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2507. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2508. 2021-11-18 09:15:02.5144 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2509. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2510. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2511. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2512. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2513. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2514. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2515. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2516. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2517. 2021-11-18 09:15:11.8344 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2518. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2519. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2520. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2521. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2522. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2523. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2524. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2525. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2526. 2021-11-18 09:15:11.8434 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2527. 2021-11-18 09:15:11.8684 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  2528. 2021-11-18 09:16:44.6424 Info: [source]:runtime,[msg]:Runtime 启动
  2529. 2021-11-18 09:16:44.6804 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2530. 2021-11-18 09:16:44.7464 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2531. 2021-11-18 09:16:44.7634 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2532. 2021-11-18 09:16:44.7934 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2533. 2021-11-18 09:16:44.7934 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2534. 2021-11-18 09:16:44.7994 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2535. 2021-11-18 09:16:44.7994 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2536. 2021-11-18 09:16:44.7994 Info: [source]:runtime,[msg]:Runtime 启动完成
  2537. 2021-11-18 09:16:50.5024 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2538. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2539. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2540. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2541. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2542. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2543. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2544. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2545. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2546. 2021-11-18 09:16:52.5164 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2547. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2548. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2549. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2550. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2551. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2552. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2553. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2554. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2555. 2021-11-18 09:16:54.5664 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2556. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2557. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2558. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2559. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2560. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2561. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2562. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2563. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2564. 2021-11-18 09:16:56.6194 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2565. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2566. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2567. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2568. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2569. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2570. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2571. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2572. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2573. 2021-11-18 09:16:58.6704 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2574. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2575. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2576. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2577. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2578. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2579. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2580. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2581. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2582. 2021-11-18 09:17:00.7124 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2583. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2584. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2585. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2586. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2587. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2588. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2589. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2590. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2591. 2021-11-18 09:17:02.7554 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2592. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2593. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2594. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2595. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2596. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2597. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2598. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2599. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2600. 2021-11-18 09:17:04.7974 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2601. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2602. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2603. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2604. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2605. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2606. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2607. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2608. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2609. 2021-11-18 09:17:06.8414 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2610. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2611. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2612. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2613. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2614. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2615. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2616. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2617. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2618. 2021-11-18 09:17:08.8794 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2619. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2620. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2621. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2622. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2623. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2624. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2625. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2626. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2627. 2021-11-18 09:17:08.8884 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2628. 2021-11-18 09:17:08.9144 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  2629. 2021-11-18 09:18:03.9764 Info: [source]:runtime,[msg]:Runtime 启动
  2630. 2021-11-18 09:18:04.0184 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2631. 2021-11-18 09:18:04.0874 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2632. 2021-11-18 09:18:04.1014 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2633. 2021-11-18 09:18:04.1314 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2634. 2021-11-18 09:18:04.1314 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2635. 2021-11-18 09:18:04.1314 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2636. 2021-11-18 09:18:04.1314 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2637. 2021-11-18 09:18:04.1404 Info: [source]:runtime,[msg]:Runtime 启动完成
  2638. 2021-11-18 09:18:09.8424 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2639. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2640. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2641. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2642. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2643. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2644. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2645. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2646. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2647. 2021-11-18 09:18:11.8844 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2648. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2649. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2650. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2651. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2652. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2653. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2654. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2655. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2656. 2021-11-18 09:18:13.9274 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2657. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2658. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2659. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2660. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2661. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2662. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2663. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2664. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2665. 2021-11-18 09:18:15.9784 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2666. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2667. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2668. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2669. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2670. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2671. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2672. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2673. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2674. 2021-11-18 09:18:18.0284 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2675. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2676. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2677. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2678. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2679. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2680. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2681. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2682. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2683. 2021-11-18 09:18:20.0754 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2684. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2685. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2686. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2687. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2688. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2689. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2690. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2691. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2692. 2021-11-18 09:18:22.1024 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2693. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2694. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2695. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2696. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2697. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2698. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2699. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2700. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2701. 2021-11-18 09:18:24.1274 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2702. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2703. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2704. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2705. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2706. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2707. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2708. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2709. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2710. 2021-11-18 09:18:26.1824 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2711. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2712. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2713. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2714. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2715. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2716. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2717. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2718. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2719. 2021-11-18 09:18:28.2304 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2720. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2721. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2722. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2723. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2724. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2725. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2726. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2727. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2728. 2021-11-18 09:18:28.2304 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2729. 2021-11-18 09:18:28.2624 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  2730. 2021-11-18 09:23:34.6204 Info: [source]:runtime,[msg]:AppHost 停止插件
  2731. 2021-11-18 09:23:34.6204 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2732. 2021-11-18 09:23:34.6204 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2733. 2021-11-18 09:23:34.6294 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  2734. 2021-11-18 09:23:34.6294 Info: [source]:runtime,[msg]:Runtime 关闭
  2735. 2021-11-18 09:25:10.2494 Info: [source]:runtime,[msg]:Runtime 启动
  2736. 2021-11-18 09:25:10.2974 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2737. 2021-11-18 09:25:10.3674 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2738. 2021-11-18 09:25:10.3824 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2739. 2021-11-18 09:25:10.4134 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2740. 2021-11-18 09:25:10.4134 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2741. 2021-11-18 09:25:10.4134 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2742. 2021-11-18 09:25:10.4134 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2743. 2021-11-18 09:25:10.4134 Info: [source]:runtime,[msg]:Runtime 启动完成
  2744. 2021-11-18 09:25:16.1604 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2745. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2746. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2747. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2748. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2749. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2750. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2751. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2752. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2753. 2021-11-18 09:25:18.1984 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2754. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2755. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2756. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2757. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2758. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2759. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2760. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2761. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2762. 2021-11-18 09:25:20.2364 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2763. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2764. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2765. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2766. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2767. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2768. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2769. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2770. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2771. 2021-11-18 09:25:22.2824 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2772. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2773. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2774. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2775. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2776. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2777. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2778. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2779. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2780. 2021-11-18 09:25:24.3194 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2781. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2782. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2783. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2784. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2785. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2786. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2787. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2788. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2789. 2021-11-18 09:25:26.3374 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2790. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2791. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2792. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2793. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2794. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2795. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2796. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2797. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2798. 2021-11-18 09:25:28.3804 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2799. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2800. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2801. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2802. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2803. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2804. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2805. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2806. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2807. 2021-11-18 09:25:30.4154 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2808. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2809. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2810. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2811. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2812. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2813. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2814. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2815. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2816. 2021-11-18 09:25:32.4374 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2817. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2818. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2819. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2820. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2821. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2822. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2823. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2824. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2825. 2021-11-18 09:25:34.4614 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2826. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2827. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2828. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2829. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2830. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2831. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2832. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2833. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2834. 2021-11-18 09:25:34.4614 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2835. 2021-11-18 09:25:34.4864 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  2836. 2021-11-18 09:41:29.2624 Info: [source]:runtime,[msg]:Runtime 启动
  2837. 2021-11-18 09:41:29.3094 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2838. 2021-11-18 09:41:29.4194 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2839. 2021-11-18 09:41:29.4434 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2840. 2021-11-18 09:41:29.5494 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2841. 2021-11-18 09:41:29.5544 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2842. 2021-11-18 09:41:29.5544 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2843. 2021-11-18 09:41:29.5544 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2844. 2021-11-18 09:41:29.5544 Info: [source]:runtime,[msg]:Runtime 启动完成
  2845. 2021-11-18 09:41:35.2974 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2846. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2847. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2848. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2849. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2850. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2851. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2852. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2853. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2854. 2021-11-18 09:41:37.3194 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2855. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2856. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2857. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2858. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2859. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2860. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2861. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2862. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2863. 2021-11-18 09:41:39.3494 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2864. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2865. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2866. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2867. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2868. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2869. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2870. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2871. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2872. 2021-11-18 09:41:41.3864 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2873. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2874. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2875. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2876. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2877. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2878. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2879. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2880. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2881. 2021-11-18 09:41:43.4214 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2882. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2883. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2884. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2885. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2886. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2887. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2888. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2889. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2890. 2021-11-18 09:41:45.4724 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2891. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2892. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2893. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2894. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2895. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2896. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2897. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2898. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2899. 2021-11-18 09:41:47.5194 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2900. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2901. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2902. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2903. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2904. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2905. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2906. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2907. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2908. 2021-11-18 09:41:49.5444 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2909. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2910. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2911. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2912. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2913. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2914. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2915. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2916. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2917. 2021-11-18 09:41:51.5614 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2918. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2919. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2920. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2921. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2922. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2923. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2924. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2925. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2926. 2021-11-18 09:41:53.6034 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2927. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2928. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2929. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2930. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2931. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2932. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2933. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2934. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2935. 2021-11-18 09:41:53.6194 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2936. 2021-11-18 09:41:53.6564 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  2937. 2021-11-18 10:02:49.5694 Info: [source]:runtime,[msg]:Runtime 启动
  2938. 2021-11-18 10:02:49.5974 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2939. 2021-11-18 10:02:49.6364 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2940. 2021-11-18 10:02:49.6364 Info: [source]:runtime,[msg]:加载插件"F:\Project\Launch\new(8.24)\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2941. 2021-11-18 10:02:49.6524 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2942. 2021-11-18 10:02:49.6524 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2943. 2021-11-18 10:02:49.6524 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2944. 2021-11-18 10:02:49.6524 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2945. 2021-11-18 10:02:49.6524 Info: [source]:runtime,[msg]:Runtime 启动完成
  2946. 2021-11-18 10:02:54.2134 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2947. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2948. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2949. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2950. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2951. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2952. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2953. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2954. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2955. 2021-11-18 10:02:56.2214 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2956. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2957. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2958. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2959. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2960. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2961. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2962. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2963. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2964. 2021-11-18 10:02:58.2344 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2965. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2966. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2967. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2968. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2969. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2970. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2971. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2972. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2973. 2021-11-18 10:03:00.2584 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
  2974. 在 System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  2975. 在 System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
  2976. 在 System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
  2977. 在 System.Activator.CreateInstance(Type type, Object[] args)
  2978. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName, AccessModes accessMode, Int32 openTimeout)
  2979. 在 NationalInstruments.VisaNS.ResourceManager.Open(String resourceName)
  2980. 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 129
  2981. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  2982. 2021-11-18 10:03:01.6194 Info: [source]:runtime,[msg]:AppHost 停止插件
  2983. 2021-11-18 10:03:01.6194 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  2984. 2021-11-18 10:03:01.6194 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  2985. 2021-11-18 10:03:01.6194 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  2986. 2021-11-18 10:03:01.6194 Info: [source]:runtime,[msg]:Runtime 关闭
  2987. 2021-11-22 21:30:08.3502 Info: [source]:runtime,[msg]:Runtime 启动
  2988. 2021-11-22 21:30:08.3692 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  2989. 2021-11-22 21:30:08.5002 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  2990. 2021-11-22 21:30:08.5102 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  2991. 2021-11-22 21:30:08.5312 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  2992. 2021-11-22 21:30:08.5312 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  2993. 2021-11-22 21:30:08.5312 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  2994. 2021-11-22 21:30:08.5312 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  2995. 2021-11-22 21:30:08.5312 Info: [source]:runtime,[msg]:Runtime 启动完成
  2996. 2021-11-22 21:30:11.1162 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  2997. 2021-11-22 21:30:11.1372 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  2998. 2021-11-22 21:30:11.1512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  2999. 2021-11-22 21:30:11.1512 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3000. 2021-11-22 21:30:13.8398 Info: [source]:runtime,[msg]:AppHost 停止插件
  3001. 2021-11-22 21:30:13.8398 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3002. 2021-11-22 21:30:13.8398 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3003. 2021-11-22 21:30:13.8398 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3004. 2021-11-22 21:30:13.8398 Info: [source]:runtime,[msg]:Runtime 关闭
  3005. 2021-11-22 21:33:23.7380 Info: [source]:runtime,[msg]:Runtime 启动
  3006. 2021-11-22 21:33:23.7610 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3007. 2021-11-22 21:33:23.8060 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3008. 2021-11-22 21:33:23.8060 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3009. 2021-11-22 21:33:23.8290 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3010. 2021-11-22 21:33:23.8290 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3011. 2021-11-22 21:33:23.8290 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3012. 2021-11-22 21:33:23.8290 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3013. 2021-11-22 21:33:23.8290 Info: [source]:runtime,[msg]:Runtime 启动完成
  3014. 2021-11-22 21:33:26.0170 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3015. 2021-11-22 21:33:26.0370 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3016. 2021-11-22 21:33:26.0520 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3017. 2021-11-22 21:33:26.0620 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3018. 2021-11-22 21:33:55.2375 Info: [source]:runtime,[msg]:AppHost 停止插件
  3019. 2021-11-22 21:33:55.2375 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3020. 2021-11-22 21:33:55.2375 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3021. 2021-11-22 21:33:55.2375 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3022. 2021-11-22 21:33:55.2375 Info: [source]:runtime,[msg]:Runtime 关闭
  3023. 2021-11-22 21:34:42.5857 Info: [source]:runtime,[msg]:Runtime 启动
  3024. 2021-11-22 21:34:42.6137 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3025. 2021-11-22 21:34:42.6647 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3026. 2021-11-22 21:34:42.6647 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3027. 2021-11-22 21:34:42.6897 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3028. 2021-11-22 21:34:42.6897 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3029. 2021-11-22 21:34:42.6897 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3030. 2021-11-22 21:34:42.6897 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3031. 2021-11-22 21:34:42.6947 Info: [source]:runtime,[msg]:Runtime 启动完成
  3032. 2021-11-22 21:34:44.7347 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3033. 2021-11-22 21:34:44.7547 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3034. 2021-11-22 21:34:44.7697 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3035. 2021-11-22 21:34:44.7797 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3036. 2021-11-22 21:35:33.5550 Info: [source]:runtime,[msg]:AppHost 停止插件
  3037. 2021-11-22 21:35:33.5550 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3038. 2021-11-22 21:35:33.5550 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3039. 2021-11-22 21:35:33.5550 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3040. 2021-11-22 21:35:33.5550 Info: [source]:runtime,[msg]:Runtime 关闭
  3041. 2021-11-22 21:35:40.7927 Info: [source]:runtime,[msg]:Runtime 启动
  3042. 2021-11-22 21:35:40.8186 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3043. 2021-11-22 21:35:40.8606 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3044. 2021-11-22 21:35:40.8807 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3045. 2021-11-22 21:35:40.9076 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3046. 2021-11-22 21:35:40.9076 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3047. 2021-11-22 21:35:40.9076 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3048. 2021-11-22 21:35:40.9076 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3049. 2021-11-22 21:35:40.9076 Info: [source]:runtime,[msg]:Runtime 启动完成
  3050. 2021-11-22 21:35:42.9687 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3051. 2021-11-22 21:35:42.9886 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3052. 2021-11-22 21:35:43.0036 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3053. 2021-11-22 21:35:43.0136 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3054. 2021-11-22 21:36:34.1551 Info: [source]:runtime,[msg]:AppHost 停止插件
  3055. 2021-11-22 21:36:34.1551 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3056. 2021-11-22 21:36:34.1551 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3057. 2021-11-22 21:36:34.1551 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3058. 2021-11-22 21:36:34.1551 Info: [source]:runtime,[msg]:Runtime 关闭
  3059. 2021-11-22 21:36:37.4528 Info: [source]:runtime,[msg]:Runtime 启动
  3060. 2021-11-22 21:36:37.4738 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3061. 2021-11-22 21:36:37.5098 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3062. 2021-11-22 21:36:37.5098 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3063. 2021-11-22 21:36:37.5418 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3064. 2021-11-22 21:36:37.5418 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3065. 2021-11-22 21:36:37.5418 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3066. 2021-11-22 21:36:37.5418 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3067. 2021-11-22 21:36:37.5418 Info: [source]:runtime,[msg]:Runtime 启动完成
  3068. 2021-11-22 21:36:39.4788 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3069. 2021-11-22 21:36:39.4968 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3070. 2021-11-22 21:36:39.5108 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3071. 2021-11-22 21:36:39.5108 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3072. 2021-11-22 21:38:00.0104 Info: [source]:runtime,[msg]:Runtime 启动
  3073. 2021-11-22 21:38:00.0335 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3074. 2021-11-22 21:38:00.0794 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3075. 2021-11-22 21:38:00.0884 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3076. 2021-11-22 21:38:00.1084 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3077. 2021-11-22 21:38:00.1084 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3078. 2021-11-22 21:38:00.1084 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3079. 2021-11-22 21:38:00.1084 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3080. 2021-11-22 21:38:00.1084 Info: [source]:runtime,[msg]:Runtime 启动完成
  3081. 2021-11-22 21:38:02.2414 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3082. 2021-11-22 21:38:02.2604 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3083. 2021-11-22 21:38:02.2604 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3084. 2021-11-22 21:38:02.2805 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3085. 2021-11-22 21:39:51.2616 Info: [source]:runtime,[msg]:Runtime 启动
  3086. 2021-11-22 21:39:51.2816 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3087. 2021-11-22 21:39:51.3216 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3088. 2021-11-22 21:39:51.3216 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3089. 2021-11-22 21:39:51.3536 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3090. 2021-11-22 21:39:51.3536 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3091. 2021-11-22 21:39:51.3536 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3092. 2021-11-22 21:39:51.3536 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3093. 2021-11-22 21:39:51.3536 Info: [source]:runtime,[msg]:Runtime 启动完成
  3094. 2021-11-22 21:39:53.4836 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3095. 2021-11-22 21:39:53.5016 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3096. 2021-11-22 21:39:53.5106 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3097. 2021-11-22 21:39:53.5106 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3098. 2021-11-22 21:41:50.8513 Info: [source]:runtime,[msg]:AppHost 停止插件
  3099. 2021-11-22 21:41:50.8513 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3100. 2021-11-22 21:41:50.8513 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3101. 2021-11-22 21:41:50.8513 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3102. 2021-11-22 21:41:50.8513 Info: [source]:runtime,[msg]:Runtime 关闭
  3103. 2021-11-22 21:43:56.9184 Info: [source]:runtime,[msg]:Runtime 启动
  3104. 2021-11-22 21:43:56.9374 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3105. 2021-11-22 21:43:56.9834 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3106. 2021-11-22 21:43:56.9934 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3107. 2021-11-22 21:43:57.0134 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3108. 2021-11-22 21:43:57.0134 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3109. 2021-11-22 21:43:57.0134 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3110. 2021-11-22 21:43:57.0134 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3111. 2021-11-22 21:43:57.0134 Info: [source]:runtime,[msg]:Runtime 启动完成
  3112. 2021-11-22 21:43:59.0594 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3113. 2021-11-22 21:43:59.0794 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3114. 2021-11-22 21:43:59.0894 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3115. 2021-11-22 21:43:59.0894 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3116. 2021-11-22 21:50:47.7756 Info: [source]:runtime,[msg]:Runtime 启动
  3117. 2021-11-22 21:50:47.7976 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3118. 2021-11-22 21:50:47.8426 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3119. 2021-11-22 21:50:47.8536 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3120. 2021-11-22 21:50:47.8776 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3121. 2021-11-22 21:50:47.8776 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3122. 2021-11-22 21:50:47.8776 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3123. 2021-11-22 21:50:47.8816 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3124. 2021-11-22 21:50:47.8816 Info: [source]:runtime,[msg]:Runtime 启动完成
  3125. 2021-11-22 21:50:49.8906 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3126. 2021-11-22 21:50:49.9116 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3127. 2021-11-22 21:50:49.9216 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3128. 2021-11-22 21:50:49.9306 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3129. 2021-11-22 21:51:38.2009 Info: [source]:runtime,[msg]:AppHost 停止插件
  3130. 2021-11-22 21:51:38.2009 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3131. 2021-11-22 21:51:38.2009 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3132. 2021-11-22 21:51:38.2009 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3133. 2021-11-22 21:51:38.2009 Info: [source]:runtime,[msg]:Runtime 关闭
  3134. 2021-11-22 21:53:12.3090 Info: [source]:runtime,[msg]:Runtime 启动
  3135. 2021-11-22 21:53:12.3310 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3136. 2021-11-22 21:53:12.3670 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3137. 2021-11-22 21:53:12.3670 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3138. 2021-11-22 21:53:12.3990 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3139. 2021-11-22 21:53:12.3990 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3140. 2021-11-22 21:53:12.3990 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3141. 2021-11-22 21:53:12.3990 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3142. 2021-11-22 21:53:12.3990 Info: [source]:runtime,[msg]:Runtime 启动完成
  3143. 2021-11-22 21:53:14.4870 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3144. 2021-11-22 21:53:14.5050 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3145. 2021-11-22 21:53:14.5150 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3146. 2021-11-22 21:53:14.5250 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3147. 2021-11-22 21:54:06.5060 Info: [source]:runtime,[msg]:AppHost 停止插件
  3148. 2021-11-22 21:54:06.5070 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3149. 2021-11-22 21:54:06.5070 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3150. 2021-11-22 21:54:06.5070 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3151. 2021-11-22 21:54:06.5070 Info: [source]:runtime,[msg]:Runtime 关闭
  3152. 2021-11-22 21:57:30.3266 Info: [source]:runtime,[msg]:Runtime 启动
  3153. 2021-11-22 21:57:30.3496 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3154. 2021-11-22 21:57:30.3986 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3155. 2021-11-22 21:57:30.3986 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3156. 2021-11-22 21:57:30.4316 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3157. 2021-11-22 21:57:30.4316 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3158. 2021-11-22 21:57:30.4316 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3159. 2021-11-22 21:57:30.4316 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3160. 2021-11-22 21:57:30.4316 Info: [source]:runtime,[msg]:Runtime 启动完成
  3161. 2021-11-22 21:57:32.4696 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3162. 2021-11-22 21:57:32.4876 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3163. 2021-11-22 21:57:32.4976 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3164. 2021-11-22 21:57:32.5076 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3165. 2021-11-22 22:04:13.5159 Info: [source]:runtime,[msg]:Runtime 启动
  3166. 2021-11-22 22:04:13.5399 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3167. 2021-11-22 22:04:13.5849 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3168. 2021-11-22 22:04:13.5849 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3169. 2021-11-22 22:04:13.6139 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3170. 2021-11-22 22:04:13.6139 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3171. 2021-11-22 22:04:13.6169 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3172. 2021-11-22 22:04:13.6169 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3173. 2021-11-22 22:04:13.6169 Info: [source]:runtime,[msg]:Runtime 启动完成
  3174. 2021-11-22 22:04:15.8359 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3175. 2021-11-22 22:04:15.8549 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3176. 2021-11-22 22:04:15.8549 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3177. 2021-11-22 22:04:15.8739 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3178. 2021-11-22 22:08:27.2348 Info: [source]:runtime,[msg]:Runtime 启动
  3179. 2021-11-22 22:08:27.2588 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3180. 2021-11-22 22:08:27.3008 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3181. 2021-11-22 22:08:27.3118 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3182. 2021-11-22 22:08:27.3328 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3183. 2021-11-22 22:08:27.3378 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3184. 2021-11-22 22:08:27.3378 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3185. 2021-11-22 22:08:27.3378 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3186. 2021-11-22 22:08:27.3378 Info: [source]:runtime,[msg]:Runtime 启动完成
  3187. 2021-11-22 22:08:29.5328 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3188. 2021-11-22 22:08:29.5508 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3189. 2021-11-22 22:08:29.5608 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3190. 2021-11-22 22:08:29.5698 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3191. 2021-11-22 22:11:08.2976 Info: [source]:runtime,[msg]:Runtime 启动
  3192. 2021-11-22 22:11:08.3216 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3193. 2021-11-22 22:11:08.3976 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3194. 2021-11-22 22:11:08.3976 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3195. 2021-11-22 22:11:08.4266 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3196. 2021-11-22 22:11:08.4286 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3197. 2021-11-22 22:11:08.4286 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3198. 2021-11-22 22:11:08.4286 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3199. 2021-11-22 22:11:08.4286 Info: [source]:runtime,[msg]:Runtime 启动完成
  3200. 2021-11-22 22:11:10.7128 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3201. 2021-11-22 22:11:10.7318 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3202. 2021-11-22 22:11:10.7418 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3203. 2021-11-22 22:11:10.7418 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3204. 2021-11-22 22:12:15.8083 Info: [source]:runtime,[msg]:Runtime 启动
  3205. 2021-11-22 22:12:15.8323 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3206. 2021-11-22 22:12:15.8773 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3207. 2021-11-22 22:12:15.8893 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3208. 2021-11-22 22:12:15.9083 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3209. 2021-11-22 22:12:15.9143 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3210. 2021-11-22 22:12:15.9143 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3211. 2021-11-22 22:12:15.9143 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3212. 2021-11-22 22:12:15.9143 Info: [source]:runtime,[msg]:Runtime 启动完成
  3213. 2021-11-22 22:12:18.1603 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3214. 2021-11-22 22:12:18.1843 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3215. 2021-11-22 22:12:18.1943 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3216. 2021-11-22 22:12:18.1943 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3217. 2021-11-22 22:17:27.1301 Info: [source]:runtime,[msg]:Runtime 启动
  3218. 2021-11-22 22:17:27.1501 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3219. 2021-11-22 22:17:27.1911 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3220. 2021-11-22 22:17:27.2031 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3221. 2021-11-22 22:17:27.2261 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3222. 2021-11-22 22:17:27.2261 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3223. 2021-11-22 22:17:27.2261 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3224. 2021-11-22 22:17:27.2261 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3225. 2021-11-22 22:17:27.2261 Info: [source]:runtime,[msg]:Runtime 启动完成
  3226. 2021-11-22 22:17:29.3111 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3227. 2021-11-22 22:17:29.3441 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  3228. 2021-11-22 22:17:29.3531 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3229. 2021-11-22 22:18:45.3448 Info: [source]:runtime,[msg]:Runtime 启动
  3230. 2021-11-22 22:18:45.3768 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3231. 2021-11-22 22:18:45.4378 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3232. 2021-11-22 22:18:45.4508 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3233. 2021-11-22 22:18:45.5048 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3234. 2021-11-22 22:18:45.5068 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3235. 2021-11-22 22:18:45.5068 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3236. 2021-11-22 22:18:45.5068 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3237. 2021-11-22 22:18:45.5068 Info: [source]:runtime,[msg]:Runtime 启动完成
  3238. 2021-11-22 22:18:47.7041 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3239. 2021-11-22 22:18:47.7511 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  3240. 2021-11-22 22:18:47.7611 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3241. 2021-11-22 22:47:52.3726 Info: [source]:runtime,[msg]:Runtime 启动
  3242. 2021-11-22 22:47:52.3936 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3243. 2021-11-22 22:47:52.4416 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3244. 2021-11-22 22:47:52.4526 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3245. 2021-11-22 22:47:52.4716 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3246. 2021-11-22 22:47:52.4716 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3247. 2021-11-22 22:47:52.4756 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3248. 2021-11-22 22:47:52.4756 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3249. 2021-11-22 22:47:52.4756 Info: [source]:runtime,[msg]:Runtime 启动完成
  3250. 2021-11-22 22:47:54.8416 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3251. 2021-11-22 22:47:54.8666 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3252. 2021-11-22 22:47:54.8826 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3253. 2021-11-22 23:00:23.4378 Info: [source]:runtime,[msg]:AppHost 停止插件
  3254. 2021-11-22 23:00:23.4378 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3255. 2021-11-22 23:00:23.4378 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3256. 2021-11-22 23:00:23.4378 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3257. 2021-11-22 23:00:23.4378 Info: [source]:runtime,[msg]:Runtime 关闭
  3258. 2021-11-22 23:00:35.3775 Info: [source]:runtime,[msg]:Runtime 启动
  3259. 2021-11-22 23:00:35.3975 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3260. 2021-11-22 23:00:35.4355 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3261. 2021-11-22 23:00:35.4435 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3262. 2021-11-22 23:00:35.4615 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3263. 2021-11-22 23:00:35.4615 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3264. 2021-11-22 23:00:35.4615 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3265. 2021-11-22 23:00:35.4615 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3266. 2021-11-22 23:00:35.4615 Info: [source]:runtime,[msg]:Runtime 启动完成
  3267. 2021-11-22 23:00:37.3685 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3268. 2021-11-22 23:00:37.3865 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3269. 2021-11-22 23:00:37.3995 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3270. 2021-11-22 23:10:50.9709 Info: [source]:runtime,[msg]:Runtime 启动
  3271. 2021-11-22 23:10:50.9899 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3272. 2021-11-22 23:10:51.0299 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3273. 2021-11-22 23:10:51.0419 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3274. 2021-11-22 23:10:51.0629 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3275. 2021-11-22 23:10:51.0629 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3276. 2021-11-22 23:10:51.0629 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3277. 2021-11-22 23:10:51.0629 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3278. 2021-11-22 23:10:51.0629 Info: [source]:runtime,[msg]:Runtime 启动完成
  3279. 2021-11-22 23:10:53.0099 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3280. 2021-11-22 23:10:53.0269 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3281. 2021-11-22 23:10:53.0269 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3282. 2021-11-22 23:27:00.4757 Info: [source]:runtime,[msg]:Runtime 启动
  3283. 2021-11-22 23:27:00.5007 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3284. 2021-11-22 23:27:00.5517 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3285. 2021-11-22 23:27:00.5607 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3286. 2021-11-22 23:27:00.5807 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3287. 2021-11-22 23:27:00.5807 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3288. 2021-11-22 23:27:00.5807 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3289. 2021-11-22 23:27:00.5847 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3290. 2021-11-22 23:27:00.5847 Info: [source]:runtime,[msg]:Runtime 启动完成
  3291. 2021-11-22 23:27:02.6288 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3292. 2021-11-22 23:27:02.6488 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3293. 2021-11-22 23:27:02.6488 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3294. 2021-11-22 23:34:25.8384 Info: [source]:runtime,[msg]:AppHost 停止插件
  3295. 2021-11-22 23:34:25.8384 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3296. 2021-11-22 23:34:25.8384 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3297. 2021-11-22 23:34:25.8384 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3298. 2021-11-22 23:34:25.8384 Info: [source]:runtime,[msg]:Runtime 关闭
  3299. 2021-11-22 23:34:46.0933 Info: [source]:runtime,[msg]:Runtime 启动
  3300. 2021-11-22 23:34:46.1133 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3301. 2021-11-22 23:34:46.1503 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3302. 2021-11-22 23:34:46.1503 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3303. 2021-11-22 23:34:46.1763 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3304. 2021-11-22 23:34:46.1783 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3305. 2021-11-22 23:34:46.1783 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3306. 2021-11-22 23:34:46.1783 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3307. 2021-11-22 23:34:46.1783 Info: [source]:runtime,[msg]:Runtime 启动完成
  3308. 2021-11-22 23:34:48.1683 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3309. 2021-11-22 23:34:48.1913 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3310. 2021-11-22 23:34:48.2013 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3311. 2021-11-22 23:47:30.3786 Info: [source]:runtime,[msg]:AppHost 停止插件
  3312. 2021-11-22 23:47:30.3786 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3313. 2021-11-22 23:47:30.3786 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3314. 2021-11-22 23:47:30.3816 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3315. 2021-11-22 23:47:30.3816 Info: [source]:runtime,[msg]:Runtime 关闭
  3316. 2021-11-23 00:45:27.2740 Info: [source]:runtime,[msg]:Runtime 启动
  3317. 2021-11-23 00:45:27.2970 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3318. 2021-11-23 00:45:27.3430 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3319. 2021-11-23 00:45:27.3560 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3320. 2021-11-23 00:45:27.3840 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3321. 2021-11-23 00:45:27.3840 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3322. 2021-11-23 00:45:27.3840 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3323. 2021-11-23 00:45:27.3840 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3324. 2021-11-23 00:45:27.3840 Info: [source]:runtime,[msg]:Runtime 启动完成
  3325. 2021-11-23 00:45:29.6310 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3326. 2021-11-23 00:45:29.6480 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3327. 2021-11-23 00:45:29.6480 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3328. 2021-11-23 00:52:57.5799 Info: [source]:runtime,[msg]:Runtime 启动
  3329. 2021-11-23 00:52:57.6009 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3330. 2021-11-23 00:52:57.6529 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3331. 2021-11-23 00:52:57.6629 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3332. 2021-11-23 00:52:57.6979 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3333. 2021-11-23 00:52:57.6979 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3334. 2021-11-23 00:52:57.6979 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3335. 2021-11-23 00:52:57.6979 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3336. 2021-11-23 00:52:57.6979 Info: [source]:runtime,[msg]:Runtime 启动完成
  3337. 2021-11-23 00:52:59.6839 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3338. 2021-11-23 00:52:59.7019 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3339. 2021-11-23 00:52:59.7119 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3340. 2021-11-23 01:03:33.7870 Info: [source]:runtime,[msg]:Runtime 启动
  3341. 2021-11-23 01:03:33.8090 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3342. 2021-11-23 01:03:33.8500 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3343. 2021-11-23 01:03:33.8500 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3344. 2021-11-23 01:03:33.8820 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3345. 2021-11-23 01:03:33.8820 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3346. 2021-11-23 01:03:33.8820 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3347. 2021-11-23 01:03:33.8820 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3348. 2021-11-23 01:03:33.8820 Info: [source]:runtime,[msg]:Runtime 启动完成
  3349. 2021-11-23 01:03:36.0730 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3350. 2021-11-23 01:03:36.0910 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3351. 2021-11-23 01:03:36.1010 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3352. 2021-11-23 01:06:56.5847 Info: [source]:runtime,[msg]:Runtime 启动
  3353. 2021-11-23 01:06:56.6087 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3354. 2021-11-23 01:06:56.6587 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3355. 2021-11-23 01:06:56.6687 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3356. 2021-11-23 01:06:56.6877 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3357. 2021-11-23 01:06:56.6877 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3358. 2021-11-23 01:06:56.6877 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3359. 2021-11-23 01:06:56.6877 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3360. 2021-11-23 01:06:56.6877 Info: [source]:runtime,[msg]:Runtime 启动完成
  3361. 2021-11-23 01:06:58.7651 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3362. 2021-11-23 01:06:58.7821 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3363. 2021-11-23 01:06:58.7911 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3364. 2021-11-23 01:07:14.7721 Info: [source]:runtime,[msg]:Runtime 启动
  3365. 2021-11-23 01:07:14.7881 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3366. 2021-11-23 01:07:14.8141 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3367. 2021-11-23 01:07:14.8141 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3368. 2021-11-23 01:07:14.8231 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3369. 2021-11-23 01:07:14.8231 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3370. 2021-11-23 01:07:14.8231 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3371. 2021-11-23 01:07:14.8231 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3372. 2021-11-23 01:07:14.8231 Info: [source]:runtime,[msg]:Runtime 启动完成
  3373. 2021-11-23 01:07:16.3672 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3374. 2021-11-23 01:07:16.3822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3375. 2021-11-23 01:07:16.3822 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3376. 2021-11-23 01:08:00.9584 Info: [source]:runtime,[msg]:AppHost 停止插件
  3377. 2021-11-23 01:08:00.9594 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3378. 2021-11-23 01:08:00.9594 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3379. 2021-11-23 01:08:00.9594 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3380. 2021-11-23 01:08:00.9594 Info: [source]:runtime,[msg]:Runtime 关闭
  3381. 2021-11-23 01:08:42.8536 Info: [source]:runtime,[msg]:Runtime 启动
  3382. 2021-11-23 01:08:42.8756 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3383. 2021-11-23 01:08:42.9206 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3384. 2021-11-23 01:08:42.9356 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3385. 2021-11-23 01:08:42.9606 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3386. 2021-11-23 01:08:42.9606 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3387. 2021-11-23 01:08:42.9606 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3388. 2021-11-23 01:08:42.9606 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3389. 2021-11-23 01:08:42.9606 Info: [source]:runtime,[msg]:Runtime 启动完成
  3390. 2021-11-23 01:08:45.0771 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3391. 2021-11-23 01:08:45.0981 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3392. 2021-11-23 01:08:45.1091 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3393. 2021-11-23 01:15:22.4189 Info: [source]:runtime,[msg]:Runtime 启动
  3394. 2021-11-23 01:15:22.4439 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3395. 2021-11-23 01:15:22.4959 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3396. 2021-11-23 01:15:22.4959 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3397. 2021-11-23 01:15:22.5289 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3398. 2021-11-23 01:15:22.5289 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3399. 2021-11-23 01:15:22.5289 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3400. 2021-11-23 01:15:22.5289 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3401. 2021-11-23 01:15:22.5289 Info: [source]:runtime,[msg]:Runtime 启动完成
  3402. 2021-11-23 01:15:24.6079 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3403. 2021-11-23 01:15:24.6269 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3404. 2021-11-23 01:15:24.6369 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3405. 2021-11-23 01:18:44.3939 Info: [source]:runtime,[msg]:Runtime 启动
  3406. 2021-11-23 01:18:44.4169 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3407. 2021-11-23 01:18:44.4739 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3408. 2021-11-23 01:18:44.4829 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3409. 2021-11-23 01:18:44.5069 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3410. 2021-11-23 01:18:44.5069 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3411. 2021-11-23 01:18:44.5069 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3412. 2021-11-23 01:18:44.5069 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3413. 2021-11-23 01:18:44.5069 Info: [source]:runtime,[msg]:Runtime 启动完成
  3414. 2021-11-23 01:18:46.5869 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3415. 2021-11-23 01:18:46.6049 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3416. 2021-11-23 01:18:46.6049 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3417. 2021-11-23 01:33:04.3593 Info: [source]:runtime,[msg]:Runtime 启动
  3418. 2021-11-23 01:33:04.3813 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3419. 2021-11-23 01:33:04.4243 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3420. 2021-11-23 01:33:04.4333 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3421. 2021-11-23 01:33:04.4523 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3422. 2021-11-23 01:33:04.4523 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3423. 2021-11-23 01:33:04.4523 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3424. 2021-11-23 01:33:04.4523 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3425. 2021-11-23 01:33:04.4523 Info: [source]:runtime,[msg]:Runtime 启动完成
  3426. 2021-11-23 01:33:06.6893 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3427. 2021-11-23 01:33:06.7063 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3428. 2021-11-23 01:33:06.7153 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3429. 2021-11-23 01:45:13.3710 Info: [source]:runtime,[msg]:AppHost 停止插件
  3430. 2021-11-23 01:45:13.3710 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3431. 2021-11-23 01:45:13.3710 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3432. 2021-11-23 01:45:13.3710 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3433. 2021-11-23 01:45:13.3710 Info: [source]:runtime,[msg]:Runtime 关闭
  3434. 2021-11-23 16:50:19.4133 Info: [source]:runtime,[msg]:Runtime 启动
  3435. 2021-11-23 16:50:19.4333 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3436. 2021-11-23 16:50:19.4783 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3437. 2021-11-23 16:50:19.4783 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3438. 2021-11-23 16:50:19.5003 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3439. 2021-11-23 16:50:19.5003 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3440. 2021-11-23 16:50:19.5003 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3441. 2021-11-23 16:50:19.5003 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3442. 2021-11-23 16:50:19.5003 Info: [source]:runtime,[msg]:Runtime 启动完成
  3443. 2021-11-23 16:50:23.5960 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3444. 2021-11-23 16:50:23.6250 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3445. 2021-11-23 16:50:23.6430 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3446. 2021-11-23 16:50:23.6550 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3447. 2021-11-23 16:57:33.3288 Info: [source]:runtime,[msg]:Runtime 启动
  3448. 2021-11-23 16:57:33.3478 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3449. 2021-11-23 16:57:33.3888 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3450. 2021-11-23 16:57:33.3988 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3451. 2021-11-23 16:57:33.3988 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3452. 2021-11-23 16:57:33.4128 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3453. 2021-11-23 16:57:33.4128 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3454. 2021-11-23 16:57:33.4128 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3455. 2021-11-23 16:57:33.4128 Info: [source]:runtime,[msg]:Runtime 启动完成
  3456. 2021-11-23 16:57:35.5958 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3457. 2021-11-23 16:57:35.6138 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3458. 2021-11-23 16:57:35.6238 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3459. 2021-11-23 16:57:35.6338 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3460. 2021-11-23 17:26:54.1419 Info: [source]:runtime,[msg]:Runtime 启动
  3461. 2021-11-23 17:26:54.1689 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3462. 2021-11-23 17:26:54.2239 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3463. 2021-11-23 17:26:54.2359 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3464. 2021-11-23 17:26:54.2609 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3465. 2021-11-23 17:26:54.2609 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3466. 2021-11-23 17:26:54.2609 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3467. 2021-11-23 17:26:54.2609 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3468. 2021-11-23 17:26:54.2609 Info: [source]:runtime,[msg]:Runtime 启动完成
  3469. 2021-11-23 17:26:56.4611 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3470. 2021-11-23 17:26:56.4771 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3471. 2021-11-23 17:26:56.4771 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3472. 2021-11-23 17:26:56.4961 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3473. 2021-11-23 17:28:23.7418 Info: [source]:runtime,[msg]:Runtime 启动
  3474. 2021-11-23 17:28:23.7668 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3475. 2021-11-23 17:28:23.8058 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3476. 2021-11-23 17:28:23.8058 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3477. 2021-11-23 17:28:23.8308 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3478. 2021-11-23 17:28:23.8308 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3479. 2021-11-23 17:28:23.8308 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3480. 2021-11-23 17:28:23.8348 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3481. 2021-11-23 17:28:23.8348 Info: [source]:runtime,[msg]:Runtime 启动完成
  3482. 2021-11-23 17:28:25.7979 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3483. 2021-11-23 17:28:25.8169 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3484. 2021-11-23 17:28:25.8269 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3485. 2021-11-23 17:28:25.8359 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3486. 2021-11-23 17:29:53.4658 Info: [source]:runtime,[msg]:Runtime 启动
  3487. 2021-11-23 17:29:53.4918 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3488. 2021-11-23 17:29:53.5468 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3489. 2021-11-23 17:29:53.5568 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3490. 2021-11-23 17:29:53.5568 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3491. 2021-11-23 17:29:53.5568 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3492. 2021-11-23 17:29:53.5698 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3493. 2021-11-23 17:29:53.5698 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3494. 2021-11-23 17:29:53.5698 Info: [source]:runtime,[msg]:Runtime 启动完成
  3495. 2021-11-23 17:29:59.6561 Error: [source]:Visa SearchDevices,[msg]:*IDN查询设备名称时异常,GPIB0::18::INSTR
  3496. 2021-11-23 17:30:03.8746 Error: [source]:Visa SearchDevices,[msg]:VISA设备搜索执行异常, 在 DevicesApp.VisaBus.GetDeviceModel(String resourcehandle, String& deviceID, String& bustype) 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 167
  3497. 在 DevicesApp.VisaBus.SearchDevices() 位置 D:\code\LabStudio\component\DevicesApp\VisaBus.cs:行号 30
  3498. 2021-11-23 17:30:03.8746 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3499. 2021-11-23 17:30:03.9036 Error: [source]:资源管理器 LoadDevice,[msg]:初始化本地配置文件的设备异常:USB0::0x0957::0x0D0B::US49230327::INSTR,请确认设备是否存在。原因:调用的目标发生了异常。
  3500. 2021-11-23 17:30:03.9136 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3501. 2021-11-23 17:37:48.7798 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3502. 2021-11-23 17:37:48.7798 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3503. 2021-11-23 17:37:48.7958 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3504. 2021-11-23 17:37:48.8048 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3505. 2021-11-23 17:37:53.0077 Info: [source]:runtime,[msg]:AppHost 停止插件
  3506. 2021-11-23 17:37:53.0077 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3507. 2021-11-23 17:37:53.0077 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3508. 2021-11-23 17:37:53.0077 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3509. 2021-11-23 17:37:53.0077 Info: [source]:runtime,[msg]:Runtime 关闭
  3510. 2021-11-23 17:37:56.7999 Info: [source]:runtime,[msg]:Runtime 启动
  3511. 2021-11-23 17:37:56.8179 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3512. 2021-11-23 17:37:56.8529 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3513. 2021-11-23 17:37:56.8529 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3514. 2021-11-23 17:37:56.8739 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3515. 2021-11-23 17:37:56.8739 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3516. 2021-11-23 17:37:56.8739 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3517. 2021-11-23 17:37:56.8739 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3518. 2021-11-23 17:37:56.8739 Info: [source]:runtime,[msg]:Runtime 启动完成
  3519. 2021-11-23 17:37:58.7809 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3520. 2021-11-23 17:37:58.8009 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3521. 2021-11-23 17:37:58.8109 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3522. 2021-11-23 17:37:58.8209 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3523. 2021-11-23 17:50:28.3881 Info: [source]:runtime,[msg]:AppHost 停止插件
  3524. 2021-11-23 17:50:28.3881 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3525. 2021-11-23 17:50:28.3881 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3526. 2021-11-23 17:50:28.3881 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3527. 2021-11-23 17:50:28.3881 Info: [source]:runtime,[msg]:Runtime 关闭
  3528. 2021-11-23 17:57:29.1294 Info: [source]:runtime,[msg]:Runtime 启动
  3529. 2021-11-23 17:57:29.1464 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3530. 2021-11-23 17:57:29.1864 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3531. 2021-11-23 17:57:29.2084 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3532. 2021-11-23 17:57:29.2374 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3533. 2021-11-23 17:57:29.2374 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3534. 2021-11-23 17:57:29.2374 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3535. 2021-11-23 17:57:29.2414 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3536. 2021-11-23 17:57:29.2414 Info: [source]:runtime,[msg]:Runtime 启动完成
  3537. 2021-11-23 17:57:31.2336 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3538. 2021-11-23 17:57:31.2516 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3539. 2021-11-23 17:57:31.2608 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3540. 2021-11-23 17:57:31.2608 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3541. 2021-11-23 18:07:09.0685 Info: [source]:runtime,[msg]:Runtime 启动
  3542. 2021-11-23 18:07:09.0895 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3543. 2021-11-23 18:07:09.1375 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3544. 2021-11-23 18:07:09.1505 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3545. 2021-11-23 18:07:09.1635 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3546. 2021-11-23 18:07:09.1635 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3547. 2021-11-23 18:07:09.1635 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3548. 2021-11-23 18:07:09.1635 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3549. 2021-11-23 18:07:09.1635 Info: [source]:runtime,[msg]:Runtime 启动完成
  3550. 2021-11-23 18:07:11.0446 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3551. 2021-11-23 18:07:11.0606 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3552. 2021-11-23 18:07:11.0696 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3553. 2021-11-23 18:07:11.0696 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3554. 2021-11-23 18:48:39.4837 Info: [source]:runtime,[msg]:AppHost 停止插件
  3555. 2021-11-23 18:48:39.4837 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3556. 2021-11-23 18:48:39.4837 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3557. 2021-11-23 18:48:39.4837 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3558. 2021-11-23 18:48:39.4837 Info: [source]:runtime,[msg]:Runtime 关闭
  3559. 2021-11-23 18:48:44.6262 Info: [source]:runtime,[msg]:Runtime 启动
  3560. 2021-11-23 18:48:44.6482 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3561. 2021-11-23 18:48:44.7112 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3562. 2021-11-23 18:48:44.7112 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3563. 2021-11-23 18:48:44.7322 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3564. 2021-11-23 18:48:44.7322 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3565. 2021-11-23 18:48:44.7322 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3566. 2021-11-23 18:48:44.7322 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3567. 2021-11-23 18:48:44.7322 Info: [source]:runtime,[msg]:Runtime 启动完成
  3568. 2021-11-23 18:48:47.2792 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3569. 2021-11-23 18:48:47.3002 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3570. 2021-11-23 18:48:47.3112 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3571. 2021-11-23 18:48:47.3212 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3572. 2021-11-23 18:49:14.8006 Info: [source]:runtime,[msg]:Runtime 启动
  3573. 2021-11-23 18:49:14.8196 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3574. 2021-11-23 18:49:14.8576 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3575. 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3576. 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3577. 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3578. 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3579. 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3580. 2021-11-23 18:49:14.8676 Info: [source]:runtime,[msg]:Runtime 启动完成
  3581. 2021-11-23 18:49:16.6609 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3582. 2021-11-23 18:49:16.6769 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3583. 2021-11-23 18:49:16.6869 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3584. 2021-11-23 18:49:16.6959 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3585. 2021-11-23 18:49:42.5866 Error: [source]:runtime,[msg]:未将对象引用设置到对象的实例。 在 Tps_LQ_Transmitter.FrmMain.BtnStop_Click(Object sender, EventArgs e) 位置 D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\tps\TpsLabStudio\FrmMain.cs:行号 441
  3586. 在 System.Windows.Forms.Control.OnClick(EventArgs e)
  3587. 在 DevComponents.DotNetBar.ButtonX.OnClick(EventArgs e)
  3588. 在 DevComponents.DotNetBar.ButtonX.OnMouseUp(MouseEventArgs e)
  3589. 在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  3590. 在 System.Windows.Forms.Control.WndProc(Message& m)
  3591. 在 DevComponents.DotNetBar.PopupItemControl.WndProc(Message& m)
  3592. 在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  3593. 在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  3594. 在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  3595. 在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  3596. 在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
  3597. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  3598. 在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  3599. 在 System.Windows.Forms.Application.Run(Form mainForm)
  3600. 在 JGWorks.Program.Main() 位置 D:\code\LabStudio\JGWorks\Program.cs:行号 70
  3601. 2021-11-23 18:49:45.4066 Info: [source]:runtime,[msg]:Runtime 启动
  3602. 2021-11-23 18:49:45.4256 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3603. 2021-11-23 18:49:45.4616 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3604. 2021-11-23 18:49:45.4616 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3605. 2021-11-23 18:49:45.4816 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3606. 2021-11-23 18:49:45.4816 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3607. 2021-11-23 18:49:45.4816 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3608. 2021-11-23 18:49:45.4816 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3609. 2021-11-23 18:49:45.4816 Info: [source]:runtime,[msg]:Runtime 启动完成
  3610. 2021-11-23 18:49:47.2877 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3611. 2021-11-23 18:49:47.3067 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3612. 2021-11-23 18:49:47.3067 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3613. 2021-11-23 18:49:47.3267 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3614. 2021-11-23 18:58:45.5502 Info: [source]:runtime,[msg]:AppHost 停止插件
  3615. 2021-11-23 18:58:45.5502 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3616. 2021-11-23 18:58:45.5502 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3617. 2021-11-23 18:58:45.5502 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3618. 2021-11-23 18:58:45.5502 Info: [source]:runtime,[msg]:Runtime 关闭
  3619. 2021-11-23 20:34:36.3754 Info: [source]:runtime,[msg]:Runtime 启动
  3620. 2021-11-23 20:34:36.4004 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3621. 2021-11-23 20:34:36.4524 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3622. 2021-11-23 20:34:36.4634 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3623. 2021-11-23 20:34:36.4944 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3624. 2021-11-23 20:34:36.4944 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3625. 2021-11-23 20:34:36.4944 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3626. 2021-11-23 20:34:36.4944 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3627. 2021-11-23 20:34:36.4944 Info: [source]:runtime,[msg]:Runtime 启动完成
  3628. 2021-11-23 20:34:38.9184 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3629. 2021-11-23 20:34:38.9394 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3630. 2021-11-23 20:34:38.9504 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3631. 2021-11-23 20:34:38.9504 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3632. 2021-11-23 20:34:43.6810 Info: [source]:runtime,[msg]:AppHost 停止插件
  3633. 2021-11-23 20:34:43.6810 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3634. 2021-11-23 20:34:43.6810 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3635. 2021-11-23 20:34:43.6810 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3636. 2021-11-23 20:34:43.6810 Info: [source]:runtime,[msg]:Runtime 关闭
  3637. 2021-11-23 20:36:46.7929 Info: [source]:runtime,[msg]:Runtime 启动
  3638. 2021-11-23 20:36:46.8159 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3639. 2021-11-23 20:36:46.8569 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3640. 2021-11-23 20:36:46.8569 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3641. 2021-11-23 20:36:46.8929 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3642. 2021-11-23 20:36:46.8929 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3643. 2021-11-23 20:36:46.8929 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3644. 2021-11-23 20:36:46.8929 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3645. 2021-11-23 20:36:46.8929 Info: [source]:runtime,[msg]:Runtime 启动完成
  3646. 2021-11-23 20:36:48.9589 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3647. 2021-11-23 20:36:48.9769 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3648. 2021-11-23 20:36:48.9769 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3649. 2021-11-23 20:36:49.0009 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3650. 2021-11-23 20:40:07.0903 Info: [source]:runtime,[msg]:AppHost 停止插件
  3651. 2021-11-23 20:40:07.0903 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3652. 2021-11-23 20:40:07.0903 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3653. 2021-11-23 20:40:07.0903 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3654. 2021-11-23 20:40:07.0903 Info: [source]:runtime,[msg]:Runtime 关闭
  3655. 2021-11-23 20:47:22.1419 Info: [source]:runtime,[msg]:Runtime 启动
  3656. 2021-11-23 20:47:22.1629 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3657. 2021-11-23 20:47:22.2029 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3658. 2021-11-23 20:47:22.2139 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3659. 2021-11-23 20:47:22.2319 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3660. 2021-11-23 20:47:22.2319 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3661. 2021-11-23 20:47:22.2319 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3662. 2021-11-23 20:47:22.2319 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3663. 2021-11-23 20:47:22.2319 Info: [source]:runtime,[msg]:Runtime 启动完成
  3664. 2021-11-23 20:47:24.4105 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3665. 2021-11-23 20:47:24.4264 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3666. 2021-11-23 20:47:24.4365 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3667. 2021-11-23 20:47:24.4455 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3668. 2021-11-23 20:47:48.3937 Info: [source]:runtime,[msg]:Runtime 启动
  3669. 2021-11-23 20:47:48.4157 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3670. 2021-11-23 20:47:48.4577 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3671. 2021-11-23 20:47:48.4707 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3672. 2021-11-23 20:47:48.4887 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3673. 2021-11-23 20:47:48.4887 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3674. 2021-11-23 20:47:48.4887 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3675. 2021-11-23 20:47:48.4927 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3676. 2021-11-23 20:47:48.4927 Info: [source]:runtime,[msg]:Runtime 启动完成
  3677. 2021-11-23 20:47:50.5702 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3678. 2021-11-23 20:47:50.5882 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3679. 2021-11-23 20:47:50.5882 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3680. 2021-11-23 20:47:50.6062 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3681. 2021-11-23 20:53:11.5015 Info: [source]:runtime,[msg]:AppHost 停止插件
  3682. 2021-11-23 20:53:11.5015 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3683. 2021-11-23 20:53:11.5015 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3684. 2021-11-23 20:53:11.5015 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3685. 2021-11-23 20:53:11.5015 Info: [source]:runtime,[msg]:Runtime 关闭
  3686. 2021-11-23 20:53:16.2747 Info: [source]:runtime,[msg]:Runtime 启动
  3687. 2021-11-23 20:53:16.2977 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3688. 2021-11-23 20:53:16.3357 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3689. 2021-11-23 20:53:16.3487 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3690. 2021-11-23 20:53:16.3597 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3691. 2021-11-23 20:53:16.3597 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3692. 2021-11-23 20:53:16.3597 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3693. 2021-11-23 20:53:16.3597 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3694. 2021-11-23 20:53:16.3597 Info: [source]:runtime,[msg]:Runtime 启动完成
  3695. 2021-11-23 20:53:18.2677 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3696. 2021-11-23 20:53:18.2857 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3697. 2021-11-23 20:53:18.2957 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3698. 2021-11-23 20:53:18.2957 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3699. 2021-11-23 20:55:04.8467 Info: [source]:runtime,[msg]:AppHost 停止插件
  3700. 2021-11-23 20:55:04.8467 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3701. 2021-11-23 20:55:04.8467 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3702. 2021-11-23 20:55:04.8467 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3703. 2021-11-23 20:55:04.8467 Info: [source]:runtime,[msg]:Runtime 关闭
  3704. 2021-11-24 16:31:33.9217 Info: [source]:runtime,[msg]:Runtime 启动
  3705. 2021-11-24 16:31:33.9496 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3706. 2021-11-24 16:31:34.0074 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3707. 2021-11-24 16:31:34.0074 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3708. 2021-11-24 16:31:34.0323 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3709. 2021-11-24 16:31:34.0323 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3710. 2021-11-24 16:31:34.0323 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3711. 2021-11-24 16:31:34.0323 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3712. 2021-11-24 16:31:34.0323 Info: [source]:runtime,[msg]:Runtime 启动完成
  3713. 2021-11-24 16:31:36.6037 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3714. 2021-11-24 16:31:36.6217 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3715. 2021-11-24 16:31:36.6346 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3716. 2021-11-24 16:31:36.6346 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3717. 2021-11-24 16:33:06.6167 Info: [source]:runtime,[msg]:AppHost 停止插件
  3718. 2021-11-24 16:33:06.6167 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3719. 2021-11-24 16:33:06.6167 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3720. 2021-11-24 16:33:06.6167 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3721. 2021-11-24 16:33:06.6167 Info: [source]:runtime,[msg]:Runtime 关闭
  3722. 2021-11-24 16:35:32.7511 Info: [source]:runtime,[msg]:Runtime 启动
  3723. 2021-11-24 16:35:32.7730 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3724. 2021-11-24 16:35:32.8129 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3725. 2021-11-24 16:35:32.8218 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3726. 2021-11-24 16:35:32.8218 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3727. 2021-11-24 16:35:32.8218 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3728. 2021-11-24 16:35:32.8218 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3729. 2021-11-24 16:35:32.8348 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3730. 2021-11-24 16:35:32.8348 Info: [source]:runtime,[msg]:Runtime 启动完成
  3731. 2021-11-24 16:35:34.6095 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3732. 2021-11-24 16:35:34.6305 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3733. 2021-11-24 16:35:34.6445 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3734. 2021-11-24 16:35:34.6534 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::18::INSTR。
  3735. 2021-11-24 16:36:20.7263 Info: [source]:runtime,[msg]:AppHost 停止插件
  3736. 2021-11-24 16:36:20.7263 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3737. 2021-11-24 16:36:20.7263 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3738. 2021-11-24 16:36:20.7263 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3739. 2021-11-24 16:36:20.7263 Info: [source]:runtime,[msg]:Runtime 关闭
  3740. 2021-11-24 16:41:27.5464 Info: [source]:runtime,[msg]:Runtime 启动
  3741. 2021-11-24 16:41:27.5694 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DataApp\bundle.config"
  3742. 2021-11-24 16:41:27.6042 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\DevicesApp\bundle.config"
  3743. 2021-11-24 16:41:27.6042 Info: [source]:runtime,[msg]:加载插件"D:\000Code\0.TpsLabStudio_LTS_1112\TpsLabStudio_LTS\exe\apps\Tps_LQ_Transmitter\bundle.config"
  3744. 2021-11-24 16:41:27.6252 Info: [source]:runtime,[msg]:AppHost 开始启动插件
  3745. 2021-11-24 16:41:27.6252 Info: [source]:runtime,[msg]:插件"数据管理"启动成功
  3746. 2021-11-24 16:41:27.6252 Info: [source]:runtime,[msg]:插件"资源管理器"启动成功
  3747. 2021-11-24 16:41:27.6252 Info: [source]:runtime,[msg]:插件"6YX03B-9B"启动成功
  3748. 2021-11-24 16:41:27.6252 Info: [source]:runtime,[msg]:Runtime 启动完成
  3749. 2021-11-24 16:41:29.5373 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::34::INSTR。
  3750. 2021-11-24 16:41:29.5552 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:USB0::0x0957::0x0D0B::US49230327::INSTR。
  3751. 2021-11-24 16:41:29.5692 Info: [source]:资源管理器 LoadDevice,[msg]:初始化设备成功:GPIB0::13::INSTR。
  3752. 2021-11-24 16:58:50.8497 Info: [source]:runtime,[msg]:AppHost 停止插件
  3753. 2021-11-24 16:58:50.8506 Info: [source]:runtime,[msg]:插件"数据管理"停止成功
  3754. 2021-11-24 16:58:50.8506 Info: [source]:runtime,[msg]:插件"资源管理器"停止成功
  3755. 2021-11-24 16:58:50.8506 Info: [source]:runtime,[msg]:插件"6YX03B-9B"停止成功
  3756. 2021-11-24 16:58:50.8506 Info: [source]:runtime,[msg]:Runtime 关闭