Need help with a macbook problem

Hey guys I'm new to the forum and was wondering if i could get some help from someone that knows a thing or two about macbooks because i haven't a clue. I've had this macbook for about 2 years or so and the issue is that whenever i'm online(ethernet) it freezes pretty often, but it seems to do it more and more as i go ignoring the issue...and NO theres isn't a bunch of **** just to clear it up. And also it automatically freezes if i try to use the airport for wireless connection. When that happens i just force turn it off and when i start it up again the macbook says that there is no airport device on this computer so i restart it until the macbook shows the airport sign on the top right. I'm thinking of just reformatting my computer but am not entirely sure. Any sort of input would be a tremendous help thank you very much.

As a first hit, try repairing permissions by restarting from the MacOSX CD that came with your computer.
Put the CD in the drive and restart the computer, holding down the "C" key until it starts off the CD. THis may take a little while because the CD is slow.
When the computer starts up, DON'T install the software, go up to the menubar and look for "utilities". Use "Disk Utility" to repair permissions on your HDD, then restart.
That usually fixes things.... most of the time.

Similar Messages

  • Hello, I need help with my macbook pro. It looks like I cannot install anything anymore. Everytime I try to install a new software, use the migration assistant or click the lock to make changes, it simply does not react.

    Hello, I need help with my macbook pro.
    It looks like I cannot install anything anymore. Everytime I try to install a new software, I simply get stuck during the installation type process. I put in my password, it does accept it, but it does not go any further.
    I tried to reset the password, put no password, repair the permissions, the disk but nothing will do. I nearly got stuck with the log in screen but finally succeeded in disabling it.
    So I thought I might try to create a new account but I cannot click the lock to make changes. It simply refuses to react.
    I am now thinking about using the migration assistant to save all my settings, data and so fourth, but again I get stuck when I have to type in my password. It accepts it but nothing happens...
    I guess it has something to do with the authorization process, but can't find anything on the internet about it... Can you help me out?
    I am running Lion 10.7.3.
    Regards,
    Nicolas.
    (I apologize if any grammatical/structural mistakes were to be found, english is not my mother-tongue. )

    You probably won't like this suggestion, but I suggest you reinstall Lion.
    First, backup your system. Next, reboot your system, press/hold the COMMAND-R keys to boot into the Recovery HD. Select 'Reinstall Mac OS X'. If you purchased Lion as an upgrade to Snow Leopard, the reinstall process will install Lion 10.7.3. If your system came preinstalled with Lion, you might still get Lion 10.7.2. Both installs are a total install of the OS. None of your apps or data will be impacted. Just the OS.

  • Please I really need help with this video problem.

    Hi!
    Please I need help with this app I am trying to make for an Android cellphone and I've been struggling with this for a couple of months.
    I have a main flash file (video player.fla) that will load external swf files. This is the main screen.When I click the Sets Anteriores button I want to open another swf file called sets.swf.The app is freezing when I click Sets Anteriores button
    Here is the code for this fla file.
    import flash.events.MouseEvent;
    preloaderBar.visible = false;
    var loader:Loader = new Loader();
    btHome.enabled = false;
    var filme : String = "";
    carregaFilme("home.swf");
    function carregaFilme(filme : String ) :void
      var reqMovie:URLRequest = new URLRequest(filme);
      loader.load(reqMovie);
      loader.contentLoaderInfo.addEventListener(Event.OPEN,comeco);
      loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,progresso);
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE,completo);
      palco.addChild(loader); 
    function comeco(event:Event):void
              preloaderBar.visible = true;
              preloaderBar.barra.scaleX = 0;
    function progresso(e:ProgressEvent):void
              var perc:Number = e.bytesLoaded / e.bytesTotal;
              preloaderBar.percent.text = Math.ceil(perc*100).toString();
              preloaderBar.barra.scaleX =  perc;
    function completo(e:Event):void
              preloaderBar.percent.text = '';
              preloaderBar.visible = false;
    btHome.addEventListener(MouseEvent.MOUSE_DOWN,onHomeDown);
    btHome.addEventListener(MouseEvent.MOUSE_UP,onHomeUp);
    btSets.addEventListener(MouseEvent.MOUSE_DOWN,onSetsDown);
    btSets.addEventListener(MouseEvent.MOUSE_UP,onSetsUp);
    btVivo.addEventListener(MouseEvent.MOUSE_DOWN,onVivoDown);
    btVivo.addEventListener(MouseEvent.MOUSE_UP,onVivoUp);
    btHome.addEventListener(MouseEvent.CLICK,onHomeClick);
    btSets.addEventListener(MouseEvent.CLICK,onSetsClick);
    function onSetsClick(Event : MouseEvent) : void
              if (filme != "sets.swf")
                          filme = "sets.swf";
                          carregaFilme("sets.swf");
    function onHomeClick(Event : MouseEvent) : void
              if (filme != "home.swf")
                          filme = "home.swf";
                          carregaFilme("home.swf");
    function onHomeDown(Event : MouseEvent) : void
              btHome.y += 1;
    function onHomeUp(Event : MouseEvent) : void
              btHome.y -= 1;
    function onSetsDown(Event : MouseEvent) : void
              btSets.y += 1;
    function onSetsUp(Event : MouseEvent) : void
              btSets.y -= 1;
    function onVivoDown(Event : MouseEvent) : void
              btVivo.y += 1;
    function onVivoUp(Event : MouseEvent) : void
              btVivo.y -= 1;
    Now this is the sets.fla file:
    Here is the code for sets.fla
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    var video:Video;
    var nc:NetConnection;
    var ns:NetStream;
    var t : Timer = new Timer(1000,0);
    var meta:Object = new Object();
    this.addEventListener(Event.ADDED_TO_STAGE,init);
    function init(e:Event):void{
    video= new Video(320, 240);
    addChild(video);
    video.x = 80;
    video.y = 100;
    nc= new NetConnection();
    nc.connect(null);
    ns = new NetStream(nc);
    ns.addEventListener(NetStatusEvent.NET_STATUS, onStatusEvent);
    ns.bufferTime = 1;
    ns.client = meta;
    video.attachNetStream(ns);
    ns.play("http://www.djchambinho.com/videos/segundaquinta.flv");
    ns.pause();
    t.addEventListener(TimerEvent.TIMER,timeHandler);
    t.start();
    function onStatusEvent(stat:Object):void
              trace(stat.info.code);
    meta.onMetaData = function(meta:Object)
              trace(meta.duration);
    function timeHandler(event : TimerEvent) : void
      if (ns.bytesLoaded>0&&ns.bytesLoaded == ns.bytesTotal )
                ns.resume();
                t.removeEventListener(TimerEvent.TIMER,timeHandler);
                t.stop();
    The problem is when I test it on my computer it works but when I upload it to my phone it freezes when I click Sets Anteriores button.
    Please help me with this problem I dont know what else to do.
    thank you

    My first guess is you're simply generating an error. You'll always want to load this on your device in quick debugging over USB so you can see any errors you're generating.
    Outside that, if you plan on accessing anything inside the SWF you should be loading the SWF into the correct context. Relevant sample code:
    var context:LoaderContext = new LoaderContext();
    context.securityDomain = SecurityDomain.currentDomain;
    context.applicationDomain = ApplicationDomain.currentDomain;
    var urlReq:URLRequest = new URLRequest("http://www.[your_domain_here].com/library.swf");
    var ldr:Loader = new Loader();
    ldr.load(urlReq, context);
    More information:
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7de0.html
    If you're doing this on iOS you'll need to stripped SWFs if you plan on using any coding (ABC) inside the files. You mentioned iOS so I won't get into that here, but just incase, here's info on stripping external SWFs:
    http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/

  • I need help with a browser problem

    I am was given a new iMac G3 (from 2001) which was really never used.I have not yet had any serious problems with it, but really could use some help with a browser problem.
    I have 4 different web browsers that needs the macro media flash player update. The browsers I use are internet explorer, iCab, Netscape, and the original Mozilla Firefox.
    It would be of great appreciation for the readers of this post to answer my question.
    I am also having the problem with installing the plug - ins for the browsers. Thank You For Taking the Time To read This!

    Hi, rynodino -
    As Tom has suggested, plugins need to be installed in the Plug-Ins folder for the browser.
    Typically each browser will have its own Plug-Ins folder, usually located in the same folder containing the browser itself. In order for each of several browsers to access the same plugins, the plugins must be replicated and placed in each of the Plug-Ins folders for each of the browsers. The easy way to do that is to hold down the Option key while dragging a plugin to the new location - a copy (not an alias) of the plugin will be generated at the location it is dragged to.
    Most plugins will display a Netscape icon regardless of where they are located - this is normal.
    It is not unusual for the installer for a plugin to default its install to the Plug-Ins folder for Internet Explorer. So be it. Just replicate the new plugin to the other Plug-Ins folders as needed.
    Note that some plugin installs will involve more than one item. For those, be sure to replicate all items for it. Using labels can help identify what is new, what has been most recently added, in a Plug-Ins folder.

  • Need help with this book problem...Pig game...can ANYONE help!??

    I need help with the following book problem...could someone write this code for me?? Thanks!!
    First design and implement a class called PairOfDice, composed of two six-sided Die objects. Using the PairOfDice class, design and implement a class to play a game called Pig. In this game, the user competes against the computer. On each turn, the current player rolls a pair of dice and accumulates points. The goal is to reach 100 points before your opponent does. If, on any turn, the player rolls a 1, all points accumulated for that round are forfeited and control of the dice moves to the other player. If the player rolls two 1s in one turn, the player loses all points accumulated thus far in the game and loses control of the dice. The player may voluntarily turn over the dice after each roll. Therefore the player must decide to either roll again (be a pig) and risk losing points, or relinquish control of the dice, possibly allowing the other player to win. Implement the computer player such that it always relinquishes the dice after accumulating 20 or more points in any given round.
    I realize this is a long code, so it would be greatly appreciated to anyone who writes this one for me, or can at least give me any parts of it. I honestly have no clue how to do this because our professor is a dumbass and just expects us to know how to do this...he doesn't teach us this stuff...don't ask. Anyways, thanks for taking the time to read this and I hope someone helps out!! Thank you in advance to anyone who does!!!

    Nasty comments? It's not a matter of not liking you, it's a matter of responding to the
    "I'ts everyone else's fault but mine" attitude of your post.
    If you are genuine, the program is very easy to write, so, your Professor is correct when he said you should
    be able to do it. I'm still very much in the beginner category at java, and it took me only 20 mins to write
    (+5 mins to design it on paper). 2 classes in one file < 100 lines. Most of the regulars here would do it in half the time / half the lines.
    All of the clues are in the description, break them down into their various if / else conditions. Write it down on paper.
    Have a go. Try to achieve something. Post what you've tried, no-one will laugh at you, and you will be
    pleasanty surprised at the level of help you will get when you've "obviously" made some effort.
    Again, have a go. If you don't like problem-solving, then you don't like programming. So, you gotta ask
    yourself - "what am I doin' here?"

  • Need help with original MacBook, Snow Leopard, iPod Touch and iPad

    I have the original MacBook (2GHz Intel Core Duo) and I just installed Snow Leopard.  My software is all up to date and my system drive has 42 GB of space available. I have an iPod Touch 32 GB 3rd Gen and iPad 1 32 GB that I previously have been syncing with an iBook G4 PowerPC with no problems.  The iPod is running iOS 6. 
    Now, I want to sync them with this MacBook but when I open iTunes and connect the iPod, I go to click Backup (to this Computer(or even to iCloud)), it gives me an error message that my computer does not have enough space to backup.  The iPod is only 17 GB full.  So, I tried clicking Sync, in an effort to just get my iPod data into my iTunes and on the computer that way.  But it only did a 3 step sync and didn't actually transfer anything from the iPod.  My iPod was NOT wiped clean however(which is what I was actually worried would happen).  So I gave up on the iPod. 
    Moving on to the iPad, I clicked back up and it WAS able to backup.  The Available space on my system drive went from about 42.8 GB to 42.25 GB, so I figured it may have done something.  Then I tried to Sync and it did the same 3 step sync and nothing was transferred to the computer and the iPad left untouched.
    I am extremely new to Snow Leopard, so maybe I am missing something.  Does anyone have any idea what is going on?  Ultimately my goal is to just get everything from my iPod and iPad onto this MacBook.

    See if yhis article helps with your sync and backup issues http://support.apple.com/kb/HT1386
    Make sure that you click on each tab on the top of the iTunes window and select what you want to be synched.
    Authorize or deauthorize http://support.apple.com/kb/HT1420
    As far as replacing the hard drive it's very easy, here's a guide http://www.ifixit.com/Guide/MacBook+Core+2+Duo+Hard+Drive+Replacement/514/1
    IF you do decide to replace the hard drive you might consider a solid state drive, less power, less heat and WAYYYYY faster. I replaced mine with a Samsung 840 250GB SSD and it's the best upgrade I've ever done to a computer.
    You might also try posting your questions in the iTunes forum https://discussions.apple.com/community/itunes

  • I need help with my Macbook Pro... I can't boot it up because of a Kernal Panic.

    Like the title says... I know there are some computer savy people especially with Macs on here so any help would be greatly appreciated.
    Okay I will try my best to describe my problem...
    I believe it was either Saturday or Sunday that the problem first happened.
    I was watching a video on a site and I don't remember if I expanded to full screen, but the computer like froze up and a dark grey curtain fell over the screen that was somewhat translucent and this message popped up.
    So since it's a 2008 MBP I have no restart button so I decide to hold down the power button until it shuts off and then turn it on again... same message appears... I do this like 3-5 more times and still the same thing.  So I decide to let it sit for a while, which turned into a day because I had to go to work, and while at work I started looking for solutions.
    Came home and tried a solution that work... temporarily... I held the X button upon startup and it worked and I then ran start up disk like it said to on the troubleshooting I learned from Google.  Thought all was well... so I decide to venture back to said site that's just like flash players like youtube, but with more geared towards young adolescences.  Things were good for a little and then the problem started happening again and more frequent.
    I kept doing the hold X thing and it work like 1-2 more times and now that Kernel Panic screen doesn't go away at all and I can't boot up the MBP at all.
    I tried doing the thing where you hold X at start up... no luck!
    I tried holding down shift at start up to boot into safe mode and it still doesn't work.
    I tried some PRAM thing where you hold down cntrl + option + p + r and that didn't work.
    I don't even know what operating system I'm on because the MBP won't boot up for me to see the system info.
    Anyone ever had this problem or know how to fix it... I'm not covered under warranty anymore so before I take it into Apple and the use the KY on me I figured I ask on here to see if anyone can help me remedy this problem.
    Thanks any help would be greatly appreciated!

    Follow these documents.
    http://support.apple.com/kb/TS3742
    http://support.apple.com/kb/TS2570
    http://support.apple.com/kb/TS1440
    http://support.apple.com/kb/HT1455
    http://support.apple.com/kb/ht3964
    http://support.apple.com/kb/HT1379
    http://support.apple.com/kb/HT1509

  • Need help with simple mask problem

    hi there this is mark from superbooty a band that has played in the bay area for over 10 years...
    i was wondering if someone could help me with a Motion2 problem i'm having regarding masks.
    i'm working on this simple animated scene of a car going by a beach - the photo is from the passenger side and shows the outside mirror.
    i'm moving the background (different from the original that came with the car) and i want to move an image of tokyo inside the mirror housing too.
    i figured out how to do the mask but when i try to animate the image of tokyo the mask layer moves with it. when i lock the mask i can't move the image - ???
    there's got to be a way to lock the mask but be able to move what it is masking..
    here are the links to three images that show what the problem is - the first is
    the shot of the scene unmasked, shot 2 is the scene with the mask enabled, and the third is the shot when i try to animate the tokyo background:
    http://superbooty.com/mirrorbeach1.jpg
    http://superbooty.com/mirrorbeach2.jpg
    http://superbooty.com/mirrorbeach3.jpg
    any help would be most appreciated - thanks!

    Adam's solution is the one I'd use - put the mirror contents in a layer, mask the layer, then manipulate the mirror content image. Did this solve it for you - if so, please click on the or buttons over posts as appropriate...
    Patrick

  • Need help with webcam, macbook pro

    Please help!
    I need to set up a wireless webcam to monitor a litter of puppies while I am at work. Home computer is an iMac 24 inch, at work I can plug in my MacBook Pro, or use the office PC network. I need help in selecting a web cam (wireless, as pups are far from computer) and setting up so I can log on via an internet connection.
    Many thanks for your suggestions!

    They aren't cheap, and use a browser to view the images. Most require a wireless network at the remote location too ...
    Check these out:
    http://www.brickhousesecurity.com/wireless-network-cameras.html
    http://www.bizrate.com/webcams/wireless-remote-webcam/

  • I need help with slow macbook STILL

    still having serious speed issues.. slow shutdown slow startup and seem to be errors.. I am a novice with apple and do not know what any of this means so help would be very much appreciated.. I have tried many things suggested but still have issues
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_page_list_setall time: 889 ms
    6/04/13 3:28:57.000 PM kernel[0]: pages 1371715, wire 322802, act 173391, inact 138, cleaned 0 spec 98, zf 2196, throt 0, could discard act 136535 inact 194761 purgeable 3730 spec 538064 cleaned 0
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_page_list_setall found pageCount 498625
    6/04/13 3:28:57.000 PM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    6/04/13 3:28:57.000 PM kernel[0]: IOHibernatePollerOpen(0)
    6/04/13 3:28:57.000 PM kernel[0]: encryptStart 13300
    6/04/13 3:28:57.000 PM kernel[0]: bitmap_size 0x7f5a0, previewSize 0x48e468, writing 497175 pages @ 0x520d08
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_machine_init: state 2, image pages 322606, sum was ec7945d8, image1Size 16875800, conflictCount 3459, nextFree 1138
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_page_list_discard time: 646 ms, discarded act 136535 inact 194761 purgeable 3730 spec 538064 cleaned 0
    6/04/13 3:28:57.000 PM kernel[0]: IOHibernatePollerOpen(), ml_get_interrupts_enabled 0
    6/04/13 3:28:57.000 PM kernel[0]: IOHibernatePollerOpen(0)
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_machine_init reading
    6/04/13 3:28:57.000 PM kernel[0]: PMStats: Hibernate read took 4550 ms
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_machine_init pagesDone 498429 sum2 925233cf, time: 4550 ms, comp bytes: 675549184 time: 2186 ms 294 Mb/s, crypt bytes: 306937344 time: 407 ms 717 Mb/s
    6/04/13 3:28:57.000 PM kernel[0]: Wake reason: ?
    6/04/13 3:28:57.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    6/04/13 3:28:57.000 PM kernel[0]: Previous Sleep Cause: 5
    6/04/13 3:28:57.000 PM kernel[0]: Previous Shutdown Cause: -60
    6/04/13 3:28:57.000 PM kernel[0]: en1: 802.11d country code set to 'X1'.
    6/04/13 3:28:57.000 PM 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 149 153 157 161 165
    6/04/13 3:28:57.000 PM kernel[0]: TBT W (1): 0 [x]
    6/04/13 3:28:59.361 PM mDNSResponder[39]: setsockopt - IP_ADD_MEMBERSHIP error -1 errno 49 (Can't assign requested address) group 224.0.0.251 on 192.168.0.8
    6/04/13 3:29:00.635 PM UserEventAgent[149]: Could not get event name for stream/token: com.apple.time/7: 0x3: No such process
    6/04/13 3:29:02.504 PM configd[18]: network changed: v4(en1-:192.168.0.8) DNS- Proxy- SMB-
    6/04/13 3:29:06.123 PM WindowServer[76]: Created shield window 0x3aa for display 0x003f003d
    6/04/13 3:29:06.123 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 3:29:06.124 PM WindowServer[76]: Created shield window 0x3ab for display 0x003f003e
    6/04/13 3:29:06.125 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 3:29:06.468 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 3:29:07.000 PM kernel[0]: en1: 802.11d country code set to 'GB'.
    6/04/13 3:29:07.000 PM 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 120 124 128 132 136 140
    6/04/13 3:29:08.147 PM com.apple.launchd[1]: (com.apple.emond.aslmanager[1538]) Exited with code: 255
    6/04/13 3:29:10.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 3:29:10.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 3:29:10.000 PM kernel[0]: AirPort: Link Up on en1
    6/04/13 3:29:10.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 3:29:10.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 3:29:10.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 3:29:14.204 PM airportd[1530]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:29:14.273 PM airportd[1530]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:29:14.934 PM digest-service[1548]: label: default
    6/04/13 3:29:14.935 PM digest-service[1548]:           dbname: od:/Local/Default
    6/04/13 3:29:14.935 PM digest-service[1548]:           mkey_file: /var/db/krb5kdc/m-key
    6/04/13 3:29:14.935 PM digest-service[1548]:           acl_file: /var/db/krb5kdc/kadmind.acl
    6/04/13 3:29:14.940 PM configd[18]: network changed: v4(en1+:192.168.0.8) DNS+ Proxy+ SMB+
    6/04/13 3:29:14.985 PM UserEventAgent[11]: Captive: en1: Not probing 'Bens Wireless' (protected network)
    6/04/13 3:29:14.998 PM configd[18]: network changed: v4(en1!:192.168.0.8) DNS Proxy SMB
    6/04/13 3:29:15.208 PM digest-service[1548]: digest-request: uid=0
    6/04/13 3:29:16.101 PM digest-service[1548]: digest-request: init request
    6/04/13 3:29:16.161 PM digest-service[1548]: digest-request: init return domain: MACBOOKPRO-664D server: BEN-TATASCIORES-MACBOOK-PRO
    6/04/13 3:29:16.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    6/04/13 3:29:16.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0041
    6/04/13 3:29:16.000 PM kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    6/04/13 3:29:16.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    6/04/13 3:29:16.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    6/04/13 3:29:17.312 PM UserEventAgent[149]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    6/04/13 3:29:17.313 PM UserEventAgent[149]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7ffe67802b90 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    6/04/13 3:29:20.083 PM digest-service[1548]: digest-request: uid=0
    6/04/13 3:29:20.083 PM digest-service[1548]: digest-request: init request
    6/04/13 3:29:20.088 PM digest-service[1548]: digest-request: init return domain: MACBOOKPRO-664D server: BEN-TATASCIORES-MACBOOK-PRO
    6/04/13 3:29:20.548 PM SystemUIServer[160]: It does not make sense to draw an image when [NSGraphicsContext currentContext] is nil.  This is a programming error. Break on void _NSWarnForDrawingImageWithNoCurrentContext() to debug.  This will be logged only once.  This may break in the future.
    6/04/13 3:30:15.992 PM SubmitDiagInfo[1654]: Launched to submit Diagnostics and Usage
    6/04/13 3:30:30.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1660[ksadmin] clearing CS_VALID
    6/04/13 3:30:39.372 PM com.apple.launchd.peruser.501[146]: ([0x0-0x177177].com.google.Chrome[1657]) Exited: Killed: 9
    6/04/13 3:30:43.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1684[ksadmin] clearing CS_VALID
    6/04/13 3:30:47.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1687[ksadmin] clearing CS_VALID
    6/04/13 3:31:23.196 PM com.apple.launchd.peruser.501[146]: ([0x0-0x17e17e].com.apple.ActivityMonitor[1690]) Exited: Killed: 9
    6/04/13 3:31:32.454 PM com.apple.launchd.peruser.501[146]: (com.apple.PackageKit.InstallStatus) Throttling respawn: Will start in 9 seconds
    6/04/13 3:31:32.841 PM WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39171
    6/04/13 3:31:32.841 PM WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39171
    6/04/13 3:31:32.842 PM com.apple.ShareKitHelper[242]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    6/04/13 3:31:32.842 PM WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39171
    6/04/13 3:31:32.842 PM com.apple.ShareKitHelper[242]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    6/04/13 3:31:32.843 PM WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39171
    6/04/13 3:31:32.843 PM WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39171
    6/04/13 3:31:32.847 PM com.apple.launchd[1]: (com.apple.ShareKitHelper[242]) Exited: Killed: 9
    6/04/13 3:31:32.847 PM com.apple.launchd.peruser.501[146]: (com.apple.FolderActions.enabled[184]) Exited: Killed: 9
    6/04/13 3:31:32.848 PM WindowServer[76]: dict count after removing entry for window 0x25 is 0
    6/04/13 3:31:32.853 PM com.apple.launchd.peruser.501[146]: (com.apple.quicklook[1688]) Exited: Killed: 9
    6/04/13 3:31:32.854 PM com.apple.launchd.peruser.501[146]: ([0x0-0x17017].com.apple.AppleSpell[247]) Exited: Terminated: 15
    6/04/13 3:31:32.853 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=117
    6/04/13 3:31:32.854 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=890
    6/04/13 3:31:32.855 PM com.apple.launchd.peruser.501[146]: (com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000[1527]) Exited: Killed: 9
    6/04/13 3:32:03.000 PM bootlog[0]: BOOT_TIME 1365226323 0
    6/04/13 3:32:16.000 PM kernel[0]: PMAP: PCID enabled
    6/04/13 3:32:16.000 PM kernel[0]: Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    6/04/13 3:32:16.000 PM kernel[0]: vm_page_bootstrap: 3869919 free pages and 291617 wired pages
    6/04/13 3:32:16.000 PM kernel[0]: kext submap [0xffffff7f80735000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000735000]
    6/04/13 3:32:16.000 PM kernel[0]: zone leak detection enabled
    6/04/13 3:32:16.000 PM kernel[0]: standard timeslicing quantum is 10000 us
    6/04/13 3:32:16.000 PM kernel[0]: standard background quantum is 2500 us
    6/04/13 3:32:16.000 PM kernel[0]: mig_table_max_displ = 74
    6/04/13 3:32:16.000 PM kernel[0]: TSC Deadline Timer supported and enabled
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto kext started!
    6/04/13 3:32:16.000 PM kernel[0]: Running kernel space in FIPS MODE
    6/04/13 3:32:16.000 PM kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    6/04/13 3:32:16.000 PM kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS POST passed!
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet
    6/04/13 3:32:16.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    6/04/13 3:32:16.000 PM kernel[0]: calling mpo_policy_init for Sandbox
    6/04/13 3:32:16.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    6/04/13 3:32:16.000 PM kernel[0]: calling mpo_policy_init for Quarantine
    6/04/13 3:32:16.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    6/04/13 3:32:16.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    6/04/13 3:32:16.000 PM kernel[0]: The Regents of the University of California. All rights reserved.
    6/04/13 3:32:16.000 PM kernel[0]: MAC Framework successfully initialized
    6/04/13 3:32:16.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    6/04/13 3:32:16.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    6/04/13 3:32:16.000 PM kernel[0]: ACPI: System State [S0 S3 S4 S5]
    6/04/13 3:32:16.000 PM kernel[0]: PFM64 (36 cpu) 0xf80000000, 0x80000000
    6/04/13 3:32:16.000 PM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 6689
    6/04/13 3:32:16.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 00:59:42 Aug 25 2012) initialization complete
    6/04/13 3:32:16.000 PM kernel[0]: [ PCI configuration begin ]
    6/04/13 3:32:16.000 PM kernel[0]: console relocated to 0xfd0010000
    6/04/13 3:32:16.000 PM kernel[0]: PCI configuration changed (bridge=16 device=5 cardbus=0)
    6/04/13 3:32:16.000 PM kernel[0]: [ PCI configuration end, bridges 12 devices 18 ]
    6/04/13 3:32:16.000 PM kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    6/04/13 3:32:16.000 PM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    6/04/13 3:32:16.000 PM kernel[0]: rooting via boot-uuid from /chosen: 2A472E82-CE11-3B34-80B2-5644FCAAE941
    6/04/13 3:32:16.000 PM 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>
    6/04/13 3:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    6/04/13 3:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    6/04/13 3:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    6/04/13 3:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    6/04/13 3:32:16.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    6/04/13 3:32:16.000 PM kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 70cd60fffec8cf72; max speed s800.
    6/04/13 3:32:16.000 PM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500325ASG Media/IOGUIDPartitionScheme/Customer@2
    6/04/13 3:32:16.000 PM kernel[0]: BSD root: disk0s2, major 1, minor 2
    6/04/13 3:32:16.000 PM kernel[0]: BTCOEXIST off
    6/04/13 3:32:16.000 PM kernel[0]: BRCM tunables:
    6/04/13 3:32:16.000 PM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    6/04/13 3:32:16.000 PM kernel[0]: Kernel is LP64
    6/04/13 3:32:16.000 PM kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    6/04/13 3:32:05.232 PM com.apple.launchd[1]: *** launchd[1] has started up. ***
    6/04/13 3:32:05.232 PM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    6/04/13 3:32:16.398 PM com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    6/04/13 3:32:17.000 PM kernel[0]: BCM5701Enet: Ethernet address c8:2a:14:10:66:4d
    6/04/13 3:32:17.000 PM kernel[0]: AirPort_Brcm4331: Ethernet address e0:f8:47:2c:d3:1e
    6/04/13 3:32:17.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    6/04/13 3:32:17.000 PM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    6/04/13 3:32:23.374 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 3:32:25.000 PM kernel[0]: fsevents: watcher com.freemacsoft. (pid: 59) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    6/04/13 3:32:25.096 PM hidd[46]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    6/04/13 3:32:27.000 PM kernel[0]: Waiting for DSMOS...
    6/04/13 3:32:30.000 PM kernel[0]: macx_swapon SUCCESS
    6/04/13 3:32:32.078 PM coreservicesd[60]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    6/04/13 3:32:32.095 PM mDNSResponder[39]: mDNSResponder mDNSResponder-379.37 (Dec 16 2012 19:43:09) starting OSXVers 12
    6/04/13 3:32:32.100 PM airportd[65]: _processDLILEvent: en1 attached (down)
    6/04/13 3:32:32.117 PM appleeventsd[52]: main: Starting up
    6/04/13 3:32:32.139 PM com.apple.usbmuxd[27]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    6/04/13 3:32:32.000 PM kernel[0]: createVirtIf(): ifRole = 1
    6/04/13 3:32:32.000 PM kernel[0]: in func createVirtualInterface ifRole = 1
    6/04/13 3:32:32.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff804dbe5000
    6/04/13 3:32:32.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    6/04/13 3:32:32.000 PM kernel[0]: Created virtif 0xffffff804dbe5000 p2p0
    6/04/13 3:32:32.194 PM hidd[46]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    6/04/13 3:32:32.000 PM kernel[0]: AGC: 3.3.0, HW version=1.9.23, flags:0, features:20600
    6/04/13 3:32:32.000 PM kernel[0]: Previous Shutdown Cause: -60
    6/04/13 3:32:32.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed
    6/04/13 3:32:32.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    6/04/13 3:32:32.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0041
    6/04/13 3:32:32.000 PM kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    6/04/13 3:32:32.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    6/04/13 3:32:33.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    6/04/13 3:32:33.000 PM kernel[0]: AMDCaicosGraphicsAccelerator: ** Device in slot: SLOT--1 **
    6/04/13 3:32:33.507 PM com.apple.SecurityServer[14]: Session 100000 created
    6/04/13 3:32:33.733 PM mds[38]: (Normal) FMW: FMW 0 0
    6/04/13 3:32:33.897 PM configd[18]: setting hostname to "Ben-Tatasciores-MacBook-Pro.local"
    6/04/13 3:32:33.000 PM kernel[0]: DSMOS has arrived
    6/04/13 3:32:33.000 PM kernel[0]: [AGPM Controller] build GPUDict by Vendor1002Device6760
    6/04/13 3:32:33.000 PM kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    6/04/13 3:32:33.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 3:32:33.902 PM configd[18]: network changed.
    6/04/13 3:32:34.171 PM WindowServer[76]: Server is starting up
    6/04/13 3:32:34.174 PM WindowServer[76]: Session 256 retained (2 references)
    6/04/13 3:32:34.174 PM WindowServer[76]: Session 256 released (1 references)
    6/04/13 3:32:34.180 PM WindowServer[76]: Session 256 retained (2 references)
    6/04/13 3:32:34.181 PM WindowServer[76]: init_page_flip: page flip mode is on
    6/04/13 3:32:35.379 PM WindowServer[76]: mux_initialize: Mode is dynamic
    6/04/13 3:32:35.394 PM WindowServer[76]: GLCompositor enabled for tile size [256 x 256]
    6/04/13 3:32:35.394 PM WindowServer[76]: CGXGLInitMipMap: mip map mode is on
    6/04/13 3:32:35.425 PM WindowServer[76]: WSMachineUsesNewStyleMirroring: false
    6/04/13 3:32:35.426 PM WindowServer[76]: Display 0x042728c0: GL mask 0x9; bounds (0, 0)[1440 x 900], 39 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca3, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009ca300000000042728c0
    6/04/13 3:32:35.426 PM WindowServer[76]: 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 0xffffffffffffffffffffffff003f003e
    6/04/13 3:32:35.426 PM WindowServer[76]: 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 0xffffffffffffffffffffffff003f003d
    6/04/13 3:32:35.429 PM WindowServer[76]: Created shield window 0x5 for display 0x042728c0
    6/04/13 3:32:35.430 PM WindowServer[76]: Created shield window 0x6 for display 0x003f003e
    6/04/13 3:32:35.430 PM WindowServer[76]: Created shield window 0x7 for display 0x003f003d
    6/04/13 3:32:35.431 PM WindowServer[76]: Display 0x042728c0: GL mask 0x9; bounds (0, 0)[1440 x 900], 39 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca3, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009ca300000000042728c0
    6/04/13 3:32:35.431 PM WindowServer[76]: Display 0x003f003e: GL mask 0x4; bounds (2464, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    6/04/13 3:32:35.431 PM WindowServer[76]: Display 0x003f003d: GL mask 0x2; bounds (2465, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    6/04/13 3:32:35.431 PM WindowServer[76]: CGXPerformInitialDisplayConfiguration
    6/04/13 3:32:35.431 PM WindowServer[76]:   Display 0x042728c0: MappedDisplay Unit 0; Alias(0, 0x9); Vendor 0x610 Model 0x9ca3 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    6/04/13 3:32:35.431 PM WindowServer[76]:   Display 0x003f003e: MappedDisplay Unit 2; 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
    6/04/13 3:32:35.432 PM WindowServer[76]:   Display 0x003f003d: MappedDisplay Unit 1; 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
    6/04/13 3:32:35.432 PM WindowServer[76]: CGXMuxBoot: Boot normal
    6/04/13 3:32:35.491 PM WindowServer[76]: GLCompositor: GL renderer id 0x01021b07, GL mask 0x00000007, accelerator 0x000045c3, unit 0, caps QEX|QGL|MIPMAP, vram 256 MB
    6/04/13 3:32:35.491 PM WindowServer[76]: GLCompositor: GL renderer id 0x01021b07, GL mask 0x00000007, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    6/04/13 3:32:35.491 PM WindowServer[76]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000008, accelerator 0x00004a2b, unit 3, caps QEX|QGL|MIPMAP, vram 451 MB
    6/04/13 3:32:35.491 PM WindowServer[76]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000008, texture units 8, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    6/04/13 3:32:35.508 PM WindowServer[76]: Unable to open IOHIDSystem (e00002bd)
    6/04/13 3:32:35.000 PM kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    6/04/13 3:32:37.430 PM WindowServer[76]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    6/04/13 3:32:37.441 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 3:32:37.474 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 3:32:37.491 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 3:32:37.491 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 3:32:37.491 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 3:32:39.002 PM com.apple.SecurityServer[14]: Entering service
    6/04/13 3:32:39.031 PM systemkeychain[68]: done file: /var/run/systemkeychaincheck.done
    6/04/13 3:32:39.042 PM configd[18]: network changed: DNS*
    6/04/13 3:32:39.043 PM mDNSResponder[39]: D2D_IPC: Loaded
    6/04/13 3:32:39.043 PM mDNSResponder[39]: D2DInitialize succeeded
    6/04/13 3:32:39.068 PM awacsd[56]: Starting awacsd connectivity-78.2 (Dec 16 2012 19:43:29)
    6/04/13 3:32:39.072 PM awacsd[56]: InnerStore CopyAllZones: no info in Dynamic Store
    6/04/13 3:32:39.095 PM loginwindow[42]: Login Window Application Started
    6/04/13 3:32:39.117 PM loginwindow[42]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    6/04/13 3:32:39.133 PM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    6/04/13 3:32:40.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 3:32:40.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 3:32:40.000 PM kernel[0]: AirPort: Link Up on en1
    6/04/13 3:32:40.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 3:32:40.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 3:32:40.515 PM digest-service[105]: label: default
    6/04/13 3:32:40.515 PM digest-service[105]:           dbname: od:/Local/Default
    6/04/13 3:32:40.515 PM digest-service[105]:           mkey_file: /var/db/krb5kdc/m-key
    6/04/13 3:32:40.515 PM digest-service[105]:           acl_file: /var/db/krb5kdc/kadmind.acl
    6/04/13 3:32:40.517 PM digest-service[105]: digest-request: uid=0
    6/04/13 3:32:40.536 PM rpcsvchost[115]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    6/04/13 3:32:40.540 PM digest-service[105]: digest-request: init request
    6/04/13 3:32:40.543 PM digest-service[105]: digest-request: init return domain: BUILTIN server: BEN-TATASCIORES-MACBOOK-PRO
    6/04/13 3:32:40.547 PM sudo[112]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    6/04/13 3:32:41.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 3:32:41.837 PM netbiosd[75]: Unable to start NetBIOS name service:
    6/04/13 3:32:42.041 PM locationd[43]: NOTICE,Location icon should now be in state 0
    6/04/13 3:32:47.335 PM configd[18]: network changed: v4(en1+:192.168.0.8) DNS+ Proxy+ SMB+
    6/04/13 3:32:47.351 PM UserEventAgent[11]: Captive: en1: Not probing 'Bens Wireless' (protected network)
    6/04/13 3:32:47.355 PM configd[18]: network changed: v4(en1!:192.168.0.8) DNS Proxy SMB
    6/04/13 3:32:48.640 PM airportd[65]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:32:48.656 PM airportd[65]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:32:31.406 PM ntpd[102]: proto: precision = 1.000 usec
    6/04/13 3:32:34.476 PM SystemStarter[103]: StartOuc (111) did not complete successfully
    6/04/13 3:32:34.477 PM SystemStarter[103]: The following StartupItems failed to start properly:
    6/04/13 3:32:34.477 PM SystemStarter[103]: /Library/StartupItems/StartOuc
    6/04/13 3:32:34.477 PM SystemStarter[103]:  - execution of Startup script failed
    6/04/13 3:32:34.949 PM WindowServer[76]: Created shield window 0x8 for display 0x042728c0
    6/04/13 3:32:34.949 PM WindowServer[76]: Display 0x042728c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/04/13 3:32:34.968 PM launchctl[129]: com.apple.findmymacmessenger: Already loaded
    6/04/13 3:32:34.986 PM com.apple.SecurityServer[14]: Session 100004 created
    6/04/13 3:32:35.035 PM airportd[65]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:32:35.045 PM hidd[46]: CGSShutdownServerConnections: Detaching application from window server
    6/04/13 3:32:35.045 PM hidd[46]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    6/04/13 3:32:35.069 PM loginwindow[42]: Login Window Started Security Agent
    6/04/13 3:32:35.076 PM locationd[136]: NOTICE,Location icon should now be in state 0
    6/04/13 3:32:35.086 PM UserEventAgent[130]: cannot find useragent 1102
    6/04/13 3:32:35.126 PM WindowServer[76]: Display 0x042728c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/04/13 3:32:35.146 PM WindowServer[76]: Display 0x042728c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/04/13 3:32:35.152 PM SecurityAgent[138]: This is the first run
    6/04/13 3:32:35.152 PM SecurityAgent[138]: MacBuddy was run = 0
    6/04/13 3:32:35.181 PM SecurityAgent[138]: User info context values set for djinferno01
    6/04/13 3:32:35.464 PM loginwindow[42]: Login Window - Returned from Security Agent
    6/04/13 3:32:35.467 PM loginwindow[42]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    6/04/13 3:32:35.485 PM loginwindow[42]: USER_PROCESS: 42 console
    6/04/13 3:32:35.511 PM airportd[65]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:32:35.684 PM com.apple.launchd.peruser.501[148]: (com.apple.gamed) Ignored this key: UserName
    6/04/13 3:32:35.684 PM com.apple.launchd.peruser.501[148]: (com.apple.gamed) Ignored this key: GroupName
    6/04/13 3:32:35.685 PM com.apple.launchd.peruser.501[148]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    6/04/13 3:32:35.690 PM loginwindow[42]: Connection with distnoted server was invalidated
    6/04/13 3:32:35.696 PM distnoted[152]: # distnote server agent  absolute time: 50.940676450   civil time: Sat Apr  6 15:32:35 2013   pid: 152 uid: 501  root: no
    6/04/13 3:32:35.844 PM WindowServer[76]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    6/04/13 3:32:36.326 PM awacsd[56]: Exiting
    6/04/13 3:32:36.487 PM netbiosd[75]: starting time 386919156.486931 is before last initialize time 386919167.336407
    6/04/13 3:32:36.487 PM netbiosd[75]: starting time 386919156.487135 is before last initialize time 386919167.336407
    6/04/13 3:32:36.776 PM blued[55]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    6/04/13 3:32:37.157 PM com.apple.SecurityServer[14]: Session 100006 created
    6/04/13 3:32:37.183 PM SystemUIServer[164]: In 'CFPasteboardCopyDataReturn __CFPasteboardCopyData(CFPasteboardRef, CFIndex, CFIndex, CFStringRef, Boolean)', file /SourceCache/CF/CF-744.18/AppServices.subproj/CFPasteboard.c, line 2373, during unlock, spin lock 0x109b7f018 has value 0x0, which is not locked.  The memory has been smashed or the lock is being unlocked when not locked.
    6/04/13 3:32:37.201 PM WindowServer[76]: Display 0x042728c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/04/13 3:32:37.233 PM com.apple.launchd.peruser.501[148]: (com.apple.afpstat-qfa[193]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    6/04/13 3:32:37.233 PM com.apple.launchd.peruser.501[148]: (com.apple.afpstat-qfa[193]) Job failed to exec(3) for weird reason: 2
    6/04/13 3:32:37.238 PM NetworkBrowserAgent[178]: Starting NetworkBrowserAgent
    6/04/13 3:32:37.536 PM loginwindow[42]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    6/04/13 3:32:37.537 PM loginwindow[42]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7fe46b038340 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    6/04/13 3:32:39.788 PM SystemUIServer[164]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    6/04/13 3:32:39.789 PM SystemUIServer[164]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7fdaa322bc30 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    6/04/13 3:32:40.337 PM SystemUIServer[164]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:32:40.337 PM SystemUIServer[164]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:32:55.648 PM com.apple.launchd[1]: (com.apple.coreservices.appleid.authentication[134]) Exit timeout elapsed (20 seconds). Killing
    6/04/13 3:33:35.922 PM SubmitDiagInfo[277]: Launched to submit Diagnostics and Usage
    6/04/13 3:33:47.995 PM SubmitDiagInfo[277]: SubmitDiagInfo successfully uploaded 96 diagnostic messages.
    6/04/13 3:33:56.863 PM com.apple.SecurityServer[14]: Session 100005 created
    6/04/13 3:34:37.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=292[ksadmin] clearing CS_VALID
    6/04/13 3:34:37.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=294[ksadmin] clearing CS_VALID
    6/04/13 3:34:56.000 PM kernel[0]: Limiting closed port RST response from 314 to 250 packets per second
    6/04/13 3:34:58.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 3:34:58.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 3:34:58.000 PM kernel[0]: wl0: Roamed or switched channel, reason #8, bssid 2c:b0:5d:f7:70:70
    6/04/13 3:34:58.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 3:34:58.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 3:34:58.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 3:35:58.303 PM DiskImages UI Agent[308]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    6/04/13 3:36:05.120 PM librariand[324]: MMe quota status changed: under quota
    6/04/13 3:36:05.000 PM kernel[0]: Sandbox: sandboxd(326) deny mach-lookup com.apple.coresymbolicationd
    6/04/13 3:36:08.600 PM sandboxd[326]: ([322]) TextEdit(322) deny sysctl-write
    6/04/13 3:36:08.616 PM sandboxd[326]: ([322]) TextEdit(322) deny sysctl-write
    6/04/13 3:36:38.141 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.145 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.148 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.151 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.155 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.158 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.852 PM Installer[336]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 3:36:41.170 PM Installer[336]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 3:36:45.323 PM Installer[336]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 3:36:49.299 PM Installer[336]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:36:49.300 PM Installer[336]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:36:49.434 PM Installer[336]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:36:49.435 PM Installer[336]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:36:49.514 PM Installer[336]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 3:37:06.831 PM coreservicesd[60]: Application App:"Installer" [ 0x0/0x2a02a]  @ 0x0x7f8894813640 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x2c02c:) ), so denying.
    6/04/13 3:37:06.832 PM WindowServer[76]: [cps/setfront] Failed setting the front application to Installer, psn 0x0-0x2a02a, securitySessionID=0x186a4, err=-13066
    6/04/13 3:37:43.699 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 3:37:54.392 PM Installer[336]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 3:37:55.003 PM mds[38]: Unable to talk to lsboxd
    6/04/13 3:38:12.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=396[ksadmin] clearing CS_VALID
    6/04/13 3:38:12.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=398[ksadmin] clearing CS_VALID
    6/04/13 3:45:09.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=434[ksadmin] clearing CS_VALID
    6/04/13 3:45:10.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=436[ksadmin] clearing CS_VALID
    6/04/13 3:50:12.206 PM VDCAssistant[452]: AVF encoder error: fail to create accelerator instance
    6/04/13 3:55:43.789 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 3:56:43.634 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    6/04/13 3:56:43.635 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    6/04/13 3:56:43.635 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit] Cancel UI for running services with Client PID: 460
    6/04/13 3:58:09.180 PM xpcd[201]: (null): have symlinks: (
    6/04/13 3:58:10.658 PM librariand[475]: MMe quota status changed: under quota
    6/04/13 3:58:12.716 PM com.apple.SecurityServer[14]: Session 100010 created
    6/04/13 3:58:21.384 PM CVMServer[77]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    6/04/13 3:58:21.414 PM CVMServer[77]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    6/04/13 3:58:23.757 PM com.apple.security.pboxd[485]: Bug: 12D78: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    6/04/13 3:58:33.710 PM com.apple.security.pboxd[485]: CGSGetWindowTags: Invalid window 0xd9
    6/04/13 3:58:33.710 PM com.apple.security.pboxd[485]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    6/04/13 3:58:33.740 PM com.apple.security.pboxd[485]: CGSCopyWindowColorSpace: Invalid window 0xd9
    6/04/13 3:58:52.967 PM com.apple.security.pboxd[485]: CGSReleaseWindow: Invalid window 217
    6/04/13 3:58:52.967 PM com.apple.security.pboxd[485]: _NXTermWindow: error releasing window (1000)
    6/04/13 3:59:41.822 PM WindowServer[76]: CGXSetWindowListTags: Modification of kCGSPermittedBeforeLoginTagBit (30) on a window 0xea requiring rights kCGSWindowRightOwner by caller TextEdit
    6/04/13 4:00:22.807 PM com.apple.security.pboxd[485]: CGSGetWindowTags: Invalid window 0xf8
    6/04/13 4:00:22.807 PM com.apple.security.pboxd[485]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    6/04/13 4:00:22.867 PM com.apple.security.pboxd[485]: CGSCopyWindowColorSpace: Invalid window 0xf8
    6/04/13 4:01:01.846 PM com.apple.security.pboxd[485]: CGSReleaseWindow: Invalid window 248
    6/04/13 4:01:01.847 PM com.apple.security.pboxd[485]: _NXTermWindow: error releasing window (1000)
    6/04/13 4:01:17.493 PM com.apple.security.pboxd[485]: CGSGetWindowTags: Invalid window 0x104
    6/04/13 4:01:17.493 PM com.apple.security.pboxd[485]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    6/04/13 4:01:22.146 PM com.apple.security.pboxd[485]: CGSReleaseWindow: Invalid window 260
    6/04/13 4:01:22.147 PM com.apple.security.pboxd[485]: _NXTermWindow: error releasing window (1000)
    6/04/13 4:01:57.060 PM Google Chrome[432]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 4:02:53.532 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    6/04/13 4:02:53.533 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    6/04/13 4:02:53.533 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit] Cancel UI for running services with Client PID: 428
    6/04/13 4:03:35.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=526[ksadmin] clearing CS_VALID
    6/04/13 4:03:35.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=528[ksadmin] clearing CS_VALID
    6/04/13 4:07:43.480 PM WindowServer[76]: Created shield window 0x13b for display 0x042728c0
    6/04/13 4:07:43.480 PM WindowServer[76]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x0(0)
    6/04/13 4:07:43.496 PM WindowServer[76]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x0(0)
    6/04/13 4:08:43.455 PM WindowServer[76]: Created shield window 0x13c for display 0x003f003d
    6/04/13 4:08:43.456 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no lock state data
    6/04/13 4:08:43.456 PM WindowServer[76]: Created shield window 0x13d for display 0x003f003e
    6/04/13 4:08:43.457 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no lock state data
    6/04/13 4:08:43.459 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no lock state data
    6/04/13 4:08:45.217 PM Microsoft Outlook[546]: objc[546]: Class OnClickLinkAction is implemented in both /Applications/Microsoft Office 2011/Office/OutlookLegacy.framework/Versions/14/OutlookLegacy and /Applications/Microsoft Office 2011/Microsoft Outlook.app/Contents/MacOS/Microsoft Outlook. One of the two will be used. Which one is undefined.
    6/04/13 4:08:50.918 PM WindowServer[76]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    6/04/13 4:10:19.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=557[ksadmin] clearing CS_VALID
    6/04/13 4:10:19.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=559[ksadmin] clearing CS_VALID
    6/04/13 4:10:51.860 PM WindowServer[76]: Created shield window 0x164 for display 0x042728c0
    6/04/13 4:10:51.860 PM WindowServer[76]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x0(0)
    6/04/13 4:10:51.873 PM WindowServer[76]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x0(0)
    6/04/13 4:10:53.000 PM kernel[0]: hibernate image path: /var/vm/sleepimage
    6/04/13 4:10:53.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    6/04/13 4:10:53.000 PM kernel[0]: hibernate_alloc_pages act 238901, inact 79691, anon 830, throt 0, spec 195176, wire 311000, wireinit 291617
    6/04/13 4:10:53.000 PM kernel[0]: hibernate_setup(0) took 0 ms
    6/04/13 4:10:53.000 PM kernel[0]: sizeof(IOHibernateImageHeader) == 512
    6/04/13 4:10:53.000 PM kernel[0]: kern_open_file_for_direct_io(0) took 29 ms
    6/04/13 4:10:53.000 PM kernel[0]: Opened file /var/vm/sleepimage, size 17179869184, partition base 0x0, maxio 400000 ssd 0
    6/04/13 4:10:53.000 PM kernel[0]: hibernate image major 1, minor 0, blocksize 512, pollers 5
    6/04/13 4:11:06.000 PM kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff81fd0ea000, 0xffffff81fd16a000
    6/04/13 4:11:06.000 PM kernel[0]: hibernate_page_list_setall time: 761 ms
    6/04/13 4:11:06.000 PM kernel[0]: pages 805095, wire 292488, act 137636, inact 857, cleaned 0 spec 121, zf 830, throt 0, could discard act 94348 inact 78141 purgeable 5548 spec 195126 cleaned 0
    6/04/13 4:11:06.000 PM kernel[0]: hibernate_page_list_setall found pageCount 431932
    6/04/13 4:11:06.000 PM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    6/04/13 4:11:06.000 PM kernel[0]: IOHibernatePollerOpen(0)
    6/04/13 4:11:06.000 PM kernel[0]: encryptStart 13300
    6/04/13 4:11:06.000 PM kernel[0]: bitmap_size 0x7f5a0, previewSize 0x48e460, writing 430482 pages @ 0x520d00
    6/04/13 4:11:06.000 PM kernel[0]: encryptEnd a5cd200
    6/04/13 4:11:06.000 PM kernel[0]: image1Size 0x1318ec00, encryptStart1 0x13300, End1 0xa5cd200
    6/04/13 4:11:06.000 PM kernel[0]: encryptStart 1318ec00
    6/04/13 4:11:06.000 PM kernel[0]: encryptEnd 21799000
    6/04/13 4:11:06.000 PM kernel[0]: PMStats: Hibernate write took 8629 ms
    6/04/13 4:11:06.000 PM kernel[0]: all time: 8629 ms, comp bytes: 1763618816 time: 1402 ms 1199 Mb/s, crypt bytes: 414991104 time: 818 ms 483 Mb/s,
    6/04/13 4:11:06.000 PM kernel[0]: image 561614848 (3%), uncompressed 1763618816 (430571), compressed 553329568 (31%), sum1 3f83d918, sum2 f8c9e83a
    6/04/13 4:11:06.000 PM kernel[0]: wired_pages_encrypted 162616, wired_pages_clear 128511, dirty_pages_encrypted 139444
    6/04/13 4:11:06.000 PM kernel[0]: hibernate_write_image done(0)
    6/04/13 4:11:06.000 PM kernel[0]: sleep
    6/04/13 4:21:49.332 PM WindowServer[76]: Created shield window 0x165 for display 0x003f003d
    6/04/13 4:21:49.332 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 4:21:49.332 PM WindowServer[76]: Created shield window 0x166 for display 0x003f003e
    6/04/13 4:21:49.332 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 4:21:49.333 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 4:21:49.000 PM kernel[0]: Wake reason: EC.LidOpen (User)
    6/04/13 4:21:49.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    6/04/13 4:21:49.000 PM kernel[0]: Previous Sleep Cause: 5
    6/04/13 4:21:49.000 PM kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    6/04/13 4:21:49.000 PM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    6/04/13 4:21:49.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 4:21:49.000 PM kernel[0]: TBT W (1): 0 [x]
    6/04/13 4:21:49.000 PM kernel[0]: The USB device USB Receiver (Port 3 of Hub at 0xfa100000) may have caused a wake by issuing a remote wakeup (3)
    6/04/13 4:21:50.005 PM WindowServer[76]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft Outlook" for over 1.00 seconds. Server has re-enabled them.
    6/04/13 4:21:52.410 PM WindowServer[76]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft Outlook" after 3.41 seconds (server forcibly re-enabled them after 1.00 seconds)
    6/04/13 4:21:53.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=569[ksadmin] clearing CS_VALID
    6/04/13 4:21:53.574 PM configd[18]: network changed: v4(en1-:192.168.0.8) DNS- Proxy- SMB-
    6/04/13 4:21:53.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=572[ksadmin] clearing CS_VALID
    6/04/13 4:21:54.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 4:21:54.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 4:21:54.000 PM kernel[0]: AirPort: Link Up on en1
    6/04/13 4:21:54.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 4:21:54.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 4:21:54.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 4:21:55.535 PM configd[18]: network changed: v4(en1+:192.168.0.8) DNS+ Proxy+ SMB+
    6/04/13 4:21:55.682 PM UserEventAgent[11]: Captive: en1: Not probing 'Bens Wireless' (protected network)
    6/04/13 4:21:55.686 PM configd[18]: network changed: v4(en1!:192.168.0.8) DNS Proxy SMB
    6/04/13 4:21:56.389 PM airportd[566]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 4:21:56.419 PM airportd[566]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 4:21:56.453 PM airportd[566]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 4:22:19.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 4:22:19.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 4:22:19.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 4:22:19.000 PM kernel[0]: wl0: Roamed or switched channel, reason #8, bssid 2c:b0:5d:f7:70:70
    6/04/13 4:22:19.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 4:22:19.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 4:22:54.000 PM kernel[0]: en1: 802.11d country code set to 'GB'.
    6/04/13 4:22:54.000 PM 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 120 124 128 132 136 140
    6/04/13 4:23:41.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 4:23:41.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 4:23:41.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 4:23:41.000 PM kernel[0]: wl0: Roamed or switched channel, reason #8, bssid 2c:b0:5d:f7:70:70
    6/04/13 4:23:41.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 4:23:41.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 4:49:47.567 PM UserEventAgent[151]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    6/04/13 4:49:47.568 PM UserEventAgent[151]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7f9e42a18470 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    6/04/13 4:49:47.641 PM blued[611]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    6/04/13 4:51:50.072 PM System Preferences[617]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 4:51:50.072 PM System Preferences[617]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 4:51:50.150 PM System Preferences[617]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    6/04/13 4:51:50.151 PM System Preferences[617]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7fab8ca42b50 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    6/04/13 4:53:11.598 PM blued[611]: -[CBManager init] init returning self:0x7ff1c380f250
    6/04/13 4:53:23.137 PM blued[611]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    6/04/13 4:53:43.014 PM blued[611]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    6/04/13 4:53:59.838 PM BluetoothUIServer[634]: Launching application /System/Library/CoreServices/OBEXAgent.app/Contents/MacOS/OBEXAgent
    6/04/13 4:54:54.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 4:54:54.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 4:54:54.000 PM kernel[0]: wl0: Roamed or switched channel, reason #8, bssid 2c:b0:5d:f7:70:70
    6/04/13 4:54:54.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 4:54:54.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 4:54:56.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 4:55:47.816 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 4:55:47.846 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 4:55:47.847 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 4:55:47.848 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 4:55:47.890 PM CVMServer[77]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    6/04/13 4:55:47.896 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 4:55:47.919 PM CVMServer[77]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    6/04/13 4:55:47.987 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 4:55:48.486 PM Google Chrome Helper EH[648]: CGImageCreateWithImageProvider: invalid image size: 0 x 0.
    6/04/13 4:56:13.090 PM VDCAssistant[656]: AVF encoder error: fail to create accelerator instance
    6/04/13 4:56:16.281 PM FacebookVideoCalling[655]: Roadblock URL service returned 400 bad request
    6/04/13 5:00:48.513 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 5:00:48.551 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 5:00:48.607 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 5:00:48.608 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 5:00:48.608 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 5:02:59.658 PM VDCAssistant[671]: AVF encoder error: fail to create accelerator instance
    6/04/13 5:07:14.093 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 5:43:34.000 PM kernel[0]: Limiting closed port RST response from 276 to 250 packets per second
    6/04/13 5:48:07.000 PM kernel[0]: Limiting closed port RST response from 258 to 250 packets per second
    6/04/13 5:55:52.611 PM com.apple.launchd.peruser.501[148]: ([0x0-0xb00b0].com.apple.BluetoothFileExchange[702]) Exited: Killed: 9
    6/04/13 6:08:01.926 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 6:13:29.707 PM WindowServer[76]: CGXRegisterWindowWithSystemStatusBar: window c already registered
    6/04/13 7:08:49.921 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 7:19:07.293 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:07.321 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:07.322 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:07.324 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:07.357 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:07.373 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 7:19:07.805 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:07.826 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:07.843 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:07.843 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:07.843 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:08.404 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:08.428 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:08.428 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:08.430 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:08.449 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 7:19:08.480 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:55.346 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:55.371 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:55.406 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:55.407 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:55.407 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:57.227 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:57.255 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:57.256 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:57.258 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:57.288 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:57.290 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 7:19:57.784 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:57.807 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:57.843 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:57.844 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:57.844 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:58.402 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:58.428 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:58.428 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:58.430 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:58.449 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 7:19:58.476 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:20:26.534 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:20:26.570 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:20:26.576 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:20:26.576 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:20:26.576 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:20:27.195 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:20:27.225 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:20:27.226 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:20:27.227 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:20:27.260 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:20:27.261 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 7:20:27.847 PM WindowServer[76]: Received display connect changed for disp

    Did you ever solve your problem?
    What is StartOuc?  It seems to be having a problem:
    7/04/13 4:25:56.099 AM SystemStarter[97]: StartOuc (105) did not complete successfully
    7/04/13 4:25:56.099 AM SystemStarter[97]: The following StartupItems failed to start properly:
    7/04/13 4:25:56.099 AM SystemStarter[97]: /Library/StartupItems/StartOuc
    7/04/13 4:25:56.099 AM SystemStarter[97]:  - execution of Startup script failed
    It might be related to your Serato, which seems to have been installed before a major OSX upgrade:
    (See the "no suitable image found, but I did find... ..but wrong architecture")
    7/04/13 4:25:41.731 AM loginwindow[42]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    7/04/13 4:25:41.731 AM loginwindow[42]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7f8796016d80 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    This would stop your audio plugin, and might be related to the Ouc failing.
    Finally, there's a folder-action that is constantly triggering but maybe failing or not working:
    7/04/13 4:25:56.329 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 10 seconds
    7/04/13 4:25:56.726 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 10 seconds
    7/04/13 4:25:56.827 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 10 seconds
    7/04/13 4:25:57.017 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 10 seconds
    7/04/13 4:25:57.118 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 9 seconds
    7/04/13 4:25:57.271 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 9 seconds
    7/04/13 4:25:57.372 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 9 seconds
    ...that constant start/stop/start/stop would cause load and slow things down.
    It might be worth triggering a rebuild of your Search (MDS) which is complaining, and if it's constantly re-indexing things, would cause load:
    7/04/13 4:25:45.772 AM mds[38]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    7/04/13 4:25:45.773 AM mds[38]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Hope that helps if you are still seeing an issue.

  • Need help with applet related problems

    First of all hello to everyone. I'm new to this forum. I usually can solve my problems google-ing around, but this time I just ran out of ideas.
    I'm trying to develop a jni applet that can run native code for performance. I used netbeans so far and the applet works great when run from within the ide. At some point a managed to make the applet run inside firefox and iexplore, however somehow i screwed something up and now i can't make it run anymore. I don't really know what i did but i think it may be related to these lines in the console since everything up until awt works fine in the applet:
    basic: JNLP2ClassLoader.findLibrary: Looking up native library: jawt.dll
    network: Looking up native library in: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\jawt.dll
    basic: Native library jawt.dll not found
    Ofc i may be wrong.
    This also my be a local problem because a friend of mine tried the applet himself and said it's working.
    All the jars are selfsigned.
    below i posted the console output in case you want to take a look. Also I am interested about the "try again.." messages that seem to pop over and over again.
    Java Plug-in 1.6.0_27
    Using JRE version 1.6.0_27-b07 Java HotSpot(TM) Client VM
    User home directory = C:\Users\Gladiator
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition value null
    security: property package.definition new value com.sun.javaws
    security: property package.definition value com.sun.javaws
    security: property package.definition new value com.sun.javaws,com.sun.deploy
    security: property package.definition value com.sun.javaws,com.sun.deploy
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.access new value sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    security: property package.definition value com.sun.javaws,com.sun.deploy,com.sun.jnlp
    security: property package.definition new value com.sun.javaws,com.sun.deploy,com.sun.jnlp,org.mozilla.jss
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp, version: null]
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp, version: null]
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp, version: null]
    network: ResponseCode for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp : 200
    network: Encoding for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp : null
    network: Sever response: (length: 564, lastModified: Wed Sep 07 16:30:17 EEST 2011, downloadVersion: null, mimeType: application/x-java-jnlp-file)
    network: Downloading resource: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
         Content-Length: 564
         Content-Encoding: null
    network: Wrote URL file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp to File C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\57\7465fe39-7a36cd96-temp
    network: Cache: Enable a new CacheEntry: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
    temp: new XMLParser with source:
    temp: <?xml version="1.0" encoding="UTF-8"?>
    <jnlp href="launch.jnlp">
    <information>
    <title>test app</title>
    <vendor>Raven</vendor>
    </information>
    <resources>
    <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se" />
    <jar href="SpaceGame.jar" main="true" />
    </resources>
    <resources os="Windows">
    <nativelib href="lib/swt.jar"/>
    </resources>
    <applet-desc
    name="test app"
    main-class="javatest.JTest"
    width="800"
    height="600">
    </applet-desc>
    <security>
    <all-permissions/>
    </security>
    </jnlp>
    temp:
    returning ROOT as follows:
    <jnlp href="launch.jnlp">
    <information>
    <title>test app</title>
    <vendor>Raven</vendor>
    </information>
    <resources>
    <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
    <jar href="SpaceGame.jar" main="true"/>
    </resources>
    <resources os="Windows">
    <nativelib href="lib/swt.jar"/>
    </resources>
    <applet-desc name="test app" main-class="javatest.JTest" width="800" height="600"/>
    <security>
    <all-permissions/>
    </security>
    </jnlp>
    temp: returning LaunchDesc from XMLFormat.parse():
    <jnlp spec="1.0+" codebase="file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/" href="file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp">
    <information>
    <title>test app</title>
    <vendor>Raven</vendor>
    <homepage href="null"/>
    </information>
    <security>
    <all-permissions/>
    </security>
    <update check="timeout" policy="always"/>
    <resources>
    <java href="http://java.sun.com/products/autodl/j2se" version="1.6+"/>
    <jar href="file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar" download="eager" main="true"/>
    <nativelib href="file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar" download="eager" main="false"/>
    </resources>
    <applet-desc name="test app" main-class="javatest.JTest" documentbase="file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.html" width="800" height="600"/>
    </jnlp>
    network: CleanupThread used 16572 us
    basic: Plugin2ClassLoader.addURL2 called for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    basic: Plugin2ClassLoader.addURL2 called for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    basic: Plugin2ClassLoader.drainPendingURLs addURL called for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    basic: Plugin2ClassLoader.drainPendingURLs addURL called for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    network: No Custom Progress jar
    network: LaunchDownload: concurrent downloads from LD: 4
    network: Total size to download: -1
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar, version: null]
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar, version: null]
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar, version: null]
    network: Cache entry not found [url: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar, version: null]
    network: ResponseCode for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar : 200
    network: ResponseCode for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar : 200
    network: Encoding for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar : null
    network: Encoding for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar : null
    network: Sever response: (length: 12948, lastModified: Tue Sep 06 22:46:50 EEST 2011, downloadVersion: null, mimeType: application/x-java-archive)
    network: Sever response: (length: 2007707, lastModified: Tue Sep 06 22:47:10 EEST 2011, downloadVersion: null, mimeType: application/x-java-archive)
    network: CleanupThread used 1 us
    network: Downloading resource: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
         Content-Length: 12,948
         Content-Encoding: null
    network: Downloading resource: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
         Content-Length: 2,007,707
         Content-Encoding: null
    network: Wrote URL file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar to File C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\5\26fb4185-10c9079c-temp
    network: Validating file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar , version null...
    security: Blacklist revocation check is enabled
    security: Trusted libraries list check is enabled
    network: Cache: Enable a new CacheEntry: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    network: CleanupThread used 1 us
    network: Downloaded file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar: file:/C:/Users/Gladiator/AppData/LocalLow/Sun/Java/Deployment/cache/6.0/5/26fb4185-10c9079c
    network: Download Progress: jarsDone: 1
    network: Wrote URL file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar to File C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-temp
    network: Validating file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar , version null...
    network: Cache: Enable a new CacheEntry: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    network: CleanupThread used 2 us
    network: Downloaded file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar: file:/C:/Users/Gladiator/AppData/LocalLow/Sun/Java/Deployment/cache/6.0/10/1082924a-7851bf5e
    network: Download Progress: jarsDone: 2
    network: Created version ID: 1.6+
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6.0.27
    network: Created version ID: 1.6
    basic: LaunchDesc location: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
    network: Created version ID: 1.0+
    network: Created version ID: 6.0.18
    security: Validating signatures for file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
    security: TustedSet null
    security: Empty trusted set for [file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp]
    security: Round 1 (0 out of 2):file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    security: Entry [file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar] is not prevalidated. Revert to full validation of this JAR.
    security: Round 2 (0 out of 2):file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    security: Validating cached jar url=file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar ffile=C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\5\26fb4185-10c9079c com.sun.deploy.cache.CachedJarFile@698403
    security: Round 2 (1 out of 2):file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    security: Validating cached jar url=file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar ffile=C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e com.sun.deploy.cache.CachedJarFile@e80842
    security: Have 1 common certificates after processing file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    security: Istrusted: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp false
    security: Accessing keys and certificate in Mozilla user profile: null
    security: Loading Root CA certificates from C:\Program Files (x86)\Java\jre6\lib\security\cacerts
    security: Loaded Root CA certificates from C:\Program Files (x86)\Java\jre6\lib\security\cacerts
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    security: User has granted the priviledges to the code for this session only
    security: Adding certificate in Deployment session certificate store
    security: Added certificate in Deployment session certificate store
    security: Saving certificates in Deployment session certificate store
    security: Saved certificates in Deployment session certificate store
    security: Mark trusted: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
    basic: LD - All JAR files signed: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/launch.jnlp
    basic: passing security checks; secureArgs:true, allSigned:false
    basic: continuing launch in this VM
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    basic: JNLP2ClassLoader.findClass: javatest.JTest: try again ..
    basic: JNLP2ClassLoader.getPermissions() ..
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    security: JAVAWS AppPolicy Permission requested for: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/SpaceGame.jar
    basic: JNLP2ClassLoader.getPermissions() X
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.events.PaintListener: try again ..
    basic: JNLP2ClassLoader.getPermissions() ..
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    security: JAVAWS AppPolicy Permission requested for: file:/C:/Users/Gladiator/Documents/NetBeansProjects/spacegame~svn/SpaceGame/dist/lib/swt.jar
    basic: JNLP2ClassLoader.getPermissions() X
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.SWTEventListener: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Drawable: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Layout: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.layout.FillLayout: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Composite: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Scrollable: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Control: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Widget: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Shell: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Decorations: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Canvas: try again ..
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Validate the certificate chain using CertPath API
    security: Obtain certificate collection in Root CA certificate store
    security: Obtain certificate collection in Root CA certificate store
    security: Start to check whether root CA is replaced
    security: The root CA hasnt been replaced
    security: No timestamping info available
    security: Found jurisdiction list file
    security: No need to checking trusted extension for this certificate
    security: The CRL support is disabled
    security: The OCSP support is disabled
    security: This OCSP End Entity validation is disabled
    security: Checking if certificate is in Deployment denied certificate store
    security: Checking if certificate is in Deployment permanent certificate store
    security: Checking if certificate is in Deployment session certificate store
    basic: Applet loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 81605 us, pluginInit dt 2397573 us, TotalTime: 2479178 us
    basic: JNLP2ClassLoader.findClass: javatest.JTest$1: try again ..
    basic: Applet initialized
    C:\Users\Gladiator\AppData\Roaming
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Display: try again ..
    basic: Removed progress listener: null
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Device: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.TEXTMETRICW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.TEXTMETRIC: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.TEXTMETRICA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.LOGFONTW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.LOGFONT: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.LOGFONTA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NONCLIENTMETRICSW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NONCLIENTMETRICS: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NONCLIENTMETRICSA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Event: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OS: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.C: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.Platform: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFO: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFOW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFOA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFOEXW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFOEX: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.OSVERSIONINFOEXA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.Lock: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.Library: try again ..
    basic: JNLP2ClassLoader.findLibrary: Looking up native library: swt-win32-3735.dll
    network: Looking up native library in: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\swt-win32-3735.dll
    basic: JNLP2ClassLoader.findLibrary: native library found: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\swt-win32-3735.dll
    basic: Applet made visible
    basic: Starting applet
    basic: completed perf rollup
    basic: Applet started
    basic: Told clients applet is started
    basic: JNLP2ClassLoader.findLibrary: Looking up native library: swt-win32-3735.dll
    basic: JNLP2ClassLoader.findLibrary: native library found: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\swt-win32-3735.dll
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.TCHAR: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.ACTCTX: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.DLLVERSIONINFO: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.STARTUPINFO: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Display$1: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Font: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Resource: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.Callback: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.WNDCLASS: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.TaskBar: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Listener: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.PAINTSTRUCT: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.GCData: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.GC: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.PROPERTYKEY: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.HIGHCONTRAST: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.MSG: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Synchronizer: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.SWT: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.SWTError: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.SWTException: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Cursor: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NMHDR: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NMLVDISPINFO: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.awt.SWT_AWT: try again ..
    basic: JNLP2ClassLoader.findLibrary: Looking up native library: jawt.dll
    network: Looking up native library in: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\jawt.dll
    basic: Native library jawt.dll not found
    basic: JNLP2ClassLoader.findLibrary: Looking up native library: swt-awt-win32-3735.dll
    basic: JNLP2ClassLoader.findLibrary: native library found: C:\Users\Gladiator\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\10\1082924a-7851bf5e-n\swt-awt-win32-3735.dll
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.MenuItem: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Item: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.Menu: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NMTTDISPINFOA: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NMTTDISPINFO: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.NMTTDISPINFOW: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.ToolTip: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.awt.SWT_AWT$11: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.awt.SWT_AWT$13: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.EventTable: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.WINDOWPOS: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.LRESULT: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.win32.RECT: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Point: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.internal.SerializableCompatibility: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.graphics.Rectangle: try again ..
    basic: JNLP2ClassLoader.findClass: javatest.JTest$3: try again ..
    basic: JNLP2ClassLoader.findClass: org.eclipse.swt.widgets.TypedListener: try again ..
    -----

    I am sorry for bold, i came here to ask for help. I used bold to differentiate output from my questions since i couldn't find tags.
    I already validated jnlp using JaNeLA and got only optimization suggestions.
    As I said in first post, this works for a friend of mine, so it's possible a local issue with my java or something ...
    Also i reinstalled jre/jdk 7.0, then uninstalled and installed latest jre/jdk 6.
    Hope I didn't leave a bad impression, i just want help.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Need help with new email problem

    Hi friends . . . I'm not sure if this is a forum that could help me figure out my new problem . . . but I'll give it a try. . .I need some help . . . My email is sometimes being sent to the wrong address. Instead of my Yahoo address, they're sent to AOL instead. At first I thought this was an eBay or Paypal problem, but other mail that I subscribe to is all of a sudden going to AOL instead of my Yahoo address . . .In all of these cases, the AOL address was never registered with the site. I'm not using an external POP mail program . . . just standard Yahoo mail with iMac and Firefox. Anyone have any clue what's going on . . . .thanks in advance for any help . . .

    You're using Google Mail : you should have said that earlier. the more information you give, the faster the solution.
    Then it's easy for you. Please read this article from the public knowledge base :
    http://www.blackberry.com/btsc/KB10332
    Duplicate sent email message arrives on BlackBerry smartphone when sent using Gmail
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Need help with 2008 macbook pro superdrive issue pleasee

    hello,
    I have this macbook pro
    Model Family: MacBook Pro
    Display: 15"
    Processor Type: 2.6GHz Core 2 Duo
    Model Number: A1260
    Color: Aluminum
    Factory: China
    Production Year: 2008
    Production Week: 22 (May)
    Production Number: 774
    200 gb hd
    4gb of ram
    also apple care til jun 11
    OK so I bought the computer for 650 from my friend and soon after buying found a problem. The problem was the optical drive not reading all the disc that I put in the system. So I took the macbook pro to apple they installed a new super drive. I get home today and try to install snow leopard and have a issue. The way I went about was starting up holding the option button and waiting to boot from the disc for a fresh install. First time I tried I got a symbol that look like the restricted sign you see when you cant smoke in a area ect... So I restart and try again this time I get to the install screen click does the estimation ect.. 34 minutes than goes to 28 minutes pretty much has frozen there now, and after waiting all this time about 20 minutes I get the spinning beach ball. Also forgot to say that the super drive is now super dooper annoying loud and make odd sounds too with vibration. So I guess make another apple gen bar apt? And have them possible replace the super drive again?
    update just got an error occured while installing mac os x still have spinning beach ball

    I'm guessing Apple didn't do a good job. I think you need to make a return trip. And politely remind them that you're making a return trip.

  • I need help with a iMac problem my brother has!

    Hello! So my brothers old iMac (around 2-3 years old) would just not start. When i pressed the start button on the back of the computer the screen just turned white with a apple logo in the middle and the typical wheel spinning. We waited for about 30 minutes but still nothing. My friend told me to hold shift+command+r+p and that brings up a menu after a while if i want to restore from time machine, reinstall max os x, get help on the internet or so some stuff with the discs. The last 2 things are not important tho. When i then press "restore from timemachine" or something it starts to search for a backup. After 10 minutes it still hasnt found one. So i went back and clicked "reinstall mac os x" and it showed the disks i was going to install the new mac os x software on.
    There was one called "Macintosh HD" and one called "Recovery HD". But they both were locked and i could not install mac os x beacause they were the only 2 disks there. Macintosh HD was about 600GB memory and 150GB free and the other one was only about 600MB. How can i fix this? It would be nice if we could restore the computer back to before because he had some things from school but if it dosnt work we can do a full new mac os x so it is all new and no programs/users on it. I hope you understood what i said because my english is not that good
    Its OS x 10.8.4 i think, might be 10.8.2/3 or something xD

    I suggest verifying that your hard drive is OK. First power off the system, then hold down the Command and R keys to get into the Mac OS X recovery mode. Once you select your language you can run Disk Utility to determine whether your hard drive is functioning correctly. I suggest using the 'Repair Disk' and Repair Disk Permissions' options. If Disk Utility finds problems (SMART errors) then you will need to get them resolved before proceeding. I believe too many SMART errors can lock your drive.
    I also suggest reviewing the following Apple website describing the iMac 1TB Seagate Hard Drive Replacement Program to see if your system is affected. The program has been around for quite awhile. According to the document, eligibility may have ended April 12th depending on when you purchased the system, but it's worth checking.
    http://www.apple.com/support/imac-harddrive/

  • Still Need Help with this String Problem

    basically, i need to create a program where I input 5 words and then the program outputs the number of unique words and the words themselves. for example, if i input the word hello 5 times, then the output is 1 unique word and the word "hello". i have been agonizing over this dumb problem for days, i know how to do it using hashmap, but this is an introductory course and we cannot use more complex java functions, does ANYONE know how to do this just using arrays, strings, for loops, if clauses, etc. really basic java stuff. i want the code to be able to do what the following program does:
    import java.io.*; import java.util.ArrayList;
        public class MoreUnique {
           public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str[] = new String[5]; int uniqueEntries = 0; ArrayList<String> ue = new ArrayList<String>();
             for (int i = 0; i < 5; i++) { System.out.print((i +1) + ": "); str[i] = br.readLine(); }
             for (int j = 0; j < 5; j++) {
                if (!ue.contains(str[j].toLowerCase())) { ue.add(str[j].toLowerCase()); } } uniqueEntries = ue.size(); System.out.print("Number of unique entries: " + uniqueEntries + " { ");
             for (int q = 0; q < ue.size(); q++ ) { System.out.print(ue.get(q) + " "); } System.out.println("}"); } } but i need to find how to do it so all 5 words are put in at once on one line, and without all the advanced java functions that are in here, can anyone help out?

    you have to compare string 0 to strings 1-4, then
    string 1 with strings 2-4, then string 2 with strings
    3 and 4 then string 3 with string 4....right???Here's a way to do it:
    public class MoreUnique {
        public static void main(String[] args) throws IOException {
            BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
            final int NUM_WORDS = 5;
            String[] words = new String[NUM_WORDS];
            int uniqueEntries = 0;
            for(int i = 0; i < NUM_WORDS; i++) {
                System.out.print((i+1)+": ");
                String temp = br.readLine();
                if(!contains(temp, words)) {
                    words[uniqueEntries++] = temp;
            System.out.print("Number of unique entries: "+uniqueEntries+" { ");   
            for (int i = 0; i < uniqueEntries; i++ ) {   
                System.out.print(words[i]+" ");
            System.out.println("}");
        private static boolean contains(String word, String[] array) {
                 Your code here: just a simple for-statement to
                 loop through your array and to see if 'word'
                 is in your 'array'.
    }Try to fill in the blanks.
    Good luck.

Maybe you are looking for