Exception behavior

Hi,
I have question about scheduler exception behavior. Currently, I have this chain:
DATA_PREP -> BUILD_1 -> TEST_1
-> BUILD_2 -> TEST_2 -> CLEAN_UP
The DATA_PREP is the first step and the CLEAN_UP is the last step. The DATA_PREP prepares the common data to be used by BOTH BUILD_1 and BUILD_2. The CLEAN_UP is executed upon TEST_1 AND TEST_2 completion, and it will clean up any temp tables that were created in the DATA_PREP step. If there is any exception in the BUILD step, I will NOT raise the exception to the scheduler. Because doing so will stall the chain, thus prevent the CLEAN_UP step to process. In this case, I will "eat" the exception and make the dependent TEST step state to SKIP, so the control flow will eventually get to the CLEAN_UP step. The problem with this approach is the FAILURE state doesn't reflect in the chain step meta data (and maybe confusion to the user looking at the meta data). Any better way to handle the exception case and have the clean up processed.
Thanks,
Denny

I think I may not need the FAIL step, I just need to
change the rule to handle the FAIL state .That would work too, just change the rule to be "step completed" instead of "step succeeded" then the failed build steps will be visible in the chain history/logs.
How does a step get into the "STOPPED" state?If a step is running, you can do dbms_scheduler.stop_job('schema.job.step') and the step will be stopped. Or if the database is shutdown while a chain step is running, when the database is restarted the step will be marked stopped.
How do I stop the Chain, just disable the chain?You can't really stop a chain since it doesn't directly run but you can stop the job running the chain by using dbms_scheduler.stop_job('jobname')
All the running steps still run into completion?If you stop a job that is running a chain then all running steps will be stopped. If you disable the job, then it will run to completion.
If the db is shut down while the chain is running,
what happens? Will the chain be rerun again next
time the db is up?In this case, when that database is started, all chain steps that were running are marked stopped and the chain continues from that point.
Hope this helps,
Ravi.

