Trace in output

Hello,
i recently switched to flash cs6 and i noticed that no traces go to output window. I searched forums and found 2 common things which i checked:
1. publish settings -> omit trace statements - not switched on
2. output window ->filter level -> verbous
So is there anything im missing? How can i enable the trace to show in output window again?

Have you tried using debug movie? In CS5.5 both test and debug send traces but perhaps it changed in CS6. Try CTRL+SHIFT+ENTER (Windows) or CMD+SHIFT+ENTER (Mac) to run the debugger and see if you see your traces.

Similar Messages

  • Html App: air.trace() not outputting to console... are Adobe still supporting html apps in AIR?

    Hi
    Just getting up and running
    Mac OS X 10.9. Adoe AIR 3.9. All working fine except air.trace() not outputting anything to the console.
    Bit of googling meant I created a mm.config in ~ with the line:
    ErrorReportingEnable=1
    but still no joy.
    Any other tips for getting this to work or is it just now broken and/or unsupported?
    Are HTML apps wrapped in AIR now legacy technology?

    I have the same question... I've been trying to get an Adobe AIR HTML app going, but there appears to be no IDE that supports debugging an HTML/JS AIR App, and fdb, which is supposed to be able to debug HTML/JS AIR apps, does not.
    Is HTML/JS still a supported way of developing Adobe AIR apps?  If so, then why aren't issues like this getting some attention?
      -Josh

  • ExchangeService.TraceEnabled = true , but can't see the traces in output window

    Hello,
    I am building an Visual Studio 2013 asp.net application that uses EWS. I have enabled tracing:
                service.TraceEnabled = true;
                service.TraceFlags = TraceFlags.All;
    I expect so see the EWS trace output in the Output window; however, nothing related to EWS shows in Output window.
    I wonder what am I missing?
    Thank you,

    Hi,
    you need to implement the interface Microsoft.Exchange.WebServices.Data.ITraceListener.
    And then set :
    service.TraceListener = new MyTraceListenerImplementation();
    Regards,
    Désiré GOVIN Refresh IT Solutions

  • Getting 'trace' type output from asmca

    Oracle GI 11.2.0.2.0
    Oracle Linux 5.6 x86-64
    Another one for the "Gee, I've never seen this before"
    Connecting to my server as oralce (ssh connection via putty) I fire up asmca, and after a short delay the GUI pops up just fine.
    Connecting under my own credentials, I fire up asmca, and after a short delay the GUI pops up just fine. But during that 'short delay' I'm getting what amounts to a trace writing to my terminal. Here's an excerpt to show what I mean:
    estevens:dwdev$ . oraenv
    ORACLE_SID = [dwdev] ? +ASM
    The Oracle base remains unchanged with value /u01/app/oracle
    estevens:+ASM$ asmca
    [main] [ 2012-08-23 08:42:23.139 CDT ] [UsmcaCmdLineParser.discoverRAC:239]  Cluster Existence Check
    [main] [ 2012-08-23 08:42:23.168 CDT ] [Version.isPre:465]  version to be checked 11.2.0.2.0 major version to check against10
    [main] [ 2012-08-23 08:42:23.169 CDT ] [Version.isPre:476]  isPre.java: Returning FALSE
    [main] [ 2012-08-23 08:42:23.173 CDT ] [OCR.loadLibrary:311] 
    Inside constructor of OCR
    [main] [ 2012-08-23 08:42:23.192 CDT ] [OCR.loadLibrary:319]  Going to load the ocr library
    [main] [ 2012-08-23 08:42:23.192 CDT ] [Library.load:188]  library.load
    [main] [ 2012-08-23 08:42:23.193 CDT ] [sPlatform.isHybrid:66]  osName=Linux osArch=amd64 JVM=64 rc=false
    [main] [ 2012-08-23 08:42:23.193 CDT ] [sPlatform.isHybrid:66]  osName=Linux osArch=amd64 JVM=64 rc=false
    [main] [ 2012-08-23 08:42:23.194 CDT ] [Library.load:264]  Loading  library /u01/app/oracle/11.2.0/grid/lib/libsrvmocr11.so
    [main] [ 2012-08-23 08:42:23.204 CDT ] [OCR.loadLibrary:321]  loaded ocr libraries
    [main] [ 2012-08-23 08:42:23.204 CDT ] [OCR.isCluster:959]  Calling OCRNative for isCluster()
    [main] [ 2012-08-23 08:42:23.207 CDT ] [OCR.isCluster:963]  OCR Result status = true
    [main] [ 2012-08-23 08:42:23.207 CDT ] [OCR.isCluster:975]  Bolean result = falseThere's quite a bit more, including a command and output of lsnrctl status.
    Eventualy the GUI opens and works as expected.
    I've examined the output of 'id' and find no anomolies. The oracle account has as its primary group 'oinstall', while my primary group is the same as my username (default linux behavior) but I also have oinstall as a secondary group membership.
    I've examined the output of 'env|sort' for both accounts immediately prior to issuing the 'emca' command, and find no anomolies. All ORACL_* variables are identical, all PATH type variables are the same
    Thinking it might be related to a permissions issue writing to a log/trace file, I executed asmca as the oracle user, the immediately did a 'find . -amin 2' but turned up no log or trace type files.
    Ideas?

    Levi Pereira wrote:
    Hi EdStevens,
    This behavior is normal, this trace is showing on the terminal due your User (estevens) does not have permission to write in the default location of Configuration Logs directory. ($ORACLE_BASE/cfgtoollogs).
    Is recommend launch Oracle Configuration Tools (as DBCA,ASMCA,NETCA,SRVCTL,ASMCMD and so on) with only User owner of the Oracle installation. I recommend it due a tons of files and directory of ORACLE_HOME and ORACLE_BASE only user owner have permission of "RWX".
    Check permission under $ORACLE_HOME/ and you will see most of directories without permission of write to OS Group.
    I already faced some erros due try change (delete/write/read) files under ORACLE_HOME/ORACLE_BASE using Oracle Utilities with non-owner Oracle Software. So, I always apply this rule on my company, ALL Oracle Tools that change ORACLE_HOME (i.e configuration files), must be executed with Oracle Software Owner.
    If you give permission to group oinstall (rwx) on directory $ORACLE_BASE/cfgtoollogs/asmca this trace will be written on Configuration Logs directory and will not show the trace on your terminal. I don't recommend do that,because you can solve problem of trace but other errors can be raised due wrong permission.
    Hope this help,
    Levi Pereira
    Edited by: Levi Pereira on Aug 24, 2012 1:09 PMThat would be it. oinstall (of which I am a member) has r-x, not rwx.
    I really have no need to change the permissions. I already have a self-imposed rule to do oracle work as oracle. But I happend to be logged on as me and wanted to just do a quick check of some values (no modifications) when I noticed this behavior. That, of course, led me on a quest for an explanation.
    Thanks for the solution.

  • Console not showing trace statement output

    Hello,
    I have set up Flash Builder 4.6 for the first time for an ActionScript project. All good so far except that the console window doesn't show the output from my simple trace statement for my first little Hello World tester? There wasn't a console window on the workspace so I added one but on Run it says
    No consoles to display at this time.
    What do I need to do?
    Any help much appreciated...
    Steve

    I don't see any attempt to assign text to any textfields in your code.  What code are you using that is not working? Where would you be trying to assign to these textfields in your code?  You need to create two textfields and give them instance names.  Then, in your code, you assign the x and y values to those textfeilds...
    tFieldX.text = String(mCoordPlane.mAlignment.x);
    tFieldY.text = String(mCoordPlane.mAlignment.y);
    I also don't see any code relative to checking the position of the mCoordPlane.mAlignment to show a message.  After that object changes position you should have a conditional to test if its x,y properties are 0,0, and then assign to a textfield for that message or make a moviewclip appear that has that message, or whatever your intention is for displaying a message.
    if(mCoordPlane.mAlignment.x == 0 && mCoordPlane.mAlignment.y == 0){
         messageField.text = "aligned";
    You may end up having issues with accuracy regarding geting a zero value since you are operating with decimal value changes... meaning you may not get exactly 0,0 values.
    Also, in the code you showed there is unnecessary repetition of these lines...
            trace(mCoordPlane.mAlignment.x);
            trace(mCoordPlane.mAlignment.y);
    If each conditional includes it, then you only need to have it once at the end after the conditionals

  • Troubleshooting of 370 A tektroniks curve tracer. Output get disabled when we increase the current to the device.how to troubleshoot?

    Output get disabled for Tektronics 370 A curve tracer when i apply current to the device from curve tracer. Please give me some iea to troubleshoot the problem.

    hello,
    i don't have tools needed but , i see one thing is that you enqueue 
    every time you are greater 3 that means about every 2-3 ms so consumer is really   sought
    is it really what you want ?
    may be you want to start on a treshold so you can use a treshold fonction 
    if i don't make mistake your square is 10 hz and the daq is configured 25000 sample 25000 hz
    so you aquire 1s of signal every 100ms , there is something to correct
    make tests and tell us
    Regards
    Tinnitus
    CLAD / Labview 2011, Win Xp
    Mission d'une semaine- à plusieurs mois laissez moi un MP...
    RP et Midi-pyrénées .Km+++ si possibilité de télétravail
    Kudos always accepted / Les petits clicks jaunes sont toujours appréciés
    Don't forget to valid a good answer / pensez à valider une réponse correcte

  • How to trace to output console?

    I use
         - window 7 (64bit)
         - Flash builder 4.6
         - Ant
         - flash debugger player10
    I complied with mxmlc and ant. Then i excuted swf.
    But trace() didn't work.
    Any idea what to do?
    Thanks
    [ant tag]
    <target name="SimpleTest_compile">
      <mxmlc file="${test.dir}/objProxy_Test.as" output="${web.dir}/SimpleTest.swf">
       <debug>true</debug>
       <incremental>false</incremental>
       <default-size width="300" height="300" />
       <default-frame-rate>60</default-frame-rate>
       <actionscript-file-encoding>UTF-8</actionscript-file-encoding>
       <default-background-color>0xFFFFFF</default-background-color>
       <load-config filename="${flex4sdk.home.dir}/frameworks/flex-config.xml" />
       <static-link-runtime-shared-libraries>true</static-link-runtime-shared-libraries>
       <source-path path-element="${src.dir}" />
       <source-path path-element="${test.dir}" />
       <compiler.include-libraries dir="${basedir}/web/" append="true">
         <include name="Testt.swc" />
       </compiler.include-libraries>
      </mxmlc>
    </target>
    <target name="SimpleTest_run">
      <exec executable="${flashDebugPlayer.exe}">
       <arg line="${web.dir}/SimpleTest.swf" />
      </exec>
    </target>

    For the record, I ended up using Logwatcher - it worked perfectly.
    http://graysky.sourceforge.net/

  • Showing Trace from Output Window on Stage

    I am currently developing a flash application that would allow a user to control a movieclip on the stage using 2 keyboard inputs (like turning 2 knobs in order to align something).  I have it set up that on the 2 keyboard inputs, the movieclip moves.  What I am looking at doing is using trace statements that I use to track the position of the movieclip, which is just a simple black dot, and having the values of the trace statement show up on screen in 2 dynamic text fields, after being rounded to the nearest whole integer.
    The dot is in the movieclip entitled mCoordPlane.
    My script is below:
    stop();
    mAligned.visible=false;
    mNotAligned.visible=false;
    var letterK:Boolean=false;
    var letterJ:Boolean=false;
    var letterD:Boolean=false;
    var letterF:Boolean=false;
    stage.addEventListener(KeyboardEvent.KEY_UP, nokeyHit);
    stage.addEventListener(KeyboardEvent.KEY_DOWN, keyHit);
    stage.addEventListener(Event.ENTER_FRAME, moveAlignment);
    function keyHit(event:KeyboardEvent):void {
        switch (event.keyCode) {
            case event.keyCode=75 :
                letterK=true;
                break;
            case event.keyCode=74 :
                letterJ=true;
                break;
            case event.keyCode=68 :
                letterD=true;
                break;
            case event.keyCode=70 :
                letterF=true;
                break;
    function nokeyHit(event:KeyboardEvent):void {
        switch (event.keyCode) {
            case event.keyCode=75 :
                letterK=false;
                break;
            case event.keyCode=74 :
                letterJ=false;
                break;
            case event.keyCode=68 :
                letterD=false;
                break;
            case event.keyCode=70 :
                letterF=false;
                break;
    function moveAlignment(event:Event):void {
        var speed:Number=.5;
        if (letterJ) {
            mRight.rotation-=speed;
            mCoordPlane.mAlignment.x-=.1;
            mCoordPlane.mAlignment.y+=.1;
            trace(mCoordPlane.mAlignment.x);
            trace(mCoordPlane.mAlignment.y);
        if (letterK) {
            mRight.rotation+=speed;
            mCoordPlane.mAlignment.x+=.1;
            mCoordPlane.mAlignment.y-=.1;
            trace(mCoordPlane.mAlignment.x);
            trace(mCoordPlane.mAlignment.y);
        if (letterD) {
            mLeft.rotation-=speed;
            mCoordPlane.mAlignment.x+=.1;
            mCoordPlane.mAlignment.y+=.1;
            trace(mCoordPlane.mAlignment.x);
            trace(mCoordPlane.mAlignment.y);
        if (letterF) {
            mLeft.rotation+=speed;
            mCoordPlane.mAlignment.x-=.1;
            mCoordPlane.mAlignment.y-=.1;
            trace(mCoordPlane.mAlignment.x);
            trace(mCoordPlane.mAlignment.y);

    I don't see any attempt to assign text to any textfields in your code.  What code are you using that is not working? Where would you be trying to assign to these textfields in your code?  You need to create two textfields and give them instance names.  Then, in your code, you assign the x and y values to those textfeilds...
    tFieldX.text = String(mCoordPlane.mAlignment.x);
    tFieldY.text = String(mCoordPlane.mAlignment.y);
    I also don't see any code relative to checking the position of the mCoordPlane.mAlignment to show a message.  After that object changes position you should have a conditional to test if its x,y properties are 0,0, and then assign to a textfield for that message or make a moviewclip appear that has that message, or whatever your intention is for displaying a message.
    if(mCoordPlane.mAlignment.x == 0 && mCoordPlane.mAlignment.y == 0){
         messageField.text = "aligned";
    You may end up having issues with accuracy regarding geting a zero value since you are operating with decimal value changes... meaning you may not get exactly 0,0 values.
    Also, in the code you showed there is unnecessary repetition of these lines...
            trace(mCoordPlane.mAlignment.x);
            trace(mCoordPlane.mAlignment.y);
    If each conditional includes it, then you only need to have it once at the end after the conditionals

  • Trace statement outputs html code

    I am trying to get a trace statement to just out put the
    contents of a dynamic text field.
    What I get is this...
    <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT
    FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0"
    KERNING="0">welcome to my
    problem</FONT></P></TEXTFORMAT>
    ABC
    <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT
    FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0"
    KERNING="0">welcome to my
    problem</FONT></P></TEXTFORMAT>.html
    any help would be great.
    Thanks
    Bill

    disable the html property of your textfied. and/or uncheck
    the auto-kern box.

  • Why using afxDump now in VS2013 generates extra TRACE output

    Hi,
    since using VS2013 instead of VS2010 old code using the afxDump object creates "extra" output.
    Something like:
    d:\...\bcgcbpro\bcgcbpro.cpp(39) : atlTraceGeneral - BCGCBPRO.DLL Initializing!
    The reason for the TRACE related output is to be found in "dumpcont.cpp":
    void CDumpContext::OutputString(LPCTSTR lpsz)
    // use C-runtime/OutputDebugString when m_pFile is NULL
    if (m_pFile == NULL)
    TRACE(atlTraceGeneral, 0, _T("%s"), lpsz);
    return;
    ASSERT( lpsz != NULL );
    if( lpsz == NULL )
    AfxThrowUserException();
    // otherwise, write the string to the file
    m_pFile->Write(lpsz, static_cast<UINT>(_tcslen(lpsz))*sizeof(TCHAR));
    One of the most unreadable outputs via afxDump is:
    f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - CRibbonButtonf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - @ f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - $0BB99940f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - disabledf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open Objectf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - " (description "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open the object referenced in the current cell.f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", tooltip "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open Objectf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", image sizef:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - s f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - (f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 16f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - x f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 16f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - )f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - /f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - (f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 32f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - x f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 32f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - )f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - , image indexes f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 27f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - /f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 27f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - , keys "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - OOf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ) -> f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 34329f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - / f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - CRibbonItemResources { ID f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - 34329f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - , resource "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open the object referenced in the current cell.\nOpen Object\nOpen Objectf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", name "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open Objectf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", tooltip "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open Objectf:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", description "f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - Open the object referenced in the current cell.f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - ", from f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - module f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - $43000000f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral - }f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral -
    Is there any chance to switch the TRACE output off?
    Since the big changes in the ATL library and since the AtlTraceTool got unnecessary removed from the distribution ... how to configure TRACE output?
    Best regards,
    Martin
    Martin Lemburg Berlin / Germany
    Martin0815@twitter
    martinlemburg@facebook
    http://about.me/Martin0815

    Hello Together,
    I have got this issue now in porting Sources from VS2010 (vc10) to VS2013 (vc12)
    The recommended fixes in 
    https://social.msdn.microsoft.com/Forums/en-US/cfc569ef-e229-4559-b245-ece2bba1e238/getting-rid-of-atltracegeneral-category-shown-in-atltrace-output?forum=vcgeneral
    defining ATLTRACE and ATLTRACE2 with own Custom Methods worked fine for me. All
    simple TRACE - calls  but only in my own code was handled better.
    But afxDump - Output is not affected by this change. 
    After some investigation I believe the here suggested tip
    ATL::CTrace::SetLevel(ATL::CTrace::DisableTracing);
    will also not produce the expected results, because it will simply disable all the afxDump-Output. by returning the method.
    I believe, Microsoft has to implement some flags to configure and suppress filename/category-Output for afxDump (CDumpContext), and finally in _CrtDbgReportW because CTrace::TraceV will finally run in
    this method. So, the output of 3rd-party assemblies could also be affected. (probably also for ATLTRACE, ATLTRACE2 to avoid own override of TraceImplementation.
    In this case I will see dump output, but without filename/category
    eg. 
    #ifdef _DEBUG
    afxDump << "ValidateName: returns <" << fileName << "> \n";
    #endif
    should return simple (old) output
    ValidateName: returns<SomeTestFileName> 
    instead of funny:
    f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral -
    ValidateName: returns <f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral -SomeTestFileNamef:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\dumpcont.cpp(23) : atlTraceGeneral
    - > 
    I think, I will replace some of these simple afxDumps with simple TRACE with pre-formatted-single string.
    Best regards
    Dietmar.

  • AS3: outputting trace() content to external txt file

    the question's in the title. ive got a swf but i've gotta run
    it on a nokia n800, which means trace() content will be lost and -
    boy! - do i need it!
    so how can i set my swf up to output its trace content to an
    external txt file?

    hello kglad
    well, not 'lost' thats misleading, sorry. i mean: the swf
    will be running on a browser outside the flash authorising
    environment so the output window won't be accessible, therefore i
    need a way of printing out the trace() output to another source.
    the help files say that trace() can output to the output window OR
    to an external txt file. only it doesnt actually go on to say quite
    HOW you can output to said external txt file, rather
    irritatingly..

  • Write trace to Citadel

    I'm trying to take spreadsheet data and write it to individual traces inside DSC2012 to a Citadel 5 database. I keep getting an error -1967386570 Data has Back in time timestamp.
    Searching the NI website, back in 2006 there was a way to do this with a vi server.
    http://www.ni.com/white-paper/3485/en
    Is this still possible with the current DSC version?
    From the 2012 DSC help file.
    Writing a Value to a Citadel Trace (DSC Module)
    You can use the Write Trace VI to append a data point to a Citadel trace. Complete the following steps to write a value:
    Add the Write Trace VI on the block diagram.
     Add  Find
    Wire the trace reference output of the Open Trace VI to the trace referenceinput of the Write Trace VI.
    Wire the value and timestamp inputs of the Write Trace VI. Leave the timestamp input unwired to use the current time. The Write Trace VI fails if the timestamp input is earlier than the timestamp of the last point written to the trace. You can determine the timestamp of the last point in the trace using the Get Trace Info VI.
    So, is it no longer possible to write old data into Citadel traces?
    I also saw some posts about a registry key for Citadel 5 about server timestamps, but I don't see a registry key where that note says it should be located.
    Logging Back-in-Time
    Most data logging systems generate ever-increasing time stamps. However, if you manually set the system clock back-in-time, or if an automatic time synchronization service resets the system clock during logging, a back-in-time data point might be logged. Citadel handles this case in two ways.
    When a point is logged back-in-time, Citadel checks to see if the difference between the point time stamp and the last time stamp in the trace is less than the larger of the global back-in-time tolerance and the time precision of the subtrace. If the time is within the tolerance, Citadel ignores the difference and logs the point using the last time stamp in the trace. For example, the Shared Variable Engine in LabVIEW 8.0 and later uses a tolerance level of 10 seconds. Thus, if the system clock is set backwards up to ten seconds from the previous time stamp, a value is logged in the database on a data change, but the time stamp is set equal to the previous logged point. If the time is set backwards farther than 10 seconds, Citadel creates a new subtrace and begins logging from that time stamp.
    Beginning with LabVIEW DSC 8.0, you can define a global back-in-time tolerance in the system registry. Earlier versions of DSC or Lookout always log back-in-time points. Use the backInTimeToleranceMS key located in the HKLM\SOFTWARE\National Instruments\Citadel\5.0 directory. Specify this value in milliseconds. The default value is 0, which indicates no global tolerance.
    This key doesn't exist on my system.
    This link from July 2012 seems to mention that it is still possible to use custom timestamps.
    http://www.ni.com/white-paper/6579/en
    Citadel Writing API
    The DSC Module 8.0 and later include an API for writing data directly to a Citadel trace. This API is useful to perform the following operations:
    · Implement a data redundancy system for LabVIEW Real-Time targets.
    · Record data in a Citadel trace faster than can be achieved with a shared variable.
    · Write trace data using custom time stamps.
    The Citadel writing API inserts trace data point-by-point with either user-specified or server-generated time stamps.
    Is there some more documentation out there that explains this process a bit better?

    Hi unclebump,
    I have been trying to determine what the best course of action would be and I think you need to move the data to a new trace. What I am thinking is for you to open a reference to the trace as it currently exists. Then you will need to read in all the data of that trace. While you read that trace you should also be reading in the data from your file. Once you have both sets of data you will need to iterate over all the data and merge the two sets of data based off their timestamps. The VIs to accomplish this should all exist in the DSC Palette >> Historical or DSC >> Historical >> Database Writing. There is a writing example in the example finder that is called Database Direct Write Demo that would probably be worth looking at. The write trace help says, "
    This VI returns an error if you try to write a point with a timestamp that is earlier than the timestamp of the last point written to the trace." which means that if your data is merged and written in order you should not get this error.
    Hope this helps and let me know if you have any questions.
    Patrick H | National Instruments | Software Engineer

  • About Trace file

    Hi
    Can I create a trace file as my desire name in Udump folder? Because there are so many trc files in my udump folder. If I soft by date also, i can't recognize my trace file which is recently created.
    Please advise...!!
    Regards
    Arpitha

    Hi
    How to see the following output of TKPROF for a query? and also how to see the Wait events info? Please help me?
    My query
    SELECT * FROM emp, dept
    WHERE emp.deptno = dept.deptno;I would like to see the trace file output like this...
    call   count      cpu    elapsed     disk    query current    rows
    Parse     11     0.08      0.18        0       0       0         0
    Execute   11     0.23      0.66        0       3       6         0
    Fetch     35     6.70      6.83      100   12326       2       824
    total     57     7.01      7.67      100   12329       8       826
    Misses in library cache during parse: 0 Wait events info.
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      db file sequential read                      8084        0.12          5.34
      direct path write                             834        0.00          0.00
      direct path write temp                        834        0.00          0.05
      db file parallel read                           8        1.53          5.51
      db file scattered read                       4180        0.07          1.45
      direct path read                             7082        0.00          0.05
      direct path read temp                        7082        0.00          0.44
      rdbms ipc reply                                20        0.00          0.01
      SQL*Net message to client                       1        0.00          0.00
      SQL*Net message from client                     1        0.00          0.00please help me in this regard..!!

  • Examine error in trace file

    hi there,
    is there a possiblity to change the configuration of the trace file output with tkprof therefore the complete error message can be seen?
    the output of the tkprof is like the following
    The following statement encountered a error during parse:
    select col1, col2 ...
    Error encountered: ORA-00918
    => the select statement will not be shown completely but will be cut.
    neither in the tkprof output file nor in the original trace file the complete statement can be found.
    can this be modified with a configuration change of the trace output?
    thanks Stefan

    The trace output is the trace output is the trace output.
    And without a version (I guess you are being beaten up for every character you type here?) it is difficult to tell what is going on.
    It didn't use to be that way.
    You can either dump the errorstack for event 918, using dbms_system.set_ev or dbms_monitor (whatever applies to your version)
    or write an on_servererror trigger.
    A sample trigger can be found on http://asktom.oracle.com
    Sybrand Bakker
    Senior Oracle DBA

  • SQL*NET waits in trace file

    Hi All,
    There is a long running query, i generated trace file for this request. In trace file i found that there are huge waits on SQL*Net message from client
    The below is the trace file output:
    Elapsed times include waiting on following events:
    Event waited on Times Waited Max. Wait Total Waited
    SQL*Net message to client 16 0.00 0.00
    SQL*Net more data to client 17 0.00 0.00
    db file sequential read 1450 0.02 4.26
    SQL*Net message from client 16 1414.20 2702.84
    How to resolve this waits from SQL*NET message from client? I checked the network connection, there is no delays in network.
    Any inputs on this issue will be appreciated.

    As Satish indicated, the "SQL*Net message from client" wait is an event which indicates that the database server was waiting for the next request from the client computer, and not an indication that the query needs to be tuned. Manually review the trace file. At one point in the trace file, you will see this wait event with an ela= value which begins with 14142 - please post to this thread that line from the trace file along with the 20 lines before that line and the 20 lines after that line. You may just have a long wait on this event at the beginning, and another long wait on this event at the end of the query.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

Maybe you are looking for

  • C4380 connecting to N router using WPA2

    I am having issues connecting wirelessly and need to find the software online here to do so. However, I have been reading that to use this printer wirelesly, you need to use WPA not WPA2 which is the preferd mode to get the best Speed.  Is this true

  • How to create menus for a particular file

    Hello all, can anyone solve my problem really i am totally fed up for writing logic for the following file , what iam doing is i have a file like this aaa.mmm.ggg=/aaa/bbb aaa.clock=/usr/sbin/clock sss.jot=/user/pmsdev/bin/jot sss.netscape=/usr/BIN/n

  • HT1316 if i dont know what my sim passcode is how do i unlock it?

    if i dont know what my sim passcode is how do i unlock it?

  • Sluggish performance in EM for soa11g PS2

    I noticed recently on our SOA11g (PS2) environments that after we install AIA FP11gR1, with all the composites active, the performance in Enterprise Manager become unbearable slow. I have to shutdown unneeded composites to get the performance back. I

  • Embedding flash videos into Teaming 2.0 landing pages?

    Hi All, I was wondering whether it is possible to insert flash vidoes (swf, flv) into Teaming 2 and make them play on the landing pages and thus make them more attractive? Any hints would be greatly appreciated! Thanks, Jan