Unix Domain socket, ECONNREFUSED causes?

I would like to have a complete list of possible causes for connect(3SOCKET) to return ECONNREFUSED. I have a pthreads application that fails a test case due to connection refused, and none of the usual causes seem to make sense.
- socket path exists but nobody is listening on the socket - pfiles shows that the server side has the socket descriptor open
- too many connections - pfiles and lsof show that this is not the case - very few connections open
- wrong type of socket? debugger shows this is not the case
- wrong file permissions on socket? ls shows that this is not the case
What other causes for ECONNREFUSED could there be?
thanks
--donb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Yes what does the term "Unix Domain Socket" refer to.
I can think of several possibilities....
1. It just means "socket". So you use the socket stuff.
2. It is port specific/ip range specific, so you use the port/ip with the regular socket stuff.
3. It is a layer in regular TCP/IP (like VPNs) so unless the layer itself is being managed a java app doesn't need to do anything.
4. It is a different protocol (or with extended features) from a regular TCP socket. In that case you would have to write your own socket layer via JNI to handle it.

Similar Messages

  • Unix Domain Socket - Question about work around

    Since Unix Domain Sockets are platform dependent and Java is platform independent, it does not support it.
    However, I am sure some of you have worked with them and found some good work around.
    Elsewhere Jtux was suggested as a possible fix. However, I have not seen any good testimonials to it working. Also, if there are any security issues with this software. The website is here: http://www.basepath.com/aup/jtux/
    Does anyone have any other suggest?
    Thanks.

    I am modifying a current app. I must use the Unix
    Domain Sockets. I have no choice in the matters. It's
    for security reasons that they must be left in place.I can only guess that you do not understand my suggestion.
    The proxy does a domain socket to regular socket - just a pass through. You write this in C/C++.
    In your java app, as one option, you use Runtime.exec() to start the proxy. Then you use a java socket to connect to it. You can pass options to the proxy to control the socket behavior on both ends.
    In terms of usage there are a number of variations on the above.

  • Open unix domain socket (Linux)

    How do I open a unix domain socket under linux using Labview (7.1).
    I would like to write messages to /dev/log.
    thanx
    Message Edited by Dennisvr on 01-27-2006 04:20 AM

    Dennisvr wrote:
    Pipes and sockets are
    different things. At first I thougt they could be the same too, and I
    even tried opening it using the LabVIEW pipe functions, but that didn't
    work.   Look at this link, it explains how it works, even with some examples: http://www.ecst.csuchico.edu/~beej/guide/ipc/usock​.html
    I
    see. Well LabVIEW does not support this type of socket. The only socket
    interface it has already is the one used for its TCP/UDP implementation
    and that is using sockaddr_in internally to bind. As such you have two
    options:
    1) Write your own domain socket interface writing a shared library and the according interface VIs.
    2) Or use TCP/IP interprocess communication instead.
    In terms of functionality TCP/IP will be the same as what you could
    possibly get from domain sockets. The only reason to use domain sockets
    instead of TCP/IP sockets might be that domain sockets have a
    more  optimized data transfer since they do not take precautions
    for remote data transfer. If you really need this (possible?) increased
    performance you will have to do some work.
    However domain sockets seem little known and might be a new technology.
    So I would make sure it is properly supported on all the potential
    system you try to use this before taking the plunge to write your own
    shared library interface to call through the Call Library Node.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Client connection using UNIX Domain Socket

    Hello all,
    I am getting the following error when I try to connect from a 32-bit TimesTen client to the 64-bit TimesTen data manager via UNIX domain socket.
    NOTE: I can make SHM connections from 32-bit client to 64-bit server though.
    # ttisqlcs test_uds
    Copyright (c) 1996-2007, Oracle. All rights reserved.
    Type ? or "help" for help, type "exit" to quit ttIsql.
    All commands must end with a semicolon character.
    connect "DSN=test_uds";
    08001: Unable to connect to data source (DSN: test_uds; Network Address: ttLocalHost; Port Number: 18003). Please refer to TimesTen Server log to see if connection over UNIX domain socket is allowed at this point in time
    The command failed.
    Done.
    Both 32-bit client and 64-bit server processes run on the same box. I do not see any errors in the user or server log files.
    Entry in sys.ttconnect.ini file
    [ttLocalHost-tt_704_dev]
    Description=TimesTen Server
    Network_Address=ttLocalHost
    TCP_PORT=18003
    Entry in sys.odbc.ini file
    [test_uds]
    Driver=/ttsoft/TimesTen32/TimesTen/tt70_32/lib/libttclient.so
    TTC_SERVER=ttLocalHost-tt_704_dev
    TTC_SERVER_DSN=test
    Thanks,
    Senthil.

    Could this be bug 4950822? This was documented in the 6.0.3 Release Notes "Known Limitations" section:
    "On Unix, when using ttlocalhost, a client of one TimesTen instance cannot connect with a server of another TimesTen instance. The workaround is to use ttShmHost (shared memory IPC) or localhost (127.0.0.1)."
    The error message received matches the one you're seeing.

  • Unix Domain Socket

    Hi,
    How can Java connect to a Unix Domain Socket?
    Help please!

    Yes what does the term "Unix Domain Socket" refer to.
    I can think of several possibilities....
    1. It just means "socket". So you use the socket stuff.
    2. It is port specific/ip range specific, so you use the port/ip with the regular socket stuff.
    3. It is a layer in regular TCP/IP (like VPNs) so unless the layer itself is being managed a java app doesn't need to do anything.
    4. It is a different protocol (or with extended features) from a regular TCP socket. In that case you would have to write your own socket layer via JNI to handle it.

  • Unix domain socket connection limits ?

    Hi All,
    I'm trying to handle more than 32 conn. connections on a unix socket domain on Solaris 8 or 7. I couldn't able to pass 32 connection limit. As far as I know, this was a limit for Solaris 2.5.1 or 2.6. I raised the tcp_conn_req_maxq and tcp_conn_req_maxq0 values to greater than 1024 and it didn't help out.
    Is there anyone who knows how to pass this limit ?
    Best Regards,
    P.S. I have 1GB ram on each machine.

    The default limit is 256. Try to look plimit command, which change thats limits.

  • Unix domain sockets: How to name them? And where to put them?

    I am using unix sockets for inter-process communication in a C++/gtkmm project.
    Are there naming conventions and conventions about where to place sockets in the filesystem? In all example code I found, dummies like /home/user/mysocket were being used.
    If there are not any conventions: Would it be sensible to put the sockets in /tmp/ and compose the names of the name of the program which uses the concerning socket, and its PID? (The latter also depends on my use case, of course; from that point of view, it seems sensible.)

    @Franek:  KDE applications place their sockets (through KDE API, of course) in "/tmp/ksocket-foo/bar__0", where "foo" is the user name, "bar" the application name and "0" an increasing counter (in case an application creates more than one socket).  Emacs places its server socket in a similar manner "/tmp/emacs1000/server", where "1000" is the UID.
    I'd use emacs' name scheme, e.g. "/tmp/bar1000/what_the_socket_is_for", where "bar" is the application name again. 
    However, do not place sockets directly in "/tmp/". For one thing, it just clutters this global directory, but more importantly it's unsafe, as every other user can inspect these sockets.  Create a directory within "/tmp/" and restrict its access rights to the owner (mode 700).  Thus other users can't inspect the sockets within that directory.  Of course, the access rights of the sockets themselves must also be limited.
    Last edited by lunar (2011-10-12 18:59:32)

  • Sun RPC - is there a way to create domain sockets?

    hi,
    I would like to know if there is a way of restricting the Sun rpcgen program to create an RPC for the same host. i.e instead of going through all the layers of the tcp/ip stack i would like it to create domain sockets. This would increase performance of the RPC ( as lesser time would be taken for message transfer).
    I am not sure such an option exists. if anyone could give me information abt. how this can be done (if it can be done) it would be very helpful.
    Thanks,
    Somari.

    Great, drop caps work, thanks.
    I wanted to kern them back (I can't help myself) and I found that if I put a space after the box and then kerned the space back, it worked visually. Do you think that will cause issues down the road? It previewed ok.
    Also if I make the boxes too tight, again to make it more typographically pleasing, may I have issues later if people increase or decrease the font size?
    I don't have an iPad yet so I can't check it that way. If something previews, will it run?
    thanks

  • Open UNIX File Socket system

    Hello,
    how can I open a UNIX File Socket in Java? I need to communicate with a program written in another language, and a UNIX File Socket is the only way to communicate with the other program.
    Thanks for any info!
    Cheers
    Lukas

    Well, i think that you can use
    String ip="192.168.0.1"; //whatever you want...
    int port=2002; //whatever you want too
    Socket s=new Socket(ip,port );and
    int port=2002; //whatever you want too
    ServerSocket ss=new ServerSocket(port);
    Socket s=ss.accept();Also take look at:
    http://java.sun.com/j2se/1.4.1/docs/api/java/net/Socket.html
    http://java.sun.com/j2se/1.4.1/docs/api/java/net/ServerSocket.html
    Hope that help.

  • Too many open socket connections causing ColdFusion to crash?

    I’m currently working on an e-commerce site which sends and receives information to/from the client’s order management system via XML over a TCP/IP socket.  It uses a very old java-based custom tag called CFX_JSOCKET (which appears to have been written in 2002) to open the socket, send the data, and get the response.  The code that calls the custom tag and sends/receives data from the OMS pre-dates my working on the site, but its always worked, so I haven’t paid it much attention.
    Back in the summer of 2009 we started experiencing issues with ColdFusion (v.7 on Window 2003 at the time) locking up on a more and more frequent basis, until it ultimately became a daily issue.  After extensive research we narrowed the issue down to the communication between the web server and our client’s order management server.  It seemed the issue with ColdFusion hanging was either related to there being too many connections open, or to these connections hanging and resulting in dead threads.  This an educated guess based on a blog post I’d seen online, not actual monitoring of either CF or the TCP/IP connections.  As soon as we dialed back the timeout on the CFX_JSOCKET tag from 20 seconds to 10, the issue disappeared, so we left it at that and moved on.
    Fast forward to this January. The site is hosted at a new location, on a 64-bit Windows 2008 box running ColdFusion 9.  Over the years traffic on the site has continued to grow.  The nature of the clients business means that August and January are their business times of the year (back to school for college kids) and in January ColdFusion once again started locking up on an almost-daily basis.  
    One significant difference is that the address cleansing software that previously ran on the box and was used to verify shipping addresses is not available for 64-bit, so when we moved to the new server last summer, that task was moved to the client’s order management software and handled via XML like all other interaction with that system. However, while most XML calls to that server (order input, inventory check, etc) take under a second to complete, the address cleansing call regularly takes over 5 seconds to return data, and frequently times out. 
    Once we eliminated the address cleansing call from the checkout process, ColdFusion once again stopped locking up regularly.  So it appears that once again it’s the communication between the web server and the order management server that’s causing problems. We currently have that address cleansing call disabled on the web site in order to keep ColdFusion from crashing, but that’s not a long term solution.
    We don’t have, nor can I find online, the source code for the CFX_JSOCKET custom tag, so I decided I’d write some CF code utilizing the java methods to open the socket, send the data, get the response, and close the connection.  My test code is working fine (under no load).  However, in trying to troubleshoot an issue I had with it, I started monitoring the TCP/IP connections using TCPView.  And I noticed that all the connections to the order management server, whether opened via the custom tag or my new code, remain open in either a TIME_WAIT or FIN_WAIT2 status for well over 2 minutes, even though I know for a fact that my new code is definitely closing the connection from the web server side. 
    They do all close eventually, but I’m wondering 1. Why they’re remaining open that long; 2. Is that normal; and 3. If all these connections remaining open could be what’s causing ColdFusion to choke. 
    Does this sound plausible?  If so, does anyone have any suggestions/recommendations about how to fix it?  My research seems to indicate this might be a matter of the order management system not closing the connection on its end, but I’m in way over my head, and before I go to client and tell them it’s their OMS causing the issue, I need to feel a little more confident that I’m on the right track. 
    Any help or advice would be very greatly appreciated.  And thanks for taking the time to read through my long-winded explanation of the problem.
    Set-up details:
    ColdFusion Version: 9,0,0,251028  Standard 
    Operating System: Windows Server 2008 
    Java Version: 1.6.0_14 
    Java VM Name: Java HotSpot(TM) 64-Bit Server VM 
    Java VM Version: 14.0-b16 
    Thanks,
    Laurie

    Hi Laurie,
    Not aware of custom tag called CFX_JSOCKET. I guess the process you described very well is consuming a resource then you are getting a problem. Trick is what parameter to adjust. Perhaps you are running out of one the threads in CFadmin > Server Settings > Request Tuning.
    I expect if you enable CF Metrics logging where you can log the threads and other resources then you can find out which parameter needs adjusting. Let me know if you want some details on enabling CF Metrics. Perhaps others will have much better idea than me and help without the overhead of logging.
    The other interesting thing is you are using CF9.0.0. Do you have some reasons for not being on updater1 CF9.0.1?
    HTH, Carl.
    PS I posted before however seems to have gone, just hope does not come back and then I have posted twice.

  • Remove FOPE Domain/O365 Domain (Admin needed) - Causing Email issues.

    Good Morning,
    Long time ago (2007) I messed around setting up FOPE but did not do much with it, which is or currently transitioning to Office 365? Anyways, I logged into FOPE yesterday based on some help from another company that has been unable to email us, said they
    talked to Microsoft and the rep saw we had a FOPE account setup with mail server settings pointing to our old Exchange Server.. Turns out the company and many other companys that can't email us are using FOPE/O365 and Microsoft internally is using those settings
    to route mail to our old On-Premise Exchange Server and not picking up our new MX record.
    We have since transitioned to Google Apps (thus the new MX record), but from what we see - O365 Customers look like they are being routed  to the old Exchange Server based on those settings.. It looks like FOPE is set in a "read only" mode,
    I cannot change the MX record, or IP addresses to route mail to.. I would like to formally request the deletion of the Domain from both O365 and FOPE, this should resolve our Email issues. The domain in question is bangorschools DOT org
    I have logged into O365 and deleted the domain leaving the onmicrosoft domain, but It doesnt look like I can do anything with FOPE.. Even if I could just change the IP address to point to google, or someone at Microsoft can remove the account all together?
    Thank you,
    Kyle

    Hi,
    when you have been transitioned to EOP your FOPE-settings will be readonly. So you should contact FOPE/EOP support for help to remove your domain from FOPE, they can do changes.
    Greetings
    Christian
    Christian Groebner MVP Forefront

  • Ableton Live 9.1.7 instruments cause kernel panics

    Hello,
    only whenever I use an internal instrument in Ableton, my computer goes kernel panic.
    My libraries are outside the internal SSD (I have them on a 2 TB WD MyPassport Ultra), and the DAW is into the SSD. I always keep connected them while using the software.
    I usually use a Saffire Pro 24 DSP as audio device, but whether it is connected or not, kernel panic comes up.
    Here I have three examples of kernel panics. I have noticed that there are similarities, that I have marked in bold red, in particular in the kernel traps, part of whose locations are the same. I also marked in bold black the important things I think they may refer to my issues.
    This one happened on 26th January (I was NOT using my Saffire interface):
    Anonymous UUID:       78A4FC09-16F0-BC38-5EF6-E614CA9766E1
    Mon Jan 26 08:50:06 2015
    panic(cpu 2 caller 0xffffff801b6dc24e): Kernel trap at 0xffffff801b6a3699, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000101401000, CR3: 0x000000019563304b, CR4: 0x00000000001606e0
    RAX: 0x0000000000000001, RBX: 0x0000ff000000ff00, RCX: 0xffffff804025c280, RDX: 0x0000000000000821
    RSP: 0xffffff8208c3b700, RBP: 0xffffff8208c3b730, RSI: 0x0000000020b4f3bf, RDI: 0xffffff80214c7c28
    R8:  0x0000000000000001, R9:  0x00000000cccccccd, R10: 0xffffff801bc010b8, R11: 0x00000000ffe00001
    R12: 0xffffff80214c7c28, R13: 0xffffff801f2e7000, R14: 0x0000000000057000, R15: 0xffffff803e4a93e0
    RFL: 0x0000000000010206, RIP: 0xffffff801b6a3699, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000101401000, Error code: 0x0000000000000000, Fault CPU: 0x2
    Backtrace (CPU 2), Frame : Return Address
    0xffffff81fcde5df0 : 0xffffff801b622f79
    0xffffff81fcde5e70 : 0xffffff801b6dc24e
    0xffffff81fcde6040 : 0xffffff801b6f3746
    0xffffff81fcde6060 : 0xffffff801b6a3699
    0xffffff8208c3b730 : 0xffffff801b69be8b
    0xffffff8208c3baa0 : 0xffffff801b69b95f
    0xffffff8208c3bb80 : 0xffffff801babc2e9
    0xffffff8208c3bc80 : 0xffffff801babc58e
    0xffffff8208c3bcb0 : 0xffffff801baba35b
    0xffffff8208c3bd50 : 0xffffff801bab9935
    0xffffff8208c3bda0 : 0xffffff7f9c13da32
    0xffffff8208c3bdc0 : 0xffffff801bacd9ad
    0xffffff8208c3be10 : 0xffffff801b6b675e
    0xffffff8208c3be50 : 0xffffff801b626bc1
    0xffffff8208c3be80 : 0xffffff801b6139c5
    0xffffff8208c3bef0 : 0xffffff801b61e013
    0xffffff8208c3bf70 : 0xffffff801b6c9b8d
    0xffffff8208c3bfb0 : 0xffffff801b6f3f66
          Kernel Extensions in backtrace:
             tc.tctechnologies.driver.Saffire(4.1.4)[2A457423-886A-3738-BB87-189075721B57]@0 xffffff7f9c136000->0xffffff7f9c156fff
                dependency: com.apple.iokit.IOAudioFamily(1.9.7fc2)[092DA230-DD20-3369-A32B-E162A496C638]@0 xffffff7f9c07b000
                dependency: com.apple.iokit.IOFireWireFamily(4.5.5)[C83215A8-3406-35EC-8C24-A1746E9565DF]@0 xffffff7f9c0b2000
    BSD process name corresponding to current thread: MIDIServer
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x000000001b400000
    Kernel text base: 0xffffff801b600000
    System model name: MacBookPro11,2 (Mac-3CBD00234E554E41)
    System uptime in nanoseconds: 2896508957958
    last loaded kext at 244870054456: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f9d76f000, size 65536)
    last unloaded kext at 305063763791: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f9d76f000, size 57344)
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard 5.9
    tc.tctechnologies.driver.Saffire 4.1.4 18735
    com.apple.driver.AudioAUUC 1.60
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleGraphicsDevicePolicy 3.6.22
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.ApplePlatformEnabler 2.0.9d6
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleIntelHD5000Graphics 8.2.8
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleIntelFramebufferAzul 8.2.8
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleCameraInterface 4.26.0
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleUSBCardReader 3.4.1
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AirPort.Brcm4360 842.21.65
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    System Profile:
    Model: MacBookPro11,2, BootROM MBP112.0138.B07, 4 processors, Intel Core i7, 2.2 GHz, 16 GB, SMC 2.18f15
    Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.65)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0256F, 251 GB
    USB Device: Internal Memory Card Reader
    USB Device: My Passport 0741
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1
         This is what happened according to console:
    26/01/15 08:49:41,876 Ableton Index[560]: BUG in libdispatch client: kevent[EVFILT_WRITE] delete: "No such file or directory" - 0x2
    26/01/15 08:50:02,000 bootlog[0]: BOOT_TIME 1422258602 0
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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".
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 syslogd[26]: 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.
    26/01/15 08:50:04,000 kernel[0]: Longterm timer threshold: 1000 ms
    26/01/15 08:50:04,000 kernel[0]: PMAP: PCID enabled
    26/01/15 08:50:04,000 kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    26/01/15 08:50:04,000 kernel[0]: Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    26/01/15 08:50:04,000 kernel[0]: vm_page_bootstrap: 3957319 free pages and 204217 wired pages
    26/01/15 08:50:04,000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    26/01/15 08:50:04,000 kernel[0]: zone leak detection enabled
    26/01/15 08:50:04,000 kernel[0]: "vm_compressor_mode" is 4
    26/01/15 08:50:04,000 kernel[0]: standard timeslicing quantum is 10000 us
    26/01/15 08:50:04,000 kernel[0]: standard background quantum is 2500 us
    26/01/15 08:50:04,000 kernel[0]: mig_table_max_displ = 74
    26/01/15 08:50:04,000 kernel[0]: TSC Deadline Timer supported and enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    26/01/15 08:50:04,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    26/01/15 08:50:04,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    26/01/15 08:50:04,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    26/01/15 08:50:04,000 kernel[0]: calling mpo_policy_init for Sandbox
    26/01/15 08:50:04,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    26/01/15 08:50:04,000 kernel[0]: calling mpo_policy_init for Quarantine
    26/01/15 08:50:04,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    26/01/15 08:50:04,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    26/01/15 08:50:04,000 kernel[0]: The Regents of the University of California. All rights reserved.
    26/01/15 08:50:04,000 kernel[0]: MAC Framework successfully initialized
    26/01/15 08:50:04,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    26/01/15 08:50:04,000 kernel[0]: AppleKeyStore starting (BUILT: Jun  3 2014 21:40:51)
    26/01/15 08:50:04,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    26/01/15 08:50:04,000 kernel[0]: ACPI: sleep states S3 S4 S5
    26/01/15 08:50:04,000 kernel[0]: pci (build 21:30:51 Jun  3 2014), flags 0x63008, pfm64 (39 cpu) 0x7f80000000, 0x80000000
    26/01/15 08:50:04,000 kernel[0]: [ PCI configuration begin ]
    26/01/15 08:50:04,000 kernel[0]: console relocated to 0x7f90000000
    26/01/15 08:50:04,000 kernel[0]: [ PCI configuration end, bridges 12, devices 12 ]
    26/01/15 08:50:04,000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    26/01/15 08:50:04,000 kernel[0]: SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    26/01/15 08:50:04,000 kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    26/01/15 08:50:04,000 kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    26/01/15 08:50:04,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    26/01/15 08:50:04,000 kernel[0]: rooting via boot-uuid from /chosen: 0A52658A-4BA7-33D9-BA7C-167E7384CECF
    26/01/15 08:50:04,000 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>
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    26/01/15 08:50:04,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    26/01/15 08:50:04,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/SSD0@0/Ap pleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlo ckStorageDriver/APPLE SSD SM0256F Media/IOGUIDPartitionScheme/Customer@2
    26/01/15 08:50:04,000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    26/01/15 08:50:04,000 kernel[0]: jnl: b(1, 2): replay_journal: from: 4720128 to: 12338688 (joffset 0x19502000)
    26/01/15 08:50:04,000 kernel[0]: srom rev:11
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.626017: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.626030: Data written into the PLL_CNTRL_ADDR2: 00000c31
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.626093: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.632856: BTCOEXIST off
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.633046: BRCM tunables:
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.633051:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    26/01/15 08:50:04,000 kernel[0]: ARPT: 0.633620: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xa0600004]
    26/01/15 08:50:04,000 kernel[0]: 6.30.223.154 (r420397)
    26/01/15 08:50:04,000 kernel[0]: jnl: b(1, 2): journal replay done.
    26/01/15 08:50:04,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    26/01/15 08:50:04,000 kernel[0]: XCPM: registered
    26/01/15 08:50:04,000 kernel[0]: IOThunderboltSwitch<0xffffff803795f800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    26/01/15 08:50:04,000 kernel[0]: IOThunderboltSwitch<0xffffff803795f800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    26/01/15 08:50:04,000 kernel[0]: USBMSC Identifier (non-unique): 575838314135333131333039 0x1058 0x741 0x1022, 3
    26/01/15 08:50:04,000 kernel[0]: USBMSC Identifier (non-unique): 000000000820 0x5ac 0x8406 0x820, 3
    26/01/15 08:50:04,000 kernel[0]: hfs: Removed 73 orphaned / unlinked files and 31 directories
    26/01/15 08:50:02,701 com.apple.launchd[1]: *** launchd[1] has started up. ***
    26/01/15 08:50:02,701 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    26/01/15 08:50:04,000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    26/01/15 08:50:04,130 com.apple.SecurityServer[22]: Session 100000 created
    26/01/15 08:50:04,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    26/01/15 08:50:04,000 kernel[0]: IO80211Interface::efiNVRAMPublished():
    26/01/15 08:50:04,205 com.apple.SecurityServer[22]: Entering service
    26/01/15 08:50:04,000 kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    26/01/15 08:50:04,223 configd[25]: dhcp_arp_router: en0 SSID unavailable
    26/01/15 08:50:04,250 UserEventAgent[18]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    26/01/15 08:50:04,254 UserEventAgent[18]: Captive: CNPluginHandler en0: Inactive
    26/01/15 08:50:04,279 configd[25]: network changed.
    26/01/15 08:50:04,280 configd[25]: setting hostname to "MacBook-Pro-di-Antonio.local"
    26/01/15 08:50:04,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    26/01/15 08:50:04,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    26/01/15 08:50:04,000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    26/01/15 08:50:04,000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    26/01/15 08:50:04,000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    26/01/15 08:50:04,000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    26/01/15 08:50:04,000 kernel[0]: Previous Shutdown Cause: 5
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::init
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::probe
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::start
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::start: fS2DeviceRegs=0xffffff82032c0000 (len=65536)
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::start: fS2DeviceMemory=0xffffff82034f9000 (len=268435456)
    26/01/15 08:50:04,000 kernel[0]: AppleCamIn::start: fISPRegsMem=0xffffff8038b05a00 (len=1048576)
    26/01/15 08:50:04,000 kernel[0]: virtual bool AppleCamIn::start(IOService *): about to configure DDR
    26/01/15 08:50:04,000 kernel[0]: IOBluetoothUSBDFU::probe
    26/01/15 08:50:04,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8289 FirmwareVersion - 0x0079
    26/01/15 08:50:04,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x1800 ****
    26/01/15 08:50:04,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x1800 ****
    26/01/15 08:50:04,000 kernel[0]: init
    26/01/15 08:50:04,000 kernel[0]: probe
    26/01/15 08:50:04,390 fseventsd[49]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (27917 2 27939)
    26/01/15 08:50:04,000 kernel[0]: IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
    26/01/15 08:50:04,000 kernel[0]: IOPPF: XCPM mode
    26/01/15 08:50:04,431 fseventsd[49]: log dir: /.fseventsd getting new uuid: 05C90AFF-5046-423D-BE55-B87AFF7743C5
    26/01/15 08:50:04,000 kernel[0]: save_ddr_phy_regs: saving 127 DDR PHY shmoo-calibrated registers
    26/01/15 08:50:04,000 kernel[0]: SMC::smcIH WARNING: unexpected interrupt: 0x55
    26/01/15 08:50:04,000 kernel[0]: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x20 not set) notif=0x0
    26/01/15 08:50:04,000 kernel[0]: SMC::smcIH WARNING: unexpected interrupt: 0x54
    26/01/15 08:50:05,000 kernel[0]: start
    26/01/15 08:50:05,000 kernel[0]: DSMOS has arrived
    26/01/15 08:50:05,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x1800
    26/01/15 08:50:05,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    26/01/15 08:50:05,000 kernel[0]: Saffire - 4.1.4.18735 (x86_64) Jun  4 2014 19:12:40
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path_object = 0xffffff8037446620
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path = IOACPIPlane:/_SB/PCI0@0/RP04@1c0003/CMRA@0
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_device_entry = 0xffffff80378c2e00
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIDevice = 0xffffff80378c2e00
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIPowerEnabled = 1
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::start - link control offset in PCI bridge = 0x50
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::start - pmcsr offset in PCI bridge = 0xa4
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::power_off_hardware
    26/01/15 08:50:05,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    26/01/15 08:50:05,000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x2b40 -- 0x2000 -- 0x1800 ****
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::initForPM
    26/01/15 08:50:05,000 kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    26/01/15 08:50:06,000 kernel[0]: hmm.. mismatch sizes: 3100 vs 20
    26/01/15 08:50:06,000 kernel[0]: fGPUIdleIntervalMS = 0
    26/01/15 08:50:06,000 kernel[0]: fGPUIdleIntervalMS = 0
    26/01/15 08:50:06,000 kernel[0]: fGPUIdleIntervalMS = 0
    26/01/15 08:50:06,000 kernel[0]: fGPUIdleIntervalMS = 0
    26/01/15 08:50:06,000 kernel[0]: en1: promiscuous mode enable succeeded
    26/01/15 08:50:06,000 kernel[0]: en2: promiscuous mode enable succeeded
    26/01/15 08:50:06,000 kernel[0]: VM Swap Subsystem is ON
    26/01/15 08:50:06,677 hidd[88]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    26/01/15 08:50:06,681 hidd[88]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    26/01/15 08:50:06,689 SystemStarter[64]: lstat("/Library/StartupItems/StartupParameters.plist/StartupParameters.plist"): Not a directory
    26/01/15 08:50:06,694 DumpPanic[91]: Saved panic report for kernel to /Library/Logs/DiagnosticReports/Kernel_2015-01-26-085006_MacBook-Pro-di-Antonio .panic
    26/01/15 08:50:06,721 com.apple.usbmuxd[62]: usbmuxd-344.3 on Oct 13 2014 at 21:10:09, running 64 bit
    26/01/15 08:50:06,773 loginwindow[83]: Login Window Application Started
    26/01/15 08:50:06,786 digest-service[105]: label: default
    26/01/15 08:50:06,786 digest-service[105]: dbname: od:/Local/Default
    26/01/15 08:50:06,786 digest-service[105]: mkey_file: /var/db/krb5kdc/m-key
    26/01/15 08:50:06,786 digest-service[105]: acl_file: /var/db/krb5kdc/kadmind.acl
    26/01/15 08:50:06,788 digest-service[105]: digest-request: uid=0
    26/01/15 08:50:06,789 mDNSResponder[80]: mDNSResponder mDNSResponder-522.92.1 (Jun  3 2014 12:57:56) starting OSXVers 13
    26/01/15 08:50:06,795 awacsd[99]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    26/01/15 08:50:06,799 awacsd[99]: InnerStore CopyAllZones: no info in Dynamic Store
    26/01/15 08:50:06,824 digest-service[105]: digest-request: netr probe 0
    26/01/15 08:50:06,824 digest-service[105]: digest-request: init request
    26/01/15 08:50:06,833 digest-service[105]: digest-request: init return domain: BUILTIN server: MACBOOK-PRO-DI-ANTONIO indomain was: <NULL>
    26/01/15 08:50:06,848 WindowServer[114]: Server is starting up
    26/01/15 08:50:06,852 WindowServer[114]: Session 256 retained (2 references)
    26/01/15 08:50:06,852 WindowServer[114]: Session 256 released (1 references)
    26/01/15 08:50:06,856 mds[79]: (Normal) FMW: FMW 0 0
    26/01/15 08:50:06,870 com.apple.kextd[19]: kext com.paceap.kext.pacesupport.snowleopard  509009000 is in exception list, allowing to load
    26/01/15 08:50:06,874 WindowServer[114]: Session 256 retained (2 references)
    26/01/15 08:50:06,876 WindowServer[114]: init_page_flip: page flip mode is on
    26/01/15 08:50:06,878 systemkeychain[116]: done file: /var/run/systemkeychaincheck.done
    26/01/15 08:50:06,888 configd[25]: network changed.
    26/01/15 08:50:06,891 configd[25]: network changed: DNS*
    26/01/15 08:50:06,906 apsd[101]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    26/01/15 08:50:06,906 airportd[103]: airportdProcessDLILEvent: en0 attached (up)
    26/01/15 08:50:06,000 kernel[0]: AirPort_Brcm4360_P2PInterface::init name <p2p0> role 1
    26/01/15 08:50:06,000 kernel[0]: AirPort_Brcm4360_P2PInterface::init() <p2p> role 1
    26/01/15 08:50:06,939 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    26/01/15 08:50:06,939 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    26/01/15 08:50:06,946 locationd[85]: NBB-Could not get UDID for stable refill timing, falling back on random
    26/01/15 08:50:06,961 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    26/01/15 08:50:06,973 WindowServer[114]: Found 27 modes for display 0x00000000 [27, 0]
    26/01/15 08:50:06,000 kernel[0]: nspace-handler-set-snapshot-time: 1422258608
    26/01/15 08:50:06,976 com.apple.mtmd[78]: Set snapshot time: 2015-01-26 08:50:08 +0100 (current time: 2015-01-26 08:50:06 +0100)
    26/01/15 08:50:07,009 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,010 locationd[85]: Location icon should now be in state 'Inactive'
    26/01/15 08:50:07,016 locationd[85]: locationd was started after an unclean shutdown
    26/01/15 08:50:07,036 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,054 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,055 WindowServer[114]: mux_initialize: Couldn't find any matches
    26/01/15 08:50:07,056 WindowServer[114]: Found 27 modes for display 0x00000000 [27, 0]
    26/01/15 08:50:07,061 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,061 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,061 WindowServer[114]: Found 1 modes for display 0x00000000 [1, 0]
    26/01/15 08:50:07,100 WindowServer[114]: WSMachineUsesNewStyleMirroring: true
    26/01/15 08:50:07,100 WindowServer[114]: Display 0x04280880: GL mask 0x1; bounds (0, 0)[1440 x 900], 27 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a022, S/N 0, Unit 0, Rotation 0
    UUID 0xfd6e905353b752245892f9f7ec52cef3
    26/01/15 08:50:07,100 WindowServer[114]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,100 WindowServer[114]: 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
    26/01/15 08:50:07,100 WindowServer[114]: 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
    26/01/15 08:50:07,101 WindowServer[114]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,114 WindowServer[114]: WSSetWindowTransform: Singular matrix
    26/01/15 08:50:07,114 WindowServer[114]: WSSetWindowTransform: Singular matrix
    26/01/15 08:50:07,114 WindowServer[114]: WSSetWindowTransform: Singular matrix
    26/01/15 08:50:07,118 mDNSResponder[80]: D2D_IPC: Loaded
    26/01/15 08:50:07,118 mDNSResponder[80]: D2DInitialize succeeded
    26/01/15 08:50:07,122 mDNSResponder[80]:   4: Listening for incoming Unix Domain Socket client requests
    26/01/15 08:50:07,131 WindowServer[114]: Display 0x04280880: GL mask 0x1; bounds (0, 0)[1440 x 900], 27 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a022, S/N 0, Unit 0, Rotation 0
    UUID 0xfd6e905353b752245892f9f7ec52cef3
    26/01/15 08:50:07,131 WindowServer[114]: Display 0x003f0040: GL mask 0x10; bounds (2464, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,131 WindowServer[114]: Display 0x003f003f: GL mask 0x8; bounds (2465, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,131 WindowServer[114]: Display 0x003f003e: GL mask 0x4; bounds (2466, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,132 WindowServer[114]: Display 0x003f003d: GL mask 0x2; bounds (2467, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    26/01/15 08:50:07,132 WindowServer[114]: CGXPerformInitialDisplayConfiguration
    26/01/15 08:50:07,132 WindowServer[114]:   Display 0x04280880: Unit 0; Vendor 0x610 Model 0xa022 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 2
    26/01/15 08:50:07,132 WindowServer[114]:   Display 0x003f0040: Unit 4; 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
    26/01/15 08:50:07,132 WindowServer[114]:   Display 0x003f003f: Unit 3; 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
    26/01/15 08:50:07,132 WindowServer[114]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    26/01/15 08:50:07,132 WindowServer[114]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2467,0)[1 x 1], Rotation 0, Resolution 1
    26/01/15 08:50:07,143 networkd[136]: networkd.136 built Aug 24 2013 22:08:46
    26/01/15 08:50:07,148 WindowServer[114]: GLCompositor: GL renderer id 0x01024502, GL mask 0x0000001f, accelerator 0x000034a7, unit 0, caps QEX|MIPMAP, vram 1536 MB
    26/01/15 08:50:07,148 WindowServer[114]: GLCompositor: GL renderer id 0x01024502, GL mask 0x0000001f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    26/01/15 08:50:07,148 WindowServer[114]: GLCompositor enabled for tile size [256 x 256]
    26/01/15 08:50:07,148 WindowServer[114]: CGXGLInitMipMap: mip map mode is on
    26/01/15 08:50:07,154 loginwindow[83]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    26/01/15 08:50:07,232 WindowServer[114]: Display 0x04280880: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    26/01/15 08:50:07,249 launchctl[143]: com.apple.findmymacmessenger: Already loaded
    26/01/15 08:50:07,262 com.apple.SecurityServer[22]: Session 100005 created
    26/01/15 08:50:07,292 UserEventAgent[145]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    26/01/15 08:50:07,309 loginwindow[83]: Setting the initial value of the magsave brightness level 2
    26/01/15 08:50:07,333 loginwindow[83]: Login Window Started Security Agent
    26/01/15 08:50:07,391 SecurityAgent[152]: This is the first run
    26/01/15 08:50:07,391 SecurityAgent[152]: MacBuddy was run = 0
    26/01/15 08:50:07,402 WindowServer[114]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280880 device: 0x7fb46a710840  isBackBuffered: 1 numComp: 3 numDisp: 3
    26/01/15 08:50:07,402 WindowServer[114]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fb46a710840) - enabling OpenGL
    26/01/15 08:50:07,000 kernel[0]: hfs: early journal init: volume on disk1s2 is read-only and journal is dirty.  Can not mount volume.
    26/01/15 08:50:07,000 kernel[0]: hfs_mountfs: hfs_early_journal_init failed, erroring out
    26/01/15 08:50:07,000 kernel[0]: hfs_mount: hfs_mountfs returned error=22 for device disk1s2
    26/01/15 08:50:07,493 diskarbitrationd[23]: unable to mount /dev/disk1s2 (status code 0x00000001).
    26/01/15 08:50:07,000 kernel[0]: jnl: disk1s2: replay_journal: from: 97083392 to: 98193408 (joffset 0x3a38000)
    26/01/15 08:50:07,935 parentalcontrolsd[172]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    These ones happened yesterday (on 30th January):
    Anonymous UUID:       78A4FC09-16F0-BC38-5EF6-E614CA9766E1
    Fri Jan 30 18:29:07 2015
    panic(cpu 6 caller 0xffffff8012adc24e): Kernel trap at 0xffffff8012aa3699, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x00007fdc78dc5000, CR3: 0x000000001521e000, CR4: 0x00000000001606e0
    RAX: 0x0000000000000001, RBX: 0x0000ff000000ff00, RCX: 0xffffff8035881cf0, RDX: 0x0000000000000821
    RSP: 0xffffff82118ab610, RBP: 0xffffff82118ab640, RSI: 0x0000000020b4f3bf, RDI: 0xffffff80188993d0
    R8:  0x0000000000000000, R9:  0x0000000000000001, R10: 0x0000000000000fff, R11: 0x0000000000001301
    R12: 0xffffff80188993d0, R13: 0xffffff80166e7000, R14: 0x00000000000ad000, R15: 0xffffff804921db20
    RFL: 0x0000000000010206, RIP: 0xffffff8012aa3699, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00007fdc78dc5000, Error code: 0x0000000000000000, Fault CPU: 0x6
    Backtrace (CPU 6), Frame : Return Address
    0xffffff81f40c5df0 : 0xffffff8012a22f79
    0xffffff81f40c5e70 : 0xffffff8012adc24e
    0xffffff81f40c6040 : 0xffffff8012af3746
    0xffffff81f40c6060 : 0xffffff8012aa3699
    0xffffff82118ab640 : 0xffffff8012a9be8b
    0xffffff82118ab9b0 : 0xffffff8012a7368b
    0xffffff82118aba10 : 0xffffff8012ebc311
    0xffffff82118abb10 : 0xffffff8012ebc58e
    0xffffff82118abb40 : 0xffffff7f945fbc3d
    0xffffff82118abb70 : 0xffffff7f945fbb3f
    0xffffff82118abb90 : 0xffffff7f945fca3e
    0xffffff82118abbb0 : 0xffffff7f94682afb
    0xffffff82118abbc0 : 0xffffff7f94613947
    0xffffff82118abbf0 : 0xffffff7f94685565
    0xffffff82118abd80 : 0xffffff7f94612682
    0xffffff82118abde0 : 0xffffff7f94621ebe
    0xffffff82118abe20 : 0xffffff7f93907222
    0xffffff82118abe40 : 0xffffff7f939071b5
    0xffffff82118abe70 : 0xffffff7f94610bae
    0xffffff82118abea0 : 0xffffff7f94622a05
    0xffffff82118abed0 : 0xffffff7f946208a8
    0xffffff82118abef0 : 0xffffff8012eb07f0
    0xffffff82118abf30 : 0xffffff8012eaf292
    0xffffff82118abf80 : 0xffffff8012eaf367
    0xffffff82118abfb0 : 0xffffff8012ad7417
          Kernel Extensions in backtrace:
             com.apple.iokit.IOAcceleratorFamily2(98.22)[0EC64777-94B9-32E3-AC03-A2367895744 B]@0xffffff7f945fa000->0xffffff7f9465efff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f930be000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f939f1000
             com.apple.iokit.IOSurface(91.1)[5E4EA3A2-5AB6-3577-B32D-EF5717A0EF5B]@0xffffff7 f93902000->0xffffff7f93914fff
             com.apple.driver.AppleIntelHD5000Graphics(8.2.8)[E2455B1B-94F0-3555-AE3A-55B6D2 7F1383]@0xffffff7f9466c000->0xffffff7f946bcfff
                dependency: com.apple.iokit.IOSurface(91.1)[5E4EA3A2-5AB6-3577-B32D-EF5717A0EF5B]@0xffffff7 f93902000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[4662B11D-2ECA-315D-875C-618C97CDAB2A]@0xffffff 7f930be000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[75D81741-64C1-3941-ADFA-9D6B6C434EE4]@0 xffffff7f939f1000
                dependency: com.apple.iokit.IOAcceleratorFamily2(98.22)[0EC64777-94B9-32E3-AC03-A2367895744 B]@0xffffff7f945fa000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x0000000012800000
    Kernel text base: 0xffffff8012a00000
    System model name: MacBookPro11,2 (Mac-3CBD00234E554E41)
    System uptime in nanoseconds: 11097825308845
    last loaded kext at 3901466674596: com.apple.filesystems.smbfs 2.0.2 (addr 0xffffff7f94b82000, size 335872)
    last unloaded kext at 3227205451902: com.apple.driver.AppleIntelMCEReporter 104 (addr 0xffffff7f94b6f000, size 32768)
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard 5.9
    tc.tctechnologies.driver.Saffire 4.1.4 18735
    com.apple.filesystems.smbfs 2.0.2
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleGraphicsDevicePolicy 3.6.22
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.ApplePlatformEnabler 2.0.9d6
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleIntelHD5000Graphics 8.2.8
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleIntelFramebufferAzul 8.2.8
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleCameraInterface 4.26.0
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleUSBCardReader 3.4.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AirPort.Brcm4360 842.21.65
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    System Profile:
    Model: MacBookPro11,2, BootROM MBP112.0138.B07, 4 processors, Intel Core i7, 2.2 GHz, 16 GB, SMC 2.18f15
    Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.65)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0256F, 251 GB
    USB Device: Internal Memory Card Reader
    USB Device: My Passport 0741
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: USB-PS/2 Optical Mouse
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1
    This is what happened according to console:
    30/01/15 18:28:42,000 kernel[0]: Google Chrome He (map: 0xffffff8037e0bd20) triggered DYLD shared region unnest for map: 0xffffff8037e0bd20, region 0x7fff87600000->0x7fff87800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    30/01/15 18:28:43,000 kernel[0]: Google Chrome He (map: 0xffffff8038273870) triggered DYLD shared region unnest for map: 0xffffff8038273870, region 0x7fff87600000->0x7fff87800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    30/01/15 18:29:03,000 bootlog[0]: BOOT_TIME 1422638943 0
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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".
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 syslogd[26]: 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.
    30/01/15 18:29:05,000 kernel[0]: Longterm timer threshold: 1000 ms
    30/01/15 18:29:05,000 kernel[0]: PMAP: PCID enabled
    30/01/15 18:29:05,000 kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    30/01/15 18:29:05,000 kernel[0]: Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    30/01/15 18:29:05,000 kernel[0]: vm_page_bootstrap: 3964999 free pages and 196537 wired pages
    30/01/15 18:29:05,000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    30/01/15 18:29:05,000 kernel[0]: zone leak detection enabled
    30/01/15 18:29:05,000 kernel[0]: "vm_compressor_mode" is 4
    30/01/15 18:29:05,000 kernel[0]: standard timeslicing quantum is 10000 us
    30/01/15 18:29:05,000 kernel[0]: standard background quantum is 2500 us
    30/01/15 18:29:05,000 kernel[0]: mig_table_max_displ = 74
    30/01/15 18:29:05,000 kernel[0]: TSC Deadline Timer supported and enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    30/01/15 18:29:05,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    30/01/15 18:29:05,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    30/01/15 18:29:05,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    30/01/15 18:29:05,000 kernel[0]: calling mpo_policy_init for Sandbox
    30/01/15 18:29:05,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    30/01/15 18:29:05,000 kernel[0]: calling mpo_policy_init for Quarantine
    30/01/15 18:29:05,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    30/01/15 18:29:05,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    30/01/15 18:29:05,000 kernel[0]: The Regents of the University of California. All rights reserved.
    30/01/15 18:29:05,000 kernel[0]: MAC Framework successfully initialized
    30/01/15 18:29:05,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    30/01/15 18:29:05,000 kernel[0]: AppleKeyStore starting (BUILT: Jun  3 2014 21:40:51)
    30/01/15 18:29:05,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    30/01/15 18:29:05,000 kernel[0]: ACPI: sleep states S3 S4 S5
    30/01/15 18:29:05,000 kernel[0]: pci (build 21:30:51 Jun  3 2014), flags 0x63008, pfm64 (39 cpu) 0x7f80000000, 0x80000000
    30/01/15 18:29:05,000 kernel[0]: [ PCI configuration begin ]
    30/01/15 18:29:05,000 kernel[0]: console relocated to 0x7f90000000
    30/01/15 18:29:05,000 kernel[0]: [ PCI configuration end, bridges 12, devices 12 ]
    30/01/15 18:29:05,000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    30/01/15 18:29:05,000 kernel[0]: SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    30/01/15 18:29:05,000 kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    30/01/15 18:29:05,000 kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    30/01/15 18:29:05,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    30/01/15 18:29:05,000 kernel[0]: rooting via boot-uuid from /chosen: 0A52658A-4BA7-33D9-BA7C-167E7384CECF
    30/01/15 18:29:05,000 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>
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    30/01/15 18:29:05,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    30/01/15 18:29:05,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/SSD0@0/Ap pleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlo ckStorageDriver/APPLE SSD SM0256F Media/IOGUIDPartitionScheme/Customer@2
    30/01/15 18:29:05,000 kernel[0]: BSD root: disk0s2, major 1, minor 3
    30/01/15 18:29:05,000 kernel[0]: jnl: b(1, 3): replay_journal: from: 8826368 to: 15343104 (joffset 0x19502000)
    30/01/15 18:29:05,000 kernel[0]: srom rev:11
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.834519: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.834530: Data written into the PLL_CNTRL_ADDR2: 00000c31
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.834582: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.841195: BTCOEXIST off
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.841383: BRCM tunables:
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.841387:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    30/01/15 18:29:05,000 kernel[0]: ARPT: 0.841946: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xa0600004]
    30/01/15 18:29:05,000 kernel[0]: 6.30.223.154 (r420397)
    30/01/15 18:29:05,000 kernel[0]: jnl: b(1, 3): journal replay done.
    30/01/15 18:29:03,502 com.apple.launchd[1]: *** launchd[1] has started up. ***
    30/01/15 18:29:03,502 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    30/01/15 18:29:05,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    30/01/15 18:29:05,000 kernel[0]: XCPM: registered
    30/01/15 18:29:05,000 kernel[0]: IOThunderboltSwitch<0xffffff8035c26800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    30/01/15 18:29:05,000 kernel[0]: IOThunderboltSwitch<0xffffff8035c26800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    30/01/15 18:29:05,000 kernel[0]: hfs: Removed 127 orphaned / unlinked files and 2415 directories
    30/01/15 18:29:05,000 kernel[0]: USBMSC Identifier (non-unique): 575838314135333131333039 0x1058 0x741 0x1022, 3
    30/01/15 18:29:05,000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    30/01/15 18:29:05,000 kernel[0]: USBMSC Identifier (non-unique): 000000000820 0x5ac 0x8406 0x820, 3
    30/01/15 18:29:05,099 com.apple.SecurityServer[22]: Session 100000 created
    30/01/15 18:29:05,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    30/01/15 18:29:05,000 kernel[0]: IO80211Interface::efiNVRAMPublished():
    30/01/15 18:29:05,178 com.apple.SecurityServer[22]: Entering service
    30/01/15 18:29:05,000 kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    30/01/15 18:29:05,193 configd[25]: dhcp_arp_router: en0 SSID unavailable
    30/01/15 18:29:05,224 UserEventAgent[18]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    30/01/15 18:29:05,228 UserEventAgent[18]: Captive: CNPluginHandler en0: Inactive
    30/01/15 18:29:05,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    30/01/15 18:29:05,000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    30/01/15 18:29:05,000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    30/01/15 18:29:05,000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    30/01/15 18:29:05,000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    30/01/15 18:29:05,000 kernel[0]: Previous Shutdown Cause: 5
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::init
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::probe
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::start
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::start: fS2DeviceRegs=0xffffff820162d000 (len=65536)
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::start: fS2DeviceMemory=0xffffff8202176000 (len=268435456)
    30/01/15 18:29:05,000 kernel[0]: AppleCamIn::start: fISPRegsMem=0xffffff8036eb5480 (len=1048576)
    30/01/15 18:29:05,000 kernel[0]: virtual bool AppleCamIn::start(IOService *): about to configure DDR
    30/01/15 18:29:05,000 kernel[0]: IOBluetoothUSBDFU::probe
    30/01/15 18:29:05,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8289 FirmwareVersion - 0x0079
    30/01/15 18:29:05,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][star

    UPDATE!
    I've tried to use Ableton Live 9.1.7 with MIDI tracks open with and without Google Chrome open.
    Chrome just appears to be the problem, because I encountered another kernel panic while it was open. Here you are the kernel report and the console events:
    Anonymous UUID:       78A4FC09-16F0-BC38-5EF6-E614CA9766E1
    Sat Jan 31 15:13:39 2015
    panic(cpu 0 caller 0xffffff8006edc24e): Kernel trap at 0xffffff8006ea3699, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x00007fff89a43e37, CR3: 0x000000006583c07b, CR4: 0x00000000001606e0
    RAX: 0x0000000000000001, RBX: 0x0000ff000000ff00, RCX: 0xffffff802d933000, RDX: 0x0000000000000821
    RSP: 0xffffff81f42fbd20, RBP: 0xffffff81f42fbd50, RSI: 0x0000000020b4f3bf, RDI: 0xffffff800cb80950
    R8:  0x0000000000000000, R9:  0xffffff81f42fbed0, R10: 0x0000000000000010, R11: 0x00007fff89a409b0
    R12: 0xffffff800cb80950, R13: 0xffffff800aae7000, R14: 0x00000000015eb000, R15: 0xffffff80286cf8e0
    RFL: 0x0000000000010206, RIP: 0xffffff8006ea3699, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x00007fff89a43e37, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81c85f7c50 : 0xffffff8006e22f79
    0xffffff81c85f7cd0 : 0xffffff8006edc24e
    0xffffff81c85f7ea0 : 0xffffff8006ef3746
    0xffffff81c85f7ec0 : 0xffffff8006ea3699
    0xffffff81f42fbd50 : 0xffffff8006e7833e
    0xffffff81f42fbf20 : 0xffffff8006edc68c
    0xffffff81f42fbfb0 : 0xffffff8006ef364b
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x0000000006c00000
    Kernel text base: 0xffffff8006e00000
    System model name: MacBookPro11,2 (Mac-3CBD00234E554E41)
    System uptime in nanoseconds: 8538647824795
    last loaded kext at 245051319940: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f88f6f000, size 65536)
    last unloaded kext at 305315012555: com.apple.filesystems.msdosfs 1.9 (addr 0xffffff7f88f6f000, size 57344)
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard 5.9
    tc.tctechnologies.driver.Saffire 4.1.4 18735
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.driver.AppleGraphicsDevicePolicy 3.6.22
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.ApplePlatformEnabler 2.0.9d6
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleCameraInterface 4.26.0
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleIntelHD5000Graphics 8.2.8
    com.apple.driver.AppleIntelFramebufferAzul 8.2.8
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleUSBCardReader 3.4.1
    com.apple.iokit.SCSITaskUserClient 3.6.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AirPort.Brcm4360 842.21.65
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleSMC 3.1.8
    com.apple.iokit.IOSurface 91.1
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOAcceleratorFamily2 98.22
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.6
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    Model: MacBookPro11,2, BootROM MBP112.0138.B07, 4 processors, Intel Core i7, 2.2 GHz, 16 GB, SMC 2.18f15
    Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (6.30.223.154.65)
    Bluetooth: Version 4.2.6f1 14216, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM0256F, 251 GB
    USB Device: Internal Memory Card Reader
    USB Device: My Passport 0741
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: USB-PS/2 Optical Mouse
    Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1
    This is the console log:
    31/01/15 15:13:35,000 bootlog[0]: BOOT_TIME 1422713615 0
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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".
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:37,000 syslogd[26]: 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.
    31/01/15 15:13:35,611 com.apple.launchd[1]: *** launchd[1] has started up. ***
    31/01/15 15:13:35,611 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    31/01/15 15:13:37,000 kernel[0]: Longterm timer threshold: 1000 ms
    31/01/15 15:13:37,000 kernel[0]: PMAP: PCID enabled
    31/01/15 15:13:37,000 kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    31/01/15 15:13:37,000 kernel[0]: Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    31/01/15 15:13:37,000 kernel[0]: vm_page_bootstrap: 4019271 free pages and 142265 wired pages
    31/01/15 15:13:37,000 kernel[0]: kext submap [0xffffff7f807a9000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a9000]
    31/01/15 15:13:37,000 kernel[0]: zone leak detection enabled
    31/01/15 15:13:37,000 kernel[0]: "vm_compressor_mode" is 4
    31/01/15 15:13:37,000 kernel[0]: standard timeslicing quantum is 10000 us
    31/01/15 15:13:37,000 kernel[0]: standard background quantum is 2500 us
    31/01/15 15:13:37,000 kernel[0]: mig_table_max_displ = 74
    31/01/15 15:13:37,000 kernel[0]: TSC Deadline Timer supported and enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    31/01/15 15:13:37,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    31/01/15 15:13:37,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    31/01/15 15:13:37,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    31/01/15 15:13:37,000 kernel[0]: calling mpo_policy_init for Sandbox
    31/01/15 15:13:37,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    31/01/15 15:13:37,000 kernel[0]: calling mpo_policy_init for Quarantine
    31/01/15 15:13:37,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    31/01/15 15:13:37,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    31/01/15 15:13:37,000 kernel[0]: The Regents of the University of California. All rights reserved.
    31/01/15 15:13:37,000 kernel[0]: MAC Framework successfully initialized
    31/01/15 15:13:37,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    31/01/15 15:13:37,000 kernel[0]: AppleKeyStore starting (BUILT: Jun  3 2014 21:40:51)
    31/01/15 15:13:37,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    31/01/15 15:13:37,000 kernel[0]: ACPI: sleep states S3 S4 S5
    31/01/15 15:13:37,000 kernel[0]: pci (build 21:30:51 Jun  3 2014), flags 0x63008, pfm64 (39 cpu) 0x7f80000000, 0x80000000
    31/01/15 15:13:37,000 kernel[0]: [ PCI configuration begin ]
    31/01/15 15:13:37,000 kernel[0]: console relocated to 0x7f90000000
    31/01/15 15:13:37,000 kernel[0]: [ PCI configuration end, bridges 12, devices 12 ]
    31/01/15 15:13:37,000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    31/01/15 15:13:37,000 kernel[0]: SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    31/01/15 15:13:37,000 kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    31/01/15 15:13:37,000 kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    31/01/15 15:13:37,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    31/01/15 15:13:37,000 kernel[0]: rooting via boot-uuid from /chosen: 0A52658A-4BA7-33D9-BA7C-167E7384CECF
    31/01/15 15:13:37,000 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>
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN kmod start
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeLZVN load succeeded
    31/01/15 15:13:37,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    31/01/15 15:13:37,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/SSD0@0/Ap pleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlo ckStorageDriver/APPLE SSD SM0256F Media/IOGUIDPartitionScheme/Customer@2
    31/01/15 15:13:37,000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    31/01/15 15:13:37,000 kernel[0]: jnl: b(1, 2): replay_journal: from: 24870400 to: 8900608 (joffset 0x19502000)
    31/01/15 15:13:37,000 kernel[0]: srom rev:11
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.854452: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.854464: Data written into the PLL_CNTRL_ADDR2: 00000c31
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.854522: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.861539: BTCOEXIST off
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.861735: BRCM tunables:
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.861739:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    31/01/15 15:13:37,000 kernel[0]: ARPT: 0.862329: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xa0600004]
    31/01/15 15:13:37,000 kernel[0]: 6.30.223.154 (r420397)
    31/01/15 15:13:37,000 kernel[0]: jnl: b(1, 2): journal replay done.
    31/01/15 15:13:37,000 kernel[0]: IOThunderboltSwitch<0xffffff8028477800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    31/01/15 15:13:37,000 kernel[0]: IOThunderboltSwitch<0xffffff8028477800>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    31/01/15 15:13:37,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    31/01/15 15:13:37,000 kernel[0]: XCPM: registered
    31/01/15 15:13:37,000 kernel[0]: hfs: Removed 60 orphaned / unlinked files and 978 directories
    31/01/15 15:13:37,000 kernel[0]: USBMSC Identifier (non-unique): 575838314135333131333039 0x1058 0x741 0x1022, 3
    31/01/15 15:13:37,000 kernel[0]: USBMSC Identifier (non-unique): 000000000820 0x5ac 0x8406 0x820, 3
    31/01/15 15:13:37,000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    31/01/15 15:13:37,106 com.apple.SecurityServer[22]: Session 100000 created
    31/01/15 15:13:37,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    31/01/15 15:13:37,000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    31/01/15 15:13:37,181 com.apple.SecurityServer[22]: Entering service
    31/01/15 15:13:37,000 kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    31/01/15 15:13:37,203 configd[25]: dhcp_arp_router: en0 SSID unavailable
    31/01/15 15:13:37,227 UserEventAgent[18]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    31/01/15 15:13:37,235 UserEventAgent[18]: Captive: CNPluginHandler en0: Inactive
    31/01/15 15:13:37,000 kernel[0]: init
    31/01/15 15:13:37,000 kernel[0]: probe
    31/01/15 15:13:37,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    31/01/15 15:13:37,000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    31/01/15 15:13:37,000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    31/01/15 15:13:37,000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    31/01/15 15:13:37,000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    31/01/15 15:13:37,000 kernel[0]: Previous Shutdown Cause: 5
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::init
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::probe
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::start
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::start: fS2DeviceRegs=0xffffff81f4245000 (len=65536)
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::start: fS2DeviceMemory=0xffffff8200014000 (len=268435456)
    31/01/15 15:13:37,000 kernel[0]: AppleCamIn::start: fISPRegsMem=0xffffff8029837380 (len=1048576)
    31/01/15 15:13:37,000 kernel[0]: virtual bool AppleCamIn::start(IOService *): about to configure DDR
    31/01/15 15:13:37,309 configd[25]: setting hostname to "MacBook-Pro-di-Antonio.local"
    31/01/15 15:13:37,315 configd[25]: network changed.
    31/01/15 15:13:37,000 kernel[0]: IOBluetoothUSBDFU::probe
    31/01/15 15:13:37,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8289 FirmwareVersion - 0x0079
    31/01/15 15:13:37,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xf000 ****
    31/01/15 15:13:37,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xf000 ****
    31/01/15 15:13:37,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    31/01/15 15:13:37,000 kernel[0]: IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
    31/01/15 15:13:37,000 kernel[0]: IOPPF: XCPM mode
    31/01/15 15:13:37,000 kernel[0]: save_ddr_phy_regs: saving 127 DDR PHY shmoo-calibrated registers
    31/01/15 15:13:37,744 fseventsd[52]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (47507 2 47545)
    31/01/15 15:13:37,745 fseventsd[52]: log dir: /.fseventsd getting new uuid: D0CEFB1E-6108-4BBE-9BA0-7EFFC8121A51
    31/01/15 15:13:38,000 kernel[0]: SMC::smcIH WARNING: unexpected interrupt: 0x55
    31/01/15 15:13:38,000 kernel[0]: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x20 not set) notif=0x0
    31/01/15 15:13:38,000 kernel[0]: SMC::smcIH WARNING: unexpected interrupt: 0x54
    31/01/15 15:13:38,000 kernel[0]: start
    31/01/15 15:13:38,000 kernel[0]: DSMOS has arrived
    31/01/15 15:13:38,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xf000
    31/01/15 15:13:38,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    31/01/15 15:13:38,000 kernel[0]: Saffire - 4.1.4.18735 (x86_64) Jun  4 2014 19:12:40
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path_object = 0xffffff8027f5c620
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path = IOACPIPlane:/_SB/PCI0@0/RP04@1c0003/CMRA@0
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_device_entry = 0xffffff80283d9e00
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIDevice = 0xffffff80283d9e00
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIPowerEnabled = 1
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::start - link control offset in PCI bridge = 0x50
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::start - pmcsr offset in PCI bridge = 0xa4
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::power_off_hardware
    31/01/15 15:13:38,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    31/01/15 15:13:38,000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x1b40 -- 0xb000 -- 0xf000 ****
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::initForPM
    31/01/15 15:13:38,000 kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    31/01/15 15:13:39,000 kernel[0]: hmm.. mismatch sizes: 3100 vs 20
    31/01/15 15:13:39,000 kernel[0]: fGPUIdleIntervalMS = 0
    31/01/15 15:13:39,000 kernel[0]: fGPUIdleIntervalMS = 0
    31/01/15 15:13:39,000 kernel[0]: fGPUIdleIntervalMS = 0
    31/01/15 15:13:39,000 kernel[0]: fGPUIdleIntervalMS = 0
    31/01/15 15:13:39,000 kernel[0]: en1: promiscuous mode enable succeeded
    31/01/15 15:13:39,000 kernel[0]: en2: promiscuous mode enable succeeded
    31/01/15 15:13:39,000 kernel[0]: VM Swap Subsystem is ON
    31/01/15 15:13:39,658 hidd[88]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    31/01/15 15:13:39,659 hidd[88]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    31/01/15 15:13:39,664 SystemStarter[64]: lstat("/Library/StartupItems/StartupParameters.plist/StartupParameters.plist"): Not a directory
    31/01/15 15:13:39,665 DumpPanic[91]: Saved panic report for kernel to /Library/Logs/DiagnosticReports/Kernel_2015-01-31-151339_MacBook-Pro-di-Antonio .panic
    31/01/15 15:13:39,693 com.apple.usbmuxd[62]: usbmuxd-344.3 on Oct 13 2014 at 21:10:09, running 64 bit
    31/01/15 15:13:39,744 loginwindow[83]: Login Window Application Started
    31/01/15 15:13:39,760 awacsd[99]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    31/01/15 15:13:39,764 awacsd[99]: InnerStore CopyAllZones: no info in Dynamic Store
    31/01/15 15:13:39,773 mDNSResponder[80]: mDNSResponder mDNSResponder-522.92.1 (Jun  3 2014 12:57:56) starting OSXVers 13
    31/01/15 15:13:39,775 digest-service[105]: label: default
    31/01/15 15:13:39,776 digest-service[105]: dbname: od:/Local/Default
    31/01/15 15:13:39,776 digest-service[105]: mkey_file: /var/db/krb5kdc/m-key
    31/01/15 15:13:39,776 digest-service[105]: acl_file: /var/db/krb5kdc/kadmind.acl
    31/01/15 15:13:39,778 digest-service[105]: digest-request: uid=0
    31/01/15 15:13:39,826 WindowServer[115]: Server is starting up
    31/01/15 15:13:39,827 digest-service[105]: digest-request: netr probe 0
    31/01/15 15:13:39,828 digest-service[105]: digest-request: init request
    31/01/15 15:13:39,830 WindowServer[115]: Session 256 retained (2 references)
    31/01/15 15:13:39,830 WindowServer[115]: Session 256 released (1 references)
    31/01/15 15:13:39,835 mds[79]: (Normal) FMW: FMW 0 0
    31/01/15 15:13:39,836 digest-service[105]: digest-request: init return domain: BUILTIN server: MACBOOK-PRO-DI-ANTONIO indomain was: <NULL>
    31/01/15 15:13:39,841 com.apple.kextd[19]: kext com.paceap.kext.pacesupport.snowleopard  509009000 is in exception list, allowing to load
    31/01/15 15:13:39,851 WindowServer[115]: Session 256 retained (2 references)
    31/01/15 15:13:39,852 WindowServer[115]: init_page_flip: page flip mode is on
    31/01/15 15:13:39,854 systemkeychain[116]: done file: /var/run/systemkeychaincheck.done
    31/01/15 15:13:39,864 configd[25]: network changed.
    31/01/15 15:13:39,867 configd[25]: network changed: DNS*
    31/01/15 15:13:39,878 apsd[101]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    31/01/15 15:13:39,905 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    31/01/15 15:13:39,906 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    31/01/15 15:13:39,926 mds[79]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    31/01/15 15:13:39,938 airportd[103]: airportdProcessDLILEvent: en0 attached (up)
    31/01/15 15:13:39,000 kernel[0]: nspace-handler-set-snapshot-time: 1422713621
    31/01/15 15:13:39,000 kernel[0]: AirPort_Brcm4360_P2PInterface::init name <p2p0> role 1
    31/01/15 15:13:39,000 kernel[0]: AirPort_Brcm4360_P2PInterface::init() <p2p> role 1
    31/01/15 15:13:39,939 com.apple.mtmd[78]: Set snapshot time: 2015-01-31 15:13:41 +0100 (current time: 2015-01-31 15:13:39 +0100)
    31/01/15 15:13:39,952 WindowServer[115]: Found 27 modes for display 0x00000000 [27, 0]
    31/01/15 15:13:39,977 locationd[85]: NBB-Could not get UDID for stable refill timing, falling back on random
    31/01/15 15:13:39,988 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,018 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,035 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,036 WindowServer[115]: mux_initialize: Couldn't find any matches
    31/01/15 15:13:40,037 WindowServer[115]: Found 27 modes for display 0x00000000 [27, 0]
    31/01/15 15:13:40,042 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,042 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,042 WindowServer[115]: Found 1 modes for display 0x00000000 [1, 0]
    31/01/15 15:13:40,066 mDNSResponder[80]: D2D_IPC: Loaded
    31/01/15 15:13:40,067 mDNSResponder[80]: D2DInitialize succeeded
    31/01/15 15:13:40,068 WindowServer[115]: WSMachineUsesNewStyleMirroring: true
    31/01/15 15:13:40,068 WindowServer[115]: Display 0x04280880: GL mask 0x1; bounds (0, 0)[1440 x 900], 27 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a022, S/N 0, Unit 0, Rotation 0
    UUID 0xfd6e905353b752245892f9f7ec52cef3
    31/01/15 15:13:40,069 WindowServer[115]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,069 WindowServer[115]: 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
    31/01/15 15:13:40,069 WindowServer[115]: 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
    31/01/15 15:13:40,069 WindowServer[115]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,069 WindowServer[115]: WSSetWindowTransform: Singular matrix
    31/01/15 15:13:40,069 WindowServer[115]: WSSetWindowTransform: Singular matrix
    31/01/15 15:13:40,069 WindowServer[115]: WSSetWindowTransform: Singular matrix
    31/01/15 15:13:40,069 mDNSResponder[80]:   4: Listening for incoming Unix Domain Socket client requests
    31/01/15 15:13:40,079 WindowServer[115]: Display 0x04280880: GL mask 0x1; bounds (0, 0)[1440 x 900], 27 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a022, S/N 0, Unit 0, Rotation 0
    UUID 0xfd6e905353b752245892f9f7ec52cef3
    31/01/15 15:13:40,079 WindowServer[115]: Display 0x003f0040: GL mask 0x10; bounds (2464, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,079 WindowServer[115]: Display 0x003f003f: GL mask 0x8; bounds (2465, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,079 WindowServer[115]: Display 0x003f003e: GL mask 0x4; bounds (2466, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,079 WindowServer[115]: Display 0x003f003d: GL mask 0x2; bounds (2467, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    31/01/15 15:13:40,079 WindowServer[115]: CGXPerformInitialDisplayConfiguration
    31/01/15 15:13:40,079 WindowServer[115]:   Display 0x04280880: Unit 0; Vendor 0x610 Model 0xa022 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 2
    31/01/15 15:13:40,079 WindowServer[115]:   Display 0x003f0040: Unit 4; 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
    31/01/15 15:13:40,079 WindowServer[115]:   Display 0x003f003f: Unit 3; 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
    31/01/15 15:13:40,079 WindowServer[115]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    31/01/15 15:13:40,079 WindowServer[115]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2467,0)[1 x 1], Rotation 0, Resolution 1
    31/01/15 15:13:40,091 networkd[136]: networkd.136 built Aug 24 2013 22:08:46
    31/01/15 15:13:40,092 locationd[85]: Location icon should now be in state 'Inactive'
    31/01/15 15:13:40,093 WindowServer[115]: GLCompositor: GL renderer id 0x01024502, GL mask 0x0000001f, accelerator 0x000034a7, unit 0, caps QEX|MIPMAP, vram 1536 MB
    31/01/15 15:13:40,094 WindowServer[115]: GLCompositor: GL renderer id 0x01024502, GL mask 0x0000001f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    31/01/15 15:13:40,094 WindowServer[115]: GLCompositor enabled for tile size [256 x 256]
    31/01/15 15:13:40,094 WindowServer[115]: CGXGLInitMipMap: mip map mode is on
    31/01/15 15:13:40,099 locationd[85]: locationd was started after an unclean shutdown
    31/01/15 15:13:40,101 loginwindow[83]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    31/01/15 15:13:40,185 WindowServer[115]: Display 0x04280880: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    31/01/15 15:13:40,203 launchctl[143]: com.apple.findmymacmessenger: Already loaded
    31/01/15 15:13:40,219 com.apple.SecurityServer[22]: Session 100005 created
    31/01/15 15:13:40,272 loginwindow[83]: Setting the initial value of the magsave brightness level 1
    31/01/15 15:13:40,294 UserEventAgent[144]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    31/01/15 15:13:40,300 loginwindow[83]: Login Window Started Security Agent
    31/01/15 15:13:40,360 SecurityAgent[152]: This is the first run
    31/01/15 15:13:40,360 SecurityAgent[152]: MacBuddy was run = 0
    31/01/15 15:13:40,384 WindowServer[115]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280880 device: 0x7fc788c0de10  isBackBuffered: 1 numComp: 3 numDisp: 3
    31/01/15 15:13:40,384 WindowServer[115]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fc788c0de10) - enabling OpenGL
    31/01/15 15:13:40,000 kernel[0]: hfs: early journal init: volume on disk1s2 is read-only and journal is dirty.  Can not mount volume.
    31/01/15 15:13:40,000 kernel[0]: hfs_mountfs: hfs_early_journal_init failed, erroring out
    31/01/15 15:13:40,000 kernel[0]: hfs_mount: hfs_mountfs returned error=22 for device disk1s2
    31/01/15 15:13:40,421 diskarbitrationd[24]: unable to mount /dev/disk1s2 (status code 0x00000001).
    31/01/15 15:13:40,000 kernel[0]: jnl: disk1s2: replay_journal: from: 103047168 to: 106344448 (joffset 0x3a38000)
    31/01/15 15:13:40,869 parentalcontrolsd[172]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    31/01/15 15:13:41,000 kernel[0]: en0: 802.11d country code set to 'AL'.
    31/01/15 15:13:41,000 kernel[0]: en0: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    31/01/15 15:13:42,070 WindowServer[115]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    31/01/15 15:13:42,090 WindowServer[115]: Display 0x04280880: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    31/01/15 15:13:42,115 WindowServer[115]: Display 0x04280880: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    31/01/15 15:13:43,000 kernel[0]: ARPT: 8.880612: MacAuthEvent en0   Auth result for: 00:04:ed:93:06:00  MAC AUTH succeeded
    31/01/15 15:13:43,000 kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    31/01/15 15:13:43,000 kernel[0]: AirPort: Link Up on en0
    31/01/15 15:13:43,000 kernel[0]: en0: BSSID changed to 00:04:ed:93:06:00
    31/01/15 15:13:43,000 kernel[0]: AirPort: RSN handshake complete on en0
    31/01/15 15:13:43,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    31/01/15 15:13:45,091 mtmfs[77]: mount succeeded for /Volumes/MobileBackups
    31/01/15 15:13:45,100 mds[79]: (Normal) Volume: volume:0x7fcf9481fc00 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    31/01/15 15:13:45,101 mds[79]: (Normal) Volume: volume:0x7fcf9481fc00 ********** Created snapshot backup index
    31/01/15 15:13:45,000 kernel[0]: jnl: disk1s2: journal replay done.
    31/01/15 15:13:45,709 configd[25]: network changed: DNS* Proxy
    31/01/15 15:13:45,709 UserEventAgent[18]: Captive: [CNInfoNetworkActive:1655] en0: SSID 'Rete Wireless Casa' making interface primary (protected network)
    31/01/15 15:13:45,709 UserEventAgent[18]: Captive: CNPluginHandler en0: Evaluating
    31/01/15 15:13:45,710 UserEventAgent[18]: Captive: en0: Probing 'Rete Wireless Casa'
    31/01/15 15:13:45,713 configd[25]: network changed: v4(en0!:192.168.1.100) DNS+ Proxy+ SMB
    31/01/15 15:13:45,806 UserEventAgent[18]: Captive: CNPluginHandler en0: Authenticated
    31/01/15 15:13:45,707 ntpd[59]: proto: precision = 1.000 usec
    31/01/15 15:13:47,013 SecurityAgent[152]: User info context values set for antoniopastore
    31/01/15 15:13:47,108 apsd[101]: Unrecognized leaf certificate
    31/01/15 15:13:47,000 kernel[0]: hfs: Removed 0 orphaned / unlinked files and 49 directories
    31/01/15 15:13:47,000 kernel[0]: hfs: mounted PASTO on device disk1s2
    31/01/15 15:13:47,191 SecurityAgent[152]: Login Window login proceeding
    31/01/15 15:13:47,438 fseventsd[52]: event logs in /Volumes/PASTO/.fseventsd out of sync with volume.  destroying old logs. (47555 7 47555)
    31/01/15 15:13:47,620 fseventsd[52]: log dir: /Volumes/PASTO/.fseventsd getting new uuid: 4ED00700-ADC7-436D-80F4-E34671CA64AF
    31/01/15 15:13:47,673 fseventsd[52]: Events arrived for /Volumes/PASTO after an unmount request! Re-initializing.
    31/01/15 15:13:47,673 fseventsd[52]: creating a dls for /Volumes/PASTO but it already has one...
    31/01/15 15:13:50,000 kernel[0]: hfs: unmount initiated on PASTO on device disk1s2
    31/01/15 15:13:51,176 loginwindow[83]: Login Window - Returned from Security Agent
    31/01/15 15:13:51,209 loginwindow[83]: USER_PROCESS: 83 console
    31/01/15 15:13:51,226 airportd[103]: _doAutoJoin: Already associated to “Rete Wireless Casa”. Bailing on auto-join.
    31/01/15 15:13:51,000 kernel[0]: AppleKeyStore:Sending lock change 0
    31/01/15 15:13:51,289 com.apple.launchd.peruser.501[185]: Background: Aqua: Registering new GUI session.
    31/01/15 15:13:51,305 com.apple.launchd.peruser.501[185]: (com.spotify.webhelper) Unknown key: SpotifyPath
    31/01/15 15:13:51,305 com.apple.launchd.peruser.501[185]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    31/01/15 15:13:51,306 com.apple.launchd.peruser.501[185]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    31/01/15 15:13:51,308 launchctl[188]: com.apple.pluginkit.pkd: Already loaded
    31/01/15 15:13:51,308 launchctl[188]: com.apple.sbd: Already loaded
    31/01/15 15:13:51,315 distnoted[190]: # distnote server agent  absolute time: 17.423483612   civil time: Sat Jan 31 15:13:51 2015   pid: 190 uid: 501  root: no
    31/01/15 15:13:51,491 WindowServer[115]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    31/01/15 15:13:51,546 sharingd[218]: Starting Up...
    31/01/15 15:13:51,000 kernel[0]: Google Chrome (map: 0xffffff802ba3ac30) triggered DYLD shared region unnest for map: 0xffffff802ba3ac30, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:51,569 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    31/01/15 15:13:51,570 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    31/01/15 15:13:51,571 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    31/01/15 15:13:51,571 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    31/01/15 15:13:51,571 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    31/01/15 15:13:51,571 com.apple.audio.DriverHelper[211]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    31/01/15 15:13:51,588 WindowServer[115]: Display 0x04280880: Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    31/01/15 15:13:51,594 com.apple.audio.DriverHelper[211]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    31/01/15 15:13:51,594 com.apple.audio.DriverHelper[211]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    31/01/15 15:13:51,594 com.apple.audio.DriverHelper[211]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    31/01/15 15:13:51,682 xpcproxy[228]: assertion failed: 13E28: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    31/01/15 15:13:51,789 com.apple.SecurityServer[22]: Session 100008 created
    31/01/15 15:13:51,809 SystemUIServer[203]: MenuCracker 2.2 (/Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/MenuCracker.me nu)
      See http://sourceforge.net/projects/menucracker
      MenuCracker is now loaded. Ready to accept new menu extras.
    31/01/15 15:13:51,809 SystemUIServer[203]: failed to instantiate and get the principal class of bundle: NSBundle </Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/MenuCracker.me nu> (loaded)
    31/01/15 15:13:51,819 SystemUIServer[203]: MenuCracker: Allowing "MenuMeterCPUExtra".
    31/01/15 15:13:51,819 xpcproxy[234]: assertion failed: 13E28: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    31/01/15 15:13:51,820 SystemUIServer[203]: MenuCracker: Allowing "MenuMeterDiskExtra".
    31/01/15 15:13:51,821 SystemUIServer[203]: MenuCracker: Allowing "MenuMeterMemExtra".
    31/01/15 15:13:51,822 SystemUIServer[203]: MenuCracker: Allowing "MenuMeterNetExtra".
    31/01/15 15:13:51,826 SystemUIServer[203]: Could not load menu extra NSBundle </Library/PreferencePanes/MenuMeters.prefPane/Contents/Resources/MenuCracker.me nu> (loaded) for Class (null)
    31/01/15 15:13:51,827 SystemUIServer[203]: Cannot find executable for CFBundle 0x7fa632662fa0 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    31/01/15 15:13:51,841 SystemUIServer[203]: Cannot find executable for CFBundle 0x7fa6326614d0 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    31/01/15 15:13:51,842 SystemUIServer[203]: Cannot find executable for CFBundle 0x7fa632660100 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    31/01/15 15:13:51,851 UserEventAgent[189]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    31/01/15 15:13:51,892 com.apple.IconServicesAgent[236]: IconServicesAgent launched.
    31/01/15 15:13:51,905 Finder[204]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,905 Finder[204]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,905 Finder[204]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,905 Finder[204]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,905 Finder[204]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,915 com.apple.IconServicesAgent[236]: Failed to mmap file. The file has zero length.
    31/01/15 15:13:51,932 SystemUIServer[203]: MenuMeterCPU loaded.
    31/01/15 15:13:51,944 SystemUIServer[203]: MenuMeterDisk loaded.
    31/01/15 15:13:51,951 SystemUIServer[203]: MenuMeterMem loaded.
    31/01/15 15:13:51,962 SystemUIServer[203]: MenuMeterNet loaded.
    31/01/15 15:13:51,997 SystemUIServer[203]: *** WARNING: Method convertRectToBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
    31/01/15 15:13:51,997 SystemUIServer[203]: *** WARNING: Method convertRectFromBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
    31/01/15 15:13:52,006 SystemUIServer[203]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    31/01/15 15:13:52,006 SystemUIServer[203]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    31/01/15 15:13:52,083 Console[199]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    31/01/15 15:13:52,213 com.apple.SecurityServer[22]: Session 100012 created
    31/01/15 15:13:52,303 com.apple.IconServicesAgent[236]: main Failed to composit image for binding VariantBinding [0x12d] flags: 0x8 binding: FileInfoBinding [0x21f] - extension: mov, UTI: com.apple.quicktime-movie, fileType: ????.
    31/01/15 15:13:52,304 quicklookd[237]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: mov, UTI: com.apple.quicktime-movie, fileType: ???? request size:128 scale: 1
    31/01/15 15:13:52,305 com.apple.IconServicesAgent[236]: main Failed to composit image for binding VariantBinding [0x221] flags: 0x8 binding: FileInfoBinding [0x12f] - extension: MOV, UTI: com.apple.quicktime-movie, fileType: ????.
    31/01/15 15:13:52,306 quicklookd[237]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: MOV, UTI: com.apple.quicktime-movie, fileType: ???? request size:128 scale: 1
    31/01/15 15:13:52,329 com.apple.time[189]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    31/01/15 15:13:52,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9bd20) triggered DYLD shared region unnest for map: 0xffffff802cc9bd20, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:52,345 SystemUIServer[203]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    31/01/15 15:13:52,345 SystemUIServer[203]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    31/01/15 15:13:52,410 com.apple.SecurityServer[22]: Session 100013 created
    31/01/15 15:13:52,000 kernel[0]: hfs: mounted PASTO on device disk1s2
    31/01/15 15:13:52,809 accountsd[256]: assertion failed: 13E28: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    31/01/15 15:13:52,953 AirPlayUIAgent[257]: 2015-01-31 03:13:52.952738 PM [AirPlayUIAgent] Changed PIN pairing: no
    31/01/15 15:13:52,955 AirPlayUIAgent[257]: 2015-01-31 03:13:52.955107 PM [AirPlayUIAgent] Changed PIN pairing: no
    31/01/15 15:13:53,003 com.apple.time[189]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    31/01/15 15:13:53,026 com.apple.NotesMigratorService[259]: Joined Aqua audit session
    31/01/15 15:13:53,043 com.apple.internetaccounts[234]: An instance 0x7fa6fb230d10 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 0x7fa6fb230e30> (
    <NSKeyValueObservance 0x7fa6fb230dc0: Observer: 0x7fa6fb22a380, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff97ad143b, Property: 0x7fa6fb232f70>
    31/01/15 15:13:53,046 com.apple.internetaccounts[234]: An instance 0x7fa6fb12ff00 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 0x7fa6fb130120> (
    <NSKeyValueObservance 0x7fa6fb12ffb0: Observer: 0x7fa6fb12f810, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff97ad143b, Property: 0x7fa6fb232f70>
    31/01/15 15:13:53,056 com.apple.internetaccounts[234]: An instance 0x7fa6f96a5460 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 0x7fa6f96a55f0> (
    <NSKeyValueObservance 0x7fa6f96a5510: Observer: 0x7fa6f96a4390, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff97ad143b, Property: 0x7fa6fb232f70>
    31/01/15 15:13:53,059 com.apple.internetaccounts[234]: An instance 0x7fa6fb3c56a0 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 0x7fa6fb3b8220> (
    <NSKeyValueObservance 0x7fa6fb3c5720: Observer: 0x7fa6fb397350, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff97ad143b, Property: 0x7fa6fb232f70>
    31/01/15 15:13:53,076 com.apple.internetaccounts[234]: An instance 0x7fa6f945d7f0 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 0x7fa6f945d910> (
    <NSKeyValueObservance 0x7fa6f945d8a0: Observer: 0x7fa6f945c100, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff97ad143b, Property: 0x7fa6fb232f70>
    31/01/15 15:13:53,309 com.apple.IconServicesAgent[236]: main Failed to composit image for binding VariantBinding [0x24b] flags: 0x8 binding: FileInfoBinding [0x159] - extension: midi, UTI: public.midi-audio, fileType: ????.
    31/01/15 15:13:53,310 quicklookd[237]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: midi, UTI: public.midi-audio, fileType: ???? request size:256 scale: 1
    31/01/15 15:13:53,314 com.apple.IconServicesAgent[236]: main Failed to composit image for binding VariantBinding [0x15b] flags: 0x8 binding: FileInfoBinding [0x24d] - extension: sib, UTI: com.sibelius.score, fileType: ????.
    31/01/15 15:13:53,315 quicklookd[237]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x803] flags: 0x8 binding: FileInfoBinding [0x703] - extension: sib, UTI: com.sibelius.score, fileType: ???? request size:256 scale: 1
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b1e0) triggered DYLD shared region unnest for map: 0xffffff802cc9b1e0, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b2d0) triggered DYLD shared region unnest for map: 0xffffff802cc9b2d0, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b000) triggered DYLD shared region unnest for map: 0xffffff802cc9b000, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b0f0) triggered DYLD shared region unnest for map: 0xffffff802cc9b0f0, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:54,000 kernel[0]: Google Chrome He (map: 0xffffff802ddb0f00) triggered DYLD shared region unnest for map: 0xffffff802ddb0f00, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:54,476 awacsd[99]: Exiting
    31/01/15 15:13:55,887 com.apple.dock.extra[260]: <NSXPCConnection: 0x7fef0ca03f90>: received an undecodable message (no exported object to receive message). Dropping message.
    31/01/15 15:13:57,076 com.apple.launchd.peruser.501[185]: (com.apple.iTunesHelper.45440[305]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,094 com.apple.launchd.peruser.501[185]: (com.spotify.client.78704[306]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,107 com.apple.launchd.peruser.501[185]: (com.google.GoogleDrive.75712[307]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,117 com.apple.launchd.peruser.501[185]: (com.google.android.mtpagent.115664[308]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,137 com.apple.launchd.peruser.501[185]: (com.yourcompany.KiesAgent.116192[309]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,149 com.apple.launchd.peruser.501[185]: (OpenObject.fuspredownloader.117776[310]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,240 KiesAgent[309]: KiesAgent started, 0
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,364 Paragon Updater[300]: opening log at /Users/antoniopastore/Library/Logs/paragon.Paragon-Updater.log ...
    31/01/15 15:13:57,365 Paragon Updater[300]: done
    31/01/15 15:13:57,367 Paragon Updater[300]: Updater started. Updater version: 1.97
    31/01/15 15:13:57,368 Paragon Updater[300]: Arguments: --check, --delay=30
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,441 Skip Tunes[315]: Can't find app with identifier com.rdio.desktop
    31/01/15 15:13:57,471 Google Drive[307]: PyObjCPointer created: at 0xa02b2438 of type {__CFBoolean=}
    31/01/15 15:13:57,472 Google Drive[307]: PyObjCPointer created: at 0xa02b2430 of type {__CFBoolean=}
    31/01/15 15:13:57,474 Google Drive[307]: PyObjCPointer created: at 0xa02b2440 of type {__CFNumber=}
    31/01/15 15:13:57,474 Google Drive[307]: PyObjCPointer created: at 0xa02b2450 of type {__CFNumber=}
    31/01/15 15:13:57,475 Google Drive[307]: PyObjCPointer created: at 0xa02b2460 of type {__CFNumber=}
    31/01/15 15:13:57,516 WiFiKeychainProxy[288]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    31/01/15 15:13:57,517 WiFiKeychainProxy[288]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b000) triggered DYLD shared region unnest for map: 0xffffff802cc9b000, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:53,000 kernel[0]: Google Chrome He (map: 0xffffff802cc9b0f0) triggered DYLD shared region unnest for map: 0xffffff802cc9b0f0, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:54,000 kernel[0]: Google Chrome He (map: 0xffffff802ddb0f00) triggered DYLD shared region unnest for map: 0xffffff802ddb0f00, region 0x7fff8c600000->0x7fff8c800000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    31/01/15 15:13:54,476 awacsd[99]: Exiting
    31/01/15 15:13:55,887 com.apple.dock.extra[260]: <NSXPCConnection: 0x7fef0ca03f90>: received an undecodable message (no exported object to receive message). Dropping message.
    31/01/15 15:13:57,076 com.apple.launchd.peruser.501[185]: (com.apple.iTunesHelper.45440[305]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,094 com.apple.launchd.peruser.501[185]: (com.spotify.client.78704[306]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,107 com.apple.launchd.peruser.501[185]: (com.google.GoogleDrive.75712[307]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,117 com.apple.launchd.peruser.501[185]: (com.google.android.mtpagent.115664[308]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,137 com.apple.launchd.peruser.501[185]: (com.yourcompany.KiesAgent.116192[309]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,149 com.apple.launchd.peruser.501[185]: (OpenObject.fuspredownloader.117776[310]) Spawned and waiting for the debugger to attach before continuing...
    31/01/15 15:13:57,240 KiesAgent[309]: KiesAgent started, 0
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,000 kernel[0]: Sandbox: assistantd(297) deny file-read-data /Applications/32 Lives.app/Contents/Resources/TTLWrapperPlugin.dylib
    31/01/15 15:13:57,364 Paragon Updater[300]: opening log at /Users/antoniopastore/Library/Logs/paragon.Paragon-Updater.log ...
    31/01/15 15:13:57,365 Paragon Updater[300]: done
    31/01/15 15:13:57,367 Paragon Updater[300]: Updater started. Updater version: 1.97
    31/01/15 15:13:57,368 Paragon Updater[300]: Arguments: --check, --delay=30
    31

  • Mavericks takes 11 mins to boot, what is causing this?

    I believe this has started happening since upgrading from Mountain Lion to Mavericks.  Applications take a long time to start and the Mac is generally sluggish.  ML did not show this behaviour.
    My MBP takes 11 minutes in total from power on to restoring Mail, Google Chrome, Sublime Text 2, Terminal, 1Password.  I also started Console while it was booting up to check it's progress.  It took 11 minutes before I had my 6 tabs loaded in Chrome and the Mac was usable.
    I've noticed that there is a truckload of messages in my system.log, and many of them don't look good.  There is so much however, that I'm not sure where to start investigating the problem.  Can anyone help to point to the cause of this problem?  My Mac is becoming unusable for daily work at this point.
    system.log from boot to usable state:
    Feb  7 10:30:34 localhost bootlog[0]: BOOT_TIME 1391729434 0
    Feb  7 10:31:02 localhost syslogd[23]: 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.
    Feb  7 10:31:02 localhost syslogd[23]: 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".
    Feb  7 10:31:02 localhost syslogd[23]: 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.
    Feb  7 10:31:02 localhost syslogd[23]: 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.
    Feb  7 10:31:02 localhost syslogd[23]: 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.
    Feb  7 10:31:02 localhost syslogd[23]: 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.
    Feb  7 10:31:02 localhost syslogd[23]: 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.
    Feb  7 10:31:02 localhost syslogd[23]: 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.
    Feb  7 10:31:02 localhost syslogd[23]: 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.
    Feb  7 10:31:02 localhost syslogd[23]: 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.
    Feb  7 10:31:02 localhost syslogd[23]: 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.
    Feb  7 10:31:09 --- last message repeated 6 times ---
    Feb  7 10:31:02 localhost kernel[0]: Longterm timer threshold: 1000 ms
    Feb  7 10:31:02 localhost kernel[0]: PMAP: PCID enabled
    Feb  7 10:31:02 localhost kernel[0]: Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Feb  7 10:31:02 localhost kernel[0]: vm_page_bootstrap: 923761 free pages and 116623 wired pages
    Feb  7 10:31:02 localhost kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    Feb  7 10:31:02 localhost kernel[0]: zone leak detection enabled
    Feb  7 10:31:02 localhost kernel[0]: "vm_compressor_mode" is 4
    Feb  7 10:31:02 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Feb  7 10:31:02 localhost kernel[0]: standard background quantum is 2500 us
    Feb  7 10:31:02 localhost kernel[0]: mig_table_max_displ = 74
    Feb  7 10:31:02 localhost kernel[0]: TSC Deadline Timer supported and enabled
    Feb  7 10:31:02 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    Feb  7 10:31:02 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    Feb  7 10:31:02 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    Feb  7 10:31:02 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    Feb  7 10:31:02 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    Feb  7 10:31:02 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    Feb  7 10:31:02 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    Feb  7 10:31:02 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    Feb  7 10:31:02 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Feb  7 10:31:02 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Feb  7 10:31:02 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Feb  7 10:31:02 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Feb  7 10:31:02 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Feb  7 10:31:02 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Feb  7 10:31:02 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Feb  7 10:31:02 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Feb  7 10:31:02 localhost kernel[0]: MAC Framework successfully initialized
    Feb  7 10:31:02 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Feb  7 10:31:02 localhost kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    Feb  7 10:31:02 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Feb  7 10:31:02 localhost kernel[0]: ACPI: sleep states S3 S4 S5
    Feb  7 10:31:02 localhost kernel[0]: pci (build 22:16:29 Sep 19 2013), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    Feb  7 10:31:02 localhost kernel[0]: [ PCI configuration begin ]
    Feb  7 10:31:02 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    Feb  7 10:31:02 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 22:16:38 Sep 19 2013) initialization complete
    Feb  7 10:31:02 localhost kernel[0]: console relocated to 0xf80000000
    Feb  7 10:31:02 localhost kernel[0]: [ PCI configuration end, bridges 12, devices 16 ]
    Feb  7 10:31:02 localhost kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    Feb  7 10:31:02 localhost kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    Feb  7 10:31:02 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Feb  7 10:31:02 localhost kernel[0]: rooting via boot-uuid from /chosen: 5B19EF52-21BC-32CA-A228-08C1508DDF58
    Feb  7 10:31:02 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>
    Feb  7 10:31:02 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Feb  7 10:31:02 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Feb  7 10:31:02 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Feb  7 10:31:02 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Feb  7 10:31:02 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Feb  7 10:31:02 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/Hitachi HTS545032B9A302 Media/IOGUIDPartitionScheme/Customer@2
    Feb  7 10:31:02 localhost kernel[0]: BSD root: disk0s2, major 1, minor 1
    Feb  7 10:31:02 localhost kernel[0]: BTCOEXIST off
    Feb  7 10:31:02 localhost kernel[0]: BRCM tunables:
    Feb  7 10:31:02 localhost kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    Feb  7 10:31:02 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 70cd60fffecc5550; max speed s800.
    Feb  7 10:31:02 localhost kernel[0]: hfs: mounted Macintosh HD on device root_device
    Feb  7 10:31:02 localhost kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    Feb  7 10:30:35 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Feb  7 10:30:35 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Feb  7 10:30:55 localhost com.apple.SecurityServer[14]: Session 100000 created
    Feb  7 10:31:04 localhost hidd[48]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    Feb  7 10:31:04 localhost hidd[48]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Feb  7 10:31:04 localhost distnoted[68]: # distnote server daemon  absolute time: 30.639608355   civil time: Fri Feb  7 10:31:04 2014   pid: 68 uid: 0  root: yes
    Feb  7 10:31:04 localhost distnoted[68]: assertion failed: 13B42: liblaunch.dylib + 25164 [FCBF0A02-0B06-3F97-9248-5062A9DEB32C]: 0x25
    Feb  7 10:31:05 localhost xpcd[72]: sandbox cache error 3850
    Feb  7 10:31:05 localhost blued[59]: sandbox cache error 3850
    Feb  7 10:31:05 localhost wdhelper[19]: sandbox cache error 11: database disk image is malformed
    Feb  7 10:31:05 localhost kernel[0]: Waiting for DSMOS...
    Feb  7 10:31:05 localhost kernel[0]: VM Swap Subsystem is ON
    Feb  7 10:31:08 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Feb  7 10:31:08 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Feb  7 10:31:10 localhost kdc[46]: label: default
    Feb  7 10:31:10 localhost kdc[46]:  dbname: od:/Local/Default
    Feb  7 10:31:10 localhost kdc[46]:  mkey_file: /var/db/krb5kdc/m-key
    Feb  7 10:31:10 localhost kdc[46]:  acl_file: /var/db/krb5kdc/kadmind.acl
    Feb  7 10:31:12 localhost com.apple.usbmuxd[21]: usbmuxd-323.1 on Oct  3 2013 at 12:43:24, running 64 bit
    Feb  7 10:31:12 localhost kernel[0]: ast_pending=0xffffff800fecad20
    Feb  7 10:31:12 localhost kernel[0]: cpu_interrupt=0xffffff800fee37d0
    Feb  7 10:31:12 localhost kernel[0]: vboxdrv: fAsync=0 offMin=0xb68 offMax=0xde6
    Feb  7 10:31:12 localhost kernel[0]: VBoxDrv: version 4.2.16 r86992; IOCtl version 0x1a0005; IDC version 0x10000; dev major=18
    Feb  7 10:31:12 localhost kernel[0]: VBoxDrv: vmx_resume=ffffff800fef0190 vmx_suspend=ffffff800fef0150 vmx_use_count=ffffff80104d8848 (0) cr4=0x606e0
    Feb  7 10:31:12 localhost kernel[0]: Previous Shutdown Cause: 5
    Feb  7 10:31:12 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    Feb  7 10:31:12 localhost kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Feb  7 10:31:12 localhost kernel[0]: init
    Feb  7 10:31:12 localhost kernel[0]: probe
    Feb  7 10:31:12 localhost kernel[0]: start
    Feb  7 10:31:12 localhost kernel[0]: [IOBluetoothHCIController][start] -- completed
    Feb  7 10:31:12 localhost kernel[0]: IOBluetoothUSBDFU::probe
    Feb  7 10:31:12 localhost kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    Feb  7 10:31:12 localhost kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xc400 ****
    Feb  7 10:31:12 localhost kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xc400 ****
    Feb  7 10:31:12 localhost kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xc400
    Feb  7 10:31:12 localhost kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Feb  7 10:31:12 localhost kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x7100 -- 0x5000 -- 0xc400 ****
    Feb  7 10:31:12 localhost com.apple.SecurityServer[14]: Entering service
    Feb  7 10:31:12 localhost kernel[0]: DSMOS has arrived
    Feb  7 10:31:12 localhost digest-service[73]: label: default
    Feb  7 10:31:12 localhost digest-service[73]:   dbname: od:/Local/Default
    Feb  7 10:31:12 localhost digest-service[73]:   mkey_file: /var/db/krb5kdc/m-key
    Feb  7 10:31:12 localhost digest-service[73]:   acl_file: /var/db/krb5kdc/kadmind.acl
    Feb  7 10:31:12 localhost mDNSResponder[39]: mDNSResponder mDNSResponder-522.1.11 (Aug 24 2013 23:49:34) starting OSXVers 13
    Feb  7 10:31:12 localhost kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000040
    Feb  7 10:31:13 localhost UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    Feb  7 10:31:13 localhost UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Feb  7 10:31:13 localhost mDNSResponder[39]: D2D_IPC: Loaded
    Feb  7 10:31:13 localhost mDNSResponder[39]: D2DInitialize succeeded
    Feb  7 10:31:13 localhost mDNSResponder[39]:   4: Listening for incoming Unix Domain Socket client requests
    Feb  7 10:31:13 localhost blued[59]: hostControllerOnline - Number of Paired devices = 2, List of Paired devices = (
          "10-9a-dd-79-14-4b",
          "e8-06-88-41-52-08"
    Feb  7 10:31:13 localhost mds[38]: (Normal) FMW: FMW 0 0
    Feb  7 10:31:13 localhost loginwindow[42]: Login Window Application Started
    Feb  7 10:31:13 localhost awacsd[61]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    Feb  7 10:31:13 localhost systemkeychain[86]: done file: /var/run/systemkeychaincheck.done
    Feb  7 10:31:13 localhost mDNSResponder[39]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 498132252 MessageCount is 1
    Feb  7 10:31:13 localhost aosnotifyd[64]: aosnotifyd has been launched
    Feb  7 10:31:13 localhost mDNSResponder[39]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 4793099853 MessageCount is 2
    Feb  7 10:31:14 localhost networkd[105]: networkd.105 built Aug 24 2013 22:08:46
    Feb  7 10:31:14 localhost mDNSResponder[39]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 4793100171 MessageCount is 3
    Feb  7 10:31:14 localhost mDNSResponder[39]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 4793100431 MessageCount is 4
    Feb  7 10:31:14 localhost mDNSResponder[39]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 4793100600 MessageCount is 5
    Feb  7 10:31:14 localhost kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Feb  7 10:31:14 localhost apsd[63]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Feb  7 10:31:14 localhost awacsd[61]: InnerStore CopyAllZones: no info in Dynamic Store
    Feb  7 10:31:14 localhost WindowServer[104]: Server is starting up
    Feb  7 10:31:14 localhost configd[17]: dhcp_arp_router: en1 SSID unavailable
    Feb  7 10:31:14 localhost mds[38]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Feb  7 10:31:14 --- last message repeated 1 time ---
    Feb  7 10:31:14 localhost configd[17]: network changed: DNS*
    Feb  7 10:31:14 ksmac13mbp.local configd[17]: setting hostname to "ksmac13mbp.local"
    Feb  7 10:31:14 ksmac13mbp.local mDNSResponder[39]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FB0AC805D60 ksmac13mbp.local. (Addr) that's already in the list
    Feb  7 10:31:14 ksmac13mbp.local mDNSResponder[39]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FB0AC8061F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    Feb  7 10:31:14 ksmac13mbp.local mDNSResponder[39]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FB0AD005360 ksmac13mbp.local. (AAAA) that's already in the list
    Feb  7 10:31:14 ksmac13mbp.local mDNSResponder[39]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FB0AD0057F0 C.0.E.9.E.0.E.F.F.F.7.4.8.F.2.E.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
    Feb  7 10:31:14 ksmac13mbp UserEventAgent[11]: assertion failed: 13B42: com.apple.telemetry + 17189 [19C2F49F-5C72-3429-A2B4-7EF783B7F611]: 0xffffffffe0000001
    Feb  7 10:31:15 ksmac13mbp.local kdc[46]: KDC started
    Feb  7 10:31:15 ksmac13mbp.local mds[38]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Feb  7 10:31:15 ksmac13mbp.local airportd[65]: airportdProcessDLILEvent: en1 attached (up)
    Feb  7 10:31:15 ksmac13mbp kernel[0]: createVirtIf(): ifRole = 1
    Feb  7 10:31:15 ksmac13mbp kernel[0]: in func createVirtualInterface ifRole = 1
    Feb  7 10:31:15 ksmac13mbp kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    Feb  7 10:31:15 ksmac13mbp kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    Feb  7 10:31:15 ksmac13mbp kernel[0]: Created virtif 0xffffff801c7bc400 p2p0
    Feb  7 10:31:15 ksmac13mbp.local locationd[44]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Feb  7 10:31:15 ksmac13mbp.local locationd[44]: NBB-Could not get UDID for stable refill timing, falling back on random
    Feb  7 10:31:15 ksmac13mbp.local locationd[44]: Location icon should now be in state 'Inactive'
    Feb  7 10:31:15 ksmac13mbp.local locationd[44]: locationd was started after an unclean shutdown
    Feb  7 10:31:16 ksmac13mbp.local WindowServer[104]: Session 256 retained (2 references)
    Feb  7 10:31:16 ksmac13mbp.local WindowServer[104]: Session 256 released (1 references)
    Feb  7 10:31:16 ksmac13mbp.local WindowServer[104]: Session 256 retained (2 references)
    Feb  7 10:31:16 ksmac13mbp.local WindowServer[104]: init_page_flip: page flip mode is on
    Feb  7 10:31:16 ksmac13mbp.local digest-service[73]: digest-request: uid=0
    Feb  7 10:31:16 ksmac13mbp kernel[0]: en1: 802.11d country code set to 'AU'.
    Feb  7 10:31:16 ksmac13mbp kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 132 136 140 149 153 157 161 165
    Feb  7 10:31:17 ksmac13mbp.local digest-service[73]: digest-request: netr probe 0
    Feb  7 10:31:17 ksmac13mbp.local digest-service[73]: digest-request: init request
    Feb  7 10:31:17 ksmac13mbp.local digest-service[73]: digest-request: init return domain: BUILTIN server: KSMAC13MBP indomain was: <NULL>
    Feb  7 10:31:17 ksmac13mbp kernel[0]: MacAuthEvent en1   Auth result for: 90:72:40:15:70:db  MAC AUTH succeeded
    Feb  7 10:31:17 ksmac13mbp kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Feb  7 10:31:17 ksmac13mbp kernel[0]: AirPort: Link Up on en1
    Feb  7 10:31:17 ksmac13mbp kernel[0]: en1: BSSID changed to 90:72:40:15:70:db
    Feb  7 10:31:17 ksmac13mbp kernel[0]: AirPort: RSN handshake complete on en1
    Feb  7 10:31:17 ksmac13mbp.local SystemStarter[113]: VirtualBox Support and USB Drivers (120) did not complete successfully
    Feb  7 10:31:17 ksmac13mbp.local SystemStarter[113]: The following StartupItems failed to start properly:
    Feb  7 10:31:17 ksmac13mbp.local SystemStarter[113]: /Library/StartupItems/VirtualBox
    Feb  7 10:31:17 ksmac13mbp.local SystemStarter[113]:  - execution of Startup script failed
    Feb  7 10:31:18 ksmac13mbp kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    Feb  7 10:31:18 ksmac13mbp kernel[0]: Sound assertion in AppleHDAController at line 2797
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Found 13 modes for display 0x00000000 [8, 5]
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Found 17 modes for display 0x00000000 [14, 3]
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Found 1 modes for display 0x00000000 [1, 0]
    Feb  7 10:31:18 --- last message repeated 1 time ---
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: mux_initialize: Mode is safe
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Found 13 modes for display 0x00000000 [8, 5]
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Found 17 modes for display 0x00000000 [14, 3]
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Found 1 modes for display 0x00000000 [1, 0]
    Feb  7 10:31:18 --- last message repeated 1 time ---
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: WSMachineUsesNewStyleMirroring: false
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Display 0x0b42ae11: GL mask 0x2; bounds (0, 0)[1920 x 1080], 17 modes available
      Main, Active, on-line, enabled, Vendor 4c2d, Model a5d, S/N 5a593951, Unit 1, Rotation 0
      UUID 0xefc89180704d4e83f7b0c10b252ab6f3
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[1920 x 1200], 2 modes available
      off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
      UUID 0xffffffffffffffffffffffffffffffff
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: 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
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: 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
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Display 0x04273140: GL mask 0x1; bounds (1920, 0)[1280 x 800], 13 modes available
      Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc5, S/N 0, Unit 0, Rotation 0
      UUID 0x150089674ff1f763df4753684d4f1602
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: WSSetWindowTransform: Singular matrix
    Feb  7 10:31:18 --- last message repeated 1 time ---
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Display 0x0b42ae11: GL mask 0x2; bounds (0, 0)[1920 x 1080], 17 modes available
      Main, Active, on-line, enabled, Vendor 4c2d, Model a5d, S/N 5a593951, Unit 1, Rotation 0
      UUID 0xefc89180704d4e83f7b0c10b252ab6f3
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Display 0x003f0040: GL mask 0x10; bounds (4224, 0)[1 x 1], 2 modes available
      off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
      UUID 0xffffffffffffffffffffffffffffffff
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Display 0x003f003f: GL mask 0x8; bounds (4225, 0)[1 x 1], 1 modes available
      off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
      UUID 0xffffffffffffffffffffffffffffffff
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Display 0x003f003e: GL mask 0x4; bounds (4226, 0)[1 x 1], 1 modes available
      off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
      UUID 0xffffffffffffffffffffffffffffffff
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: Display 0x04273140: GL mask 0x1; bounds (1920, 79)[1280 x 800], 13 modes available
      Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc5, S/N 0, Unit 0, Rotation 0
      UUID 0x150089674ff1f763df4753684d4f1602
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: CGXPerformInitialDisplayConfiguration
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]:   Display 0x0b42ae11: Unit 1; Vendor 0x4c2d Model 0xa5d S/N 1515796817 Dimensions 20.91 x 11.77; online enabled, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (4224,0)[1 x 1], Rotation 0, Resolution 1
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (4225,0)[1 x 1], Rotation 0, Resolution 1
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (4226,0)[1 x 1], Rotation 0, Resolution 1
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]:   Display 0x04273140: Unit 0; Vendor 0x610 Model 0x9cc5 S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (1920,79)[1280 x 800], Rotation 0, Resolution 1
    Feb  7 10:31:18 ksmac13mbp.local WindowServer[104]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    Feb  7 10:31:19 ksmac13mbp.local WindowServer[104]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, accelerator 0x000048bf, unit 0, caps QEX|MIPMAP, vram 451 MB
    Feb  7 10:31:19 ksmac13mbp.local WindowServer[104]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    Feb  7 10:31:19 ksmac13mbp.local WindowServer[104]: GLCompositor enabled for tile size [256 x 256]
    Feb  7 10:31:19 ksmac13mbp.local WindowServer[104]: CGXGLInitMipMap: mip map mode is on
    Feb  7 10:31:19 ksmac13mbp.local loginwindow[42]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Feb  7 10:31:19 ksmac13mbp.local blued[59]: link key found for device: 10-9a-dd-79-14-4b
    Feb  7 10:31:19 ksmac13mbp.local blued[59]: Save link key for device: 10-9a-dd-79-14-4b
    Feb  7 10:31:19 ksmac13mbp.local blued[59]: link key found for device: e8-06-88-41-52-08
    Feb  7 10:31:20 ksmac13mbp.local blued[59]: Save link key for device: e8-06-88-41-52-08
    Feb  7 10:31:20 ksmac13mbp.local mtmfs[36]: mount succeeded for /Volumes/MobileBackups
    Feb  7 10:31:20 ksmac13mbp.local mds[38]: (Normal) Volume: volume:0x7fb67302d800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/MobileBackups
    Feb  7 10:31:20 ksmac13mbp.local mds[38]: (Normal) Volume: volume:0x7fb67302d800 ********** Created snapshot backup index
    Feb  7 10:31:20 ksmac13mbp.local WindowServer[104]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Feb  7 10:31:21 --- last message repeated 1 time ---
    Feb  7 10:31:21 ksmac13mbp.local WindowServer[104]: Display 0x0b42ae11: Unit 1; ColorProfile { 2, "S24C750"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Feb  7 10:31:21 ksmac13mbp.local WindowServer[104]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Feb  7 10:31:21 ksmac13mbp.local launchctl[217]: com.apple.findmymacmessenger: Already loaded
    Feb  7 10:31:21 ksmac13mbp.local WindowServer[104]: Display 0x0b42ae11: Unit 1; ColorProfile { 2, "S24C750"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Feb  7 10:31:21 ksmac13mbp.local WindowServer[104]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Feb  7 10:31:21 ksmac13mbp.local com.apple.SecurityServer[14]: Session 100005 created
    Feb  7 10:31:21 ksmac13mbp.local WindowServer[104]: Display 0x0b42ae11: Unit 1; ColorProfile { 2, "S24C750"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Feb  7 10:31:21 ksmac13mbp.local WindowServer[104]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Feb  7 10:31:21 ksmac13mbp.local WindowServer[104]: Display 0x0b42ae11: Unit 1; ColorProfile { 2, "S24C750"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Feb  7 10:31:21 ksmac13mbp.local WindowServer[104]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Feb  7 10:31:21 ksmac13mbp.local WindowServer[104]: Display 0x0b42ae11: Unit 1; ColorProfile { 2, "S24C750"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Feb  7 10:31:21 ksmac13mbp.local WindowServer[104]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Feb  7 10:31:21 ksmac13mbp.local UserEventAgent[219]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Feb  7 10:31:21 ksmac13mbp.local loginwindow[42]: Setting the initial value of the magsave brightness level 1
    Feb  7 10:31:21 ksmac13mbp.local loginwindow[42]: Login Window Started Security Agent
    Feb  7 10:31:22 ksmac13mbp.local WindowServer[104]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fa282f157b0) - enabling OpenGL
    Feb  7 10:31:22 ksmac13mbp.local WindowServer[104]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fa282f15600) - enabling OpenGL
    Feb  7 10:31:22 ksmac13mbp.local UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'SACON' making interface primary (protected network)
    Feb  7 10:31:22 ksmac13mbp.local configd[17]: network changed: DNS* Proxy
    Feb  7 10:31:22 ksmac13mbp.local UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    Feb  7 10:31:22 ksmac13mbp.local UserEventAgent[11]: Captive: en1: Probing 'SACON'
    Feb  7 10:31:22 ksmac13mbp.local configd[17]: network changed: v4(en1!:192.168.10.67) DNS+ Proxy+ SMB
    Feb  7 10:31:22 ksmac13mbp.local UserEventAgent[11]: tcp_connection_destination_prepare_complete 1 connectx to 184.84.61.15#80 failed: 64 - Host is down
    Feb  7 10:31:22 ksmac13mbp.local UserEventAgent[11]: tcp_connection_handle_destination_prepare_complete 1 failed to connect
    Feb  7 10:31:22 ksmac13mbp.local SecurityAgent[226]: This is the first run
    Feb  7 10:31:22 ksmac13mbp.local SecurityAgent[226]: MacBuddy was run = 0
    Feb  7 10:31:22 ksmac13mbp.local UserEventAgent[11]: Captive: [async_http_read_stream:387] kCFStreamEventErrorOccurred NSPOSIXErrorDomain/64: The operation couldn’t be completed. Host is down
    Feb  7 10:31:22 ksmac13mbp.local UserEventAgent[11]: Captive: [CaptiveHandleRedirect:1653] Unknown result value: 1, assuming online
    Feb  7 10:31:22 ksmac13mbp.local UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    Feb  7 10:31:23 ksmac13mbp.local ntpd[109]: proto: precision = 1.000 usec
    Feb  7 10:31:24 ksmac13mbp.local parentalcontrolsd[241]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Feb  7 10:31:24 ksmac13mbp.local openvpn-service[66]: PyObjCPointer created: at 0xa0f12418 of type {__CFBoolean=}
    Feb  7 10:31:24 ksmac13mbp.local openvpn-service[66]: PyObjCPointer created: at 0xa0f12410 of type {__CFBoolean=}
    Feb  7 10:31:24 ksmac13mbp.local openvpn-service[66]: PyObjCPointer created: at 0xa0f12420 of type {__CFNumber=}
    Feb  7 10:31:24 ksmac13mbp.local openvpn-service[66]: PyObjCPointer created: at 0xa0f12430 of type {__CFNumber=}
    Feb  7 10:31:24 ksmac13mbp.local openvpn-service[66]: PyObjCPointer created: at 0xa0f12440 of type {__CFNumber=}
    Feb  7 10:31:26 ksmac13mbp.local com.apple.kextd[12]: kext foo.tun  100009000 is in exception list, allowing to load
    Feb  7 10:31:26 ksmac13mbp kernel[0]: tun kernel extension version 20111101 <[email protected]>
    Feb  7 10:31:26 ksmac13mbp.local com.apple.kextd[12]: kext foo.tap  100009000 is in exception list, allowing to load
    Feb  7 10:31:26 ksmac13mbp kernel[0]: tap kernel extension version 20111101 <[email protected]>
    Feb  7 10:31:29 ksmac13mbp kernel[0]: nspace-handler-set-snapshot-time: 1391729491
    Feb  7 10:31:29 ksmac13mbp.local com.apple.mtmd[37]: Set snapshot time: 2014-02-07 10:31:31 +1100 (current time: 2014-02-07 10:31:29 +1100)
    Feb  7 10:31:30 ksmac13mbp.local awacsd[61]: Exiting
    Feb  7 10:31:31 ksmac13mbp.local SecurityAgent[226]: User info context values set for dharper
    Feb  7 10:31:31 ksmac13mbp.local pacemaker[114]: error reading drift value from file /var/db/ntp.drift
    Feb  7 10:31:32 ksmac13mbp.local SecurityAgent[226]: Login Window login proceeding
    Feb  7 10:31:33 ksmac13mbp.local loginwindow[42]: Login Window - Returned from Security Agent
    Feb  7 10:31:33 ksmac13mbp.local loginwindow[42]: USER_PROCESS: 42 console
    Feb  7 10:31:33 ksmac13mbp.local airportd[65]: _doAutoJoin: Already associated to “SACON”. Bailing on auto-join.
    Feb  7 10:31:33 ksmac13mbp.local warmd[20]: [__bootcachectl_set_preheated_user_block_invoke:684] Unable to unlink preated user symlink /var/db/BootCaches/PreheatedUser: 1 Operation not permitted
    Feb  7 10:31:33 ksmac13mbp.local warmd[20]: [__bootcachectl_set_preheated_user_block_invoke:695] Unable to create preated user symlink /var/db/BootCaches/PreheatedUser to 23C047D8-0883-4F8F-8E21-7B541B6DDD4E: 17 File exists
    Feb  7 10:31:33 ksmac13mbp kernel[0]: AppleKeyStore:Sending lock change 0
    Feb  7 10:31:33 ksmac13mbp com.apple.launchd.peruser.505[251]: Background: Aqua: Registering new GUI session.
    Feb  7 10:31:34 ksmac13mbp com.apple.launchd.peruser.505[251] (com.apple.cmfsyncagent): Ignored this key: UserName
    Feb  7 10:31:34 ksmac13mbp com.apple.launchd.peruser.505[251] (com.apple.EscrowSecurityAlert): Unknown key: seatbelt-profiles
    Feb  7 10:31:34 ksmac13mbp com.apple.launchd.peruser.505[251] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Feb  7 10:31:34 ksmac13mbp.local launchctl[253]: com.apple.pluginkit.pkd: Already loaded
    Feb  7 10:31:34 ksmac13mbp.local launchctl[253]: com.apple.sbd: Already loaded
    Feb  7 10:31:34 ksmac13mbp.local distnoted[257]: # distnote server agent  absolute time: 60.276305245   civil time: Fri Feb  7 10:31:34 2014   pid: 257 uid: 505  root: no
    Feb  7 10:31:34 ksmac13mbp kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0PS (kSMCKeyNotFound)
    Feb  7 10:31:34 ksmac13mbp kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key B0OS (kSMCKeyNotFound)
    Feb  7 10:31:35 ksmac13mbp.local pacemaker[114]: no drift value available, exiting
    Feb  7 10:31:36 ksmac13mbp.local Little Snitch Agent[261]: Little Snitch Agent version 4052 started.
    Feb  7 10:31:37 ksmac13mbp.local WindowServer[104]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Feb  7 10:31:37 ksmac13mbp.local WindowServer[104]: Display 0x0b42ae11: Unit 1; ColorProfile { 2, "S24C750"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Feb  7 10:31:37 ksmac13mbp.local WindowServer[104]: Display 0x04273140: Unit 0; ColorProfile { 3, "Color LCD"}; TransferTable (256, 12)
    Feb  7 10:31:42 ksmac13mbp.local usernoted[274]: Notification (0) for presented_notifications missing for app_id 11!
    Feb  7 10:31:44 ksmac13mbp.local usernoted[274]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Feb  7 10:31:44 ksmac13mbp.local Little Snitch Network Monitor[278]: Little Snitch Network Monitor version 4052 started.
    Feb  7 10:31:45 ksmac13mbp.local usernoted[274]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    Feb  7 10:31:53 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    Feb  7 10:31:56 ksmac13mbp.local com.apple.SecurityServer[14]: Session 100008 created
    Feb  7 10:31:57 ksmac13mbp xpcproxy[297]: assertion failed: 13B42: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    Feb  7 10:31:57 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    Feb  7 10:31:57 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    Feb  7 10:31:57 ksmac13mbp.local com.apple.audio.DriverHelper[288]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    Feb  7 10:32:00 ksmac13mbp.local apsd[286]: Unrecognized leaf certificate
    Feb  7 10:32:01 ksmac13mbp.local UserEventAgent[256]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    Feb  7 10:32:02 ksmac13mbp xpcproxy[300]: assertion failed: 13B42: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    Feb  7 10:32:06 ksmac13mbp.local com.apple.SecurityServer[14]: Session 100010 created
    Feb  7 10:32:06 ksmac13mbp.local coreaudiod[281]: Error loading /Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter:  dlopen(/Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter, 262): Library not loaded: /Library/Frameworks/Jackmp.framework/Versions/A/Jackmp
        Referenced from: /Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter
        Reason: no suitable image found.  Did find:
        /Library/Frameworks/Jackmp.framework/Versions/A/Jackmp: stat() failed with errno=1
    Feb  7 10:32:06 ksmac13mbp.local coreaudiod[281]: Cannot find function pointer New_JackRouterPlugIn for factory 7CB18864-927D-48B5-904C-CCFBCFBC7ADD in CFBundle/CFPlugIn 0x7fd489607eb0 </Library/Audio/Plug-Ins/HAL/JackRouter.plugin> (bundle, not loaded)
    Feb  7 10:32:07 ksmac13mbp.local WindowServer[104]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Feb  7 10:32:08 ksmac13mbp.local sharingd[305]: Starting Up...
    Feb  7 10:32:08 ksmac13mbp.local coreaudiod[281]: 2014-02-07 10:32:08.486562 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM,  44100 Hz, 16-bit, Stereo
    Feb  7 10:32:08 ksmac13mbp.local WindowServer[104]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 2.80 seconds (server forcibly re-enabled them after 1.00 seconds)
    Feb  7 10:32:10 ksmac13mbp revisiond[30]: objc[30]: Class GSLockToken is implemented in both /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Supp ort/revisiond and /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage. One of the two will be used. Which one is undefined.
    Feb  7 10:32:12 ksmac13mbp kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=316[ksadmin] final status 0x0, allow (remove VALID)ing page
    Feb  7 10:32:13 ksmac13mbp.local com.apple.IconServicesAgent[314]: IconServicesAgent launched.
    Feb  7 10:32:18 ksmac13mbp.local SystemUIServer[279]: Cannot find executable for CFBundle 0x7fedfbf06b20 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    Feb  7 10:32:18 ksmac13mbp.local SystemUIServer[279]: Cannot find executable for CFBundle 0x7fedfbe388f0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    Feb  7 10:32:19 ksmac13mbp.local coreaudiod[281]: 10:32:19.540 WARNING:   [SystemSoundServer] >compload> AudioComponentPluginLoader.cpp:596: QueryBundle: AudioComponentPluginLoader: can't create bundle: BassStation.component -- file:///Library/Audio/Plug-Ins/Components/
    Feb  7 10:32:19 ksmac13mbp.local coreaudiod[281]: 10:32:19.554 WARNING:   [SystemSoundServer] >compload> AudioComponentPluginLoader.cpp:596: QueryBundle: AudioComponentPluginLoader: can't create bundle: BassStationStereo.component -- file:///Library/Audio/Plug-Ins/Components/
    Feb  7 10:32:19 ksmac13mbp kernel[0]: Sandbox: coreaudiod(281) deny file-read-metadata /Library/Audio/Plug-Ins/Components/FFPlugSuite.component/Contents
    Feb  7 10:32:19 ksmac13mbp kernel[0]: Sandbox: coreaudiod(281) deny file-read-metadata /Library/Audio/Plug-Ins/Components/FFPlugSuite.component
    Feb  7 10:32:19 ksmac13mbp.local coreaudiod[281]: 10:32:19.558 WARNING:   [SystemSoundServer] >compload> AudioComponentPluginLoader.cpp:596: QueryBundle: AudioComponentPluginLoader: can't create bundle: FFPlugSuite.component -- file:///Library/Audio/Plug-Ins/Components/
    Feb  7 10:32:19 ksmac13mbp kernel[0]: Sandbox: coreaudiod(281) deny file-read-data /Library/Audio/Plug-Ins/Components/JACK-insert.component
    Feb  7 10:32:19 ksmac13mbp kernel[0]: Sandbox: coreaudiod(281) deny file-read-metadata /Library/Audio/Plug-Ins/Components/JACK-insert.component/Contents
    Feb  7 10:32:19 ksmac13mbp kernel[0]: Sandbox: coreaudiod(281) deny file-read-metadata /Library/Audio/Plug-Ins/Components/JACK-insert.component
    Feb  7 10:32:19 ksmac13mbp.local coreaudiod[281]: 10:32:19.559 WARNING:   [SystemSoundServer] >compload> AudioComponentPluginLoader.cpp:596: QueryBundle: AudioComponentPluginLoader: can't create bundle: JACK-insert.component -- file:///Library/Audio/Plug-Ins/Components/
    Feb  7 10:32:20 ksmac13mbp.local WindowServer[104]: disable_update_timeout: UI updates were forcibly disabled by application "Terminal" for over 1.00 seconds. Server has re-enabled them.
    Feb  7 10:32:22 ksmac13mbp.local syncdefaultsd[293]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    Feb  7 10:32:22 ksmac13mbp.local com.apple.time[256]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    Feb  7 10:32:25 ksmac13mbp.local SystemUIServer[279]: Cannot find executable for CFBundle 0x7fedfbc49db0 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    Feb  7 10:32:25 ksmac13mbp.local WindowServer[104]: common_reenable_update: UI updates were finally reenabled by application "Terminal" after 6.25 seconds (server forcibly re-enabled them after 1.00 seconds)
    Feb  7 10:32:25 ksmac13mbp.local sandboxd[301] ([281]): coreaudiod(281) deny file-read-metadata /Library/Frameworks/Jackmp.framework/Versions/A/Jackmp
    Feb  7 10:32:27 ksmac13mbp.local WindowServer[104]: disable_update_timeout: UI updates were forcibly disabled by application "Notification Center" for over 1.00 seconds. Server has re-enabled them.
    Feb  7 10:32:27 ksmac13mbp.local WindowServer[104]: common_reenable_update: UI updates were finally reenabled by application "Notification Center" after 2.00 seconds (server forcibly re-enabled them after 1.41 seconds)
    Feb  7 10:32:32 ksmac13mbp.local login[325]: USER_PROCESS: 325 ttys005
    Feb  7 10:32:33 ksmac13mbp.local login[318]: USER_PROCESS: 318 ttys000
    Feb  7 10:32:33 ksmac13mbp.local login[324]: USER_PROCESS: 324 ttys004
    Feb  7 10:32:33 ksmac13mbp.local login[321]: USER_PROCESS: 321 ttys001
    Feb  7 10:32:33 ksmac13mbp.local login[323]: USER_PROCESS: 323 ttys003
    Feb  7 10:32:34 ksmac13mbp.local login[322]: USER_PROCESS: 322 ttys002
    Feb  7 10:32:35 ksmac13mbp com.apple.launchd.peruser.505[251] ([email protected][362]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Feb  7 10:32:35 ksmac13mbp com.apple.launchd.peruser.505[251] ([email protected][362]): Job failed to exec(3) for weird reason: 2
    Feb  7 10:32:35 ksmac13mbp com.apple.launchd.peruser.505[251] (com.valvesoftware.steamclean[361]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Feb  7 10:32:35 ksmac13mbp com.apple.launchd.peruser.505[251] (com.valvesoftware.steamclean[361]): Job failed to exec(3) for weird reason: 2
    Feb  7 10:32:35 ksmac13mbp com.apple.launchd.peruser.505[251] (com.paragon.ntfs.upd[344]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Feb  7 10:32:35 ksmac13mbp com.apple.launchd.peruser.505[251] (com.paragon.ntfs.upd[344]): Job failed to exec(3) for weird reason: 2
    Feb  7 10:32:36 ksmac13mbp com.apple.launchd.peruser.505[251] (com.getdropbox.dropbox.30656[366]): Spawned and waiting for the debugger to attach before continuing...
    Feb  7 10:32:36 ksmac13mbp com.apple.launchd.peruser.505[251] (com.yellowmug.SizzlingKeys.41040[371]): Spawned and waiting for the debugger to attach before continuing...
    Feb  7 10:32:40 ksmac13mbp.local WiFiKeychainProxy[346]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    Feb  7 10:32:40 ksmac13mbp.local WiFiKeychainProxy[346]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    Feb  7 10:32:40 ksmac13mbp.local WindowServer[104]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    Feb  7 10:32:43 ksmac13mbp.local sandboxd[301] ([281]): coreaudiod(281) deny file-read-data /Library/Audio/Plug-Ins/Components/BassStation.component
    Feb  7 10:32:54 ksmac13mbp.local com.apple.SecurityServer[14]: Session 100014 created
    Feb  7 10:32:54 ksmac13mbp.local WindowServer[104]: disable_update_likely_unbalanced: UI updates still disabled by application "Finder" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    Feb  7 10:32:56 ksmac13mbp accountsd[398]: assertion failed: 13B42: liblaunch.dylib + 25164 [FCBF0A02-0B06-3F97-9248-5062A9DEB32C]: 0x25
    Feb  7 10:32:57 ksmac13mbp kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=432[ksadmin] final status 0x0, allow (remove VALID)ing page
    Feb  7 10:33:00 ksmac13mbp.local 1PasswordAgent[359]: Starting 1PasswordAgent 3.8.21 #32009 built Apr 24 2013 16:09:31
    Feb  7 10:33:00 ksmac13mbp.local sandboxd[301] ([281]): coreaudiod(281) deny file-read-metadata /Library/Audio/Plug-Ins/Components/BassStation.component/Contents
    Feb  7 10:33:01 ksmac13mbp.local 1PasswordAgent[359]: Trying to load Localizable.strings [English] from the main bundle
    Feb  7 10:33:01 ksmac13mbp com.apple.launchd.peruser.505[251] (com.apple.mrt.uiagent[350]): Exited with code: 255
    Feb  7 10:33:01 ksmac13mbp.local 1PasswordAgent[359]: Cannot find English version, using English localization for Localizable.strings
    Feb  7 10:33:05 ksmac13mbp.local SizzlingKeys[371]: Could not find image named '328A8A71-B6D2-4F06-9D2C-891144846220'.
    Feb  7 10:33:05 ksmac13mbp.local com.apple.SecurityServer[14]: Session 100015 created
    Feb  7 10:33:06 ksmac13mbp.local SizzlingKeys[371]: Could not find image named '5EF5A368-06F0-475B-B961-91342C69B89B'.
    Feb  7 10:33:06 ksmac13mbp.local SizzlingKeys[371]: Could not find image named 'BA980D51-FB31-4BCE-B211-5ECC983F06F7'.
    Feb  7 10:33:09 ksmac13mbp.local WindowServer[104]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 30.01 seconds (server forcibly re-enabled them after 1.00 seconds)
    Feb  7 10:33:10 ksmac13mbp.local Finder[280]: void CGSUpdateManager::log() const: conn 0xe607: spurious update.
    Feb  7 10:33:10 ksmac13mbp.local assistantd[357]: Error loading /Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter:  dlopen(/Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter, 262): Library not loaded: /Library/Frameworks/Jackmp.framework/Versions/A/Jackmp
        Referenced from: /Library/Audio/Plug-Ins/HAL/JackRouter.plugin/Contents/MacOS/JackRouter
        Reason: no suitable image found.  Did find:
        /Library/Frameworks/Jackmp.framework/Versions/A/Jackmp: open() failed with errno=1
    Feb  7 10:33:10 ksmac13mbp.local assistantd[357]: Cannot find function pointer New_JackRouterPlugIn for factory 7CB18864-927D-48B5-904C-CCFBCFBC7ADD in CFBundle/CFPlugIn 0x7fe1904141b0 </Library/Audio/Plug-Ins/HAL/JackRouter.plugin> (bundle, not loaded)
    Feb  7 10:33:10 ksmac13mbp.local sandboxd[301] ([281]): coreaudiod(281) deny file-read-metadata /Library/Audio/Plug-Ins/Components/BassStation.component
    Feb  7 10:33:11 ksmac13mbp.local WindowServer[104]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    Feb  7 10:33:11 ksmac13mbp.local WindowServer[104]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.54 seconds (server forcibly re-enabled them after 1.00 seconds)
    Feb  7 10:33:12 ksmac13mbp.local talagent[272]: CGSBindSurface: Invalid window 0x30
    Feb  7 10:33:12 ksmac13mbp.local WindowServer[104]: _CGXWindowRightsRelinquish: Invalid window 0x30
    Feb  7 10:33:12 ksmac13mbp.local talagent[272]: CGSConnectionRelinquishWindowRights(cid, result, reservedRights): CGError 1001 on line 875
    Feb  7 10:33:12 ksmac13mbp.local talagent[272]: CGSBindSurface: Invalid window 0x31
    Feb  7 10:33:12 ksmac13mbp.local WindowServer[104]: _CGXWindowRightsRelinquish: Invalid window 0x31
    Feb  7 10:33:12 ksmac13mbp.local talagent[272]: CGSConnectionRelinquishWindowRights(cid, result, reservedRights): CGError 1001 on line 875
    Feb  7 10:33:12 ksmac13mbp.local WindowServer[104]: CGXReleaseWindowList: Invalid window 48 (index 0/2)
    Feb  7 10:33:12 ksmac13mbp.local WindowServer[104]: CGXReleaseWindowList: Invalid window 49 (index 1/2)
    Feb  7 10:33:16 ksmac13mbp.local sandboxd[301] ([281]): coreaudiod(281) deny file-read-data /Library/Audio/Plug-Ins/Components/BassStationStereo.component
    Feb  7 10:33:21 ksmac13mbp.local storeagent[438]: FCIsAppAllowedToLaunchExt [343] -- *** _FCMIGAppCanLaunch timed out. Returning false.
    Feb  7 10:33:21 ksmac13mbp.local SystemUIServer[279]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Feb  7 10:33:21 ksmac13mbp.local SystemUIServer[279]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Feb  7 10:33:24 ksmac13mbp.local sandboxd[301] ([281]): coreaudiod(281) deny file-read-metadata /Library/Audio/Plug-Ins/Components/BassStationStereo.component/Contents
    Feb  7 10:33:25 ksmac13mbp.local parentalcontrolsd[483]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    Feb  7 10:33:25 ksmac13mbp.local Dock[277]: CGSSetWindowTransformAtPlacement: Singular matrix [inf 0.000 0.000 inf]
    Feb  7 10:33:27 ksmac13mbp.local sandboxd[301] ([281]): coreaudiod(281) deny file-read-metadata /Library/Audio/Plug-Ins/Components/BassStationStereo.component
    Feb  7 10:33:28 ksmac13mbp com.apple.launchd[1] (com.apple.quicklook.satellite.F9C23D34-8D9D-4330-8B8E-CB40B3C6FFEA[445]): Exited: Killed: 9
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[442]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[442]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[448]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[446]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[449]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[448]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[446]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[449]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[447]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[451]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[444]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[450]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[441]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[447]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[440]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[443]: 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
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[451]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[444]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[450]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[441]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[443]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[440]: 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.
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[441]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[443]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[448]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[447]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[450]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[440]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[446]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[442]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[444]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:29 ksmac13mbp.local Google Chrome Helper[449]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:30 ksmac13mbp.local Google Chrome Helper[451]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    Feb  7 10:33:32 ksmac13mbp.local secd[313

    Here's my report:
    Hardware Information:
              MacBook Pro (13-inch, Early 2011)
              MacBook Pro - model: MacBookPro8,1
              1 2.3 GHz Intel Core i5 CPU: 2 cores
              4 GB RAM
    Video Information:
              Intel HD Graphics 3000 - VRAM: 384 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 0:26:34
    Disk Information:
              Hitachi HTS545032B9A302 disk0 : (320.07 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 319.21 GB (71.32 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. Apple Internal Keyboard / Trackpad
              Logitech USB Optical Mouse
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
              at.obdev.nke.LittleSnitch          (4052 - SDK 10.8)
              org.virtualbox.kext.VBoxDrv          (4.2.16)
              org.virtualbox.kext.VBoxUSB          (4.2.16)
              foo.tun          (1.0)
              foo.tap          (1.0)
    Startup Items:
              VirtualBox: Path: /Library/StartupItems/VirtualBox
    Problem System Launch Daemons:
    Problem System Launch Agents:
              [System] com.paragon.NTFS.trial.plist 3rd-Party support link
              [System] com.paragon.NTFS.upd.plist 3rd-Party support link
    Launch Daemons:
              [System] at.obdev.littlesnitchd.plist 3rd-Party support link
              [System] com.bresink.system.securityagent3a.plist 3rd-Party support link
              [System] net.openvpn.client.plist 3rd-Party support link
    Launch Agents:
              [System] at.obdev.LittleSnitchUIAgent.plist 3rd-Party support link
              [System] org.afraid.freedns.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist
              [not loaded] com.valvesoftware.steamclean.plist 3rd-Party support link
              [not loaded] homebrew.mxcl.postgresql.plist 3rd-Party support link
              [not loaded] org.virtualbox.vboxwebsrv.plist 3rd-Party support link
              [not loaded] ws.agile.1PasswordAgent.plist 3rd-Party support link
    User Login Items:
              Dropbox
              SizzlingKeys
    Internet Plug-ins:
              AdobePDFViewerNPAPI: Version: 10.1.7 3rd-Party support link
              Flash Player: Version: 11.9.900.117 - SDK 10.6 Outdated! Update
              WacomNetscape: Version: 1.1.0-5 3rd-Party support link
              AdobePDFViewer: Version: 10.1.7 3rd-Party support link
              Unity Web Player: Version: UnityPlayer version 4.3.1f1 - SDK 10.6 3rd-Party support link
              googletalkbrowserplugin: Version: 4.9.1.16010 3rd-Party support link
              SpeedDownload Browser Plugin: Version: 2.1.5 - SDK 10.4 3rd-Party support link
              iPhotoPhotocast: Version: 7.0 - SDK 10.8
              RealPlayer Plugin: Version: Unknown
              QuickTime Plugin: Version: 7.7.3
              FlashPlayer-10.6: Version: 11.9.900.117 - SDK 10.6 3rd-Party support link
              npgtpo3dautoplugin: Version: 0.1.44.29 - SDK 10.5 3rd-Party support link
              DivXBrowserPlugin: Version: 2.1 3rd-Party support link
              OVSHelper: Version: 1.1 3rd-Party support link
              Silverlight: Version: 5.1.20913.0 - SDK 10.6 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 2.3.8.1 3rd-Party support link
              o1dbrowserplugin: Version: 4.9.1.16010 3rd-Party support link
              SharePointBrowserPlugin: Version: 14.3.8 - SDK 10.6 3rd-Party support link
              WacomSafari: Version: 1.1.0-5 3rd-Party support link
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Outdated! Update
              OfficeLiveBrowserPlugin: Version: 12.2.8 3rd-Party support link
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    User Internet Plug-ins:
              iGetterScriptablePlugin: Version: 2.8.7 3rd-Party support link
              iGetterBundle: Version: 2.8.7 3rd-Party support link
    3rd Party Preference Panes:
              VLC Streamer  3rd-Party support link
    Bad Fonts:
              None
    Old Applications:
              Microsoft Office Reminders:          Version: 14.1.3 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.localized/Microsoft Office Reminders.app
              Microsoft Language Register:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              Notify:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/OpenVPN/Notify.app
              Microsoft Database Utility:          Version: 14.1.3 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.localized/Microsoft Database Utility.app
              SLLauncher:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              Viscosity:          Version: 1.4.7 - SDK 10.5 3rd-Party support link
              XLD:          Version: 20130407 - SDK 10.4 3rd-Party support link
              ProjectArtTracker:          Version: 1.0 - SDK 10.5 3rd-Party support link
              /Applications/Microsoft Office 2011
                        Microsoft PowerPoint:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Excel:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Outlook:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Word:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Document Connection:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
              DockPlistEdit:          Version: 7.0 - SDK 10.5 3rd-Party support link
                        /Library/Parallels/Uninstaller/Parallels Hypervisor/DockPlistEdit.app
              /Applications/Microsoft Office 2011/Office
                        Microsoft Graph:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Database Utility:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Office Reminders:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Upload Center:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        My Day:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        SyncServicesAgent:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Open XML for Excel:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Alerts Daemon:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Database Daemon:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Chart Converter:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Clip Gallery:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
              Solver:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
              Spin Doctor:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Applications/Toast 11 Titanium/Spin Doctor.app
              dynamiclinkmanager:          Version: 6.0.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Adobe/Common/dynamiclink/CS6/dynamiclinkmanager.app
              dynamiclinkmediaserver:          Version: 6.0.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Adobe/Common/dynamiclinkmediaserver/1.0/dynamiclinkmediaserver.app
              Microsoft Language Register:          Version: 14.1.3 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.localized/Microsoft Language Register.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4 3rd-Party support link
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              Microsoft Database Daemon:          Version: 14.1.3 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.localized/Microsoft Database Daemon.app
              /Library/Application Support/Microsoft/MERP2.0
                        Microsoft Error Reporting:          Version: 2.2.9 - SDK 10.4 3rd-Party support link
                        Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4 3rd-Party support link
              SA Color Finesse 3 UI:          Version: 3.0.6(275) - SDK 10.5 3rd-Party support link
                        /Applications/Adobe After Effects CS6/Plug-ins/Effects/Synthetic Aperture/(CF3 Support)/SA Color Finesse 3 UI.app
    Time Machine:
              Skip System Files: NO
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 297.29 GB Disk used: 230.87 GB
              Destinations:
                        Momma-TM [Local] (Last used)
                        Total size: 465.75 GB
                        Total number of backups: 52
                        Oldest backup: 2013-10-25 22:40:58 +0000
                        Last backup: 2014-02-06 20:03:40 +0000
                        Size of backup disk: Too small
                                  Backup size 465.75 GB < (Disk used 230.87 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   5%          WindowServer
                   1%          EtreCheck
                   1%          Little Snitch Agent
                   0%          Little Snitch Network Monitor
                   0%          Little Snitch Daemon
    Top Processes by Memory:
              106 MB          Finder
              106 MB          Google Chrome
              98 MB          WindowServer
              98 MB          Mail
              82 MB          mds_stores
    Virtual Memory Information:
              90 MB          Free RAM
              1.31 GB          Active RAM
              1.18 GB          Inactive RAM
              967 MB          Wired RAM
              646 MB          Page-ins
              18 MB          Page-outs

  • [SOLVED]GPG no longer supports --no-use-standard-socket?

    I've used an SD card for where I store my gnupghome for a long time. I have delegated subkeys and all the configuration for them there. It's mounted to /mnt/keys on vfat. These cards use a FAT file system as I use these keys on multiple operating systems.
    GPG with release 2.1 has removed the 'standard socket' options, which means now if your gnupg home is on any file system that can't create socket files (see: FAT), gpg-agent can no longer run. Ironically, this is also the release that *removes* all support for running gpg without an agent!
    I'm disappointed this was not considered news for arch, I even wrote a small silly wrapper just for forcing me to read front page stories! (http://github.com/codemac/yosumiru)
    The GPG news page had the following:
    With GnuPG 2.1 the need of GPG_AGENT_INFO has been completely removed and the variable is ignored. Instead a fixed Unix domain socket named S.gpg-agent in the GnuPG home directory (by default ~/.gnupg) is used. The agent is also started on demand by all tools requiring services from the agent.
    Any thoughts on how I can keep my gnupg on a FAT filesystem and still run the agent? I'm feeling pretty hosed right now, and am pretty confused why this feature was removed from gpg agent, as this would be as simple as keeping the old functionality, but maybe forcing the --no-use-standard-socket option to be in gpg.conf
    Last edited by codemac (2014-12-02 18:43:06)

    codemac wrote:I've used an SD card for where I store my gnupghome for a long time. I have delegated subkeys and all the configuration for them there. It's mounted to /mnt/keys on vfat. These cards use a FAT file system as I use these keys on multiple operating systems.
    That's exactly what I used to do as well: mount a USB key read-only and run gpg --homedir /path/to/usb.
    codemac wrote:
    GPG with release 2.1 has removed the 'standard socket' options, which means now if your gnupg home is on any file system that can't create socket files (see: FAT), gpg-agent can no longer run. Ironically, this is also the release that *removes* all support for running gpg without an agent!
    I'm disappointed this was not considered news for arch, I even wrote a small silly wrapper just for forcing me to read front page stories! (http://github.com/codemac/yosumiru)
    The GPG news page had the following:
    With GnuPG 2.1 the need of GPG_AGENT_INFO has been completely removed and the variable is ignored. Instead a fixed Unix domain socket named S.gpg-agent in the GnuPG home directory (by default ~/.gnupg) is used. The agent is also started on demand by all tools requiring services from the agent.
    Any thoughts on how I can keep my gnupg on a FAT filesystem and still run the agent? I'm feeling pretty hosed right now, and am pretty confused why this feature was removed from gpg agent, as this would be as simple as keeping the old functionality, but maybe forcing the --no-use-standard-socket option to be in gpg.conf
    I don't understand why you insist on using --no-use-standard-socket...
    Some background: traditionally gpg-agent is started by a DE (e.g. xfce4-session starts it). This is useful because gpg-agent also manages ssh keys. However, this is not required anymore because agents are started on-demand and multiple agents can run concurrently.
    Now, if you didn't have a vFAT FS, all is good as you call gpg --homedir because it will invoke gpg-agent with the correct --homedir flag.
    So, all you need to do now is to rsync your gnupg dir on the SD card to some temp dir, e.g. /dev/shm/gnupg and use this dir as an argument to --homedir, and don't care about the agent at all.

  • Applications Start Page Profile Option Causing Issues

    Hello Oracle Gurus,
    I'm having an issue in a 12.1.3 instance that I think may be related to the "Applications Start Page" profile option.
    For testing purposes, we set the profile to a specific Self-Service page at the Site level. We eventually removed the Site level profile and added it at the user level just for specific users, but since the Site-level profile was set, every time we click the Home link in the upper right-hand navigation, we get an "unexpected error." If we attempt to log in as a user that does not have the Applications Start Page profile defined, we also get an unexpected error.
    After getting the error using either of the methods listed above, if we then try to navigate back to the login page, the instance throws a 500 Internal Error.
    If we close the browser and navigate to the instance again, we're able to log in without any issues with user accounts that have an Applications Start Page profile defined.
    Our "Self Service Personal Framework Mode" is set to "Framework Only" at the site level.
    Bouncing Apache seems to resolve the issue temporarily, but then it comes back again a few hours later...
    We've opened a Service Request, but has anyone else run into this before / have any ideas on how to fix it?
    Here are some related Metalink notes from 11.5.10:
    729375.1 (About the Applications Start Page profile option)
    331814.1 (Error on Personal Home Page when returning to 'Home' link)
    Thanks!
    Anne

    The issue is not specific to a responsibility or application.
    Here is the error:
    Fatal NI connect error 12170.
    VERSION INFORMATION:
         TNS for Linux: Version 11.1.0.7.0 - Production
         Unix Domain Socket IPC NT Protocol Adaptor for Linux: Version 11.1.0.7.0 - Production
         Oracle Bequeath NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
         TCP/IP NT Protocol Adapter for Linux: Version 11.1.0.7.0 - Production
    Time: 27-JAN-2011 09:46:02
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12535
    TNS-12535: TNS:operation timed out
    ns secondary err code: 12560
    nt main err code: 505
    TNS-00505: Operation timed out
    nt secondary err code: 110
    nt OS err code: 0
    Client address: (ADDRESS=(PROTOCOL=tcp)(HOST=172.30.31.107)(PORT=1502))
    Thu Jan 27 09:53:30 2011
    Incremental checkpoint up to RBA [0x42.e3635.0], current log tail at RBA [0x42.e37e1.0]
    Thu Jan 27 10:13:31 2011
    Incremental checkpoint up to RBA [0x42.e602b.0], current log tail at RBA [0x42.e6146.0]
    Thu Jan 27 10:33:33 2011
    Incremental checkpoint up to RBA [0x42.e7bc9.0], current log tail at RBA [0x42.e7d51.0]
    Thu Jan 27 10:53:35 2011
    Incremental checkpoint up to RBA [0x42.e995f.0], current log tail at RBA [0x42.e9ac9.0]
    Thu Jan 27 11:13:37 2011
    Incremental checkpoint up to RBA [0x42.ec163.0], current log tail at RBA [0x42.ec3f7.0]
    Thu Jan 27 11:23:48 2011
    Starting background process CJQ0
    Thu Jan 27 11:23:48 2011
    CJQ0 started with pid=8, OS id=17239
    Thu Jan 27 11:33:39 2011
    Incremental checkpoint up to RBA [0x42.ee08f.0], current log tail at RBA [0x42.ee216.0]
    Thu Jan 27 11:53:41 2011
    Incremental checkpoint up to RBA [0x42.efd07.0], current log tail at RBA [0x42.eff13.0]
    Thu Jan 27 11:54:02 2011
    Stopping background process CJQ0
    Thu Jan 27 12:13:43 2011
    Incremental checkpoint up to RBA [0x42.f25c0.0], current log tail at RBA [0x42.f2e4b.0]
    Thu Jan 27 12:33:45 2011
    Incremental checkpoint up to RBA [0x42.f4cae.0], current log tail at RBA [0x42.f4e4b.0]
    Thu Jan 27 12:53:47 2011
    Incremental checkpoint up to RBA [0x42.f6e8a.0], current log tail at RBA [0x42.f6fb7.0]
    Thu Jan 27 13:13:50 2011
    Incremental checkpoint up to RBA [0x42.fa3d0.0], current log tail at RBA [0x42.fa845.0]
    Thu Jan 27 13:33:52 2011
    Incremental checkpoint up to RBA [0x42.fc7d9.0], current log tail at RBA [0x42.fc989.0]
    Thu Jan 27 13:53:55 2011
    Incremental checkpoint up to RBA [0x42.fed4e.0], current log tail at RBA [0x42.ff12e.0]

Maybe you are looking for