Similar Messages

  • [OT] surprising instance variable initialization exception behavior

    No real question here. Just something that caught me quite off guard. I thought I understood the object instantiation process pretty well, but there's clearly at least one significant gap in my knowledge.
    Not surprisingly, the following gives "Error:Error:line (4)unreported exception java.lang.Exception; must be caught or declared to be thrown" for the new WTF2() line.
    public class WTF1 {
      private final WTF2 wtf2 = new WTF2();
      WTF1() /* throws Exception */ {}
    class WTF2 {
      WTF2() throws Exception {}
    }Quite surprisingly (to me at least) if we uncomment "throws Exception" in the WTF1() c'tor declaration, the compiler is happy.
    Reading [JLS 12.5 Creation of New Class Instances|http://java.sun.com/docs/books/jls/third_edition/html/execution.html#12.5], I can see that executing the instance initializers is step 4 of "the indicated constructor is processed to initialize the new object using the following procedure", so I guess I can see how executing the initializer can be considered "part of" executing the c'tor, and hence covered by its catch block. It just looks a little weird, and I always thought that the initializer executed before the c'tor, and had to catch checked exceptions.
    Now that I've learned something, I'm ready to count this day as a win and head to the pub. :-)

    BIJ001 wrote:
    wtf2 is an instance variable, so (the appropriate copy) must be initialized in (every) constructor.Eh? No.
    It's final, so therefore it must have it's value set by every normal completion of every ctor. But that's irrelevant to what I'm looking at. I'm talking about the fact that the declaration/initialization line complains or doesn't based on the throws clause of the c'tor.
    I see now why it works that way, but I just thought the initializer execution was "outside of" the c'tor execution. I thought that if new WTF2() could throw a checked exception, I'd have to do something like we do for static initializers:
    private final WTF2 wtf2;
      try {
        wtf2 = new WTF2();
      catch (Exception e) {
        throw some unchecked exception
    }As it turns out, the initializer is executed "inside" the c'tor in a way I didn't expect.

  • Migrating to Solaris 9 - C++ Multithreaded X.25 application turning undead

    We have an older multithreaded C++ X.25 application that's been running without a problem for years (24x7). We upgraded the sun server from Solaris 8 to 9 and now, occasionally, the application stops working, but doesn't stop running. X.25 continues at a lower level - interrupts and RRs go back and forth, but the application level doesn't respond. The application's trace log simply stops and no errors are generated. The application has to be killed and restarted. Then after a while, it does it again about once or twice a week, I believe.
    The people who do support have looked at it, and can't find anything, so I've been asked to look into it.
    But it's on a production server on a customer site, so I don't actually have access to the server. All I can do is make changes to the application and have it installed on their server to run again.
    I looked at the changes from Solaris 8 to 9 and the only one that seemed like it could have an impact is the changes to the multithreading implementation. I did come across a hint that there was a change somehow to interrupts and the last trace log messages was printed during a sigalrm interrupt. But that's not as likely because the change seemed to refer more to whether interrupts were considered idle time or not.
    This application doesn't actually need to be multithreaded - the guy who wrote it 9 years ago was new to C++ and mutlithreading (had just taken a course) and got a bit carried away. It's a bit of a convoluted monster and everyone hates to touch it - which is why I (Ms. contractor) get it :-) One option is to remove the threads, but this application is in a lot of sites and the company is reluctant right now to let me make such a drastic change. It mike be required though, because they are planning to upgrade other customers to Solaris 9 and they don't want to face this problem with the busier customers.
    Has anyone come across any problems with threading moving to Solaris 9? Or does anyone have any suggestion for any debugging that I can add to the applicaton itself to help clear up the mystery?
    Any help or advice is appreciated,
    Stefani

    You replacement for operator new violates the requirements of the C++ standard, and a program using it has undefined behavior. The program could fail to compile, fail to link, fail in unknown ways at run time, or (by accident) do what you want it to do.
    You can write your own "placement new" operator that has any exception behavior that you want. But if you replace the library version of operator new, you must follow exactly the requirements listed in the C++ standard, sections 3.7.3 "Dynamic storage duration", and 18.4 "Dynamic memory management".
    I can't reproduce all the text here, but in particular a replacement operator new must have the signature
    void* operator new(std::size_t) throw(std::bad_alloc); // single-object form
    void* operator new(std::size_t) throw(std::bad_alloc); // array form

  • How to track bug - Program stopped responding.

    Occasionaly my app crashes with just the common Windows' message - Program stopped responding. I get no error message. How to track the bug?
    ... Podlesnick ...

    Sounds like there's an unhandled exception that's perhaps occurring on a background thread.  I suggest adding an event handler for your AppDomain's UnhandledException event and putting some logging in there:
    https://msdn.microsoft.com/en-us/library/system.appdomain.unhandledexception%28v=vs.110%29.aspx
    You may also need to modify your application's default unhandled exception behavior:
    https://msdn.microsoft.com/en-us/library/ms157905%28v=vs.110%29.aspx
    The information on the above pages should be enough to ensure almost* all exceptions can get caught by your code before triggering Windows Error Reporting.
    (*Exceptions caused by the whole system being in an unstable state, such as a kernel mode issue, may not be caught - at that point all bets are off).
    Quanta,
        I think that there is a bug in your thinking.
     - I agree that a worker thread may cause a Kernel error
     - I agree that this kernel error may cause the application to get unstable and can cause the UI thread to start to hang waiting for a return value
     - And I agree that if this happen then this message will pop 
    However,
     - If the error was silent, it is that the worker thread never returned (Otherwise, the error would have been propagated.
     - If the message has popped, it is that the UI thread is hanging (deadlocked)
    Then if all your threads are blocked, ... Which thread will raise the Unhanded exception event?? ... all your threads are stopped or blocked somewhere.
    This is why In the code example I showed, I used a Timers.timer to create the exception and stop the application. The Timers.timer object bring a new thread in the application when the application start to hang. This thread can be used to resolve the situation.
    I choose to Abort the UI thread as it is the only logical thing to do. Plus doing this gives us the stack trace and info needed for debugging

  • Can BIP excel output calculate result automatically?

    I have generated the output file with XML format. but i had one question:
    the cell doesn't calculate automatically, it still show excel formula format "=H7 / ( 1 + .17)", not the result of calculation 109.90.
    BIP version:10.1.3.4.1.
    Is there any solution or this is the excepted behavior?
    Thanks...
    Edited by: user12941779 on May 3, 2011 6:59 PM

    Jackie,
    if you use rtf or excel templates that's possible. How to use a rtf-template for this you can see here: http://www.oracle.com/webfolder/technetwork/de/community/bip/tipps/rtf_to_excel/index_en.html
    Regards
    Rainer

  • Batch Updates using JDBC 2.0

    Dear all,
    I am trying to use a PreparedStatment's batchUpdate() method. Here is the problem.
    I get an exception if there is a duplicate entry, and that blows up the entire batch. This leaves me with no room for error checking as to where this error had occurred.
    How do I know at which row I got the error? How can I make the batchUpdate() execution to ignore the error and continue?
    Thanks,
    -rrvvg

    This is a case where reading the Java documentation will help you. Here is the link to
    int[] executeBatch() throws SQLException.
    http://java.sun.com/j2se/1.5.0/docs/api/java/sql/Statement.html#executeBatch()
    I know this isn't code showing you how to do it, but I think it does a good job of explaining how to handle your situation. The documentation clearly states that you also need to see the documentation of your specific JDBC driver because Exception behavior is defined by the driver and can be different between vendor offerings..

  • I think my dedicated TDMS Central filesystem is too big

    I have a dedicated TDMS Central System on NW7. Currently the /oracle/TDM is 50GB. I don't have anything else on the system. And I've only done 1 data transfer. Is this kind of size acceptable? How can I reduce this filesystem utilization?
    BTW, my os is AIX 5.3 and my rdbms is Oracle 10g
    regards,
    MJ

    Hello Param,
    Here are the answers to your questions:
    1.  What are the prons and cons of using Solution manager system compared to using a separate system for the TDMS server
    => There are no exceptional behaviors in using Solution manager or the seperate system for using as the Central system.
    The recommended configuration (with regard to data security and performance) is to implement the
    TDMS server separately. Typically, this would mean that the TDMS server is installed on a
    machine of its own. However it is also possible to operate it, for example, in an SAP Solution
    Manager system.
    2.  When we use a separate system for the TDMS server, what needs to be installed first before we addon the addons using SAINT? Install a ABAP stack using EHP1 Cd or install a ABAP stack (using NW7.0 non Ehp1)
    ==> You can use any combination which is higher than SAP_BAIS 620.
    Please check SAPnote # 1231203
    3. Should we have two clients for TDMS server, one for using as Central and one for using as control
    ==> The TDMS server, which includes:
    o A central system (client) on which the settings and customizing for the setup of
    the non-production system are stored
    o A control system (client) from which almost all activities for SAP TDMS are
    triggered and monitored.
    Any of the systems except the receiver system may also be used as the control system. The
    reason why the receiver system should not be used as the central system or control system is that
    the historical data for SAP TDMS needs to be stored permanently, while the receiver system is
    meant to be refreshed at regular intervals.
    You can find more inforation in the TDMS operations guide which is available at SAP Service Marketplace.
    Best Regards
    Niraj

  • Exception in Behavior

    Hello!
    Well here's the thing. Me and my groupmates were supposed to create a simulation of a bacteria. So we have to do some "division". So far, I've encountered a lot of problems in doing the project since Ive only started using java3d this month. Now, my major concern is this exception i get with my behavior class. well, i made nested classes so that i could access some information from the other classes through the global variables. It worked ok but when i decided to do some collision detection, i started getting an exception. Guys!!!Please help me out!
    Here's the code for my behavior class
    class AcidTolerantRhizobiaBehavior1 extends Behavior{
              private TransformGroup targetTG;
              WakeupCriterion[] criterion;
              WakeupOnElapsedTime wake;
              WakeupOr oredCriteria;
              int ctrTester = 0;
              // create SimpleBehavior - set TG object of change
              AcidTolerantRhizobiaBehavior1(TransformGroup targetTGInput){
              targetTG = targetTGInput;
              System.out.println("hello");
              // initialize the Behavior
              // set initial wakeup condition
              // called when behavior becomes live
              public void initialize(){
                   // set initial wakeup condition
                   criterion = new WakeupCriterion[4];
                   criterion[0] = new WakeupOnElapsedTime(150);
                   criterion[1] = new WakeupOnCollisionEntry(targetTG);
              criterion[2] = new WakeupOnCollisionExit(targetTG);
              criterion[3] = new WakeupOnCollisionMovement(targetTG);
              oredCriteria = new WakeupOr(criterion);
              wakeupOn(oredCriteria);
              // called by Java 3D when appropriate stimulus occurs
              public void processStimulus(Enumeration criteria){
                   // do what is necessary in response to stimulus
                   //if (criteria.hasMoreElements()){
                   WakeupCriterion theCriterion = (WakeupCriterion) criteria.nextElement();
              if (theCriterion instanceof WakeupOnCollisionEntry) {
                   tester = false;
                   ctrTester = 0;
              Node theLeaf = ((WakeupOnCollisionEntry) theCriterion)
              .getTriggeringPath().getObject();
              System.out.println("Collided with " + theLeaf.getUserData());
              } else if (theCriterion instanceof WakeupOnCollisionExit) {
              Node theLeaf = ((WakeupOnCollisionExit) theCriterion)
              .getTriggeringPath().getObject();
              System.out.println("Stopped colliding with "
              + theLeaf.getUserData());
              tester = false;
              ctrTester = 0;
              } else if (theCriterion instanceof WakeupOnCollisionMovement){
              Node theLeaf = ((WakeupOnCollisionMovement) theCriterion)
              .getTriggeringPath().getObject();
              System.out.println("Moved whilst colliding with "
              + theLeaf.getUserData());
              tester = false;
              ctrTester = 0;
                   else {
              System.out.println("hello");
                   Vector3f currentLocation = new Vector3f();
                   Transform3D tempTransform = new Transform3D();
                   //assign the transform3d of the target to tempTransform
                   targetTG.getTransform(tempTransform);
                   //get the currentlocation of the object
                   tempTransform.get(currentLocation);
                   System.out.println(currentLocation);
                   TransformGroup tg = targetTG;
                   double cmp = Math.random();
                   Vector3f newLocation = null;
                   if((cmp >= 0.0)&&(cmp <=0.25))
                        newLocation = new Vector3f(currentLocation.x + .5f, currentLocation.y , currentLocation.z);
                   else if((cmp > 0.25)&&(cmp <=0.5))
                        newLocation = new Vector3f(currentLocation.x , currentLocation.y , currentLocation.z+ .5f);
                   else if((cmp > 0.5)&&(cmp <=0.75))
                        newLocation = new Vector3f(currentLocation.x - .5f, currentLocation.y , currentLocation.z);
                   else if((cmp > 0.75)&&(cmp <=1.0))
                        newLocation = new Vector3f(currentLocation.x, currentLocation.y , currentLocation.z - .5f);
                   tempTransform.set(newLocation);
                   targetTG.setTransform(tempTransform);
                   if(ctrTester == 10){
                        tester = true;
                        ctrTester = 0;
                        idWillMultiply.add(id + ""); //idWillMultiply contains the id's of the bacteria that will multiply
                   //this.initialize();                     
                   ctrTester++;
                   wakeupOn(oredCriteria);
    ....and the exception goes like this:
    Exception occurred during Behavior execution:
    java.util.NoSuchElementException: No more criterion
         at javax.media.j3d.WakeupCriteriaEnumerator.nextElement(WakeupCriteriaEnumerator.java:130)
         at simulation1$AcidTolerantRhizobia1$AcidTolerantRhizobiaBehavior1.processStimulus(simulation1.java:477)
         at javax.media.j3d.BehaviorScheduler.doWork(BehaviorScheduler.java:172)
         at javax.media.j3d.J3dThread.run(J3dThread.java:256)
    And it's really driving me nuts because i have to get it done this week and so far i got stuck with this problem.help!

    I recently, was very much helped by this website: http://www.articles.maindevice.com/ or http://www.maindevice.com/
    Here many technical articles.
    How you think it interesting article? - " Does a Smartphone Beat a Laptop "
    HERE: http: // www.articles.maindevice.com/mobile_art_10.htm
    sourse: http: // www.articles.maindevice.com/

  • TaskFlow Exception Handler Behavior

    Hi all,
    I have a question about taskflow exception handler.
    My customer is using method-call exception handler to display error detail as FacesMessage dialog in their taskflow.
    And they are now trying to find the way to call exception handler but not to show the dialog in case that some sort of exceptions happen.
    To achieve this requirement they delete FacesContext.addMesage() from their exception handler, but when not call addMessage() they always get return code 500 (internal server error).
    From the behavior we've got, do we always need to call addMessage() in it to come back to original page?
    Regards,
    Atsushi

    Hi Frank,
    Thank you for your reply. Please let me ask you another question.
    When method-call error handler is executed it returns an outcome. And the outcome determines the next activity I get to.
    My question is whether it is a designed behavior of method-call error handler that when the below two conditions are met I get back to the original error page to see facesMessage dialog.
    1. The method-call outcome doesn't match any control flow case
    2. addMessage() is called in the method defined at method-call
    If any, I'd like to know how to get back the original page after error handler is executed without faces message.
    Thanks,
    Atsushi

  • Exceptions, odd behavior of streaming data to outputstream

    I have a servlet which writes mp3 data to the dataoutputstream of a servlet response object. For some reason, the servlet method writes the data out and gets an exception. Then the method/servlet is called again automatically and begins to write the data out again. The exception is below. In the end the mp3 is delivered to the client fine, however with server side exceptions and odd behavior.
    try {
              int len = 0;
              resp.setContentType("audio/mpeg");
              String filename = req.getParameter("file");
              File mp3 = new File(mediaDir + filename);
              byte[] buf = new byte[1024];
              FileInputStream fis = new FileInputStream(mp3);
              DataOutputStream o = new DataOutputStream(resp.getOutputStream());
              while( (len = fis.read(buf)) != -1) {            
                 o.write(buf, 0, len);            
              o.flush();
              resp.flushBuffer();
              o.close();
              fis.close();
           catch(Exception e) {
              System.out.println(e.getMessage());
              e.printStackTrace();
    null
    ClientAbortException:  java.net.SocketException: Connection reset by peer: socket write error
         at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:366)
         at org.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:403)
         at org.apache.tomcat.util.buf.ByteChunk.append(ByteChunk.java:323)
         at org.apache.catalina.connector.OutputBuffer.writeBytes(OutputBuffer.java:392)
         at org.apache.catalina.connector.OutputBuffer.write(OutputBuffer.java:381)
         at org.apache.catalina.connector.CoyoteOutputStream.write(CoyoteOutputStream.java:76)
         at java.io.DataOutputStream.write(DataOutputStream.java:90)
         at TrafficControl.streamAudio(TrafficControl.java:639)
         at TrafficControl.processRequest(TrafficControl.java:136)
         at TrafficControl.doGet(TrafficControl.java:61)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:595)thanks
    Edited by: black_lotus on 19-Feb-2009 3:08 PM

    There are some versions of some browsers (MS IE) that can call a servlet twice; they only look at the headers at the first request, in order to decide whether to display a "save or open" dialog, or some such reason. Try different browsers; also log the User-Agent header to see if it is "contype", which is present when the multiple request thing happens.
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;q293792
    "Connection reset" can also happen if the client closes the connection without reading the entire response. Occasional resets will happen as users cancel download.
    Not a source of exceptions but something you may still want to consider when sending large responses: by default, the servlet container will have to buffer the entire file in memory to find out its length. To save memory, either set content length before writing the data, or use chunked encoding (google should find details.) That way your write() actually streams data to the user.

  • All text behaviors are missing except Text Animation

    Final Cut Studio 2 installed several weeks ago. I started up Motion 3 for the first time today. Upon clicking "Add Behavior" icon all of the text behaviors are missing except Text Animation. (ie. Text-Basic, Text-Fade, Text-Glow, etc). Am I missing something? Thanks.

    Hi,
    My problem is i have selections texts in standard program previously i have descriptions for that.
    By mistaken all the texts were disappered and selection texts are existing.
    Now i eant to enter selection text name for that.AS it is a standard program i can't change it.
    Can you please give me an idea on this.
    Thanks,
    Swapna.

  • How/where do I contact Mozilla regarding an exception thrown by Firefox which inaccurately (and arrogantly) claims user behavior as the problem?

    I'm trying to voice a complaint regarding THIS user interface ("mozilla support") and the exception message returned to me from Firefox. There's also an ACTUAL browser issue I need to resolve. Here are a few details:
    (A) I am unable to use Mozilla Firefox for much at all because it's deciding to attempt secure HTTP connections ("https://..."), seemingly at-will. Not all of the sites I've attempted to reach suggest, require, or support secure HTTP connections.
    (B) I cannot install Firebug (at least not without another browser or Fiddler), even when trying to "Confirm Security Exception" repeatedly. I get a 200 OK in my developer tools when requesting "https://addons.cdn.mozilla.net/user-media/addons/1843/firebug-2.0.7-fx.xpi", but then receive a notification stating, "The add-on could not be downloaded because of a connection failure on addons.mozilla.org."
    (C) The exception message displayed is infuriating and, in my opinion, unacceptable. It claims, "You have asked Firefox to connect securely..." as it begins describing the exception scenario. I can assure that the only thing about which I was explicit was a request to try the same URL again WITHOUT a secure connection. It sounds really arrogant to say, "Here's how YOU screwed up," when it's definitely more along the lines of, "Here's how THE BROWSER APPLICATION screwed up." If a fresh, default install of Mozilla Firefox can't even download Firebug with a healthy Internet connection (yes, in the context of an intranet but no other browsers are giving me grief), how is that my fault? Even if it is my fault, how dare Mozilla speak to its users in such a manner?
    (D) I've tried every proxy setting of which I can think, but that doesn't appear to be the issue.
    (E) Too much of my time has been wasted today attempting to relay this information to Mozilla. I was forced to navigate through five or so web pages, answering questions, such that I didn't inconvenience YOU. I've boycotted product lines and/or companies for less, and am trying to "bite my tongue" as best I can, but it shouldn't take an hour to submit a constructive feedback message along the lines of "Your browser isn't working for PRACTICALLY ANYTHING and HERE ARE THE DETAILS." I actually had to accumulate complaints in my mind so I didn't lose them throughout your feedback process (since I don't get to actually provide feedback until somewhere around the fifth step of the process).
    Thanks,
    Mike

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".
    :[[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Is Mail.app one of the "erratic" behavior apps with a reset system clock?

    I am hoping someone can help with a fine detail of mail.app (v2.1.3) behavior.
    I had an incident where an iMac sent out 200+ smtp hits a minute and was tossed of the network for presumed zombie spaming.
    I think I have actually tracked the problem to an unfortunate conjunction of circumstances that is actually innocent (if still annoying)
    Let me set up the story:
    1. This is a common use computer, so Mail is not configured (except that it is --I'll get to that in a moment) and
    2. Safari will invoke Mail when you click on an "email link"
    Mostly everyone just quits mail if they goof and click an email link.
    BUT some time ago at least one person invoked Mail and composed a message. This message, naturally, remained in the outbox ever since. That person learned that they can't send email that way, so ever since they just cmd-Q Mail.
    BUT Before this person learned, they walked through the mail-config and told mail to try hitting smtp.mac.com:"nonExistantUser".
    So that covers the lead-up. Two days ago, mail was invoked via a Safari link, BUT it wasn't quit, it was sent to the background.
    Where it undoubtedly tried to send the outbox repeatedly until it was kicked off the network.
    Here is what I don't understand:
    Under this scenario of a mis-configured .mac address, will mail repeatedly try and fail to smtp at the maximum possible rate?
    OR
    Is the one other factor I am about to describe responsible?
    The one other factor:
    The clock battery is dead and there was a power failure at 4am that day.
    The system clock reset to 1969.
    Of course, nobody reset it.
    Is mail.app one of the apps that the finder message warns "may behave erratically"?
    (a GROSS simplification) does it have a bit of code like:
    1 check time-of-last-send-mail-attempt
    check newest-item-in-outbox
    if newest-item more recent then last-send-attempt
    do send-mail and record time-of-last-send-mail-attempt
    and go to 1
    else wait X minutes and go to 1
    which, if the clock was mis-set to 1969 would always record a last-send-attempt prior to anything in the outbox and trigger a send loop.
    Does anyone know if either Mail is tenacious about sending to a bad .mac address, or gets ridiculous under this circumstance for bad-clock-set?
    Marc

    I am hoping someone can help with a fine detail of mail.app (v2.1.3) behavior.
    I had an incident where an iMac sent out 200+ smtp hits a minute and was tossed of the network for presumed zombie spaming.
    I think I have actually tracked the problem to an unfortunate conjunction of circumstances that is actually innocent (if still annoying)
    Let me set up the story:
    1. This is a common use computer, so Mail is not configured (except that it is --I'll get to that in a moment) and
    2. Safari will invoke Mail when you click on an "email link"
    Mostly everyone just quits mail if they goof and click an email link.
    BUT some time ago at least one person invoked Mail and composed a message. This message, naturally, remained in the outbox ever since. That person learned that they can't send email that way, so ever since they just cmd-Q Mail.
    BUT Before this person learned, they walked through the mail-config and told mail to try hitting smtp.mac.com:"nonExistantUser".
    So that covers the lead-up. Two days ago, mail was invoked via a Safari link, BUT it wasn't quit, it was sent to the background.
    Where it undoubtedly tried to send the outbox repeatedly until it was kicked off the network.
    Here is what I don't understand:
    Under this scenario of a mis-configured .mac address, will mail repeatedly try and fail to smtp at the maximum possible rate?
    OR
    Is the one other factor I am about to describe responsible?
    The one other factor:
    The clock battery is dead and there was a power failure at 4am that day.
    The system clock reset to 1969.
    Of course, nobody reset it.
    Is mail.app one of the apps that the finder message warns "may behave erratically"?
    (a GROSS simplification) does it have a bit of code like:
    1 check time-of-last-send-mail-attempt
    check newest-item-in-outbox
    if newest-item more recent then last-send-attempt
    do send-mail and record time-of-last-send-mail-attempt
    and go to 1
    else wait X minutes and go to 1
    which, if the clock was mis-set to 1969 would always record a last-send-attempt prior to anything in the outbox and trigger a send loop.
    Does anyone know if either Mail is tenacious about sending to a bad .mac address, or gets ridiculous under this circumstance for bad-clock-set?
    Marc

  • NULL in primary keys NOT logged to exceptions table

    Problem: Inconsistent behavior when enabling constraints using the "EXCEPTIONS INTO" clause. RDBMS Version: 9.2.0.8.0 and 10.2.0.3.0
    - NULL values in primary keys are NOT logged to exceptions table
    - NOT NULL column constraints ARE logged to exceptions table
    -- Demonstration
    -- NULL values in primary keys NOT logged to exceptions table
    TRUNCATE TABLE exceptions;
    DROP TABLE t;
    CREATE TABLE t ( x NUMBER );
    INSERT INTO t VALUES ( NULL );
    ALTER TABLE t
    ADD ( CONSTRAINT tpk PRIMARY KEY (x) EXCEPTIONS INTO exceptions );
    SELECT * FROM exceptions; -- returns no rows
    -- NOT NULL column constraints logged to exceptions table
    TRUNCATE TABLE exceptions;
    DROP TABLE t;
    CREATE TABLE t ( x NUMBER );
    INSERT INTO t VALUES ( NULL );
    ALTER TABLE t MODIFY ( X NOT NULL EXCEPTIONS INTO EXCEPTIONS );
    SELECT * FROM exceptions; -- returns one row
    I would have expected all constraint violations to be logged to exceptions. I was not able to find any documentation describing the behavior I describe above.
    Can anyone tell me if this is the intended behavior and if so, where it is documented?
    I would also appreciate it if others would confirm this behavior on their systems and say if it is what they expect.
    Thanks.
    - Doug
    P.S. Apologies for the repost from an old thread, which someone else found objectionable.

    I should have posted the output. Here it is.
    SQL>TRUNCATE TABLE exceptions;
    Table truncated.
    SQL>DROP TABLE t;
    Table dropped.
    SQL>CREATE TABLE t ( x NUMBER );
    Table created.
    SQL>INSERT INTO t VALUES ( NULL );
    1 row created.
    SQL>ALTER TABLE t ADD ( CONSTRAINT tpk PRIMARY KEY (x) EXCEPTIONS INTO exceptions );
    ALTER TABLE t ADD ( CONSTRAINT tpk PRIMARY KEY (x) EXCEPTIONS INTO exceptions )
    ERROR at line 1:
    ORA-01449: column contains NULL values; cannot alter to NOT NULL
    SQL>SELECT * FROM exceptions;
    no rows selected
    SQL>
    SQL>TRUNCATE TABLE exceptions;
    Table truncated.
    SQL>DROP TABLE t;
    Table dropped.
    SQL>CREATE TABLE t ( x NUMBER );
    Table created.
    SQL>INSERT INTO t VALUES ( NULL );
    1 row created.
    SQL>ALTER TABLE t MODIFY ( X NOT NULL EXCEPTIONS INTO EXCEPTIONS );
    ALTER TABLE t MODIFY ( X NOT NULL EXCEPTIONS INTO EXCEPTIONS )
    ERROR at line 1:
    ORA-02296: cannot enable (MYSCHEMA.) - null values found
    SQL>SELECT * FROM exceptions;
    ROW_ID OWNER TABLE_NAME CONSTRAINT
    AAAkk5AAMAAAEByAAA MYSCHEMA T T
    1 row selected.
    As you can see, I get the expected error message. But I only end up with a record in the exceptions table for the NOT NULL column constraint, not for the null primary key value.

  • First world problem: exceptionally long boot time

    no complaint, just wondering if boot-time can be improved.  Any of you who might enjoy sifting through a system.log for what might account for ostensibly lengthening boot times, I give you my most recent log and thank you in advance.
    Mar 26 10:42:27 localhost bootlog[0]: BOOT_TIME 1395848547 0
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.appstore" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
              Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.authd" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.bookstore" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.eventmonitor" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.install" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.iokit.power" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.mail" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.MessageTracer" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.performance" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:42:59 localhost syslogd[19]: Configuration Notice:
              ASL Module "com.apple.securityd" claims selected messages.
              Those messages may not appear in standard system log files or in the ASL database.
    Mar 26 10:43:03 --- last message repeated 6 times ---
    Mar 26 10:42:59 localhost kernel[0]: Longterm timer threshold: 1000 ms
    Mar 26 10:42:59 localhost kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    Mar 26 10:42:59 localhost kernel[0]: vm_page_bootstrap: 1989152 free pages and 91616 wired pages
    Mar 26 10:42:59 localhost kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    Mar 26 10:42:59 localhost kernel[0]: zone leak detection enabled
    Mar 26 10:42:59 localhost kernel[0]: "vm_compressor_mode" is 4
    Mar 26 10:42:59 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Mar 26 10:42:59 localhost kernel[0]: standard background quantum is 2500 us
    Mar 26 10:42:59 localhost kernel[0]: mig_table_max_displ = 74
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=1 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=5 Enabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=0 Disabled
    Mar 26 10:42:59 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Mar 26 10:42:59 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Mar 26 10:42:59 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Mar 26 10:42:59 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Mar 26 10:42:59 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Mar 26 10:42:59 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Mar 26 10:42:59 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Mar 26 10:42:59 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Mar 26 10:42:59 localhost kernel[0]: MAC Framework successfully initialized
    Mar 26 10:42:59 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Mar 26 10:42:59 localhost kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    Mar 26 10:42:59 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Mar 26 10:42:59 localhost kernel[0]: ACPI: sleep states S3 S4 S5
    Mar 26 10:42:59 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0024
    Mar 26 10:42:59 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    Mar 26 10:42:59 localhost kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration begin ]
    Mar 26 10:42:59 localhost kernel[0]: console relocated to 0xf80030000
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration end, bridges 7, devices 16 ]
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration begin ]
    Mar 26 10:42:59 localhost kernel[0]: [ PCI configuration end, bridges 8, devices 22 ]
    Mar 26 10:42:59 localhost kernel[0]: TBIOBlockStorageDriver: super::probe failed
    Mar 26 10:42:59 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 7c6d62fffefaec1c; max speed s800.
    Mar 26 10:42:59 localhost kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2
    Mar 26 10:42:59 localhost kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    Mar 26 10:42:59 localhost kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    Mar 26 10:42:59 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Mar 26 10:42:59 localhost kernel[0]: rooting via boot-uuid from /chosen: C9DA172B-D4C5-3F3E-A13E-2B4BCEEFB011
    Mar 26 10:42:59 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Mar 26 10:42:59 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Mar 26 10:42:59 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Mar 26 10:42:59 localhost kernel[0]: BTCOEXIST off
    Mar 26 10:42:59 localhost kernel[0]: BRCM tunables:
    Mar 26 10:42:59 localhost kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    Mar 26 10:42:59 localhost kernel[0]: com_seagate_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
    Mar 26 10:42:59 localhost kernel[0]: com_maxtor_IOPowSec00_10_5: GetVendorAndModelIDInfo failed
    Mar 26 10:42:59 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500325ASG Media/IOGUIDPartitionScheme/Customer@2
    Mar 26 10:42:59 localhost kernel[0]: BSD root: disk0s2, major 1, minor 2
    Mar 26 10:42:59 localhost kernel[0]: hfs: mounted Macintosh HDD on device root_device
    Mar 26 10:42:59 localhost kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=68[empdaemon] final status 0x0, allowing (remove VALID) page
    Mar 26 10:42:59 localhost kernel[0]: VM Swap Subsystem is ON
    Mar 26 10:42:30 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Mar 26 10:42:30 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Mar 26 10:42:52 localhost com.apple.launchd[1] (com.backblaze.bzserv[69]): Exited with code: 2
    Mar 26 10:42:52 localhost com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:42:58 localhost hidd[47]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    Mar 26 10:42:58 localhost hidd[47]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Mar 26 10:43:00 localhost com.apple.SecurityServer[25]: Session 100000 created
    Mar 26 10:43:01 localhost distnoted[71]: # distnote server daemon  absolute time: 32.923825084   civil time: Wed Mar 26 10:42:58 2014   pid: 71 uid: 0  root: yes
    Mar 26 10:43:01 localhost distnoted[71]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar 26 10:43:02 localhost com.apple.launchd[1] (com.backblaze.bzserv[77]): Exited with code: 2
    Mar 26 10:43:02 localhost com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:43:05 localhost kernel[0]: Waiting for DSMOS...
    Mar 26 10:43:05 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Mar 26 10:43:05 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Mar 26 10:43:07 localhost com.apple.launchd[1] (com.apple.Kerberos.kdc[45]): Exited with code: 1
    Mar 26 10:43:07 localhost com.apple.usbmuxd[17]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    Mar 26 10:43:08 localhost kernel[0]: rtR0InitNative: warning! failed to resolve special kernel symbols
    Mar 26 10:43:08 localhost kernel[0]: vboxdrv: fAsync=0 offMin=0xba0 offMax=0xe4c
    Mar 26 10:43:08 localhost kernel[0]: VBoxDrv: version 4.1.12 r77245; IOCtl version 0x190000; IDC version 0x10000; dev major=18
    Mar 26 10:43:08 localhost kernel[0]: fNumVRAMBlocks is 4
    Mar 26 10:43:08 localhost kernel[0]: AGC: 3.4.35, HW version=1.9.21, flags:0, features:20600
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    Mar 26 10:43:08 localhost kernel[0]: Previous Shutdown Cause: 5
    Mar 26 10:43:08 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    Mar 26 10:43:08 localhost kernel[0]: IOBluetoothUSBDFU::probe
    Mar 26 10:43:08 localhost kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8218 FirmwareVersion - 0x0042
    Mar 26 10:43:08 localhost kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x4000 ****
    Mar 26 10:43:08 localhost kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x4000 ****
    Mar 26 10:43:08 localhost kernel[0]: NVDAStartup: Official
    Mar 26 10:43:08 localhost kernel[0]: NVDANV50HAL loaded and registered
    Mar 26 10:43:08 localhost kernel[0]: init
    Mar 26 10:43:08 localhost kernel[0]: probe
    Mar 26 10:43:08 localhost kernel[0]: APExtframeBuffer starting: max resolution 1920x1080
    Mar 26 10:43:08 localhost kernel[0]: Initializing Framebuffer.
    Mar 26 10:43:08 localhost kernel[0]: start
    Mar 26 10:43:08 localhost kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x4000
    Mar 26 10:43:08 localhost kernel[0]: [IOBluetoothHCIController][start] -- completed
    Mar 26 10:43:08 localhost kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Mar 26 10:43:08 localhost kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xe500 -- 0x3000 -- 0x4000 ****
    Mar 26 10:43:08 localhost kernel[0]: IOMemoryDescriptor 0x1f0dcc19d9ba810f prepared read only
    Mar 26 10:43:08 localhost kernel[0]: Backtrace 0xffffff80006b9dbe 0xffffff7f8228e0e1 0xffffff7f82298fe2 0xffffff8000692f1f 0xffffff8000692adf 0xffffff800068e6b9 0xffffff8000693633
    Mar 26 10:43:08 localhost kernel[0]: Kernel Extensions in backtrace:
    Mar 26 10:43:08 localhost kernel[0]: com.apple.driver.AppleIntelHDGraphics(8.2.4)[84DE8845-D8E6-3C61-B457-1AC155AEF9 04]@0xffffff7f87470000->0xffffff7f8752ffff
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f859e9000
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85dd8000
    Mar 26 10:43:08 localhost kernel[0]: IOMemoryDescriptor 0x1f0dcc19d9b7f60f prepared read only
    Mar 26 10:43:08 localhost kernel[0]: Backtrace 0xffffff80006b9dbe 0xffffff7f8228e2db 0xffffff7f82298fe2 0xffffff8000692f1f 0xffffff8000692adf 0xffffff800068e6b9 0xffffff8000693633
    Mar 26 10:43:08 localhost kernel[0]: Kernel Extensions in backtrace:
    Mar 26 10:43:08 localhost kernel[0]: com.apple.driver.AppleIntelHDGraphics(8.2.4)[84DE8845-D8E6-3C61-B457-1AC155AEF9 04]@0xffffff7f87470000->0xffffff7f8752ffff
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOPCIFamily(2.9)[EDA75271-4E9D-34E7-A2C5-14F0C8817D37]@0xffffff 7f859e9000
    Mar 26 10:43:08 localhost kernel[0]: dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[4421462D-2B1F-3540-8EEA-9DFCB0565E39]@0 xffffff7f85dd8000
    Mar 26 10:43:08 localhost kernel[0]: DSMOS has arrived
    Mar 26 10:43:11 localhost kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,0301,0de1,0300,41e1,0000]
    Mar 26 10:43:11 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Mar 26 10:43:11 localhost kernel[0]: AppleBCM5701Ethernet [en0]: Link down (womp disabled, proxy idle)
    Mar 26 10:43:12 localhost com.apple.launchd[1] (com.backblaze.bzserv[94]): Exited with code: 2
    Mar 26 10:43:12 localhost com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:43:13 localhost kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,0301,0101,0000,41e1,0000]
    Mar 26 10:43:16 localhost com.apple.SecurityServer[25]: Entering service
    Mar 26 10:43:16 localhost kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Mar 26 10:43:16 localhost mds[37]: (Normal) FMW: FMW 0 0
    Mar 26 10:43:16 localhost defaults[97]:
              The domain/default pair of (/System/Library/Frameworks/Message.framework/Resources/Info, PluginCompatibilityUUID) does not exist
    Mar 26 10:43:16 localhost blued[60]: hostControllerOnline - Number of Paired devices = 0, List of Paired devices = (null)
    Mar 26 10:43:16 localhost mDNSResponder[38]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    Mar 26 10:43:16 localhost digest-service[79]: label: default
    Mar 26 10:43:16 localhost digest-service[79]:           dbname: od:/Local/Default
    Mar 26 10:43:16 localhost digest-service[79]:           mkey_file: /var/db/krb5kdc/m-key
    Mar 26 10:43:16 localhost digest-service[79]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Mar 26 10:43:16 localhost digest-service[79]: digest-request: uid=0
    Mar 26 10:43:16 localhost loginwindow[41]: Login Window Application Started
    Mar 26 10:43:16 localhost digest-service[79]: digest-request: netr probe 0
    Mar 26 10:43:16 localhost digest-service[79]: digest-request: init request
    Mar 26 10:43:16 localhost awacsd[62]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    Mar 26 10:43:16 localhost awacsd[62]: InnerStore CopyAllZones: no info in Dynamic Store
    Mar 26 10:43:16 localhost UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Mar 26 10:43:16 localhost aosnotifyd[65]: aosnotifyd has been launched
    Mar 26 10:43:16 localhost aosnotifyd[65]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar 26 10:43:17 localhost UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar 26 10:43:17 localhost WindowServer[103]: Server is starting up
    Mar 26 10:43:17 localhost stackshot[21]: Timed out waiting for IOKit to finish matching.
    Mar 26 10:43:18 localhost apsd[64]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 26 10:43:18 localhost mDNSResponder[38]: D2D_IPC: Loaded
    Mar 26 10:43:18 localhost mDNSResponder[38]: D2DInitialize succeeded
    Mar 26 10:43:18 localhost mDNSResponder[38]:   4: Listening for incoming Unix Domain Socket client requests
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901B804D60 CPU123.local. (AAAA) that's already in the list
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901B8051F0 2.E.A.9.A.6.E.F.F.F.5.3.0.B.A.5.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901A006B60 CPU123.local. (Addr) that's already in the list
    Mar 26 10:43:18 localhost mDNSResponder[38]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F901A006FF0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    Mar 26 10:43:18 localhost mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar 26 10:43:18 localhost configd[58]: network changed: DNS*
    Mar 26 10:43:18 CPU123.local configd[58]: setting hostname to "CPU123.local"
    Mar 26 10:43:18 CPU123.local mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar 26 10:43:18 CPU123.local networkd[122]: networkd.122 built Aug 24 2013 22:08:46
    Mar 26 10:43:18 CPU123.local locationd[43]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Mar 26 10:43:18 CPU123.local locationd[43]: NBB-Could not get UDID for stable refill timing, falling back on random
    Mar 26 10:43:18 CPU123.local airportd[66]: airportdProcessDLILEvent: en1 attached (up)
    Mar 26 10:43:18 CPU123 kernel[0]: createVirtIf(): ifRole = 1
    Mar 26 10:43:18 CPU123 kernel[0]: in func createVirtualInterface ifRole = 1
    Mar 26 10:43:18 CPU123 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    Mar 26 10:43:18 CPU123 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    Mar 26 10:43:18 CPU123 kernel[0]: Created virtif 0xffffff8018f9b400 p2p0
    Mar 26 10:43:18 CPU123.local mds[37]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Mar 26 10:43:18 CPU123.local systemkeychain[95]: done file: /var/run/systemkeychaincheck.done
    Mar 26 10:43:18 CPU123.local locationd[43]: Location icon should now be in state 'Inactive'
    Mar 26 10:43:18 CPU123.local digest-service[79]: digest-request: init return domain: PCPC1 server: CPU123 indomain was: <NULL>
    Mar 26 10:43:18 CPU123.local locationd[43]: locationd was started after an unclean shutdown
    Mar 26 10:43:19 CPU123.local UserEventAgent[11]: Registered Workstation service - CPU123 [7c:6d:62:8c:3b:ac]._workstation._tcp.
    Mar 26 10:43:22 CPU123 com.apple.launchd[1] (com.backblaze.bzserv[127]): Exited with code: 2
    Mar 26 10:43:22 CPU123 com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 10 seconds
    Mar 26 10:43:25 CPU123.local configd[58]: network changed: v4(en0+:192.168.1.64) DNS+ Proxy+ SMB+
    Mar 26 10:43:24 CPU123.local ntpd[129]: proto: precision = 1.000 usec
    Mar 26 10:43:24 CPU123 com.apple.launchd[1] (com.backblaze.bzserv): Throttling respawn: Will start in 6 seconds
    Mar 26 10:43:25 --- last message repeated 1 time ---
    Mar 26 10:43:25 CPU123 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key MOTP (kSMCKeyNotFound)
    Mar 26 10:43:25 CPU123 kernel[0]: [AGPM Controller] build GPUDict by Vendor8086Device0046
    Mar 26 10:43:25 CPU123 kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice0a29
    Mar 26 10:43:25 CPU123.local WindowServer[103]: Session 256 retained (2 references)
    Mar 26 10:43:25 CPU123.local WindowServer[103]: Session 256 released (1 references)
    Mar 26 10:43:25 CPU123.local WindowServer[103]: Session 256 retained (2 references)
    Mar 26 10:43:25 CPU123.local WindowServer[103]: init_page_flip: page flip mode is on
    Mar 26 10:43:25 CPU123.local SystemStarter[131]: VirtualBox Support and USB Drivers (144) did not complete successfully
    Mar 26 10:43:25 CPU123.local SystemStarter[131]: The following StartupItems failed to start properly:
    Mar 26 10:43:25 CPU123.local SystemStarter[131]: /Library/StartupItems/VirtualBox
    Mar 26 10:43:25 CPU123.local SystemStarter[131]:  - execution of Startup script failed
    Mar 26 10:43:25 CPU123.local apsd[64]: Unrecognized leaf certificate
    Mar 26 10:43:26 CPU123.local apsd[64]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 26 10:43:26 CPU123 kernel[0]: APExternalDisplay Memory Reserved: 66392064 bytes
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 1 modes for display 0x00000000 [1, 0]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 36 modes for display 0x00000000 [30, 6]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 1 modes for display 0x00000000 [1, 0]
    Mar 26 10:43:26 --- last message repeated 1 time ---
    Mar 26 10:43:26 CPU123.local WindowServer[103]: mux_initialize: Mode is dynamic
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 36 modes for display 0x00000000 [30, 6]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Found 1 modes for display 0x00000000 [1, 0]
    Mar 26 10:43:26 --- last message repeated 1 time ---
    Mar 26 10:43:26 CPU123.local WindowServer[103]: WSMachineUsesNewStyleMirroring: false
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x04272901: GL mask 0x3; bounds (0, 0)[1440 x 900], 36 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 1, Rotation 0
              UUID 0x8a96a568c33550779a382c64e81094d2
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 10:43:26 CPU123.local WindowServer[103]: WSSetWindowTransform: Singular matrix
    Mar 26 10:43:26 --- last message repeated 1 time ---
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x04272901: GL mask 0x3; bounds (0, 0)[1440 x 900], 36 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca4, S/N 0, Unit 1, Rotation 0
              UUID 0x8a96a568c33550779a382c64e81094d2
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x003f003f: GL mask 0x8; bounds (2464, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 10:43:26 CPU123.local WindowServer[103]: Display 0x003f003e: GL mask 0x4; bounds (2465, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
              UUID 0xffffffffffffffffffffffffffffffff
    Mar 26 10:43:26 CPU123.local WindowServer[103]: CGXPerformInitialDisplayConfiguration
    Mar 26 10:43:26 CPU123.local WindowServer[103]:   Display 0x04272901: Unit 1; Alias(1, 0x3); Vendor 0x610 Model 0x9ca4 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    Mar 26 10:43:26 CPU123.local WindowServer[103]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Mar 26 10:43:26 CPU123.local WindowServer[103]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    Mar 26 10:43:26 CPU123.local WindowServer[103]: CGXMuxBoot: Boot normal
    Mar 26 10:43:26 CPU123.local com.apple.kextd[12]: kext com.eltima.ElmediaPlayer.kext  158009000 is in exception list, allowing to load
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01024300, GL mask 0x00000001, accelerator 0x00003523, unit 0, caps QEX|MIPMAP, vram 288 MB
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01024300, GL mask 0x00000001, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01022612, GL mask 0x00000006, accelerator 0x00004ca3, unit 1, caps QEX|MIPMAP, vram 256 MB
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor: GL renderer id 0x01022612, GL mask 0x00000006, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 26 10:43:26 CPU123.local WindowServer[103]: GLCompositor enabled for tile size [256 x 256]
    Mar 26 10:43:26 CPU123.local WindowServer[103]: CGXGLInitMipMap: mip map mode is on
    Mar 26 10:43:26 CPU123.local loginwindow[41]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Mar 26 10:43:27 CPU123.local com.apple.kextd[12]: kext com.eltima.ElmediaPlayer.kext  158009000 is in exception list, allowing to load
    Mar 26 10:43:27 CPU123 kernel[0]: Elmedia Player KEXT version 4.2 (1.58)
    Mar 26 10:43:27 CPU123.local WindowServer[103]: Display 0x04272901: Unit 1; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar 26 10:43:27 CPU123.local launchctl[159]: com.apple.findmymacmessenger: Already loaded
    Mar 26 10:43:27 CPU123.local com.apple.SecurityServer[25]: Session 100006 created
    Mar 26 10:43:27 CPU123.local UserEventAgent[160]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar 26 10:43:28 CPU123.local loginwindow[41]: Setting the initial value of the magsave brightness level 1
    Mar 26 10:43:28 CPU123.local loginwindow[41]: Login Window Started Security Agent
    Mar 26 10:43:28 CPU123.local SecurityAgent[168]: This is the first run
    Mar 26 10:43:28 CPU123.local SecurityAgent[168]: MacBuddy was run = 0
    Mar 26 10:43:28 CPU123.local WindowServer[103]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7f8c51c12c40) - enabling OpenGL
    Mar 26 10:43:28 CPU123.local WindowServer[103]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 26 10:43:28 CPU123.local WindowServer[103]: Display 0x04272901: Unit 1; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar 26 10:43:29 --- last message repeated 1 time ---
    Mar 26 10:43:29 CPU123.local parentalcontrolsd[178]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:43:29 CPU123.local awacsd[62]: Exiting
    Mar 26 10:43:30 CPU123 com.apple.launchd[1] (com.backblaze.bzserv[180]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Mar 26 10:43:30 CPU123 com.apple.launchd[1] (com.backblaze.bzserv[180]): Job failed to exec(3) for weird reason: 2
    Mar 26 10:43:30 CPU123.local mtmfs[35]: mount succeeded for /Volumes/MobileBackups
    Mar 26 10:43:30 CPU123.local mds[37]: (Normal) Volume: volume:0x7f81b3058e00 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    Mar 26 10:43:30 CPU123.local mds[37]: (Normal) Volume: volume:0x7f81b3058e00 ********** Created snapshot backup index
    Mar 26 10:43:34 CPU123 kernel[0]: nspace-handler-set-snapshot-time: 1395848616
    Mar 26 10:43:34 CPU123.local com.apple.mtmd[36]: Set snapshot time: 2014-03-26 10:43:36 -0500 (current time: 2014-03-26 10:43:34 -0500)
    Mar 26 10:43:37 CPU123.local SecurityAgent[168]: User info context values set for prl
    Mar 26 10:43:42 CPU123.local parentalcontrolsd[183]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:43:42 CPU123.local SecurityAgent[168]: Login Window login proceeding
    Mar 26 10:43:44 CPU123.local loginwindow[41]: Login Window - Returned from Security Agent
    Mar 26 10:43:44 CPU123.local loginwindow[41]: USER_PROCESS: 41 console
    Mar 26 10:43:45 CPU123 kernel[0]: AppleKeyStore:Sending lock change 0
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188]: Background: Aqua: Registering new GUI session.
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.divx.agent.postinstall): Unknown key: LimitToSessionType
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.spotify.webhelper): Unknown key: SpotifyPath
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.apple.EscrowSecurityAlert): Unknown key: seatbelt-profiles
    Mar 26 10:43:45 CPU123 com.apple.launchd.peruser.1689351527[188] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Mar 26 10:43:45 CPU123.local launchctl[191]: com.apple.pluginkit.pkd: Already loaded
    Mar 26 10:43:45 CPU123.local launchctl[191]: com.apple.sbd: Already loaded
    Mar 26 10:43:45 CPU123.local distnoted[193]: # distnote server agent  absolute time: 81.676468602   civil time: Wed Mar 26 10:43:45 2014   pid: 193 uid: 1689351527  root: no
    Mar 26 10:43:45 CPU123.local WindowServer[103]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    Mar 26 10:43:46 CPU123.local com.apple.audio.DriverHelper[206]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    Mar 26 10:43:47 CPU123.local sharingd[214]: Starting Up...
    Mar 26 10:43:47 CPU123.local WindowServer[103]: Display 0x04272901: Unit 1; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    Mar 26 10:43:47 CPU123.local UserEventAgent[192]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Mar 26 10:43:47 CPU123.local coreaudiod[204]: 2014-03-26 10:43:47.604230 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    Mar 26 10:43:47 CPU123 com.apple.launchd.peruser.1689351527[188] (com.akamai.single-user-client[253]): assertion failed: 13C64: launchd + 105965 [425516B6-9F3E-342F-87B3-EC461EBA6A1A]: 0xd
    Mar 26 10:43:47 CPU123 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=245[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    Mar 26 10:43:48 CPU123.local com.apple.SecurityServer[25]: Session 100008 created
    Mar 26 10:43:48 CPU123 xpcproxy[280]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    Mar 26 10:43:48 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:43:48 CPU123.local com.apple.IconServicesAgent[276]: IconServicesAgent launched.
    Mar 26 10:43:48 CPU123.local WiFiKeychainProxy[223]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    Mar 26 10:43:48 CPU123.local WiFiKeychainProxy[223]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    Mar 26 10:43:49 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.36 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:43:49 CPU123 accountsd[275]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    Mar 26 10:43:51 CPU123.local com.apple.SecurityServer[25]: Session 100010 created
    Mar 26 10:43:53 CPU123 com.apple.launchd.peruser.1689351527[188] (com.apple.mrt.uiagent[230]): Exited with code: 255
    Mar 26 10:43:54 CPU123.local SystemUIServer[201]: Cannot find executable for CFBundle 0x7fda8bf01830 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    Mar 26 10:43:55 CPU123.local SystemUIServer[201]: Cannot find executable for CFBundle 0x7fda8bf5dc40 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    Mar 26 10:43:55 CPU123.local SystemUIServer[201]: Cannot find executable for CFBundle 0x7fda8bf5cc70 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    Mar 26 10:43:55 CPU123 xpcproxy[297]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    Mar 26 10:43:57 CPU123.local backupd[293]: Property list invalid for format: 200 (property lists cannot contain NULL)
    Mar 26 10:43:57 CPU123.local SocialPushAgent[225]: ApplePushService: APSConnection being used without a delegate queue
    Mar 26 10:43:58 CPU123.local SystemUIServer[201]: <SOBuddyHelper: 0x7fda8bf744d0> Timed out waiting for value for MenuExtraBuddyListSubmenuThreshhold
    Mar 26 10:43:58 CPU123 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    Mar 26 10:44:00 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:44:02 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 2.95 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:44:04 CPU123.local SystemUIServer[201]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar 26 10:44:04 CPU123.local SystemUIServer[201]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar 26 10:44:05 CPU123.local parentalcontrolsd[328]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:44:05 CPU123.local com.apple.SecurityServer[25]: Session 100013 created
    Mar 26 10:44:06 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x115] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: pdf, UTI: com.adobe.pdf, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x117] flags: 0x8 binding: FileInfoBinding [0x405] - extension: jpeg, UTI: public.jpeg, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: jpeg, UTI: public.jpeg, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x119] flags: 0x8 binding: FileInfoBinding [0x215] - extension: png, UTI: public.png, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: png, UTI: public.png, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x11b] flags: 0x8 binding: FileInfoBinding [0x407] - extension: band, UTI: com.apple.garageband.project, fileType: BNDL.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x803] flags: 0x8 binding: FileInfoBinding [0x703] - extension: band, UTI: com.apple.garageband.project, fileType: BNDL request size:40 scale: 1
    Mar 26 10:44:07 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x11d] flags: 0x8 binding: FileInfoBinding [0x217] - extension: mp3, UTI: public.mp3, fileType: ????.
    Mar 26 10:44:07 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xa03] flags: 0x8 binding: FileInfoBinding [0x903] - extension: mp3, UTI: public.mp3, fileType: ???? request size:40 scale: 1
    Mar 26 10:44:14 CPU123.local syncdefaultsd[256]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    Mar 26 10:44:18 CPU123.local com.apple.SecurityServer[25]: Session 100014 created
    Mar 26 10:44:20 CPU123.local parentalcontrolsd[340]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:44:21 CPU123 com.apple.launchd[1] (com.apple.quicklook.satellite.583BC995-4C31-42ED-8DEF-A65F59D0E086[330]): Exited: Killed: 9
    Mar 26 10:44:24 CPU123 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x4000 ****
    Mar 26 10:44:45 CPU123 netsession_mac[253]: netsession_mac(253,0xb031d000) malloc: *** auto malloc[253]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
    Mar 26 10:44:46 CPU123.local parentalcontrolsd[353]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Mar 26 10:44:50 CPU123.local distnoted[364]: # distnote server agent  absolute time: 146.341909721   civil time: Wed Mar 26 10:44:50 2014   pid: 364 uid: 89  root: no
    Mar 26 10:44:52 CPU123.local sudo[362]:      prl : TTY=unknown ; PWD=/ ; USER=prl ; COMMAND=/usr/local/MacGPG2/bin/gpg-agent --daemon
    Mar 26 10:44:53 CPU123.local com.apple.time[192]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar 26 10:44:56 CPU123.local Creative Cloud[247]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    Mar 26 10:44:57 CPU123.local com.apple.SecurityServer[25]: Session 100016 created
    Mar 26 10:45:01 CPU123 netsession_mac[253]: netsession_mac(253,0xb039f000) malloc: *** auto malloc[253]: error: GC operation on unregistered thread. Thread registered implicitly. Break on auto_zone_thread_registration_error() to debug.
    Mar 26 10:45:03 CPU123.local secd[286]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Mar 26 10:45:03 CPU123.local secd[286]:  securityd_xpc_dictionary_handler WiFiKeychainProx[223] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Mar 26 10:45:03 CPU123.local Mint QuickView[274]: Could not find image named 'accounts'.
    Mar 26 10:45:09 CPU123 Creative Cloud[247]: objc[247]: Class HTTPHeader is implemented in both /Applications/Utilities/Adobe Creative Cloud/utils/AdobePIM.dylib and /Applications/Utilities/Adobe Creative Cloud/ACC/C3ContainerBL.dylib. One of the two will be used. Which one is undefined.
    Mar 26 10:45:09 CPU123 Creative Cloud[247]: objc[247]: Class ProxyManager is implemented in both /Applications/Utilities/Adobe Creative Cloud/utils/AdobePIM.dylib and /Applications/Utilities/Adobe Creative Cloud/ACC/C3ContainerBL.dylib. One of the two will be used. Which one is undefined.
    Mar 26 10:45:11 CPU123.local com.apple.internetaccounts[297]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    Mar 26 10:45:18 --- last message repeated 1 time ---
    Mar 26 10:45:17 CPU123.local com.apple.IconServicesAgent[276]: main Failed to composit image for binding VariantBinding [0x163] flags: 0x8 binding: FileInfoBinding [0x349] - extension: JPG, UTI: public.jpeg, fileType: ????.
    Mar 26 10:45:17 CPU123.local quicklookd[273]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xc03] flags: 0x8 binding: FileInfoBinding [0xb03] - extension: JPG, UTI: public.jpeg, fileType: ???? request size:128 scale: 1
    Mar 26 10:45:18 CPU123.local com.apple.NotesMigratorService[375]: Joined Aqua audit session
    Mar 26 10:45:18 CPU123.local com.apple.internetaccounts[297]: An instance 0x7f948d80d7d0 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
              <NSKeyValueObservationInfo 0x7f948d80e6b0> (
              <NSKeyValueObservance 0x7f948d80e7e0: Observer: 0x7f948d805ba0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff9000843b, Property: 0x7f948d80e680>
    Mar 26 10:45:19 CPU123.local com.apple.internetaccounts[297]: An instance 0x7f948b732090 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
              <NSKeyValueObservationInfo 0x7f948b7321b0> (
              <NSKeyValueObservance 0x7f948b732140: Observer: 0x7f948b730ef0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff9000843b, Property: 0x7f948d80e680>
    Mar 26 10:45:19 CPU123.local sandboxd[346] ([331]): storeagent(331) deny file-read-data /Users/prl/Library/Preferences/com.apple.WebFoundation.plist
    Mar 26 10:45:25 CPU123.local com.apple.time[192]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar 26 10:45:26 CPU123.local com.apple.internetaccounts[297]: *** Warning: Timed out waiting for one or more plugins.
    Mar 26 10:45:27 CPU123.local com.apple.internetaccounts[297]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    Mar 26 10:45:29 --- last message repeated 1 time ---
    Mar 26 10:45:29 CPU123.local sandboxd[346] ([222]): EvernoteHelper(222) deny mach-lookup com.apple.locationd.desktop.synchronous
    Mar 26 10:45:33 CPU123.local com.apple.time[192]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Mar 26 10:45:34 CPU123.local com.apple.dock.extra[373]: <NSXPCConnection: 0x7ffe9272a6c0>: received an undecodable message (no exported object to receive message). Dropping message.
    Mar 26 10:45:40 CPU123.local Mail[376]: Loaded GPGMail 2.1
    Mar 26 10:45:41 CPU123.local Mail[376]: Debug Log enabled: NO
    Mar 26 10:45:44 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:45:45 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:45:46 CPU123.local Dropbox[284]: PyObjCPointer created: at 0x7b5fc88 of type {OpaqueJSContext=}
    Mar 26 10:45:56 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:46:10 CPU123.local WindowServer[103]: disable_update_likely_unbalanced: UI updates still disabled by application "Mail" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    Mar 26 10:46:12 CPU123 kernel[0]: fsevents: watcher dbfseventsd (pid: 397) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    Mar 26 10:46:27 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/ XPCServices/com.apple.internetaccounts.xpc/
    Mar 26 10:46:28 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServic es/com.apple.WebKit.WebContent.xpc/
    Mar 26 10:46:28 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.doc k.extra.xpc/
    Mar 26 10:46:35 CPU123.local com.apple.IconServicesAgent[276]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/XPCServi ces/com.apple.ShareKitHelper.xpc/
    Mar 26 10:46:42 CPU123.local defaults[409]:
              The domain/default pair of (/System/Library/Frameworks/Message.framework/Resources/Info, PluginCompatibilityUUID) does not exist
    Mar 26 10:46:48 CPU123.local Dropbox[284]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    Mar 26 10:46:50 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 54.66 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:47:02 CPU123 com.apple.launchd.peruser.1689351527[188] (com.realnetworks.realplayerdownloaderagent.128160[285]): Exited: Killed: 9
    Mar 26 10:47:05 CPU123.local com.apple.SecurityServer[25]: Session 100020 created
    Mar 26 10:47:05 CPU123.local com.apple.SecurityServer[25]: Killing auth hosts
    Mar 26 10:47:05 CPU123.local com.apple.SecurityServer[25]: Session 100016 destroyed
    Mar 26 10:47:41 CPU123.local mds[37]: (Normal) Volume: volume:0x7f81b4033800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.ZWIMlq
    Mar 26 10:47:48 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:47:49 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:47:58 CPU123.local com.apple.SecurityServer[25]: Session 100003 created
    Mar 26 10:49:44 CPU123 xpcproxy[464]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    Mar 26 10:49:46 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:49:48 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:49:55 CPU123.local syncdefaultsd[470]: Fixing push token
    Mar 26 10:50:18 CPU123 kernel[0]: AirParrot device perform power state change 1 -> 2
    Mar 26 10:50:20 CPU123 kernel[0]: AirParrot device perform power state change 2 -> 1
    Mar 26 10:50:21 CPU123 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=476[ksadmin] final status 0x0, allowing (remove VALID) page
    Mar 26 10:50:23 CPU123.local sandboxd[346] ([376]): Mail(376) deny file-issue-extension /Applications/Google Chrome.app
    Mar 26 10:50:31 CPU123 kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=481[ksadmin] final status 0x0, allowing (remove VALID) page
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[478]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[478]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[480]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[480]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[478]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[480]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[482]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[482]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:32 CPU123.local Google Chrome Helper[482]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:33 CPU123.local Google Chrome Helper[483]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:33 CPU123.local Google Chrome Helper[483]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:33 CPU123.local Google Chrome Helper[483]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[488]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[488]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[488]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[486]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[486]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[486]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[490]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[490]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[489]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[487]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[489]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[487]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[490]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[485]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[485]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[487]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[489]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:35 CPU123.local Google Chrome Helper[485]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:40 CPU123.local Google Chrome Helper[484]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    Mar 26 10:50:40 CPU123.local Google Chrome Helper[484]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Mar 26 10:50:40 CPU123.local Google Chrome Helper[484]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Mar 26 10:50:53 CPU123.local launchservicesd[55]: Someone attempted to start application App:"Microsoft Word" asn:0x0-38038 pid:495 refs=6 @ 0x7faf49d55240 but it still has _kLSApplicationLockedInStoppedStateKey=true, so it is is staying stopped. : LASApplication.cp #2468 SetApplicationInStoppedState() q=LSSession 100006/0x186a6 queue
    Mar 26 10:50:56 CPU123.local sandboxd[346] ([376]): Mail(376) deny file-issue-extension /Applications/Microsoft Office 2011/Microsoft Word.app
    Mar 26 10:51:09 CPU123.local Google Chrome Helper[480]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    Mar 26 10:51:09 CPU123.local fontd[218]: BUG in libdispatch client: dispatch_mig_server: mach_msg() failed (ipc/send) invalid memory - 0x1000000c
    Mar 26 10:51:09 CPU123.local Google Chrome Helper[480]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    Mar 26 10:51:25 CPU123.local WindowServer[103]: disable_update_timeout: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    Mar 26 10:51:25 CPU123.local WindowServer[103]: common_reenable_update: UI updates were finally reenabled by application "Microsoft Word" after 1.23 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 26 10:52:47 CPU123.local Google Chrome Helper[520]: Process unable to create connection because the san

    Remove "CleanMyMac" by following the first set of instructions on this page. If you have a different version of the product, the procedure may be different. Do not drag the CleanMyMac application to the Trash.
    Back up all data before making any changes.

Maybe you are looking for

  • Mini DVI to Video: blue screen after disconnect

    Hi, can't find a solution: after disconnecting the mini dvi to video-adapter I always get a blue screen and I need to restart my brandnew 20" iMac. I use it to connect my (old) television via s-video. It is clear that I bought the right Mini-DVI-Adap

  • How to Open a FrameMaker Version 9 document in Version 8

    Hi, I am working on some documents that I created in FrameMaker version 9 and now I want to open them in version 8. Any specific action required to open them in version 8. I get error message. FYI, Version 9 documents are saved as .fm extension. Than

  • T 400 replacement and many doubts over Lenovo laptops

    Hi! I've got a t 400 since 4 years (Intel core 2 duo T8600 CPU, 250 gb hdd 5400 RPM, win 7, discrete ati 3470 card, 1440 x 900 WXGA+ LED Backlit. My battery is gone (1 h, at most). I'd hope to replace it after no big problems by another 14" Lenovo la

  • How to use API to access embedded LDAP

    how can I access the embedded LDAP through API,such as to query a user from it. who can give me a example

  • Sneak Peek:  The future of Visual Graphics

    For those who don't have the oppurtunity to attend the Siggraph conference in Vancouver this year, you may be interested in viewing some of the live streaming events available. Tomorrow at 11:30 PDT, Steve Forde, Senior Product Manager, Visual Effect