Traversing DOM very very slow

I've an XML Document quite big (240K) with a root, 800 first level nodes and an average of 6-10 second level nodes for each first level.
I read the document from a file (very fast) and the I loop 2 or 3 times using data to transfer them in the legacy system.
I din't find a single operation very slow but the sum of all traversing time is very large (more than 10 minutes).
May be I'm wrong, but I didn't find any loop or programming error.
Any suggestion or idea will be appreciated.
TIA
Tullio

As a simple example, consider the file Tullio.xml at the end of this posting. Using the sample code:import oracle.xml.parser.v2.*;
import java.io.*;
import org.w3c.dom.*;
public class Tullio {
public static void main(String[] a) throws Throwable {
DOMParser d = new DOMParser();
FileReader f = new FileReader("Tullio.xml");
d.parse(f);
XMLDocument x = d.getDocument();
long start = 0;
long end = 0;
long running = 0;
long times = 0;
for (; times < 20; times++) {
start = System.currentTimeMillis();
NodeList nl = x.selectNodes("//oggetto[@template='foo']");
end = System.currentTimeMillis();
running = running + (end - start);
int nodes = nl.getLength();
for (int z = 0; z < nodes; z++) {
processOggetto((Element)nl.item(z));
System.out.println("Avg select took " + (running / 20L) + "ms.");
times = 0;
running = 0;
for (; times < 20; times++) {
start = System.currentTimeMillis();
NodeList nl = x.selectNodes("/qualcosa/oggetto[@template='foo']");
end = System.currentTimeMillis();
running = running + (end - start);
int nodes = nl.getLength();
for (int z = 0; z < nodes; z++) {
processOggetto((Element)nl.item(z));
System.out.println("Avg select took " + (running / 20L) + "ms.");
static void processOggetto(Element e) throws Throwable {
// System.out.println(((XMLElement)e).valueOf("nome"));
}I get the results:
==================
Avg select took 40ms.
Avg select took 7ms.
So using the // is quite a bit slower. On your file with "6-10 nested levels of elements", it may make an even bigger difference.
Tullio.xml
<qualcosa>
<oggetto template="foo">
<nome>FooName_Start</nome>
</oggetto>
<oggetto template="foo2">
<nome>FooName</nome>
</oggetto>
<!-- Ripete "foo2" 300 volte -->
<oggetto template="foo">
<nome>FooName_Start</nome>
</oggetto>
</qualcosa> null

Similar Messages

  • My iMac is running very slow

    My iMac is now running very slow.  Every process/application lags, safari, iPhoto, pages, iTunes, etc.  Beach ball just spins and spins.....
    I have an early 2008 iMac with 2.66 GHz Intel Core 2 Duo processor, 2 GB 800 MHz DDR2 SDRAM memory, 320 GB SATA Disk storage with 30GB free.  I just upgraded to OS X Yosemite 10.10.1 hoping it would help solve the problem but no luck.
    I ran "syslog -k Sender kernel -k Message CReq 'Channel t|GPU D|I/O|n Cause: -' | tail | open -ef" in the terminal window and received the following in the text window....
    Jan 14 00:18:17 X-imac-2 kernel[0] <Notice>: Process systemmigrationd [146] disabling system-wide I/O Throttling
    --- last message repeated 5 times ---
    Any help is greatly appreciated. Thanks

    Thanks Linc for your help!  Here is the logs from Console:
    1/17/15 10:02:48.283 AM com.apple.xpc.launchd[1]: (com.apple.PhotoApps.AVCHDConverter) Unknown key for dictionary: EnvironmentVarialbles
    1/17/15 10:02:48.283 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 10:03:08.258 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 10:03:14.986 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "iPhoto" after 7.73 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 10:03:21.834 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 10:03:35.834 AM WindowServer[119]: disable_update_likely_unbalanced: UI updates still disabled by application "iPhoto" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    1/17/15 10:03:36.125 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "iPhoto" after 15.29 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 10:03:37.950 AM iPhoto[733]: void CGSUpdateManager::log() const: conn 0xe2ab: spurious update.
    1/17/15 10:03:38.799 AM com.apple.SecurityServer[54]: Session 100029 created
    1/17/15 10:03:39.179 AM com.apple.SecurityServer[54]: Killing auth hosts
    1/17/15 10:03:39.179 AM com.apple.SecurityServer[54]: Session 100028 destroyed
    1/17/15 10:03:46.317 AM iPhoto[733]: The function ‘CGContextClear’ is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    1/17/15 10:04:42.124 AM sandboxd[606]: ([626]) com.apple.metada(626) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    1/17/15 10:04:51.507 AM sandboxd[606]: ([626]) com.apple.metada(626) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    1/17/15 10:04:54.150 AM sandboxd[606]: ([626]) com.apple.metada(626) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    1/17/15 10:04:56.942 AM com.apple.xpc.launchd[1]: (com.apple.quicklook[746]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    1/17/15 10:05:10.094 AM Console[749]: Failed to connect (_consoleX) outlet from (NSApplication) to (ConsoleX): missing setter or instance variable
    1/17/15 10:05:19.067 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Console" for over 1.00 seconds. Server has re-enabled them.
    Here are a few other lines from earlier that my also be helpful.  Most of these are repeated over and over.
    1/16/15 4:43:20.000 PM kernel[0]: BUG in process suhelperd[452]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    1/16/15 5:31:07.775 PM Safari[6461]: Communications error: <OS_xpc_error: <error: 0x7fff745dab60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff745dafa8> { length = 22, contents = "Connection interrupted" }
    }>
    1/16/15 5:57:11.000 PM kernel[0]: memorystatus_thread: idle exiting pid 5527 [CoreServicesUIAg]
    1/16/15 6:11:37.704 PM nsurlstoraged[6907]: ERROR: shrinkDB - unable to start a DB transaction.  Error-code=5
    1/16/15 6:13:49.644 PM com.apple.xpc.launchd[1]: (com.apple.auditd[6976]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/16/15 6:13:50.077 PM kellerct[6980]: audit warning: soft /var/audit
    1/16/15 6:13:50.077 PM kellerct[6979]: audit warning: allsoft
    1/16/15 6:13:50.587 PM kellerct[6982]: audit warning: closefile /var/audit/20150117001305.20150117001349
    1/16/15 6:16:26.093 PM nsurlstoraged[6907]: Error: execSQLStatement:onConnection:toCompletionWithRetry - SQL=COMMIT;, error-code=1, error-message=cannot commit - no transaction is active
    1/17/15 7:18:17.197 AM BezelServices 245.23[67]: ASSERTION FAILED: dvcAddrRef != ((void *)0) -[DriverServices getDeviceAddress:] line: 2602
    This is from this morning when it took almost 15 mins to fully wake up:
    1/17/15 7:53:08.866 AM WindowServer[119]: CGXDisplayDidWakeNotification [30972791675783]: posting kCGSDisplayDidWake
    1/17/15 7:53:08.866 AM WindowServer[119]: handle_will_sleep_auth_and_shield_windows: Deferring.
    1/17/15 7:54:42.460 AM com.apple.backupd[223]: Copied 51.64 GB of 118.69 GB, 161123 of 201178 items
    1/17/15 7:55:57.306 AM SecurityAgent[174]: User info context values set for kellerct
    1/17/15 7:55:58.186 AM com.apple.xpc.launchd[1]: (com.apple.auditd[354]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:55:59.176 AM kellerct[359]: audit warning: soft /var/audit
    1/17/15 7:55:59.176 AM kellerct[360]: audit warning: closefile /var/audit/20150117051759.20150117135558
    1/17/15 7:55:59.178 AM kellerct[358]: audit warning: allsoft
    1/17/15 7:55:59.852 AM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:00.003 AM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    1/17/15 7:56:00.003 AM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    1/17/15 7:56:00.196 AM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    1/17/15 7:56:00.196 AM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:00.289 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    1/17/15 7:56:00.314 AM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    1/17/15 7:56:03.337 AM SecurityAgent[174]: Login Window login proceeding
    1/17/15 7:56:04.965 AM loginwindow[67]: Login Window - Returned from Security Agent
    1/17/15 7:56:05.200 AM loginwindow[67]: USER_PROCESS: 67 console
    1/17/15 7:56:06.000 AM kernel[0]: AppleKeyStore:Sending lock change 0 for handle -501
    1/17/15 7:56:06.381 AM com.apple.xpc.launchd[1]: (com.apple.AssistiveControl.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.381 AM com.apple.xpc.launchd[1]: (com.apple.btsa) This key does not do anything: OnDemand
    1/17/15 7:56:06.382 AM com.apple.xpc.launchd[1]: (com.apple.coreservices.lsactivity) Unknown key for Boolean: DrainMessagesAfterFailedInit
    1/17/15 7:56:06.383 AM com.apple.xpc.launchd[1]: (com.apple.coreservices.uiagent) This key does not do anything: OnDemand
    1/17/15 7:56:06.383 AM com.apple.xpc.launchd[1]: (com.apple.diagnostics_agent) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.fullscreen) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.server) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.notificationcenter) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.appstore) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.remotedesktoppicture) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.launchpad) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.downloads) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.EscrowSecurityAlert) Unknown key for string: seatbelt-profiles
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.Finder) ThrottleInterval set to zero. You're not that important. Ignoring.
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.FontRegistryUIAgent) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.ATS.FontValidator) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.ATS.FontValidatorConduit) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.gamed) The JetsamProperties key is not available on this platform.
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.gamed) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.gamed) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.helpd) This key does not do anything: OnDemand
    1/17/15 7:56:06.386 AM com.apple.xpc.launchd[1]: (com.apple.installd.user) This key does not do anything: OnDemand
    1/17/15 7:56:06.387 AM com.apple.xpc.launchd[1]: (com.apple.Maps.mapspushd) Unknown key for double: StartInterval
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Caller tried to hijack service: path = /System/Library/LaunchAgents/com.apple.mbpluginhost.user.plist, caller = loginwindow.67
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.midiserver.io) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.noticeboard.agent) This key does not do anything: OnDemand
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.notificationcenterui.alerts) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.notificationcenterui.tcc) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.notificationcenterui.agent) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Caller tried to hijack service: path = /System/Library/LaunchAgents/com.apple.pluginkit.pkd.plist, caller = loginwindow.67
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.PubSub.Agent) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.ui.helper.active) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.ReportCrash) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Self) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.rtcreportingd) The UserName key is not supported for non-System services.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.sharingd) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.soagent) Invalid type for event (event/type): events/array
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.soagent) Invalid type for event (event/type): bundleid/string
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechdatainstallerd) This key does not do anything: OnDemand
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.ssinvitationagent) This key does not do anything: OnDemand
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.systemuiserver.ServiceProvider) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.dockextra.server) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.SUISMessaging) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.ipodserver) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.systemuiserver.screencapture) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.tsm.uiserver) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.dockling.server) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.window_proxies.startup) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.window_proxies) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.inputswitcher.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.universalaccesscontrol.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.universalaccessd.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.UserEventAgent-Aqua) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.487 AM com.apple.xpc.launchd[1]: (com.apple.usernoted) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.487 AM com.apple.xpc.launchd[1]: (com.apple.VoiceOver.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (com.apple.ZoomWindow.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (org.openbsd.ssh-agent) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Failed to bootstrap path: path = /System/Library/LaunchAgents/com.apple.pluginkit.pkd.plist, error = 17: File exists
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Failed to bootstrap path: path = /System/Library/LaunchAgents/com.apple.mbpluginhost.user.plist, error = 17: File exists
    1/17/15 7:56:09.953 AM lsregister[369]: LaunchServices: Begin database seeding
    1/17/15 7:56:09.954 AM lsregister[369]: LaunchServices: Completed database seeding
    1/17/15 7:56:11.822 AM UserEventAgent[366]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    1/17/15 7:56:12.064 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Could not import service from caller: caller = otherbsd.367, service = com.apple.photostream-agent, error = 119: Service is disabled
    1/17/15 7:56:12.064 AM otherbsd[367]: Could not submit LoginItem job com.apple.photostream-agent: 119: Service is disabled
    1/17/15 7:56:12.797 AM UserEventAgent[366]: user agent networkd: built Sep  9 2014 16:11:57
    1/17/15 7:56:13.843 AM UserEventAgent[366]: received an unknown event from daemon
    1/17/15 7:56:14.492 AM nsurlsessiond[373]: No directory for bundleID: com.apple.cloudd
    1/17/15 7:56:15.361 AM apsd[51]: Peer [pid=372] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 7:56:17.800 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:56:17.833 AM secinitd[375]: UID[501]: cache loaded: /System/Library/Caches/com.apple.app-sandbox-cache.plist
    1/17/15 7:56:20.808 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:56:23.953 AM CalendarAgent[374]: Exception fetching ABCDContact in context <ABManagedObjectContext: 0x7fa46a629e50>: keypath birthdayComponents not found in entity <NSSQLEntity ABCDContact id=21>
    1/17/15 7:56:23.954 AM CalendarAgent[374]: Error fetching ABCDContact in context <ABManagedObjectContext: 0x7fa46a629e50>: (null) (null)
    1/17/15 7:57:44.128 AM apsd[51]: Attempt to set push wake topics without dark wake enabled: ()
    1/17/15 7:57:44.130 AM apsd[51]: Attempt to set push wake topics without dark wake enabled: ()
    1/17/15 7:57:44.132 AM apsd[51]: Attempt to set push wake topics without dark wake enabled: ()
    1/17/15 7:57:44.903 AM askpermissiond[382]: objc[382]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    1/17/15 7:57:44.921 AM askpermissiond[382]: StoreTransport: Resetting APS Connection using environment name production
    1/17/15 7:57:45.283 AM fmfd[383]: Initialized sandbox
    1/17/15 7:57:45.555 AM com.apple.xpc.launchd[1]: (com.apple.lakitu) The JoinExistingSession key is only available to Application services.
    1/17/15 7:57:45.555 AM com.apple.xpc.launchd[1]: (com.apple.accounts.dom) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:45.633 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:46.198 AM com.apple.iCloudHelper[384]: objc[384]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    1/17/15 7:57:46.252 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:46.532 AM apsd[51]: Peer [pid=383] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 7:57:47.247 AM cloudd[385]: Could not create primary backing account
    1/17/15 7:57:56.509 AM identityservicesd[387]: [Warning] DeviceHeartbeat - Failed loading device heartbeat data from keychain -25300
    1/17/15 7:57:57.405 AM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    1/17/15 7:57:57.411 AM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:57:57.413 AM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    1/17/15 7:57:57.413 AM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    1/17/15 7:57:57.419 AM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    1/17/15 7:57:57.419 AM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:57:57.420 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    1/17/15 7:57:57.422 AM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    1/17/15 7:57:58.448 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    1/17/15 7:57:58.448 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    1/17/15 7:57:58.450 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    1/17/15 7:57:58.450 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.wirelessproxd.
    1/17/15 7:57:58.695 AM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    1/17/15 7:57:59.801 AM coreaudiod[390]: 2015-01-17 07:57:59.801136 AM [AirPlay] BTLE discovery removing all devices
    1/17/15 7:57:59.803 AM coreaudiod[390]: 2015-01-17 07:57:59.802622 AM [AirPlay] Resetting AWDL traffic registration.
    1/17/15 7:57:59.803 AM coreaudiod[390]: 2015-01-17 07:57:59.802933 AM [AirPlay] Deregister AirPlay traffic for AWDL at MAC 00:00:00:00:00:00 with target infra non critical PeerIndication=0 err=-3900
    1/17/15 7:57:59.981 AM com.apple.xpc.launchd[1]: (com.apple.imdmessageservices.IMDMessageServicesAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:59.984 AM com.apple.audio.DriverHelper[391]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    1/17/15 7:57:59.984 AM com.apple.audio.DriverHelper[391]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    1/17/15 7:57:59.984 AM com.apple.audio.DriverHelper[391]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    1/17/15 7:58:00.144 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:00.336 AM discoveryd[50]: AwdlD2d AwdlD2dStartBrowsingForKey: '_airplay' Browsing service started
    1/17/15 7:58:00.336 AM discoveryd[50]: AwdlD2d AwdlD2dStartBrowsingForKey: '_raop' Browsing service started
    1/17/15 7:58:00.390 AM coreaudiod[390]: Logging disabled
    1/17/15 7:58:00.425 AM coreaudiod[390]: 2015-01-17 07:58:00.425163 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2 for output and  for input
    1/17/15 7:58:00.425 AM coreaudiod[390]: 2015-01-17 07:58:00.425361 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2 for output and  for input
    1/17/15 7:58:00.457 AM logind[66]: -[SessionManager getClient:withRole:inAuditSession:]:241: ERROR: No session dictionary for audit session 100010
    1/17/15 7:58:00.457 AM logind[66]: _SMGetSessionAgent:73: ERROR: __SMGetClientForAuditSessionAgent failed 2
    1/17/15 7:58:00.457 AM IMDPersistenceAgent[394]: SACShieldWindowShowing:925: ERROR: NULL response
    1/17/15 7:58:00.854 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:01.140 AM bluetoothaudiod[395]: Logging disabled
    1/17/15 7:58:01.344 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Configuring notification center for identifier: com.apple.iChat   topics: (
    1/17/15 7:58:01.447 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:    NC Disabled: NO
    1/17/15 7:58:01.453 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:   DND Enabled: NO
    1/17/15 7:58:01.453 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Updating enabled: YES   (Topics: (
    1/17/15 7:58:01.473 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 7:58:01.473 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:01.474 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:01.509 AM CallHistorySyncHelper[381]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:58:01.509 AM callservicesd[389]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:58:01.534 AM com.apple.xpc.launchd[1]: (com.apple.auditd[398]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:58:01.537 AM pboard[396]: Attempt to unlink previous shared memory during startup returned an error.  Continuing...
    1/17/15 7:58:01.541 AM imagent[392]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:58:01.662 AM kellerct[401]: audit warning: allsoft
    1/17/15 7:58:01.663 AM kellerct[402]: audit warning: soft /var/audit
    1/17/15 7:58:01.731 AM kellerct[404]: audit warning: closefile /var/audit/20150117135558.20150117135801
    1/17/15 7:58:01.752 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:03.110 AM logind[66]: -[SessionManager getClient:withRole:inAuditSession:]:241: ERROR: No session dictionary for audit session 100017
    1/17/15 7:58:03.110 AM logind[66]: _SMGetSessionAgent:73: ERROR: __SMGetClientForAuditSessionAgent failed 2
    1/17/15 7:58:03.111 AM IMRemoteURLConnectionAgent[397]: SACShieldWindowShowing:925: ERROR: NULL response
    1/17/15 7:58:03.346 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 7:58:03.346 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:03.347 AM com.apple.xpc.launchd[1]: (com.apple.imtranscoding.IMTranscoderAgent) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 7:58:03.347 AM com.apple.xpc.launchd[1]: (com.apple.imtranscoding.IMTranscoderAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:03.475 AM imagent[392]: [Warning] IMDAccount: incoming 'defaults' is not a dictionary, (null), (null)
    1/17/15 7:58:03.475 AM imagent[392]: [Warning] IMDAccount: incoming 'defaults' is not a dictionary, (null), (null)
    1/17/15 7:58:03.924 AM callservicesd[389]: Failed to get the bundle id
    1/17/15 7:58:33.479 AM com.apple.xpc.launchd[1]: (com.apple.auditd[408]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:58:33.493 AM kellerct[412]: audit warning: soft /var/audit
    1/17/15 7:58:33.493 AM kellerct[413]: audit warning: allsoft
    1/17/15 7:58:33.494 AM kellerct[414]: audit warning: closefile /var/audit/20150117135801.20150117135833
    1/17/15 7:59:03.103 AM kellerct[419]: audit warning: soft /var/audit
    1/17/15 7:59:03.103 AM kellerct[420]: audit warning: closefile /var/audit/20150117135833.20150117135903
    1/17/15 7:59:03.105 AM kellerct[421]: audit warning: allsoft
    1/17/15 7:59:03.177 AM com.apple.xpc.launchd[1]: (com.apple.imdmessageservices.IMDMessageServicesAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:59:03.177 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:59:36.026 AM com.apple.xpc.launchd[1]: (com.apple.auditd[430]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:59:36.036 AM kellerct[434]: audit warning: allsoft
    1/17/15 7:59:36.036 AM kellerct[433]: audit warning: soft /var/audit
    1/17/15 7:59:36.056 AM kellerct[436]: audit warning: closefile /var/audit/20150117135903.20150117135936
    1/17/15 7:59:36.657 AM WindowServer[119]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'. Run with arg = -login
    1/17/15 7:59:39.235 AM WindowServer[119]: CGXSetDisplayColorProfileAndTransfer: Display 0x04271ac0: Unit 0; ColorProfile { 532686347 }; TransferTable (256, 3)
    1/17/15 7:59:40.686 AM com.apple.AmbientDisplayAgent[162]: AmbientDisplayAgent started
    1/17/15 7:59:52.327 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 7:59:52.763 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.75 seconds (server forcibly re-enabled them after 1.32 seconds)
    1/17/15 7:59:54.344 AM sharingd[449]: 07:59:54.277 : Starting Up...
    1/17/15 7:59:54.350 AM sharingd[449]: 07:59:54.349 : Device Capabilities (Handoff:NO, Instant Hotspot:NO, AirDrop:NO, Legacy AirDrop:NO, Remote Disc:NO)
    1/17/15 7:59:58.399 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:59:58.799 AM sharingd[449]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:59:59.943 AM iconservicesagent[452]: iconservicesagent launched.
    1/17/15 8:00:00.665 AM Spotlight[442]: spot: agent checkin
    1/17/15 8:00:00.971 AM Spotlight[442]: connectionToService 0x6080001185d0
    1/17/15 8:00:01.215 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:01.754 AM iconservicesagent[452]: Starting service with cache path: /var/folders/kp/bghl35295gq0lksv9z_tj65w0000gn/C/com.apple.iconservices
    1/17/15 8:00:01.927 AM Finder[437]: assertion failed: 14B25: libxpc.dylib + 97940 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x89
    1/17/15 8:00:02.172 AM SystemUIServer[429]: Cannot find executable for CFBundle 0x7f8e21515e20 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    1/17/15 8:00:02.490 AM sharingd[449]: 08:00:02.489 : No delegate parameters from account, account exists = NO
    1/17/15 8:00:02.490 AM sharingd[449]: 08:00:02.490 : Tethering: Identifier needs fixing
    1/17/15 8:00:02.493 AM sharingd[449]: 08:00:02.492 : No delegate parameters from account, account exists = NO
    1/17/15 8:00:02.497 AM sharingd[449]: 08:00:02.496 : No delegate parameters from account, account exists = NO
    1/17/15 8:00:02.802 AM SystemUIServer[429]: Cannot find executable for CFBundle 0x7f8e215168c0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    1/17/15 8:00:04.460 AM com.apple.metadata.SpotlightNetHelper[453]: CGSConnectionByID: 0 is not a valid connection ID.
    1/17/15 8:00:04.460 AM com.apple.metadata.SpotlightNetHelper[453]: Invalid Connection ID 0
    1/17/15 8:00:07.583 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:00:07.000 AM kernel[0]: Sandbox: Finder(437) System Policy: deny file-write-unlink /Users/kellerct/Library/Saved Application State/com.apple.finder.savedState/restorecount.plist
    1/17/15 8:00:11.064 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 4.48 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:00:12.019 AM Spotlight[442]: applications query - started
    1/17/15 8:00:13.397 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:00:13.408 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 2.09 seconds (server forcibly re-enabled them after 2.07 seconds)
    1/17/15 8:00:13.434 AM com.apple.SecurityServer[54]: Session 100022 created
    1/17/15 8:00:15.198 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:17.444 AM com.apple.xpc.launchd[1]: (com.apple.quicklook[460]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    1/17/15 8:00:18.400 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821d2d7e0> connection from pid 453 with interface <AccountServiceInterface: 0x7ff821d2f000> (PID 453)
    1/17/15 8:00:19.767 AM Finder[437]: CoreDockSetTrashFull returned error -4956
    1/17/15 8:00:33.161 AM com.apple.xpc.launchd[1]: (com.apple.PhotoApps.AVCHDConverter) Unknown key for dictionary: EnvironmentVarialbles
    1/17/15 8:00:33.162 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:33.511 AM WindowServer[119]: CGXGetConnectionProperty: Invalid connection 38503
    1/17/15 8:00:36.958 AM Spotlight[442]: applications query - finished in 25 seconds
    1/17/15 8:00:45.091 AM iconservicesd[37]: Failed to move temp file /Library/Caches/com.apple.iconservices.store/56B5168D-6EE1-1078-094C-DF302C9E25 2E.isdata.tmp to /Library/Caches/com.apple.iconservices.store/56B5168D-6EE1-1078-094C-DF302C9E25 2E.isdata with error: Error Domain=NSCocoaErrorDomain Code=516 "“56B5168D-6EE1-1078-094C-DF302C9E252E.isdata.tmp” couldn’t be moved to “com.apple.iconservices.store” because an item with the same name already exists." UserInfo=0x7faec0c1ce50 {NSSourceFilePathErrorKey=/Library/Caches/com.apple.iconservices.store/56B5168D -6EE1-1078-094C-DF302C9E252E.isdata.tmp, NSUserStringVariant=(
        Move
    ), NSDestinationFilePath=/Library/Caches/com.apple.iconservices.store/56B5168D-6EE 1-1078-094C-DF302C9E252E.isdata, NSFilePath=/Library/Caches/com.apple.iconservices.store/56B5168D-6EE1-1078-094C -DF302C9E252E.isdata.tmp, NSUnderlyingError=0x7faec0c20620 "The operation couldn’t be completed. File exists"}
    1/17/15 8:00:45.202 AM com.apple.xpc.launchd[1]: (com.apple.ReportCrash[489]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    1/17/15 8:00:46.662 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.005 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.203 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.303 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.418 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.420 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:48.868 AM com.apple.xpc.launchd[1]: (com.ibm.Notes.helper.57684[484]) Service exited with abnormal code: 133
    1/17/15 8:00:48.870 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:50.893 AM WiFiAgent[478]: [NO client logger] <Sep  9 2014 16:12:26> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    1/17/15 8:00:50.894 AM WiFiAgent[478]: [NO client logger] <Sep  9 2014 16:12:26> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiAgent
    1/17/15 8:00:52.993 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821d1b380> connection from pid 425 with interface <AccountServiceInterface: 0x7ff821d21870> (PID 425)
    1/17/15 8:00:56.590 AM Keychain Circle Notification[468]: Posted at launch: (
    1/17/15 8:00:59.357 AM ReportCrash[489]: Saved crash report for mpreload[486] version ??? to /Users/kellerct/Library/Logs/DiagnosticReports/mpreload_2015-01-17-080057_chris -kellers-imac-2.crash
    1/17/15 8:01:00.381 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821d26660> connection from pid 471 with interface <AccountServiceInterface: 0x7ff821d26a90> (PID 471)
    1/17/15 8:01:02.464 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:01:08.936 AM CloudKeychainProxy[493]:  __45-[UbiqitousKVSProxy doEnsurePeerRegistration]_block_invoke <UB---e-C---> ensurePeerRegistration called, success ((null))
    1/17/15 8:01:09.116 AM Keychain Circle Notification[468]: rawStatus -1, #applicants 0, #peers 0, err=Error Domain=com.apple.security.sos.error Code=2 "The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call))" UserInfo=0x7fe810c50330 {NSDescription=Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)}
    1/17/15 8:01:09.457 AM Keychain Circle Notification[468]: Checking validity of 0 notes
    1/17/15 8:01:09.459 AM Keychain Circle Notification[468]: writeToStorage plist={
        applcationDate = "0000-12-30 00:00:00 +0000";
        lastCircleStatus = "-1";
        lastWritten = "2015-01-17 14:01:09 +0000";
        pendingApplicationReminder = "4001-01-01 00:00:00 +0000";
        pendingApplicationReminderInterval = 172800;
    1/17/15 8:01:11.225 AM NotificationCenter[471]: Layout still needs update after calling -[NSView layout].  NSView or one of its superclasses may have overridden -layout without calling super. Or, something may have dirtied layout in the middle of updating it.  Both are programming errors in Cocoa Autolayout.  The former is pretty likely to arise if some pre-Cocoa Autolayout class had a method called layout, but it should be fixed.
    1/17/15 8:01:13.128 AM Fitbit Connect Menubar Helper[490]: <FBMessenger: 0x6080000a4440>: Another data is still sending. Placing send request into queue.
    1/17/15 8:01:22.339 AM Pages[485]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.1 instead of 10.10.1. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
    Call location:
    1/17/15 8:01:22.707 AM Pages[485]: 0   CarbonCore                          0x906087e7 ___Gestalt_SystemVersion_block_invoke + 135
    1/17/15 8:01:22.707 AM Pages[485]: 1   libdispatch.dylib                   0x9ac890b5 dispatch_once_f + 251
    1/17/15 8:01:22.707 AM Pages[485]: 2   libdispatch.dylib                   0x9ac8a0d8 dispatch_once + 31
    1/17/15 8:01:22.707 AM Pages[485]: 3   CarbonCore                          0x9059afb8 _Gestalt_SystemVersion + 1050
    1/17/15 8:01:22.707 AM Pages[485]: 4   CarbonCore                          0x9059ab69 Gestalt + 150
    1/17/15 8:01:22.707 AM Pages[485]: 5   SFUtility                           0x00c7af7d GetSystemVersion + 29
    1/17/15 8:01:22.707 AM Pages[485]: 6   Pages                               0x00002ede main + 62
    1/17/15 8:01:35.736 AM AppleIDAuthAgent[473]: AppleIdAuth URL: https://identity.apple.com/dsservices/dsxmlrpc
    1/17/15 8:01:37.085 AM storeassetd[501]: AssetServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fb75141bd40> connection from pid 498 with interface <AssetServiceInterface: 0x7fb751410710> (PID 498)
    1/17/15 8:01:39.000 AM kernel[0]: BUG in process suhelperd[176]: over-released legacy external boost assertions (0 total, 0 external, 0 legacy-external)
    1/17/15 8:01:44.660 AM storeassetd[501]: addOperation <UpdateOperation: 0x7fb751521c00>{name = '(null)'}
    1/17/15 8:01:52.676 AM locationd[177]: Couldn't find a requirement string for masquerading client /System/Library/PrivateFrameworks/Parsec.framework
    1/17/15 8:01:53.484 AM pkd[450]: FCIsAppAllowedToLaunchExt [343] -- *** _FCMIGAppCanLaunch timed out. Returning false.
    1/17/15 8:01:54.977 AM locationd[177]: could not get apple languages array, assuming english
    1/17/15 8:01:58.753 AM storeaccountd[458]: ADI: {
        "Cache-Control" = "no-transform, max-age=5783";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 21198;
        "Content-Type" = "text/xml; charset=UTF-8";
        Date = "Sat, 17 Jan 2015 14:01:58 GMT";
        "Last-Modified" = "Sat, 17 Jan 2015 09:59:41 GMT";
        Server = "ATS/4.1.0";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "Accept-Encoding, X-Apple-Store-Front, Cookie, User-Agent";
        "X-Apple-ATS-Cache-Key" = "/init.itunes.apple.com/80/WebObjects/MZInit.woa/wa/initiateSession/MacAppStore /2.0%20/143441-1/13/https/itspod=71?ix=5";
        "X-Apple-Partner" = "origin.0";
        "apple-timing-app" = "52 ms";
        "x-apple-aka-ttl" = "Generated Sat Jan 17 01:59:41 PST 2015, Expires Sat Jan 17 07:39:41 PST 2015, TTL 20400s";
        "x-apple-application-instance" = 36907;
        "x-apple-application-site" = ST11;
        "x-apple-jingle-correlation-key" = 7NX7P35WOS6TXF5G23YINVLGHI;
        "x-apple-max-age" = 14400;
        "x-apple-orig-url" = "https://init.itunes.apple.com/WebObjects/MZInit.woa/wa/initiateSession?ix=5&user AgentCacheKey=MacAppStore%2f2.0%20";
        "x-apple-request-store-front" = "143441-1,13";
        "x-apple-translated-wo-url" = "/WebObjects/MZInit.woa/wa/initiateSession?ix=5&userAgentCacheKey=MacAppStore%2 f2.0%20";
        "x-webobjects-loadaverage" = 0;
    1/17/15 8:02:08.230 AM locationd[177]: could not get apple languages array, assuming english
    1/17/15 8:02:20.274 AM storeaccountd[458]: ADI: {
        "Access-Control-Allow-Origin" = "*";
        "Cache-Control" = "private, max-age=60";
        Connection = "keep-alive";
        "Content-Length" = 2;
        "Content-Type" = "application/json; charset=UTF-8";
        Date = "Sat, 17 Jan 2015 14:02:20 GMT";
        Expires = "Sat, 17 Jan 2015 14:03:20 GMT";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "X-Apple-Store-Front,X-Dsid,Cookie";
        "access-control-allow-credentials" = true;
        "apple-timing-app" = "0 ms";
        "x-apple-application-instance" = 10558;
        "x-apple-application-site" = NWK;
        "x-apple-jingle-correlation-key" = 3JUEEVPJFUPYEO3XLZVQSHT6KU;
        "x-webobjects-loadaverage" = 2;
    1/17/15 8:02:22.337 AM com.apple.backupd[223]: Network destination already mounted at: /Volumes/TimeMachine
    1/17/15 8:02:33.697 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821c5e730> connection from pid 501 with interface <AccountServiceInterface: 0x7ff821c4c530> (PID 501)
    1/17/15 8:02:38.681 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:40.187 AM com.apple.xpc.launchd[1]: (com.apple.StreamingUnzipService) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 8:02:40.187 AM com.apple.xpc.launchd[1]: (com.apple.StreamingUnzipService) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:02:41.433 AM storedownloadd[508]: DownloadServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ffe40d080e0> connection from pid 501 with interface <DownloadServiceInterface: 0x7ffe40d09c10> (PID 501)
    1/17/15 8:02:42.951 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 5.27 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:44.324 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:47.184 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:49.649 AM com.apple.xpc.launchd[1]: (com.apple.quicklook[515]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    1/17/15 8:02:49.896 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "iPhoto" after 3.71 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:50.915 AM com.apple.backupd[223]: Disk image already attached: /Volumes/TimeMachine/Chris Keller’s iMac.sparsebundle, DIHLDiskImageAttach returned: 35
    1/17/15 8:02:52.477 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 9.15 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:55.119 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:55.626 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.51 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:56.051 AM WindowServer[119]: Display 0x4271ac0 captured by conn 0x830f
    1/17/15 8:02:57.685 AM com.apple.backupd[223]: Disk image /Volumes/TimeMachine/Chris Keller’s iMac.sparsebundle mounted at: /Volumes/Time Machine Backups
    1/17/15 8:03:05.600 AM findNames[514]: dispatch_semaphore_wait() time out: -[IMKUserDictionary reloadWithCompletionHandler:]
    1/17/15 8:03:09.145 AM apsd[51]: Peer [pid=372] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 8:03:09.147 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: notification observer: com.apple.iChat   notification: __CFNotification 0x7f8023435240 {name = _NSDoNotDisturbEnabledNotification}
    1/17/15 8:03:12.864 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:    NC Disabled: NO
    1/17/15 8:03:13.765 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:   DND Enabled: YES
    1/17/15 8:03:13.765 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Updating enabled: NO   (Topics: (null))
    1/17/15 8:03:15.085 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:26.274 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:32.237 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:33.955 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:35.114 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.56EAB7C9-0C8F-4B87-9812-6B4934BB8288[522]) Service exited due to signal: Killed: 9
    1/17/15 8:03:47.274 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:03:48.221 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.95 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:03:48.558 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:58.043 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:04:02.423 AM QuickLookSatellite[528]: Failed to obtain sandbox extension for path=/Users/kellerct/Library/Caches/com.apple.quicklook.satellite. Errno:1
    1/17/15 8:04:03.355 AM QuickLookSatellite[528]: Failed to obtain sandbox extension for path=/Users/kellerct/Library/Caches/com.apple.quicklook.satellite. Errno:1
    1/17/15 8:04:14.086 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.56EAB7C9-0C8F-4B87-9812-6B4934BB8288[528]) Service exited due to signal: Killed: 9
    1/17/15 8:04:19.644 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Dropbox" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:04:21.323 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Dropbox" after 2.68 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:04:39.152 AM apsd[51]: Peer [pid=372] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 8:04:39.152 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: notification observer: com.apple.iChat   notification: __CFNotification 0x7f8023594a30 {name = _NSDoNotDisturbDisabledNotification}
    1/17/15 8:04:40.740 AM WindowServer[119]: Display 0x4271ac0 released by conn 0x830f
    1/17/15 8:04:40.902 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:    NC Disabled: NO
    1/17/15 8:04:40.909 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:   DND Enabled: NO
    1/17/15 8:04:40.909 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Updating enabled: YES   (Topics: (
    1/17/15 8:04:46.000 AM kernel[0]: fsevents: watcher dbfseventsd (pid: 542) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    1/17/15 8:04:55.896 AM pkd[450]: UNINSTALLED:com.getdropbox.dropbox.garcon com.getdropbox.dropbox.garcon(1.7) 40AFE2D2-8557-4B8B-9844-3A767C1434E1 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex
    1/17/15 8:04:55.925 AM pkd[450]: INSTALLED:com.getdropbox.dropbox.garcon com.getdropbox.dropbox.garcon(1.7) <__NSConcreteUUID 0x7fde10ca7cb0> 6301D176-51BE-49D5-98E7-67E1B12813C1 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex
    1/17/15 8:04:59.601 AM CoreServicesUIAgent[457]: unexpected message <OS_xpc_error: <error: 0x7fff78ae9c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff78ae9f70> { length = 18, contents = "Connection invalid" }
    }>
    1/17/15 8:04:59.688 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.D7A66065-B379-44F2-9D2E-2AC374FAEFAF[536]) Service exited due to signal: Killed: 9
    Thanks again for your help.

  • Parsing Very Slow on Node with 1MB of content

    Hi,
    I am processing and XML file that has one node that has a lengthy content string in it. The content string is actually HTML with the various escape sequences in place, but no additional XML nodes. So it looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <value>
    ~1MB of escaped HTML here
    </value>
    This is very slow (several minutes) parsing it into a DOM as well as just using the SAX parser. I am using JDK 1.3.1 and have tried both the 1.4.4 and 2.4 versions of Xerces. The problem does not appear to be the escape characters since we have tried changing the node content to base 64 encoding with slower results.
    Any help will be greatly appreciated.
    MR

    Mind you, minutes for 1Mb seems extreme by any measure.
    If the document is really that simple, then you can process it directly without going through an XML parser.
    Sylvia.

  • Query with column is null is very slow

    I have a query - select * from grv3que where gq_process_date is null;
    that is very slow when returned 4 records (the table has total 60000 records).
    SQL> desc grv3que
    Name Null? Type
    GQ_ID NOT NULL NUMBER(15)
    GQ_MESSAGE LONG
    GQ_RECEIVE_DATE DATE
    GQ_PROCESS_DATE DATE
    GQ_CONTROL_ID NOT NULL VARCHAR2(20)
    and it has two indexes:
    SQL> select index_name, index_type from dba_indexes where table_name='GRV3QUE';
    INDEX_NAME INDEX_TYPE
    PK_GRV3QUE NORMAL
    IDX_GQ_PROCESS_DATE NORMAL
    Analyzing the table/indexes didn't help on the performance.
    Could you help us how to tune the query? Thanks in advance!!!

    DOM@DOM11gR1>create table t1
      2  as
      3  select rownum col1
      4  ,      case when mod(rownum,250000) = 0 then null else sysdate end col2
      5  from   dual
      6  connect by rownum <= 1000000;
    Table created.
    Elapsed: 00:00:02.03
    DOM@DOM11gR1>
    DOM@DOM11gR1>create index i_t1_1 on t1 (col2);
    Index created.
    Elapsed: 00:00:01.03
    DOM@DOM11gR1>
    DOM@DOM11gR1>explain plan for
      2  select *
      3  from   t1
      4  where  col2 is null;
    Explained.
    Elapsed: 00:00:00.02
    DOM@DOM11gR1>
    DOM@DOM11gR1>select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |    28 |   616 |   696   (2)| 00:00:09 |
    |*  1 |  TABLE ACCESS FULL| T1   |    28 |   616 |   696   (2)| 00:00:09 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter("COL2" IS NULL)
    Note
       - dynamic sampling used for this statement
    17 rows selected.
    Elapsed: 00:00:00.01
    DOM@DOM11gR1>
    DOM@DOM11gR1>select nvl2(null,1,2), nvl2('X',1,2) from dual;
    NVL2(NULL,1,2) NVL2('X',1,2)
                 2             1
    Elapsed: 00:00:00.01
    DOM@DOM11gR1>
    DOM@DOM11gR1>create index i_t1_2 on t1 (nvl2(col2,null,1));
    Index created.
    Elapsed: 00:00:00.07
    DOM@DOM11gR1>
    DOM@DOM11gR1>explain plan for
      2  select *
      3  from   t1
      4  where  nvl2(col2,null,1) = 1;
    Explained.
    Elapsed: 00:00:00.00
    DOM@DOM11gR1>
    DOM@DOM11gR1>select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 2708798483
    | Id  | Operation                   | Name   | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |        |    28 |   616 |     2   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| T1     |    28 |   616 |     2   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | I_T1_2 |  4596 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       2 - access(NVL2("COL2",NULL,1)=1)
    Note
       - dynamic sampling used for this statement
    18 rows selected.
    Elapsed: 00:00:00.02
    DOM@DOM11gR1>select *
      2  from t1
      3   where  nvl2(col2,null,1) = 1;
          COL1 COL2
        500000
        750000
       1000000
        250000
    Elapsed: 00:00:00.01
    DOM@DOM11gR1>

  • Having trouble with facebook games " zuma blitz" lags, very slow.

    I am having problems with a Facebook game, "Zuma Blitz", the game loads faster, but lags or plays very slow. it freezes with every shot made.. impossible to play. It may be happening with others, but I play this game every day to pass time.

    This is because of the plugin-container.exe.
    if you switch dom.ipc.plugins.enabled to false in about:config
    plugin-container and the problem will dissapear

  • Time Machine Very Slow (321 Days) Please Help!

    Hi all, I've got a 2012 MBP and have had problems with TM since day one.
    I'm running all the latest software with a brand new Time Capsule and it states that it will take over 300 days to back up.
    I originally used a NAS and TM was very very slow along with having to reformat and start again every few weeks so I gave in and got a TC thinking it would solve my problems but it's returned again.
    I've tried reformatting, disabling spotlight, wired and wireless connections, different hard drives and still the problem persists. Occasionally it also fails to find the backup disk so I have to reformat and start again.
    It's driving me absolutely insane because despite messing and messing, trying different solutions the problem always seems to return at random. It will work great for a week or 2 then it's back to square one.
    Can someone please restore my sanity and help?

    To update, I got up this morning and it was still stating some 22 days after copying a few gb in 18 hours so I restarted (again). TM then stated it couldn't find the back up disk so I again pointed it to the right disk and it now appears to be stuck again after doing over a gb in a minute or two.
    Here's the info requested.
    31/01/2013 09:53:34.380 com.apple.backupd[398]: Starting manual backup
    31/01/2013 09:53:46.000 kernel[0]: nfs server localhost:/jiWSkBZ-Y-Uq-EgHJVYVPN: not responding
    31/01/2013 09:53:47.000 kernel[0]: nfs server localhost:/jiWSkBZ-Y-Uq-EgHJVYVPN: can not connect, error 61
    31/01/2013 09:54:16.262 KernelEventAgent[46]: tid 00000000 received event(s) VQ_DEAD (32)
    31/01/2013 09:54:16.263 KernelEventAgent[46]: tid 00000000 type 'mtmfs', mounted on '/Volumes/MobileBackups', from 'localhost:/jiWSkBZ-Y-Uq-EgHJVYVPN', dead
    31/01/2013 09:54:16.000 kernel[0]: nfs server localhost:/jiWSkBZ-Y-Uq-EgHJVYVPN: dead
    31/01/2013 09:54:16.263 KernelEventAgent[46]: tid 00000000 force unmount localhost:/jiWSkBZ-Y-Uq-EgHJVYVPN from /Volumes/MobileBackups
    31/01/2013 09:54:16.263 KernelEventAgent[46]: tid 00000000 found 1 filesystem(s) with problem(s)
    31/01/2013 09:54:22.198 com.apple.backupd[398]: Failed to get NSURLVolumeURLForRemountingKey for /Volumes/MobileBackups, error: Error Domain=NSCocoaErrorDomain Code=4 "The file “MobileBackups” doesn’t exist." UserInfo=0x7f9934a04da0 {NSURL=file://localhost/Volumes/MobileBackups/, NSFilePath=/Volumes/MobileBackups}
    31/01/2013 09:54:22.198 com.apple.backupd[398]: Attempting to mount network destination URL: afp://Dave%[email protected]/AirPort%20Disk
    31/01/2013 09:54:23.036 com.apple.backupd[398]: Mounted network destination at mount point: /Volumes/AirPort Disk using URL: afp://Dave%[email protected]/AirPort%20Disk
    31/01/2013 09:54:23.000 kernel[0]: ASP_TCP asp_tcp_usr_control: invalid kernelUseCount 0
    31/01/2013 09:54:23.000 kernel[0]: AFP_VFS afpfs_mount: /Volumes/AirPort Disk, pid 435
    31/01/2013 09:54:23.000 kernel[0]: AFP_VFS afpfs_mount : succeeded on volume 0xffffff80946e1008 /Volumes/AirPort Disk (error = 0, retval = 0)
    31/01/2013 09:54:48.061 mdworker[434]: Unable to talk to lsboxd
    31/01/2013 09:54:48.000 kernel[0]: Sandbox: sandboxd(442) deny mach-lookup com.apple.coresymbolicationd
    31/01/2013 09:54:51.281 sandboxd[442]: ([434]) mdworker(434) deny mach-lookup com.apple.ls.boxd
    31/01/2013 09:54:51.000 kernel[0]: nspace-handler-set-snapshot-time: 1359626093
    31/01/2013 09:55:28.923 mds[40]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    31/01/2013 09:55:29.892 com.apple.backupd[398]: Disk image /Volumes/AirPort Disk/Dave’s MacBook Pro.sparsebundle mounted at: /Volumes/Time Machine Backups
    31/01/2013 09:55:29.937 com.apple.backupd[398]: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    31/01/2013 09:55:30.908 com.apple.backupd[398]: Forcing deep traversal on source: "Macintosh HD" (mount: '/' fsUUID: 74A87C50-39EA-3B75-AACA-0647768C78F6 eventDBUUID: 539B3BBD-544C-444D-9C2C-14001A19F631)
    31/01/2013 09:55:32.032 com.apple.backupd[398]: Didn't get valid migration dates.
    31/01/2013 09:55:32.040 com.apple.backupd[398]: Found 806587 files (286.4 GB) needing backup
    31/01/2013 09:55:32.041 com.apple.backupd[398]: 343.68 GB required (including padding), 1.99 TB available
    31/01/2013 09:56:15.000 kernel[0]: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
    31/01/2013 09:56:15.000 kernel[0]: macx_swapon SUCCESS
    31/01/2013 09:56:43.954 com.apple.usbmuxd[27]: _handle_timer heartbeat detected detach for device 0x1b-192.168.0.13:0!
    31/01/2013 09:56:51.626 mdworker[488]: Unable to talk to lsboxd
    31/01/2013 09:56:51.746 sandboxd[489]: ([488]) mdworker(488) deny mach-lookup com.apple.ls.boxd
    31/01/2013 09:56:52.000 kernel[0]: Sandbox: sandboxd(489) deny mach-lookup com.apple.coresymbolicationd
    31/01/2013 09:57:06.212 CVMServer[83]: 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.
    31/01/2013 09:57:06.406 launchctl[493]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.davdaerve.UpdatePodcastsAgent.plist
    31/01/2013 09:57:07.174 CVMServer[83]: 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.
    31/01/2013 09:57:14.580 Folder Sync[495]: Growl.framework loaded
    31/01/2013 09:57:14.645 Folder Sync[495]: Using existing log dir: /Users/davedaerve/Library/com.destek.foldersync
    31/01/2013 09:57:20.128 Folder Sync[495]: Scheduler: Run Check for 9:57
    31/01/2013 09:57:26.027 mDNSResponder[41]: ERROR: handle_resolve_request bad interfaceIndex 1
    31/01/2013 09:57:26.129 mDNSResponder[41]: ERROR: handle_resolve_request bad interfaceIndex 15
    31/01/2013 09:57:26.258 mDNSResponderHelper[497]: do_mDNSSendWakeupPacket write failed Device not configured
    31/01/2013 09:57:26.259 mDNSResponderHelper[497]: do_mDNSSendWakeupPacket write failed Device not configured
    31/01/2013 09:57:26.261 mDNSResponder[41]: ERROR: handle_resolve_request bad interfaceIndex 16
    31/01/2013 09:57:26.285 mDNSResponder[41]: ERROR: handle_resolve_request bad interfaceIndex 24
    31/01/2013 09:57:27.132 mDNSResponderHelper[497]: do_mDNSSendWakeupPacket write failed Device not configured
    31/01/2013 09:57:37.838 iTunes[496]:  AVF KeyExchange Version from driver for Certificates 1
    31/01/2013 09:57:46.991 Twitter[498]: font ChicagoBold loaded
    31/01/2013 09:57:47.054 Twitter[498]: font pixChicago loaded
    31/01/2013 09:57:48.244 Twitter[498]: could not fetch oAuthTokenSecret, this account will get removed
    31/01/2013 09:57:51.623 Mail[499]: Using V2 Layout
    31/01/2013 09:57:52.921 com.apple.SecurityServer[16]: Session 100012 created
    31/01/2013 09:57:56.499 com.apple.launchd[1]: (com.apple.qtkitserver[258]) Exited: Killed: 9
    31/01/2013 09:57:56.000 kernel[0]: memorystatus_thread: idle exiting pid 258 [com.apple.qtkits]
    31/01/2013 09:57:57.000 kernel[0]: memorystatus_thread: idle exiting pid 242 [cfprefsd]
    31/01/2013 09:57:58.338 librariand[500]: MMe quota status changed: under quota
    31/01/2013 09:57:58.350 com.apple.usbmuxd[27]: _handle_timer heartbeat detected detach for device 0x1c-192.168.0.6:0!
    31/01/2013 09:57:58.998 com.apple.usbmuxd[27]: _handle_timer heartbeat detected detach for device 0x1d-192.168.0.5:0!
    31/01/2013 09:57:59.088 Mail[499]: *** -[IADomainCache init]: IA domains cache is out of date.
    31/01/2013 09:58:00.137 Folder Sync[495]: Scheduler: Run Check for 9:58
    31/01/2013 09:58:00.147 com.apple.launchd.peruser.501[141]: ([0x0-0x14014].com.apple.inputmethod.ironwood[223]) Exited: Killed: 9
    31/01/2013 09:58:00.000 kernel[0]: memorystatus_thread: idle exiting pid 223 [DictationIM]
    31/01/2013 09:58:19.718 Mail[499]: Couldn't contact spell checker for Multilingual
    31/01/2013 09:58:48.777 com.apple.launchd[1]: (com.apple.iCloudHelper[232]) Exited: Killed: 9
    31/01/2013 09:58:48.000 kernel[0]: memorystatus_thread: idle exiting pid 232 [com.apple.iCloud]
    31/01/2013 09:58:49.895 com.apple.launchd.peruser.501[141]: (com.apple.tccd[213]) Exited: Killed: 9
    31/01/2013 09:58:49.000 kernel[0]: memorystatus_thread: idle exiting pid 213 [tccd]
    31/01/2013 09:58:49.937 WindowServer[106]: CGXRegisterWindowWithSystemStatusBar: window b already registered
    31/01/2013 09:58:50.000 kernel[0]: memorystatus_thread: idle exiting pid 211 [xpcd]
    31/01/2013 09:58:50.453 com.apple.launchd[1]: (com.apple.xpcd.F5010000-0000-0000-0000-000000000000[211]) Exited: Killed: 9
    31/01/2013 09:58:54.351 com.apple.launchd.peruser.0[278]: (com.apple.distnoted.xpc.agent[300]) Exited: Killed: 9
    31/01/2013 09:58:54.000 kernel[0]: memorystatus_thread: idle exiting pid 300 [distnoted]
    31/01/2013 09:58:54.000 kernel[0]: memorystatus_thread: idle exiting pid 240 [distnoted]
    31/01/2013 09:58:54.920 com.apple.launchd.peruser.501[141]: (com.apple.accountsd[210]) Exited: Killed: 9
    31/01/2013 09:58:55.000 kernel[0]: memorystatus_thread: idle exiting pid 210 [accountsd]
    31/01/2013 09:58:55.559 com.apple.launchd.peruser.501[141]: (com.apple.CalendarAgent[187]) Exited: Killed: 9
    31/01/2013 09:58:55.000 kernel[0]: memorystatus_thread: idle exiting pid 187 [CalendarAgent]
    31/01/2013 09:58:58.000 kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    31/01/2013 09:58:58.000 kernel[0]: macx_swapon SUCCESS
    31/01/2013 09:59:00.149 Folder Sync[495]: Scheduler: Run Check for 9:59
    31/01/2013 09:59:06.000 kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    31/01/2013 09:59:06.000 kernel[0]: macx_swapon SUCCESS
    31/01/2013 09:59:08.759 launchctl[512]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.davdaerve.UpdatePodcastsAgent.plist
    31/01/2013 10:00:00.158 Folder Sync[495]: Scheduler: Run Check for 10:00
    31/01/2013 10:00:01.180 launchctl[525]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.davdaerve.UpdatePodcastsAgent.plist
    31/01/2013 10:00:09.000 kernel[0]: memorystatus_thread: idle exiting pid 515 [cfprefsd]
    31/01/2013 10:00:33.665 mdworker[639]: Unable to talk to lsboxd
    31/01/2013 10:00:34.000 kernel[0]: Sandbox: sandboxd(640) deny mach-lookup com.apple.coresymbolicationd
    31/01/2013 10:00:34.311 sandboxd[640]: ([639]) mdworker(639) deny mach-lookup com.apple.ls.boxd
    31/01/2013 10:01:00.171 Folder Sync[495]: Scheduler: Run Check for 10:01
    31/01/2013 10:01:10.060 Folder Sync[495]: objc[495]: Object 0x10bc05ab0 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    31/01/2013 10:01:14.200 com.apple.launchd.peruser.501[141]: (com.apple.tccd[647]) Exited: Killed: 9
    31/01/2013 10:01:14.000 kernel[0]: memorystatus_thread: idle exiting pid 647 [tccd]
    31/01/2013 10:01:31.206 lsboxd[228]: @AE relay 4755524c:4755524c
    31/01/2013 10:01:31.502 WindowServer[106]: CGXRegisterWindowWithSystemStatusBar: window b already registered
    31/01/2013 10:01:57.362 CalendarAgent[660]: *** -[IADomainCache init]: IA domains cache is out of date.
    31/01/2013 10:02:00.182 Folder Sync[495]: Scheduler: Run Check for 10:02
    31/01/2013 10:02:14.579 CalendarAgent[660]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=CoreDAVHTTPStatusErrorDomain Code=503 "The operation couldn’t be completed. (CoreDAVHTTPStatusErrorDomain error 503.)" UserInfo=0x7fc9524481d0 {AccountName=Yahoo!, CalDAVErrFromRefresh=YES, CoreDAVHTTPHeaders=<CFBasicHash 0x7fc9520cc0c0 [0x10aa25fd0]>{type = immutable dict, count = 11,
    entries =>
              0 : Case Insensitive Key: Connection = <CFString 0x7fc9520b7470 [0x10aa25fd0]>{contents = "keep-alive"}
              1 : Case Insensitive Key: Content-Type = <CFString 0x7fc9520bc410 [0x10aa25fd0]>{contents = "text/html; charset=UTF-8"}
              2 : Case Insensitive Key: Retry-After = <CFString 0x7fc952086140 [0x10aa25fd0]>{contents = "3600"}
              3 : Case Insensitive Key: Via = <CFString 0x7fc9520cb850 [0x10aa25fd0]>{contents = "HTTP/1.1 calgate003.cal.ac4.yahoo.com (YahooTrafficServer/1.19.11 [c s f ])"}
              4 : Case Insensitive Key: Age = <CFString 0x10a9fa110 [0x10aa25fd0]>{contents = "0"}
              5 : Case Insensitive Key: P3P = <CFString 0x7fc952086050 [0x10aa25fd0]>{contents = "policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV""}
              6 : Case Insensitive Key: Date = <CFString 0x7fc95209e440 [0x10aa25fd0]>{contents = "Thu, 31 Jan 2013 10:02:14 GMT"}
              7 : Case Insensitive Key: Server = <CFString 0x7fc9520b7490 [0x10aa25fd0]>{contents = "YTS/1.19.11"}
              8 : Case Insensitive Key: Transfer-Encoding = <CFString 0x10bf826f8 [0x10aa25fd0]>{contents = "Identity"}
              11 : Case Insensitive Key: Cache-Control = <CFString 0x7fc9520cff40 [0x10aa25fd0]>{contents = "private"}
              12 : Case Insensitive Key: Vary = <CFString 0x7fc9520b67f0 [0x10aa25fd0]>{contents = "Accept-Encoding"}
    31/01/2013 10:03:00.193 Folder Sync[495]: Scheduler: Run Check for 10:03
    31/01/2013 10:03:23.921 iTunes[496]: _NotificationSocketReadCallbackGCD (thread 0x10717e180): Unexpected connection closure...
    31/01/2013 10:03:23.923 ath[665]: _NotificationSocketReadCallbackGCD (thread 0x101b21180): Unexpected connection closure...
    31/01/2013 10:03:25.439 mds[40]: (Warning) FMW: event:1 had an arg mismatch.  ac:2 am:51
    31/01/2013 10:03:29.551 com.apple.launchd.peruser.501[141]: (com.apple.CalendarAgent[660]) Exited: Killed: 9
    31/01/2013 10:03:29.000 kernel[0]: memorystatus_thread: idle exiting pid 660 [CalendarAgent]
    31/01/2013 10:03:45.425 iTunes[496]: _NotificationSocketReadCallbackGCD (thread 0x10717e180): Unexpected connection closure...
    31/01/2013 10:03:45.427 ath[665]: _NotificationSocketReadCallbackGCD (thread 0x101b21180): Unexpected connection closure...
    31/01/2013 10:04:00.203 Folder Sync[495]: Scheduler: Run Check for 10:04
    31/01/2013 10:04:13.627 CalendarAgent[673]: *** -[IADomainCache init]: IA domains cache is out of date.
    31/01/2013 10:04:16.750 Twitter[498]: will terminate
    31/01/2013 10:04:16.789 Twitter[498]: Error: no oAuthTokenSecret set for account
    31/01/2013 10:04:23.078 CalendarAgent[673]: [com.apple.calendar.store.log.caldav.queue] [Account refresh failed with error: Error Domain=CoreDAVHTTPStatusErrorDomain Code=401 "The operation couldn’t be completed. (CoreDAVHTTPStatusErrorDomain error 401.)" UserInfo=0x7fca11285a50 {AccountName=Yahoo!, CalDAVErrFromRefresh=YES, CoreDAVHTTPHeaders=<CFBasicHash 0x7fca1160a910 [0x10f5b6fd0]>{type = immutable dict, count = 11,
    entries =>
              0 : Case Insensitive Key: Connection = <CFString 0x7fca13581410 [0x10f5b6fd0]>{contents = "keep-alive"}
              1 : Case Insensitive Key: Content-Type = <CFString 0x7fca11607420 [0x10f5b6fd0]>{contents = "text/html; charset=UTF-8"}
              2 : Case Insensitive Key: Server = <CFString 0x7fca11607450 [0x10f5b6fd0]>{contents = "YTS/1.19.11"}
              3 : Case Insensitive Key: Via = <CFString 0x7fca1160a8b0 [0x10f5b6fd0]>{contents = "HTTP/1.1 calgate007.cal.ac4.yahoo.com (YahooTrafficServer/1.19.11 [c s f ])"}
              4 : Case Insensitive Key: Age = <CFString 0x10f58b110 [0x10f5b6fd0]>{contents = "0"}
              5 : Case Insensitive Key: P3P = <CFString 0x7fca11610b00 [0x10f5b6fd0]>{contents = "policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV""}
              6 : Case Insensitive Key: Date = <CFString 0x7fca135f2890 [0x10f5b6fd0]>{contents = "Thu, 31 Jan 2013 10:04:22 GMT"}
              7 : Case Insensitive Key: Transfer-Encoding = <CFString 0x110b206f8 [0x10f5b6fd0]>{contents = "Identity"}
              9 : Case Insensitive Key: Www-Authenticate = <CFString 0x7fca135f28c0 [0x10f5b6fd0]>{contents = "Basic realm="Zimbra""}
              11 : Case Insensitive Key: Cache-Control = <CFString 0x7fca116d2810 [0x10f5b6fd0]>{contents = "private"}
              12 : Case Insensitive Key: Vary = <CFString 0x7fca135f28f0 [0x10f5b6fd0]>{contents = "Accept-Encoding"}
    31/01/2013 10:04:27.512 iTunes[496]: _NotificationSocketReadCallbackGCD (thread 0x10717e180): Unexpected connection closure...
    31/01/2013 10:04:27.514 ath[665]: _NotificationSocketReadCallbackGCD (thread 0x101b21180): Unexpected connection closure...
    31/01/2013 10:04:27.851 Dock[156]: trying to take pid 499 out of fullscreen but it is not the current space
    31/01/2013 10:04:27.972 Mail[499]: CGSGetWindowTags: Invalid window 0x0
    31/01/2013 10:04:27.972 Mail[499]: void _NSMoveWindowToSpaceUnlessSticky(NSInteger, CGSSpaceID): CGSGetWindowTags(cid, win, tags, kCGSRealMaximumTagSize) returned CGError 1000 on line 1247
    31/01/2013 10:04:27.977 WindowServer[106]: CGXSetWindowListTags: Invalid window 0
    31/01/2013 10:04:33.945 iTunes[496]: 2013-01-31 10:04:33.944722 AM [AVSystemController] Stopping AirPlay
    31/01/2013 10:04:34.218 WindowServer[106]: CGXGetConnectionProperty: Invalid connection 82119
    31/01/2013 10:04:34.218 WindowServer[106]: CGXGetConnectionProperty: Invalid connection 82119
    31/01/2013 10:04:34.219 WindowServer[106]: CGXGetConnectionProperty: Invalid connection 82119
    31/01/2013 10:05:07.671 mdworker[671]: Unable to talk to lsboxd
    31/01/2013 10:05:08.000 kernel[0]: Sandbox: sandboxd(680) deny mach-lookup com.apple.coresymbolicationd
    31/01/2013 10:05:08.457 sandboxd[680]: ([671]) mdworker(671) deny mach-lookup com.apple.ls.boxd
    31/01/2013 10:05:21.289 com.apple.SecurityServer[16]: Killing auth hosts
    31/01/2013 10:05:21.289 com.apple.SecurityServer[16]: Session 100012 destroyed
    31/01/2013 10:09:59.228 WindowServer[106]: CGXRegisterWindowWithSystemStatusBar: window b already registered
    31/01/2013 10:10:15.787 mdworker[697]: Unable to talk to lsboxd
    31/01/2013 10:10:16.000 kernel[0]: Sandbox: sandboxd(810) deny mach-lookup com.apple.coresymbolicationd
    31/01/2013 10:10:16.708 sandboxd[810]: ([697]) mdworker(697) deny mach-lookup com.apple.ls.boxd

  • MBP Very Slow & No Keyboard Backlighting Option

    Problem description:
    MBP very slow on start up and generally post yosemite upgrade; also, no keyboard backlighting option in System Preferences and f5, f6 keys have stopped functioning.  All post Yosemite.  I have tried resetting SMC and NVRAM with no result.  Not sure what else to do? If anyone has a solution, please share.  Thanks!
    EtreCheck version: 2.1.5 (108)
    Report generated December 31, 2014 at 10:03:55 PM EST
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.3 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 4:15:34
    Disk Information: ℹ️
      Hitachi HTS545032B9A302 disk0 : (320.07 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 319.21 GB (141.21 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-898
    USB Information: ℹ️
      Apple Computer, Inc. IR Receiver
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
    User Launch Agents: ℹ️
      [invalid?] com.divx.agent.postinstall.plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
    User Login Items: ℹ️
      None
    Internet Plug-ins: ℹ️
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      QuickTime Plugin: Version: 7.7.3
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      Default Browser: Version: 600 - SDK 10.10
      SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Support]
      Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Support]
      iPhotoPhotocast: Version: 7.0 - SDK 10.7
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
      MusicManager  [Support]
    Time Machine: ℹ️
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Macintosh HD: Disk size: 319.21 GB Disk used: 178.00 GB
      Destinations:
      Kindred [Local]
      Total size: 499.76 GB
      Total number of backups: 2
      Oldest backup: 2014-12-29 00:42:47 +0000
      Last backup: 2014-12-29 01:21:44 +0000
      Size of backup disk: Too small
      Backup size 499.76 GB < (Disk used 178.00 GB X 3)
    Top Processes by CPU: ℹ️
          6% WindowServer
          3% mds
          0% fontd
          0% AppleSpell
          0% notifyd
    Top Processes by Memory: ℹ️
      146 MB Mail
      133 MB com.apple.WebKit.WebContent
      133 MB Safari
      103 MB mds_stores
      90 MB Finder
    Virtual Memory Information: ℹ️
      79 MB Free RAM
      1.52 GB Active RAM
      1.45 GB Inactive RAM
      1.07 GB Wired RAM
      1.33 GB Page-ins
      1 MB Page-outs
    Diagnostics Information: ℹ️
      Dec 31, 2014, 05:49:00 PM Self test - passed
      Dec 31, 2014, 07:03:03 AM /Library/Logs/DiagnosticReports/Preview_2014-12-31-070303_[redacted].hang
      Dec 30, 2014, 10:08:18 PM /Library/Logs/DiagnosticReports/CCleaner_2014-12-30-220818_[redacted].hang

    Hi Linc, please see log messages below covering the slow boot up episode through its duration.  I appreciate your help.
    1/1/15 9:54:02.000 PM bootlog[0]: BOOT_TIME 1420167242 0
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.AccountPolicyHelper" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.awdd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.callhistory.asl.conf" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.cloudd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.clouddocs" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.commerce.asl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.CoreDuetAdmissionControl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.family.asl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.ical" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.icloud.FindMyDevice" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.networking.symptoms" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.networking.symptoms" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.secinitd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM syslogd[17]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    1/1/15 9:54:24.000 PM kernel[0]: Longterm timer threshold: 1000 ms
    1/1/15 9:54:24.000 PM kernel[0]: PMAP: PCID enabled
    1/1/15 9:54:24.000 PM kernel[0]: Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    1/1/15 9:54:24.000 PM kernel[0]: vm_page_bootstrap: 933265 free pages and 107119 wired pages
    1/1/15 9:54:24.000 PM kernel[0]: kext submap [0xffffff7f80a00000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000a00000]
    1/1/15 9:54:24.000 PM kernel[0]: zone leak detection enabled
    1/1/15 9:54:24.000 PM kernel[0]: "vm_compressor_mode" is 4
    1/1/15 9:54:24.000 PM kernel[0]: multiq scheduler config: deep-drain 0, urgent first 1, depth limit 4, band limit 127, sanity check 0
    1/1/15 9:54:24.000 PM kernel[0]: standard timeslicing quantum is 10000 us
    1/1/15 9:54:24.000 PM kernel[0]: standard background quantum is 2500 us
    1/1/15 9:54:24.000 PM kernel[0]: mig_table_max_displ = 13
    1/1/15 9:54:24.000 PM kernel[0]: TSC Deadline Timer supported and enabled
    1/1/15 9:54:24.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    1/1/15 9:54:24.000 PM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    1/1/15 9:54:24.000 PM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    1/1/15 9:54:24.000 PM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    1/1/15 9:54:24.000 PM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    1/1/15 9:54:24.000 PM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    1/1/15 9:54:24.000 PM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    1/1/15 9:54:24.000 PM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    1/1/15 9:54:24.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet
    1/1/15 9:54:24.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    1/1/15 9:54:24.000 PM kernel[0]: calling mpo_policy_init for AMFI
    1/1/15 9:54:24.000 PM kernel[0]: Security policy loaded: Apple Mobile File Integrity (AMFI)
    1/1/15 9:54:24.000 PM kernel[0]: calling mpo_policy_init for Sandbox
    1/1/15 9:54:24.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    1/1/15 9:54:24.000 PM kernel[0]: calling mpo_policy_init for Quarantine
    1/1/15 9:54:24.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    1/1/15 9:54:13.370 PM com.apple.xpc.launchd[1]: (com.apple.AppleFileServer) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:24.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    1/1/15 9:54:24.000 PM kernel[0]: The Regents of the University of California. All rights reserved.
    1/1/15 9:54:24.000 PM kernel[0]: MAC Framework successfully initialized
    1/1/15 9:54:24.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    1/1/15 9:54:24.000 PM kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2014 00:11:30)
    1/1/15 9:54:24.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    1/1/15 9:54:24.000 PM kernel[0]: ACPI: sleep states S3 S4 S5
    1/1/15 9:54:24.000 PM kernel[0]: pci (build 00:11:20 Sep 19 2014), flags 0xe3000, pfm64 (36 cpu) 0xf80000000, 0x80000000
    1/1/15 9:54:24.000 PM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    1/1/15 9:54:24.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 00:11:36 Sep 19 2014) initialization complete
    1/1/15 9:54:24.000 PM kernel[0]: [ PCI configuration begin ]
    1/1/15 9:54:24.000 PM kernel[0]: console relocated to 0xf80000000
    1/1/15 9:54:24.000 PM kernel[0]: [ PCI configuration end, bridges 12, devices 16 ]
    1/1/15 9:54:24.000 PM kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    1/1/15 9:54:24.000 PM kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    1/1/15 9:54:24.000 PM kernel[0]: rooting via boot-uuid from /chosen: E40D28BE-366B-3D1B-AF83-1BDA59818787
    1/1/15 9:54:24.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>
    1/1/15 9:54:24.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    1/1/15 9:54:24.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    1/1/15 9:54:24.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    1/1/15 9:54:24.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    1/1/15 9:54:24.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    1/1/15 9:54:24.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/Hitachi HTS545032B9A302 Media/IOGUIDPartitionScheme/Macintosh HD@2
    1/1/15 9:54:24.000 PM kernel[0]: BSD root: disk0s2, major 1, minor 2
    1/1/15 9:54:24.000 PM kernel[0]: BTCOEXIST off
    1/1/15 9:54:24.000 PM kernel[0]: BRCM tunables:
    1/1/15 9:54:24.000 PM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    1/1/15 9:54:24.000 PM kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 70cd60fffec3269a; max speed s800.
    1/1/15 9:54:24.000 PM kernel[0]: hfs: mounted Macintosh HD on device root_device
    1/1/15 9:54:24.000 PM kernel[0]: VM Swap Subsystem is ON
    1/1/15 9:54:24.000 PM kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    1/1/15 9:54:13.370 PM com.apple.xpc.launchd[1]: (com.apple.alf) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:13.371 PM com.apple.xpc.launchd[1]: (com.apple.audio.coreaudiod) Unknown key for array: seatbelt-profiles
    1/1/15 9:54:24.646 PM hidd[70]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    1/1/15 9:54:24.649 PM hidd[70]: IOHIDService compatibility thread running at priority 63 and schedule 2.
    1/1/15 9:54:13.371 PM com.apple.xpc.launchd[1]: (com.apple.auditd) The TimeOut key is no longer respected. It never did anything anyway.
    1/1/15 9:54:13.371 PM com.apple.xpc.launchd[1]: (com.apple.autofsd) This service is defined to be constantly running and is inherently inefficient.
    1/1/15 9:54:13.372 PM com.apple.xpc.launchd[1]: (com.apple.backupd-status) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:13.372 PM com.apple.xpc.launchd[1]: (com.apple.backupd.status.xpc) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:13.372 PM com.apple.xpc.launchd[1]: (com.apple.bsd.dirhelper) The TimeOut key is no longer respected. It never did anything anyway.
    1/1/15 9:54:13.373 PM com.apple.xpc.launchd[1]: (com.apple.cmio.AVCAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    1/1/15 9:54:13.373 PM com.apple.xpc.launchd[1]: (com.apple.cmio.IIDCVideoAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    1/1/15 9:54:13.373 PM com.apple.xpc.launchd[1]: (com.apple.cmio.VDCAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    1/1/15 9:54:13.373 PM com.apple.xpc.launchd[1]: (com.apple.configd) This service is defined to be constantly running and is inherently inefficient.
    1/1/15 9:54:13.374 PM com.apple.xpc.launchd[1]: (com.apple.coreduetd) This service is defined to be constantly running and is inherently inefficient.
    1/1/15 9:54:13.375 PM com.apple.xpc.launchd[1]: (com.apple.CoreRAID) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:13.375 PM com.apple.xpc.launchd[1]: (com.apple.CoreRAID) The ServiceIPC key is no longer respected. Please remove it.
    1/1/15 9:54:28.186 PM iconservicesagent[38]: iconservicesagent launched.
    1/1/15 9:54:30.812 PM com.apple.xpc.launchd[1]: (com.apple.CoreRAID[21]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.CoreRAID
    1/1/15 9:54:30.822 PM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    1/1/15 9:54:30.826 PM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:30.829 PM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    1/1/15 9:54:30.829 PM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    1/1/15 9:54:30.836 PM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    1/1/15 9:54:30.836 PM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    1/1/15 9:54:30.837 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    1/1/15 9:54:30.839 PM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    1/1/15 9:54:30.943 PM smb-sync-preferences[69]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    1/1/15 9:54:30.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    1/1/15 9:54:30.000 PM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    1/1/15 9:54:30.000 PM kernel[0]: bpfAttach len 64 dlt 12
    1/1/15 9:54:31.566 PM iconservicesagent[38]: Starting service with cache path: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.iconservices
    1/1/15 9:54:32.099 PM watchdogd[31]:  [watchdog_daemon] @(    wd_watchdog_open) - IOIteratorNext failed (kr=0)
    1/1/15 9:54:32.099 PM watchdogd[31]:  [watchdog_daemon] @(      wd_daemon_init) - could not initialize the hardware watchdog
    1/1/15 9:54:32.099 PM watchdogd[31]:  [watchdog_daemon] @(                main) - cannot initialize the watchdog service
    1/1/15 9:54:32.158 PM watchdogd[102]:  [watchdog_daemon] @(    wd_watchdog_open) - IOIteratorNext failed (kr=0)
    1/1/15 9:54:32.158 PM watchdogd[102]:  [watchdog_daemon] @(      wd_daemon_init) - could not initialize the hardware watchdog
    1/1/15 9:54:32.158 PM watchdogd[102]:  [watchdog_daemon] @(                main) - cannot initialize the watchdog service
    1/1/15 9:54:32.160 PM com.apple.xpc.launchd[1]: (com.apple.watchdogd) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    1/1/15 9:54:32.477 PM com.apple.SecurityServer[53]: Session 100000 created
    1/1/15 9:54:34.158 PM kdc[61]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    1/1/15 9:54:34.162 PM com.apple.xpc.launchd[1]: (com.apple.Kerberos.kdc[61]) Service exited with abnormal code: 1
    1/1/15 9:54:34.000 PM kernel[0]: IOGraphics flags 0x43
    1/1/15 9:54:34.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed
    1/1/15 9:54:34.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    1/1/15 9:54:34.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    1/1/15 9:54:34.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xb800 ****
    1/1/15 9:54:34.000 PM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xb800 ****
    1/1/15 9:54:34.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xb800
    1/1/15 9:54:34.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    1/1/15 9:54:34.000 PM kernel[0]: **** [IOBluetoothHCIController][ProcessBluetoothTransportShowsUpActionWL] -- Connected to the transport successfully -- 0xe680 -- 0xc800 -- 0xb800 ****
    1/1/15 9:54:34.000 PM kernel[0]: Previous shutdown cause: 5
    1/1/15 9:54:34.000 PM kernel[0]: DSMOS has arrived
    1/1/15 9:54:34.000 PM kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000040
    1/1/15 9:54:35.328 PM opendirectoryd[46]: BUG in libdispatch: 14B25 - 2004 - 0x5
    1/1/15 9:54:35.336 PM iconservicesd[37]: iconservicesd launched.
    1/1/15 9:54:35.353 PM iconservicesd[37]: Cache path: /Library/Caches/com.apple.iconservices.store
    1/1/15 9:54:35.409 PM com.apple.usbmuxd[52]: usbmuxd-344.3 on Oct 13 2014 at 21:10:09, running 64 bit
    1/1/15 9:54:35.571 PM configd[26]: preference: no sharing preferences
    1/1/15 9:54:36.311 PM hidd[70]: ____IOHIDSessionScheduleAsync_block_invoke: thread_id=0x10d187000
    1/1/15 9:54:36.311 PM hidd[70]: HID Session async scheduling initiated.
    1/1/15 9:54:36.311 PM hidd[70]: HID Session async root queue running at priority 63 and schedule 2.
    1/1/15 9:54:36.342 PM hidd[70]: HID Session async scheduling complete.
    1/1/15 9:54:36.342 PM hidd[70]: Successfully opened the IOHIDSession
    1/1/15 9:54:37.100 PM kdc[105]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    1/1/15 9:54:37.102 PM com.apple.xpc.launchd[1]: (com.apple.Kerberos.kdc[105]) Service exited with abnormal code: 1
    1/1/15 9:54:37.102 PM com.apple.xpc.launchd[1]: (com.apple.Kerberos.kdc) Service only ran for 2 seconds. Pushing respawn out by 8 seconds.
    1/1/15 9:54:37.521 PM configd[26]: [bootp_transmit.c:213] bootp_transmit(): bpf_write(en0) failed: Network is down (50)
    1/1/15 9:54:37.521 PM configd[26]: DHCP en0: INIT transmit failed
    1/1/15 9:54:37.000 PM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    1/1/15 9:54:37.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    1/1/15 9:54:37.000 PM kernel[0]: bpfAttach len 94 dlt 163
    1/1/15 9:54:37.000 PM kernel[0]: bpfAttach len 30 dlt 105
    1/1/15 9:54:37.000 PM kernel[0]: bpfAttach len 52 dlt 127
    1/1/15 9:54:37.000 PM kernel[0]: bpfAttach len 38 dlt 192
    1/1/15 9:54:38.300 PM configd[26]: dhcp_arp_router: en1 SSID unavailable
    1/1/15 9:54:38.318 PM configd[26]: network changed.
    1/1/15 9:54:38.329 PM configd[26]: setting hostname to [anonymized]
    1/1/15 9:54:38.504 PM com.apple.SecurityServer[53]: Entering service
    1/1/15 9:54:38.755 PM digest-service[99]: label: default
    1/1/15 9:54:38.755 PM digest-service[99]: dbname: od:/Local/Default
    1/1/15 9:54:38.756 PM digest-service[99]: mkey_file: /var/db/krb5kdc/m-key
    1/1/15 9:54:38.756 PM digest-service[99]: acl_file: /var/db/krb5kdc/kadmind.acl
    1/1/15 9:54:38.776 PM digest-service[99]: digest-request: uid=0
    1/1/15 9:54:38.879 PM UserEventAgent[16]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    1/1/15 9:54:38.888 PM UserEventAgent[16]: Captive: CNPluginHandler en1: Inactive
    1/1/15 9:54:38.903 PM thermald[23]: Waiting for OSTT support notification
    1/1/15 9:54:38.943 PM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.domain.system) Service "com.apple.ManagedClient.startup" tried to hijack endpoint "com.apple.ManagedClient.agent" from owner: com.apple.ManagedClient
    1/1/15 9:54:38.943 PM loginwindow[66]: Login Window Application Started
    1/1/15 9:54:39.080 PM WindowServer[119]: Server is starting up
    1/1/15 9:54:39.349 PM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    1/1/15 9:54:39.349 PM com.apple.xpc.launchd[1]: (com.apple.lakitu) The JoinExistingSession key is only available to Application services.
    1/1/15 9:54:39.351 PM com.apple.xpc.launchd[1]: (com.apple.accounts.dom) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/1/15 9:54:39.351 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/1/15 9:54:39.519 PM UserEventAgent[16]: nsurlsessiond_events plugin: adding token 1 for client softwareupdate_download_service
    1/1/15 9:54:39.707 PM networkd[123]: networkd-411 pid 123
    1/1/15 9:54:39.877 PM secinitd[118]: UID[0]: cache loaded: /System/Library/Caches/com.apple.app-sandbox-cache.plist
    1/1/15 9:54:39.878 PM secinitd[118]: ctkd[116]: unable to get root path for bundle of main executable: /System/Library/Frameworks/CryptoTokenKit.framework/ctkd
    1/1/15 9:54:39.902 PM digest-service[99]: digest-request: netr probe 0
    1/1/15 9:54:39.903 PM digest-service[99]: digest-request: init request
    1/1/15 9:54:39.916 PM digest-service[99]: digest-request: init return domain: BUILTIN server: [anonymized] -MACBOOK-PRO indomain was: <NULL>
    1/1/15 9:54:39.935 PM locationd[55]: Logging binary sensor data to /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/locationdSensors.bin
    1/1/15 9:54:39.946 PM locationd[55]: NBB-Could not get UDID for stable refill timing, falling back on random
    1/1/15 9:54:39.985 PM smb-sync-preferences[69]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    1/1/15 9:54:39.994 PM smb-sync-preferences[69]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    1/1/15 9:54:40.000 PM kernel[0]: in func createVirtualInterface ifRole = 1
    1/1/15 9:54:40.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    1/1/15 9:54:40.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init <p2p> role 1
    1/1/15 9:54:40.000 PM kernel[0]: Created virtif 0xffffff801a813000 p2p0
    1/1/15 9:54:40.206 PM airportd[30]: airportdProcessDLILEvent: en1 attached (up)
    1/1/15 9:54:40.251 PM locationd[55]: Location icon should now be in state 'Inactive'
    1/1/15 9:54:40.491 PM mdmclient[41]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    1/1/15 9:54:40.802 PM discoveryd[49]: Basic Sockets GetProcessNameFromSocket() failed errno[57] err[-1]
    1/1/15 9:54:40.802 PM discoveryd[49]: Basic Sockets Unknown(-1), errno 0 UDS FD=3
    1/1/15 9:54:40.802 PM discoveryd[49]: Basic Sockets UDS FD=3 ERROR: failed to get effective user ID, errno 0
    1/1/15 9:54:40.802 PM discoveryd[49]: Basic SleepProxy BSP Server Disabled. Metric = 3373
    1/1/15 9:54:40.807 PM discoveryd[49]: AwdlD2d AwdlD2dInitialize: Initialized
    1/1/15 9:54:40.809 PM discoveryd[49]: D2D_IPC: Loaded
    1/1/15 9:54:40.818 PM discoveryd[49]: Basic WABServer NetResolverEvent no resolvers, resetting domains
    1/1/15 9:54:40.819 PM discoveryd[49]: Basic DNSResolver etc/hosts file changed: Event 0x7fd90041ddd0 Flushed /etc/hosts cache
    1/1/15 9:54:40.819 PM discoveryd[49]: Basic BTMMServer,Warn Couldn't remove from DynStore No such key
    1/1/15 9:54:40.820 PM discoveryd[49]: Basic RemoteControl com.apple.discoveryd Starting XPC Server
    1/1/15 9:54:40.820 PM discoveryd[49]: Basic SleepProxy Could not get the primary interface
    1/1/15 9:54:40.820 PM discoveryd[49]: Basic RemoteControl com.apple.discoveryd.dnsproxy Starting XPC Server
    1/1/15 9:54:40.822 PM discoveryd[49]: Basic SleepProxy Sleep Proxy Server is not enabled
    1/1/15 9:54:40.831 PM rpc.statd[48]: Failed to contact host new-host-2.home - error 2 resolving
    1/1/15 9:54:40.838 PM discoveryd_helper[136]: Basic RemoteControl com.apple.discoveryd_helper Starting XPC Server
    1/1/15 9:54:40.839 PM discoveryd_helper[136]: Detailed RemoteControl com.apple.discoveryd_helper XPC connection 0x7ff3a3d096a0: start (pid=49, <unknown> not root)
    1/1/15 9:54:40.844 PM configd[26]: network changed.
    1/1/15 9:54:40.907 PM awacsd[137]: Starting awacsd connectivity_executables-112 (Sep  9 2014 16:16:55)
    1/1/15 9:54:40.943 PM UserEventAgent[16]: assertion failed: 14B25: com.apple.telemetry + 22990 [B2D9FFC4-66B7-3739-AFFA-A7E4BDE84A2B]: 0xffffffffe0000001
    1/1/15 9:54:41.336 PM awacsd[137]: InnerStore CopyAllZones: no info in Dynamic Store
    1/1/15 9:54:41.428 PM systemkeychain[140]: done file: /var/run/systemkeychaincheck.done
    1/1/15 9:54:41.517 PM mdmclient[41]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    1/1/15 9:54:41.556 PM mds[33]: (FMW.Normal:1402) FMW 0 0
    1/1/15 9:54:41.728 PM apsd[50]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    1/1/15 9:54:41.779 PM apsd[50]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    1/1/15 9:54:41.781 PM apsd[50]: Attempt to set push wake topics without dark wake enabled: ()
    1/1/15 9:54:41.781 PM apsd[50]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    1/1/15 9:54:41.781 PM apsd[50]: <APSConnectionServer: 0x7fad11757ed0> Invalid mach port - Cleaning up this named port's topics. com.apple.askpermission.aps
    1/1/15 9:54:42.000 PM kernel[0]: en1: 802.11d country code set to 'US'.
    1/1/15 9:54:42.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    1/1/15 9:54:44.132 PM stackshot[64]: Timed out waiting for IOKit to finish matching.
    1/1/15 9:54:44.347 PM awacsd[137]: Configuring lazy AWACS client: 68845092.p20.members.btmm.icloud.com.
    1/1/15 9:54:44.355 PM discoveryd[49]: Basic BTMMServer Got DNS key from awacsd for 68845092.members.btmm.icloud.com.
    1/1/15 9:54:44.358 PM discoveryd[49]: Basic BTMMServer Account info completed for 68845092.members.btmm.icloud.com.
    1/1/15 9:54:44.367 PM awacsd[137]: KV HTTP 0
    1/1/15 9:54:45.142 PM kdc[157]: label: default
    1/1/15 9:54:45.142 PM kdc[157]: dbname: od:/Local/Default
    1/1/15 9:54:45.142 PM kdc[157]: mkey_file: /var/db/krb5kdc/m-key
    1/1/15 9:54:45.142 PM kdc[157]: acl_file: /var/db/krb5kdc/kadmind.acl
    1/1/15 9:54:45.156 PM kdc[157]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    1/1/15 9:54:45.221 PM kdc[157]: KDC started
    1/1/15 9:54:45.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 00:7f:28:5e:23:a6  MAC AUTH succeeded
    1/1/15 9:54:45.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    1/1/15 9:54:45.000 PM kernel[0]: AirPort: Link Up on en1
    1/1/15 9:54:45.000 PM kernel[0]: en1: BSSID changed to 00:7f:28:5e:23:a6
    1/1/15 9:54:45.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    1/1/15 9:54:45.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    1/1/15 9:54:45.552 PM blued[58]: Logging disabled
    1/1/15 9:54:46.000 PM kernel[0]: fGPUIdleIntervalMS = 0
    1/1/15 9:54:46.000 PM kernel[0]: en2: promiscuous mode enable succeeded
    1/1/15 9:54:46.041 PM WindowServer[119]: Session 257 retained (2 references)
    1/1/15 9:54:46.041 PM WindowServer[119]: Session 257 released (1 references)
    1/1/15 9:54:46.096 PM WindowServer[119]: Session 257 retained (2 references)
    1/1/15 9:54:46.099 PM WindowServer[119]: init_page_flip: page flip mode is on
    1/1/15 9:54:46.156 PM WindowServer[119]: Found 13 modes for display 0x00000000 [13, 0]
    1/1/15 9:54:46.161 PM WindowServer[119]: Found 1 modes for display 0x00000000 [1, 0]
    1/1/15 9:54:46.164 PM WindowServer[119]: Found 1 modes for display 0x00000000 [1, 0]
    1/1/15 9:54:46.168 PM WindowServer[119]: Found 1 modes for display 0x00000000 [1, 0]
    1/1/15 9:54:46.170 PM WindowServer[119]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    1/1/15 9:54:46.170 PM WindowServer[119]: mux_initialize: Mode is safe
    1/1/15 9:54:46.226 PM WindowServer[119]: Found 13 modes for display 0x00000000 [13, 0]
    1/1/15 9:54:46.229 PM WindowServer[119]: Found 1 modes for display 0x00000000 [1, 0]
    1/1/15 9:54:46.230 PM WindowServer[119]: Found 1 modes for display 0x00000000 [1, 0]
    1/1/15 9:54:46.230 PM WindowServer[119]: Found 1 modes for display 0x00000000 [1, 0]
    1/1/15 9:54:46.271 PM WindowServer[119]: WSMachineUsesNewStyleMirroring: false
    1/1/15 9:54:46.273 PM WindowServer[119]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0xcb5a19e16c20c98ebb2d70fc3bb550b4
    1/1/15 9:54:46.273 PM WindowServer[119]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    1/1/15 9:54:46.273 PM WindowServer[119]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    1/1/15 9:54:46.273 PM WindowServer[119]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    1/1/15 9:54:46.273 PM WindowServer[119]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    1/1/15 9:54:46.274 PM WindowServer[119]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    1/1/15 9:54:46.274 PM WindowServer[119]: WSSetWindowTransform: Singular matrix
    1/1/15 9:54:46.274 PM WindowServer[119]: WSSetWindowTransform: Singular matrix
    1/1/15 9:54:46.275 PM WindowServer[119]: WSSetWindowTransform: Singular matrix
    1/1/15 9:54:46.278 PM WindowServer[119]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0xcb5a19e16c20c98ebb2d70fc3bb550b4
    1/1/15 9:54:46.278 PM WindowServer[119]: Display 0x003f0040: GL mask 0x10; bounds (2304, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    1/1/15 9:54:46.278 PM WindowServer[119]: Display 0x003f003f: GL mask 0x8; bounds (2305, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    1/1/15 9:54:46.279 PM WindowServer[119]: Display 0x003f003e: GL mask 0x4; bounds (2306, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    1/1/15 9:54:46.279 PM WindowServer[119]: Display 0x003f003d: GL mask 0x2; bounds (2307, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    1/1/15 9:54:46.279 PM WindowServer[119]: CGXPerformInitialDisplayConfiguration
    1/1/15 9:54:46.279 PM WindowServer[119]:   Display 0x042731c0: Unit 0; Vendor 0x610 Model 0x9cc7 S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    1/1/15 9:54:46.279 PM WindowServer[119]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    1/1/15 9:54:46.279 PM WindowServer[119]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2305,0)[1 x 1], Rotation 0, Resolution 1
    1/1/15 9:54:46.280 PM WindowServer[119]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2306,0)[1 x 1], Rotation 0, Resolution 1
    1/1/15 9:54:46.280 PM WindowServer[119]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2307,0)[1 x 1], Rotation 0, Resolution 1
    1/1/15 9:54:46.282 PM WindowServer[119]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    1/1/15 9:54:46.308 PM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:46.310 PM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    1/1/15 9:54:46.310 PM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    1/1/15 9:54:46.314 PM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    1/1/15 9:54:46.314 PM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    1/1/15 9:54:46.314 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    1/1/15 9:54:46.316 PM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    1/1/15 9:54:46.321 PM WindowServer[119]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, accelerator 0x00003ed3, unit 0, caps QEX|MIPMAP, vram 451 MB
    1/1/15 9:54:46.322 PM WindowServer[119]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, texture max 8192, viewport max {8192, 8192}, extensions NPOT|GLSL|FLOAT
    1/1/15 9:54:46.322 PM WindowServer[119]: GLCompositor enabled for tile size [256 x 256]
    1/1/15 9:54:46.322 PM WindowServer[119]: CGXGLInitMipMap: mip map mode is on
    1/1/15 9:54:46.380 PM lsregister[139]: LaunchServices: Begin database seeding
    1/1/15 9:54:46.381 PM lsregister[139]: LaunchServices: Completed database seeding
    1/1/15 9:54:46.648 PM WindowServer[119]: CGXSetDisplayColorProfileAndTransfer: Display 0x042731c0: Unit 0; ColorProfile { 1655374931 }; TransferTable (256, 12)
    1/1/15 9:54:46.711 PM com.apple.AmbientDisplayAgent[161]: AmbientDisplayAgent started
    1/1/15 9:54:46.716 PM com.apple.AmbientDisplayAgent[161]: AMBD initializing devices
    1/1/15 9:54:46.724 PM com.apple.AmbientDisplayAgent[161]: AMBD Agent: xpc connection became invalid during event handler
    1/1/15 9:54:46.729 PM com.apple.xpc.launchd[1]: (com.apple.AssistiveControl.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:46.730 PM com.apple.xpc.launchd[1]: (com.apple.btsa) This key does not do anything: OnDemand
    1/1/15 9:54:46.731 PM com.apple.xpc.launchd[1]: (com.apple.coreservices.lsactivity) Unknown key for Boolean: DrainMessagesAfterFailedInit
    1/1/15 9:54:46.733 PM com.apple.xpc.launchd[1]: (com.apple.helpd) This key does not do anything: OnDemand
    1/1/15 9:54:46.737 PM com.apple.xpc.launchd[1]: (com.apple.noticeboard.agent) This key does not do anything: OnDemand
    1/1/15 9:54:46.741 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    1/1/15 9:54:46.742 PM com.apple.xpc.launchd[1]: (com.apple.inputswitcher.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:46.743 PM com.apple.xpc.launchd[1]: (com.apple.universalaccessd.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:46.744 PM com.apple.xpc.launchd[1]: (com.apple.universalaccesscontrol.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:46.744 PM com.apple.xpc.launchd[1]: (com.apple.UserEventAgent-LoginWindow) This service is defined to be constantly running and is inherently inefficient.
    1/1/15 9:54:46.746 PM com.apple.xpc.launchd[1]: (com.apple.VoiceOver.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:46.748 PM com.apple.xpc.launchd[1]: (com.apple.ZoomWindow.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:46.920 PM com.apple.SecurityServer[53]: Session 100005 created
    1/1/15 9:54:46.979 PM WindowServer[119]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7f826361a880) - enabling OpenGL
    1/1/15 9:54:47.134 PM loginwindow[66]: The current system was not found in the list of machines requiring a switch to a black background
    1/1/15 9:54:47.173 PM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    1/1/15 9:54:47.174 PM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    1/1/15 9:54:47.196 PM loginwindow[66]: Login Window Started Security Agent
    1/1/15 9:54:47.286 PM askpermissiond[162]: objc[162]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    1/1/15 9:54:47.328 PM UserEventAgent[167]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    1/1/15 9:54:47.369 PM UserEventAgent[167]: user agent networkd: built Sep  9 2014 16:11:57
    1/1/15 9:54:47.404 PM WiFiAgent[168]:  securityd_message_with_reply_sync Failed to talk to secd after 4 attempts.
    1/1/15 9:54:47.428 PM askpermissiond[162]: StoreTransport: Resetting APS Connection using environment name production
    1/1/15 9:54:47.437 PM apsd[50]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    1/1/15 9:54:47.471 PM SecurityAgent[173]: This is the first run
    1/1/15 9:54:47.472 PM SecurityAgent[173]: MacBuddy was run = 0
    1/1/15 9:54:48.191 PM configd[26]: network changed: DNS* Proxy
    1/1/15 9:54:48.195 PM discoveryd[49]: Basic SleepProxy Could not get the primary interface
    1/1/15 9:54:48.200 PM UserEventAgent[16]: Captive: [CNInfoNetworkActive:1709] en1: SSID 'NXYQB' making interface primary (protected network)
    1/1/15 9:54:48.203 PM UserEventAgent[16]: Captive: CNPluginHandler en1: Evaluating
    1/1/15 9:54:48.207 PM UserEventAgent[16]: Captive: en1: Probing 'NXYQB'
    1/1/15 9:54:48.000 PM kernel[0]: en1: BSSID changed to 00:7f:28:5e:23:a6
    1/1/15 9:54:48.241 PM configd[26]: network changed: v4(en1!:192.168.1.3) DNS+ Proxy+ SMB
    1/1/15 9:54:48.276 PM WindowServer[119]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'. Run with arg = -discovery
    1/1/15 9:54:48.359 PM WindowServer[119]: CGXSetDisplayColorProfileAndTransfer: Display 0x042731c0: Unit 0; ColorProfile { 1655374931 }; TransferTable (256, 12)
    1/1/15 9:54:48.362 PM com.apple.AmbientDisplayAgent[161]: AMBD Agent: xpc connection became invalid during event handler
    1/1/15 9:54:48.447 PM configd[26]: setting hostname to "[anonymized]"
    1/1/15 9:54:48.460 PM DMProxy[181]: AMBD Services: connection interrupted: com.apple.AmbientDisplayAgent (Connection interrupted)
    1/1/15 9:54:48.479 PM WindowServer[119]: CGXSetDisplayColorProfileAndTransfer: Display 0x042731c0: Unit 0; ColorProfile { 1655374931 }; TransferTable (256, 12)
    1/1/15 9:54:48.500 PM UserEventAgent[16]: Captive: CNPluginHandler en1: Authenticated
    1/1/15 9:54:48.534 PM com.apple.AmbientDisplayAgent[161]: AmbientDisplayAgent started
    1/1/15 9:54:48.544 PM com.apple.AmbientDisplayAgent[161]: AMBD initializing devices
    1/1/15 9:54:48.560 PM com.apple.AmbientDisplayAgent[161]: AMBD Agent: xpc connection became invalid during event handler
    1/1/15 9:54:50.028 PM sntp[182]: time set +1.447757 s
    1/1/15 9:54:50.239 PM ntpd[125]: peer time.apple.com @ 17.171.4.15
    1/1/15 9:54:50.261 PM ntpd[125]: drift PPM:0.000 -> -56.992
    1/1/15 9:54:51.705 PM discoveryd[49]: Basic NATTServer Got device info URL: http://192.168.1.1:2555/upnp/e05bf061-5cd7-3045-862e-d5db8dcb61a3/desc.xml
    1/1/15 9:54:51.770 PM discoveryd[49]: Basic NATTServer Got control URL: http://192.168.1.1:2555/upnp/b1362780-b9f7-3ace-9b5b-86c3620dbde5/WANIPConn1.ctl (ip)
    1/1/15 9:54:52.892 PM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/1/15 9:54:52.894 PM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    1/1/15 9:54:52.894 PM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    1/1/15 9:54:52.898 PM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    1/1/15 9:54:52.898 PM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    1/1/15 9:54:52.899 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    1/1/15 9:54:52.900 PM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    1/1/15 9:54:53.003 PM netbiosd[179]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd

  • Response is very slow

    Dear OTN Members
    we have recently migrated our application from 6i (client/server) to 10g web based applications. I testing migrated forms on 10g but response is very slow means when i tried to traverse through menu (in our main form after successfully entering credentials in login form) they response very slow, after i click on some menu and try to open the form, it opens very slowly (doesnt show up at once). My machine specs are very good, it is server machine (IBM) with 4 gb RAM, application server is 10g, databse is 10g and developer suite is 10g. We have installed application server seperatey i.e. database is installed on seperate machine.
    What can be the reason? either something wrong with application server configuration or what? Please suggest me what to do to enhance performance.
    Early reply would be highly appreciated.
    Regards
    Nasir Saeed

    Try to establish the bottleneck. Is it the database or the mid-tier. Run addmrpt.sql on the database and see if any improvements need to be made. On the mid-tier side there can be several factor hampering performance: network speed, Web Cache, OHS or the OC4J instance for Forms. Have a look at metalink note 363285.1

  • My MAC is running very slow and i am a complete novice and don't know what to do. i have had my Mac since 2008 and its probably in a mess. if you can help i would be grateful. EtreCheck version: 1.9.15 (52) Report generated 8 September 2014 09:09:26

    My MAC runs very slow. Rainbow wheel every time i try to go somewhere. Im a complete MAC novice. Only really use it for iTunes and email. the odd document here and there. The odd spreadsheet. Was brought up on a PC. I would imagine my system is in  mess. I think i downloaded that Mackeeper which i have just discovered was not a good idea. I found a thread about EtreCheck and it suggested i posted the report of my machine which i have done.I only have 2GB of space. Not sure how much i have left. My wife keeps putting photos on here like they are going out of fashion. Bought the machine in 2008 because everybody said you have a MAC. I've never really got to grips with it but at least it worked. Now it does not run very well at all. That spinning wheel is driving me mad. HELP please, never ever used a forum light this either so please go gentle on me. Cheers Paul
    EtreCheck version: 1.9.15 (52)
    Report generated 8 September 2014 09:09:26 BST
    Hardware Information: ?
      iMac (20-inch, Early 2008) (Verified)
      iMac - model: iMac8,1
      1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
      2 GB RAM
    Video Information: ?
      ATI Radeon HD 2600 Pro - VRAM: 256 MB
      iMac 1680 x 1050
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:31:45
    Disk Information: ?
      Hitachi HDP725032GLA380 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (117.84 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Bose Corporation Bose USB Audio
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ?
      Mac App Store and identified developers
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
      [loaded] net.sourceforge.MonolingualHelper.plist Support
    Launch Agents: ?
      [running] com.trusteer.rapport.rapportd.plist Support
    User Login Items: ?
      iTunesHelper
    Internet Plug-ins: ?
      Google Earth Web Plug-in: Version: 5.1 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      OfficeLiveBrowserPlugin: Version: 12.3.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      AmazonMP3DownloaderPlugin101749: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
      iPhotoPhotocast: Version: 7.0
      QuickTime Plugin: Version: 7.7.3
      eMusicRemote: Version: (null) Support
      eMusic: Version: Unknown
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Flip4Mac WMV  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          2% iTunes
          2% WindowServer
          0% coreaudiod
          0% fontd
          0% rapportd
    Top Processes by Memory: ?
      178 MB Finder
      133 MB com.apple.WebKit.WebContent
      109 MB iTunes
      92 MB Safari
      63 MB com.apple.quicklook.satellite
    Virtual Memory Information: ?
      24 MB Free RAM
      821 MB Active RAM
      807 MB Inactive RAM
      291 MB Wired RAM
      338 MB Page-ins
      680 KB Page-outs

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can read it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p) if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //p;};' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' '" L*/P*/*loginit*' 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 14 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Mac Mini boots very slow with Mavericks (after security update)

    Hi,
    my Mac Mini boots very slow after I've installed Maveriks. I did two clean installs by now, seemed to work OK after the second one but after the latest safety update (2014-002) the boot time is up to 5+ minutes. Starting Safari or other software takes addtional time. See below for system specs, Etrecheck and log. Any ideas what could cause this? According to the update history I did install the security update 2014-002 twice on the same day although I cannot remember doing such a thing.
    Thanks Joerg
    Hardware Information:
              Mac mini (Late 2009)
              Mac mini - model: Macmini3,1
              1 2.53 GHz Intel Core 2 Duo CPU: 2 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 9400 - VRAM: 256 MB
    System Software:
              OS X 10.9.2 (13C1021) - Uptime: 0 days 0:42:32
    Disk Information:
              Hitachi HTS545032B9SA02 disk0 : (320,07 GB)
                        EFI (disk0s1) <not mounted>: 209,7 MB
                        Macintosh HD (disk0s2) / [Startup]: 319,21 GB (225 GB free)
              OPTIARC DVD RW AD-5670S 
    USB Information:
              Mitsumi Electric Hub in Apple Extended USB Keyboard
                        Mitsumi Electric Apple Optical USB Mouse
                        Mitsumi Electric Apple Extended USB Keyboard
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
    Gatekeeper:
              Mac App Store and identified developers
    User Login Items:
              iTunesHelper
    Internet Plug-ins:
              FlashPlayer-10.6: Version: 13.0.0.201 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.201 - SDK 10.6 Support
              QuickTime Plugin: Version: 7.7.3
              Default Browser: Version: 537 - SDK 10.9
    Safari Extensions:
              AdBlock: Version: 2.6.28
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                   3%          WindowServer
                   1%          fontd
                   0%          Console
                   0%          coreservicesd
                   0%          imagent
    Top Processes by Memory:
              213 MB          Safari
              90 MB          com.apple.IconServicesAgent
              90 MB          com.apple.WebKit.WebContent
              82 MB          mds_stores
              49 MB          Console
    Virtual Memory Information:
              5.33 GB          Free RAM
              1.60 GB          Active RAM
              211 MB          Inactive RAM
              627 MB          Wired RAM
              230 MB          Page-ins
              0 B          Page-outs
    28.04.14 09:48:09,000 bootlog[0]: BOOT_TIME 1398671289 0
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    28.04.14 09:55:31,000 kernel[0]: Longterm timer threshold: 1000 ms
    28.04.14 09:55:31,000 kernel[0]: Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    28.04.14 09:55:31,000 kernel[0]: vm_page_bootstrap: 1867682 free pages and 147550 wired pages
    28.04.14 09:55:31,000 kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    28.04.14 09:55:31,000 kernel[0]: zone leak detection enabled
    28.04.14 09:55:31,000 kernel[0]: "vm_compressor_mode" is 4
    28.04.14 09:55:31,000 kernel[0]: standard timeslicing quantum is 10000 us
    28.04.14 09:55:31,000 kernel[0]: standard background quantum is 2500 us
    28.04.14 09:55:31,000 kernel[0]: mig_table_max_displ = 74
    28.04.14 09:55:31,000 kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    28.04.14 09:55:31,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    28.04.14 09:55:31,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    28.04.14 09:55:31,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    28.04.14 09:55:31,000 kernel[0]: calling mpo_policy_init for Sandbox
    28.04.14 09:55:31,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    28.04.14 09:55:31,000 kernel[0]: calling mpo_policy_init for Quarantine
    28.04.14 09:55:31,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    28.04.14 09:55:31,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    28.04.14 09:55:31,000 kernel[0]: The Regents of the University of California. All rights reserved.
    28.04.14 09:55:31,000 kernel[0]: MAC Framework successfully initialized
    28.04.14 09:55:31,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    28.04.14 09:55:31,000 kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    28.04.14 09:55:31,000 kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    28.04.14 09:55:31,000 kernel[0]: ACPI: sleep states S3 S4 S5
    28.04.14 09:55:31,000 kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    28.04.14 09:55:31,000 kernel[0]: [ PCI configuration begin ]
    28.04.14 09:55:31,000 kernel[0]: console relocated to 0xf80010000
    28.04.14 09:55:31,000 kernel[0]: [ PCI configuration end, bridges 5, devices 18 ]
    28.04.14 09:55:31,000 kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    28.04.14 09:55:31,000 kernel[0]: NVEthernet::start - Built Sep 19 2013 22:20:06
    28.04.14 09:55:31,000 kernel[0]: mcache: 2 CPU(s), 64 bytes CPU cache line size
    28.04.14 09:55:31,000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    28.04.14 09:55:31,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    28.04.14 09:55:31,000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 34159efffe270ccc; max speed s800.
    28.04.14 09:55:31,000 kernel[0]: rooting via boot-uuid from /chosen: 289A3125-09B8-376B-ACE3-38D61384202E
    28.04.14 09:55:31,000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    28.04.14 09:55:31,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    28.04.14 09:55:31,000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    28.04.14 09:55:31,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HTS545032B9SA02 Media/IOGUIDPartitionScheme/Customer@2
    28.04.14 09:55:31,000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    28.04.14 09:55:31,000 kernel[0]: BTCOEXIST off
    28.04.14 09:55:31,000 kernel[0]: wl0: Broadcom BCM4328 802.11 Wireless Controller
    28.04.14 09:55:31,000 kernel[0]: 5.10.131.36
    28.04.14 09:55:31,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    28.04.14 09:48:39,817 com.apple.launchd[1]: *** launchd[1] has started up. ***
    28.04.14 09:48:39,817 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    28.04.14 09:55:30,438 hidd[43]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    28.04.14 09:55:30,439 hidd[43]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    28.04.14 09:55:30,602 com.apple.SecurityServer[25]: Session 100000 created
    28.04.14 09:55:31,684 fseventsd[44]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (3 442 34362)
    28.04.14 09:55:31,738 fseventsd[44]: log dir: /.fseventsd getting new uuid: 4D96DE92-DF6A-4074-A734-C058ACC67177
    28.04.14 09:55:33,000 kernel[0]: VM Swap Subsystem is ON
    28.04.14 09:55:33,000 kernel[0]: Waiting for DSMOS...
    28.04.14 09:55:36,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    28.04.14 09:55:36,000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    28.04.14 09:55:36,000 kernel[0]: NVDAStartup: Official
    28.04.14 09:55:36,000 kernel[0]: init
    28.04.14 09:55:36,000 kernel[0]: probe
    28.04.14 09:55:36,000 kernel[0]: start
    28.04.14 09:55:36,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    28.04.14 09:55:36,000 kernel[0]: IOBluetoothUSBDFU::probe
    28.04.14 09:55:36,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8216 FirmwareVersion - 0x0207
    28.04.14 09:55:36,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xe000 ****
    28.04.14 09:55:36,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xe000 ****
    28.04.14 09:55:36,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xe000
    28.04.14 09:55:36,000 kernel[0]: NVDANV50HAL loaded and registered
    28.04.14 09:55:36,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    28.04.14 09:55:36,000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    28.04.14 09:55:36,000 kernel[0]: Previous Shutdown Cause: 5
    28.04.14 09:55:36,000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    28.04.14 09:55:36,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    28.04.14 09:55:36,000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x6280 -- 0x3800 -- 0xe000 ****
    28.04.14 09:55:36,000 kernel[0]: DSMOS has arrived
    28.04.14 09:55:37,000 kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    28.04.14 09:55:38,000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    28.04.14 09:55:38,142 configd[54]: setting hostname to "Susannes-Mac-mini.local"
    28.04.14 09:55:38,147 configd[54]: network changed.
    28.04.14 09:55:38,368 com.apple.SecurityServer[25]: Entering service
    28.04.14 09:55:38,000 kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    28.04.14 09:55:38,000 kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    28.04.14 09:55:39,000 kernel[0]: Ethernet [nvenet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,0005,45e1,0000]
    28.04.14 09:55:39,000 kernel[0]: 05f5e100  00500026  NVEthernet::setLinkStatus - Active
    28.04.14 09:55:41,920 digest-service[63]: label: default
    28.04.14 09:55:41,921 digest-service[63]:           dbname: od:/Local/Default
    28.04.14 09:55:41,921 digest-service[63]:           mkey_file: /var/db/krb5kdc/m-key
    28.04.14 09:55:41,921 digest-service[63]:           acl_file: /var/db/krb5kdc/kadmind.acl
    28.04.14 09:55:42,335 mDNSResponder[35]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    28.04.14 09:55:42,768 loginwindow[38]: Login Window Application Started
    28.04.14 09:55:43,026 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    28.04.14 09:55:43,278 airportd[61]: sandbox cache error 3850
    28.04.14 09:55:43,423 digest-service[63]: sandbox cache error 11: database disk image is malformed
    28.04.14 09:55:43,851 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    28.04.14 09:55:44,005 com.apple.usbmuxd[17]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    28.04.14 09:55:44,942 digest-service[63]: digest-request: uid=0
    28.04.14 09:55:45,441 airportd[61]: airportdProcessDLILEvent: en1 attached (up)
    28.04.14 09:55:45,729 awacsd[57]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    28.04.14 09:55:46,356 awacsd[57]: InnerStore CopyAllZones: no info in Dynamic Store
    28.04.14 09:55:46,370 stackshot[21]: Timed out waiting for IOKit to finish matching.
    28.04.14 09:55:47,289 configd[54]: network changed.
    28.04.14 09:55:47,291 configd[54]: network changed: DNS*
    28.04.14 09:55:47,318 systemkeychain[82]: done file: /var/run/systemkeychaincheck.done
    28.04.14 09:55:47,593 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28.04.14 09:55:47,723 mDNSResponder[35]: D2D_IPC: Loaded
    28.04.14 09:55:47,723 mDNSResponder[35]: D2DInitialize succeeded
    28.04.14 09:55:47,727 mDNSResponder[35]:   4: Listening for incoming Unix Domain Socket client requests
    28.04.14 09:55:48,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xe000 ****
    28.04.14 09:55:48,846 networkd[98]: networkd.98 built Aug 24 2013 22:08:46
    28.04.14 09:55:48,926 digest-service[63]: digest-request: netr probe 0
    28.04.14 09:55:48,927 digest-service[63]: digest-request: init request
    28.04.14 09:55:49,050 digest-service[63]: digest-request: init return domain: BUILTIN server: SUSANNES-MAC-MINI indomain was: <NULL>
    28.04.14 09:55:49,000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key BEMB (kSMCKeyNotFound)
    28.04.14 09:55:55,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    28.04.14 09:55:55,395 WindowServer[80]: Server is starting up
    28.04.14 09:55:55,554 WindowServer[80]: Session 256 retained (2 references)
    28.04.14 09:55:55,554 WindowServer[80]: Session 256 released (1 references)
    28.04.14 09:55:55,619 WindowServer[80]: Session 256 retained (2 references)
    28.04.14 09:55:55,689 WindowServer[80]: init_page_flip: page flip mode is on
    28.04.14 09:55:56,015 mds[34]: (Normal) FMW: FMW 0 0
    28.04.14 09:55:56,075 locationd[40]: NBB-Could not get UDID for stable refill timing, falling back on random
    28.04.14 09:55:56,238 WindowServer[80]: Found 27 modes for display 0x00000000 [24, 3]
    28.04.14 09:55:56,569 WindowServer[80]: Found 1 modes for display 0x00000000 [1, 0]
    28.04.14 09:55:56,571 WindowServer[80]: mux_initialize: Couldn't find any matches
    28.04.14 09:55:56,572 WindowServer[80]: Found 27 modes for display 0x00000000 [24, 3]
    28.04.14 09:55:56,778 locationd[40]: Location icon should now be in state 'Inactive'
    28.04.14 09:55:56,964 WindowServer[80]: Found 1 modes for display 0x00000000 [1, 0]
    28.04.14 09:55:56,995 WindowServer[80]: WSMachineUsesNewStyleMirroring: false
    28.04.14 09:55:56,997 WindowServer[80]: Display 0x764bdc00: GL mask 0x1; bounds (0, 0)[1280 x 1024], 27 modes available
    Main, Active, on-line, enabled, boot, Vendor 4dd9, Model 2f70, S/N 0, Unit 0, Rotation 0
    UUID 0x6077c6f135c4c44ddc359cba2050401d
    28.04.14 09:55:56,997 WindowServer[80]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    28.04.14 09:55:56,998 WindowServer[80]: WSSetWindowTransform: Singular matrix
    28.04.14 09:55:57,421 WindowServer[80]: Display 0x764bdc00: GL mask 0x1; bounds (0, 0)[1280 x 1024], 27 modes available
    Main, Active, on-line, enabled, boot, Vendor 4dd9, Model 2f70, S/N 0, Unit 0, Rotation 0
    UUID 0x6077c6f135c4c44ddc359cba2050401d
    28.04.14 09:55:57,421 WindowServer[80]: Display 0x003f003d: GL mask 0x2; bounds (2304, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    28.04.14 09:55:57,421 WindowServer[80]: CGXPerformInitialDisplayConfiguration
    28.04.14 09:55:57,421 WindowServer[80]:   Display 0x764bdc00: Unit 0; Vendor 0x4dd9 Model 0x2f70 S/N 0 Dimensions 13.31 x 10.63; online enabled, Bounds (0,0)[1280 x 1024], Rotation 0, Resolution 1
    28.04.14 09:55:57,422 WindowServer[80]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    28.04.14 09:55:57,592 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180C560 Susannes-Mac-mini.local. (AAAA) that's already in the list
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180C9F0 C.C.C.0.7.2.E.F.F.F.E.9.5.1.6.3.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180E160 Susannes-Mac-mini.local. (Addr) that's already in the list
    28.04.14 09:55:58,874 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F931180E5F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    28.04.14 09:55:59,615 WindowServer[80]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, accelerator 0x0000428b, unit 0, caps QEX|MIPMAP, vram 256 MB
    28.04.14 09:55:59,715 WindowServer[80]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    28.04.14 09:55:59,716 WindowServer[80]: GLCompositor enabled for tile size [256 x 256]
    28.04.14 09:55:59,716 WindowServer[80]: CGXGLInitMipMap: mip map mode is on
    28.04.14 09:55:59,726 WindowServer[80]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    28.04.14 09:55:59,801 loginwindow[38]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    28.04.14 09:56:00,154 configd[54]: network changed: v4(en0+:192.168.178.24) DNS+ Proxy+ SMB
    28.04.14 09:56:00,166 configd[54]: setting hostname to "susannes-mini.fritz.box"
    28.04.14 09:56:01,357 awacsd[57]: Exiting
    28.04.14 09:56:02,738 WindowServer[80]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fc9bb513090) - enabling OpenGL
    28.04.14 09:56:03,337 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:03,383 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:03,397 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:03,448 ntpd[106]: proto: precision = 1.000 usec
    28.04.14 09:56:03,489 launchctl[126]: com.apple.findmymacmessenger: Already loaded
    28.04.14 09:56:03,785 com.apple.SecurityServer[25]: Session 100004 created
    28.04.14 09:56:04,311 digest-service[63]: digest-request: uid=0
    28.04.14 09:56:04,312 digest-service[63]: digest-request: init request
    28.04.14 09:56:04,316 digest-service[63]: digest-request: init return domain: MACMINI-270CCC server: SUSANNES-MINI indomain was: <NULL>
    28.04.14 09:56:04,363 digest-service[63]: digest-request: uid=0
    28.04.14 09:56:04,364 digest-service[63]: digest-request: init request
    28.04.14 09:56:04,368 digest-service[63]: digest-request: init return domain: SUSANNES-MINI server: SUSANNES-MINI indomain was: <NULL>
    28.04.14 09:56:04,370 UserEventAgent[127]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    28.04.14 09:56:05,219 loginwindow[38]: Login Window Started Security Agent
    28.04.14 09:56:05,648 SecurityAgent[142]: This is the first run
    28.04.14 09:56:05,649 SecurityAgent[142]: MacBuddy was run = 0
    28.04.14 09:56:05,672 SecurityAgent[142]: User info context values set for susannescherwinski
    28.04.14 09:56:06,399 loginwindow[38]: Login Window - Returned from Security Agent
    28.04.14 09:56:06,427 loginwindow[38]: USER_PROCESS: 38 console
    28.04.14 09:56:06,000 kernel[0]: AppleKeyStore:Sending lock change 0
    28.04.14 09:56:06,970 com.apple.launchd.peruser.501[145]: Background: Aqua: Registering new GUI session.
    28.04.14 09:56:06,996 com.apple.launchd.peruser.501[145]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    28.04.14 09:56:06,998 com.apple.launchd.peruser.501[145]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    28.04.14 09:56:07,002 launchctl[147]: com.apple.pluginkit.pkd: Already loaded
    28.04.14 09:56:07,002 launchctl[147]: com.apple.sbd: Already loaded
    28.04.14 09:56:07,029 distnoted[149]: # distnote server agent  absolute time: 479.663146784   civil time: Mon Apr 28 09:56:07 2014   pid: 149 uid: 501  root: no
    28.04.14 09:56:07,530 UserEventAgent[148]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    28.04.14 09:56:07,569 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    28.04.14 09:56:07,570 com.apple.audio.DriverHelper[161]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    28.04.14 09:56:07,608 com.apple.audio.DriverHelper[161]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    28.04.14 09:56:07,608 com.apple.audio.DriverHelper[161]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    28.04.14 09:56:07,608 com.apple.audio.DriverHelper[161]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    28.04.14 09:56:07,732 com.apple.SecurityServer[25]: Session 100006 created
    28.04.14 09:56:07,760 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    28.04.14 09:56:07,793 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:07,820 sharingd[170]: Starting Up...
    28.04.14 09:56:07,954 WindowServer[80]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    28.04.14 09:56:08,649 WindowServer[80]: Display 0x764bdc00: Unit 0; ColorProfile { 2, "SDM-HS74"}; TransferFormula (1.000000, 1.000000, 1.000000)
    28.04.14 09:56:09,364 com.apple.IconServicesAgent[201]: IconServicesAgent launched.
    28.04.14 09:56:09,577 accountsd[202]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    28.04.14 09:56:09,719 com.apple.SecurityServer[25]: Session 100009 created
    28.04.14 09:56:10,587 WiFiKeychainProxy[182]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    28.04.14 09:56:10,588 WiFiKeychainProxy[182]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    28.04.14 09:56:10,847 SystemUIServer[156]: Cannot find executable for CFBundle 0x7fb68855c320 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    28.04.14 09:56:10,864 SystemUIServer[156]: Cannot find executable for CFBundle 0x7fb68847aab0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    28.04.14 09:56:12,097 imagent[189]: [Warning] Services all disappeared, removing all dependent devices
    28.04.14 09:56:12,122 imagent[189]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    28.04.14 09:56:12,123 imagent[189]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    28.04.14 09:56:12,163 soagent[184]: [Warning] Services all disappeared, removing all dependent devices
    28.04.14 09:56:12,181 soagent[184]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:12,184 soagent[184]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:12,417 secd[207]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    28.04.14 09:56:12,417 secd[207]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    28.04.14 09:56:12,639 secd[207]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    28.04.14 09:56:12,639 secd[207]:  securityd_xpc_dictionary_handler WiFiKeychainProx[182] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    28.04.14 09:56:12,944 com.apple.time[148]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    28.04.14 09:56:22,465 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:23,038 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:23,156 soagent[184]: Killing soagent.
    28.04.14 09:56:23,156 NotificationCenter[181]: SOHelperCenter main connection interrupted
    28.04.14 09:56:23,159 NotificationCenter[181]: SOHelperCenter main connection interrupted
    28.04.14 09:56:23,160 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:184)
    28.04.14 09:56:23,160 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:184)
    28.04.14 09:56:23,314 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:23,316 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    28.04.14 09:56:24,403 parentalcontrolsd[216]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    28.04.14 09:56:33,245 com.apple.time[148]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    28.04.14 09:56:33,310 soagent[217]: [Warning] Services all disappeared, removing all dependent devices
    28.04.14 09:56:33,318 soagent[217]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:33,467 com.apple.dock.extra[212]: No endpoint returned trying to load UnreadCountController.bundle, suspending
    28.04.14 09:56:33,493 soagent[217]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:33,494 soagent[217]: No active accounts, killing soagent in 10 seconds
    28.04.14 09:56:44,319 soagent[217]: Killing soagent.
    28.04.14 09:56:44,320 com.apple.dock.extra[212]: SOHelperCenter main connection interrupted
    28.04.14 09:56:44,322 com.apple.dock.extra[212]: SOHelperCenter main connection interrupted
    28.04.14 09:56:44,324 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:217)
    28.04.14 09:56:44,324 imagent[189]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:217)
    28.04.14 10:00:56,532 WindowServer[80]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    28.04.14 10:00:57,256 WindowServer[80]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.72 seconds (server forcibly re-enabled them after 1.00 seconds)
    28.04.14 10:00:59,103 com.apple.IconServicesAgent[201]: main Failed to composit image for binding VariantBinding [0x42d] flags: 0x8 binding: FileInfoBinding [0x1f3] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN.
    28.04.14 10:00:59,104 quicklookd[227]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN request size:64 scale: 1
    28.04.14 10:00:59,143 com.apple.IconServicesAgent[201]: main Failed to composit image for binding VariantBinding [0x3df] flags: 0x8 binding: FileInfoBinding [0x2e5] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    28.04.14 10:00:59,144 quicklookd[227]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: pdf, UTI: com.adobe.pdf, fileType: ???? request size:64 scale: 1
    28.04.14 10:00:59,208 com.apple.IconServicesAgent[201]: main Failed to composit image for binding VariantBinding [0x1f5] flags: 0x8 binding: FileInfoBinding [0x42f] - extension: mp3, UTI: public.mp3, fileType: MPG3.
    28.04.14 10:00:59,208 quicklookd[227]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: mp3, UTI: public.mp3, fileType: MPG3 request size:64 scale: 1
    28.04.14 10:01:03,377 mds[34]: (Normal) Volume: volume:0x7f9c5c863000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.S2FNIL
    28.04.14 10:01:17,708 System Events[269]: .sdef warning for part of complex type 'any | number | boolean | date | list | record | text | data' used in suite 'Property List Suite': 'data' is not a valid type name.
    28.04.14 10:01:17,709 System Events[269]: .sdef warning for type 'text | missing value | any' attribute 'uniqueID' of class 'XML element' in suite 'XML Suite': AppleScript ID references may not work for this property because its type is not NSNumber- or NSString-derived.
    28.04.14 10:01:24,175 Safari[219]: ERROR: ForceShrinkPersistentStore_NoLock -delete- We do not have a BLOB or TEXT column type.  Instead, we have 5.

    Anybody?
    Did I something wrong? Too many lines of log? Wrong category? Enlighten me. Thx.

  • AP1231G-A-K9 access points - very slow throughput - Is TKIP the issue?

    I recently setup our small office network using the following setup:
    Cablemodem <--> router <--> 1231AP(role root bridge with wireless clients) <-> 1231AP(role non-root bridge with wireless clients)
    Code on both APs: 12.3(8)JEE
    Office network generally has less than 3 wireless clients connected at any one time to either AP.
    AP's are a mere 50' apart; clients are all less than 30' from either AP; they all show excellent signal and connected at 54mbps signaling rates.
    All is/has been working very well & very stable with the exception of speed. We have business class service from RR, approx 25mbps dl, 2mbps ul. Any hardwired client to the router switch ports are able to download at speeds averaging 23mbps. Any wireless client connected to either AP is never able to exceed download speeds of 5mbps. With no other wireless clients connected except my one test client, I was not able to exceed 5mbps throughput from either AP that I connected to.
    I can confirm that the ethernet connection between the router and root bridge is up at 100mbps-FD and not showing any errors:
    ap#sh interfaces FastEthernet0
    FastEthernet0 is up, line protocol is up
      Hardware is PowerPC405GP Ethernet, address is 0013.60cf.bb29 (bia 0013.60cf.bb29)
      MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
         reliability 255/255, txload 1/255, rxload 1/255
      Encapsulation ARPA, loopback not set
      Full-duplex, 100Mb/s, MII
      ARP type: ARPA, ARP Timeout 04:00:00
      Last input 00:00:00, output 00:00:00, output hang never
      Last clearing of "show interface" counters never
      Input queue: 0/160/0/0 (size/max/drops/flushes); Total output drops: 0
      Queueing strategy: fifo
      Output queue: 0/40 (size/max)
      5 minute input rate 5000 bits/sec, 0 packets/sec
      5 minute output rate 1000 bits/sec, 1 packets/sec
         8054605 packets input, 3141009145 bytes
         Received 46005 broadcasts, 0 runts, 0 giants, 0 throttles
         0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
         0 watchdog
         0 input packets with dribble condition detected
         4076106 packets output, 411952731 bytes, 0 underruns
         0 output errors, 0 collisions, 4 interface resets
         0 babbles, 0 late collision, 0 deferred
         0 lost carrier, 0 no carrier
         0 output buffer failures, 0 output buffers swapped out
    Wandering thru the cli on either AP shows that all wireless clients are indeed connected at 54mbps to their respective AP and the two AP's are connected happily at 54mbps signaling:
    Address           : 0013.1a37.b3e0     Name             : ap
    IP Address        : 192.168.0.120      Interface        : Dot11Radio 0
    Device            : 11g-bridge         Software Version : 12.3
    CCX Version       : NONE
    State             : Assoc              Parent           : Our Parent        
    SSID              : Tsunami
    VLAN              : 0
    Hops to Infra     : 0                  Association Id   : 44
    Tunnel Address    : 0.0.0.0
    Key Mgmt type     : WPA PSK            Encryption       : TKIP
    Current Rate      : 54.0               Capability       : WMM ShortHdr ShortSlot
    Supported Rates   : 1.0 2.0 5.5 6.0 9.0 11.0 12.0 18.0 24.0 36.0 48.0 54.0
    Voice Rates       : disabled
    Signal Strength   : -51  dBm           Connected for    : 75169 seconds
    Signal to Noise   : 26  dB            Activity Timeout : 14 seconds
    Power-save        : Off                Last Activity    : 1 seconds ago
    Apsd DE AC(s)     : NONE
    Packets Input     : 1050695            Packets Output   : 296536   
    Bytes Input       : 474651248          Bytes Output     : 96734573 
    Duplicates Rcvd   : 0                  Data Retries     : 63646    
    Decrypt Failed    : 0                  RTS Retries      : 0        
    MIC Failed        : 0                  MIC Missing      : 0        
    Packets Redirected: 0                  Redirect Filtered: 0
    Here is a config snippet from the AP non-root bridge with wireless clients:
    dot11 ssid Tsunami
       authentication open
       authentication key-management wpa
       guest-mode
       infrastructure-ssid optional
       wpa-psk ascii 7 (snipped)
    bridge irb
    interface Dot11Radio0
    no ip address
    no ip route-cache
    encryption mode ciphers tkip
    ssid Tsunami
    speed basic-1.0 2.0 5.5 6.0 9.0 11.0 12.0 18.0 24.0 36.0 48.0 54.0
    station-role non-root bridge wireless-clients
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 spanning-disabled
    interface FastEthernet0
    no ip address
    no ip route-cache
    duplex auto
    speed auto
    bridge-group 1
    bridge-group 1 spanning-disabled
    interface BVI1
    ip address dhcp client-id FastEthernet0
    no ip route-cache
    bridge 1 route ip
    (The AP root-bridge with wireless clients config is identical to this config with the exception of the station-role and a static IP on the BVI1 interface.)
    Are these very slow thoughput speeds normal of this hardware combination?
    I did much searching/googling and found claims that by eliminating TKIP it almost doubles the actual wireless speeds our clients can obtain. Is there any truth to this?
    Any suggestions or recommendations without changing hardware would be very welcome.
    Thanks in Advance!
    D.
    =============

    Ok, thanks for the explanation - I understand. But even at a 22mbps signaling rate shouldn't I be seeing throughputs greater than 5-5.5mbps especially since this location is literally 100% free of any outside interference and the interfaces definitely show the clients and non-root bridge (when connected) all being at the highest rate of 54mbps? I tried even in the same room, approximately 40' away, total line of sight, no obstructions, between my laptop and the root AP.
    I disconnected the non-root bridge and connected directly to the root bridge during my testing. I was still only able to achieve approx 5.5mbps download. Adding back in the non-root bridge and re-connecting to it I notice slightly lower throughput, approx 5mbps. During testing, my laptop was the only device connected to the network, all other clients were shut off.
    Here are the int stats (I've never reset the counters):
    Root Bridge:
    RATE 1.0 Mbps
    Rx Packets:           2178725 /  49    Tx Packets:                   39 /   0
    Rx Bytes:            335124036 /7595    Tx Bytes:                   4965 /   0
    RTS Retries:               61 /   0    Data Retries:                  5 /   0
    Non-Root-Bridge:
    RATE 1.0 Mbps
    Rx Packets:           2323120 /  50    Tx Packets:                  141 /   0
    Rx Bytes:            336455923 /7595    Tx Bytes:                  17869 /   0
    RTS Retries:                2 /   0    Data Retries:                 56 /   0
    All the other rates, 2-12mbps show single or double digit packet/byte counts until I get to the 36mbps section of each interface:
    ap#sh int Dot11Radio0 stati
            DOT11 Statistics        (Cumulative Total/Last 5 Seconds):
    (snipped for brevity)
    Root Bridge:
    RATE 36.0 Mbps
    Rx Packets:            915395 /   1    Tx Packets:              2345589 /   9
    Rx Bytes:            93420936 /  70    Tx Bytes:             3370791285 / 874
    RTS Retries:                0 /   0    Data Retries:             573981 /   4
    RATE 48.0 Mbps
    Rx Packets:           2163192 /   2    Tx Packets:               216861 /   0
    Rx Bytes:            222455730 / 404    Tx Bytes:              182817967 /   0
    RTS Retries:                0 /   0    Data Retries:             106808 /   0
    RATE 54.0 Mbps
    Rx Packets:            987986 /   0    Tx Packets:               168923 /   0
    Rx Bytes:            190467269 /   0    Tx Bytes:               61665042 /   0
    RTS Retries:                0 /   0    Data Retries:              34424 /   0
    Non-Root Bridge:
    RATE 36.0 Mbps
    Rx Packets:           2368679 /   0    Tx Packets:               965419 /   0
    Rx Bytes:            3396819830 /   0    Tx Bytes:               90880825 /   0
    RTS Retries:                0 /   0    Data Retries:             242686 /   0
    RATE 48.0 Mbps
    Rx Packets:            341870 /   0    Tx Packets:              2156282 /   1
    Rx Bytes:            216497093 /   0    Tx Bytes:              215775536 / 210
    RTS Retries:                0 /   0    Data Retries:             478619 /   0
    RATE 54.0 Mbps
    Rx Packets:           1469926 /  15    Tx Packets:              2529678 /  15
    Rx Bytes:            411722698 /1122    Tx Bytes:             1366306113 /5159
    RTS Retries:                0 /   0    Data Retries:             198532 /   0
    I will try disabling the rates below 12mbps and re-test.
    I would like to try disabling all encryption and try as well.
    Do you know if the AP's will associate if there is zero encryption?

  • Window 8.1 Running very slow

    Dear Team
    I am using window 8.1 Pro & office 2013 ,which is running very slow in system , kindly suggest me what  should i do regarding this problem
    Regards
    Saurabh
    Cont No-9997255621

    I had a similar issue with 8.1 early on, looked at task manager and disk was at 100% most of the time upgraded to a newer Hard drive problem was solved, the first hard drive was a slower and smaller cache drive.

  • When using the camera downloader in Adobe Bridge CS6 with Nikon D5200 we are unable to see previews of the photos and it is very slow to download. The issue occurs under a the users rights, but not under admin level. This is a new issue

    When using the camera downloader in Adobe Bridge CS6 with Nikon D5200 we are unable to see previews of the photos and it is very slow to download. The issue occurs under a the users rights, but not under admin level. This is a new issue.

    Hi Jdentremont,
    Lync client gets user photos by first querying the Address Book Web Query (ABWQ) service on the server, which is exposed through the Distribution List Expansion web service. The client receives
    the image file and then copies it to the user's cache to avoid downloading the image each time it needs to be displayed. The attribute values returned from the query are also stored in the cached Address Book Service entry for the user. The Address Book Service
    deletes all cached images every 24 hours, which means that it can take up to 24 hours for new user images to be updated in the cache on the server.
    To troubleshoot your problem, please follow the steps below:
    1.  Navigate to
     “X:\share\1-WebServices-1\ABfiles\000000000\000000000” folder. (ABS file share)
    You should see some photo files in this folder as the following screenshot.
    2. Delete all the files in this folder.
    3. On test PC, delete local cache files.
    %userprofile%\AppData\Local\Microsoft\Office\15.0\Lync\[email protected]
    4. Sign-in Lync with the test account.
    5. Go back to the ABS file share, check if there is any Photo file in the folder.
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Live Cam Voice on HP DV8305 -- Video image very slow

    I installed Live! Cam Voice on my HP DV8305 succussfully, it works, but the video image is very slow. it needs about 30sec to capture a frame, sometime just stucked. I changed the Display Adaptive Driver, used differrent USB IF, checked my CPU and Memery usage, my HD space, use differrent IM -- skype, MSN, .... Any one can help?

    As further information, the issue seems to be with the exposure setting. When I turn auto exposure off, then set exposure down as low as it will go, the picture darkens, but the frame rate goes up. I don't have this problem with my Logitech QuickCam Orbit -- I'm not sure if the problem is with the firmware, or if the CMOS sensor in the Live! Cam Voice is just smaller.

  • Snow Leopard - very slow restart / reboot and Boot Camp restart fail

    Hi
    After Snow Leopard installation on my Macbook Pro I have a very slow restart. I logged this immediately after install and waited till 10.6.1 was issued and installed but still have the same problems. Hope some one can help.
    For an normal restart or reboot I have the grey screen for about 25 secs and then the blue screen hangs for about 2 mins 30 secs before loading desktop. This is longer than Leopard and clearly not what Snow Leopard is meant to be. I have installed on an iMac as well and can see the new normal fast boot.
    I also have Windows on it's own partition and use in Boot Camp. I have used this successfully under Leopard.
    When I restart from Windows using the Start button and restart, Windows shuts down and then the mac starts up but gets stuck indefinitely on the blue screen. I have waited up to 25 mins then forced a shut down.
    However if I restart from Windows using the Boot Camp icon in the taskbar and choose the restart from MacOSX it shuts down windows and restarts the mac in record time!! about 25 secs grey screen and 25 secs blue screen. I can't get this in normal mac mode! - Bizarre.
    I have run Disk Utility, repaired permissions, run Tech Tool, Onyx, reset PRAM, deleted startup items plists and removed startup items from System Preferences Account.
    I have monitored the Console app for all the startup conditions noted above and will post below. In the logs of the normal mac reboot you can see something to do with Security Agent taking over 2 mins to load. Maybe that is a clue, but I don't understand these messages. Please note that the iStatsmenu app was installed after snow leopard and I had these slow startups before it's installation.
    If anyone technical can understand what the **** is going on here I would really appreciate your feedback.
    Regards
    Eric
    system.log
    Sep 13 18:09:01 localhost com.apple.launchd[1]: * launchd[1] has started up. *
    Sep 13 18:09:08 localhost mDNSResponder[17]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Sep 13 18:09:09 localhost pcscd[28]: Non-smartcard device launched pcscd [Vendor: 0X3F0, Product: 0X5711]
    Sep 13 18:09:17: --- last message repeated 1 time ---
    Sep 13 18:09:17 localhost configd[15]: network configuration changed.
    Sep 13 18:09:17 eric-lawrences-MBP-2 configd[15]: setting hostname to "eric-lawrences-MBP-2.local"
    Sep 13 18:09:17 eric-lawrences-MBP-2 bootlog[60]: BOOT_TIME: 1252829340 0
    Sep 13 18:09:18 eric-lawrences-MBP-2 fseventsd[54]: could not open <</Volumes/ERICGLPC/.fseventsd/fseventsd-uuid>> (No such file or directory)
    Sep 13 18:09:18 eric-lawrences-MBP-2 fseventsd[54]: log dir: /Volumes/ERICGLPC/.fseventsd getting new uuid: 493B2D00-47B9-4820-96FB-EF447F07CCDA
    Sep 13 18:09:20 eric-lawrences-MBP-2 com.apple.usbmuxd[44]: usbmuxd-176 built for iTunesNine on Jul 20 2009 at 13:06:53, running 32 bit
    Sep 13 18:09:20 eric-lawrences-MBP-2 sudo[78]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    Sep 13 18:09:21 eric-lawrences-MBP-2 blued[61]: Apple Bluetooth daemon started
    Sep 13 18:09:21 eric-lawrences-MBP-2 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[50]: Login Window Application Started
    Sep 13 18:09:24 eric-lawrences-MBP-2 loginwindow[50]: Login Window Started Security Agent
    Sep 13 18:09:25 eric-lawrences-MBP-2 iStatLocalDaemon[66]: Waiting for connections on port 5204.
    Sep 13 18:09:27 eric-lawrences-MBP-2 mDNSResponder[17]: SIGHUP: Purge cache
    Sep 13 18:09:31 eric-lawrences-MBP-2 configd[15]: network configuration changed.
    Sep 13 18:11:00 eric-lawrences-MBP-2 loginwindow[50]: Login Window - Returned from Security Agent
    Sep 13 18:11:00 eric-lawrences-MBP-2 loginwindow[50]: USER_PROCESS: 50 console
    Sep 13 18:11:01 eric-lawrences-MBP-2 com.apple.launchd.peruser.501[121] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Sep 13 18:11:10 eric-lawrences-MBP-2 com.apple.launchd.peruser.501[121] (com.apple.Kerberos.renew.plist[137]): Exited with exit code: 1
    Sep 13 18:11:11 eric-lawrences-MBP-2 ServerScanner[134]: Not scanning because node /Active Directory/All Domains is in searchPath
    Sep 13 18:11:27 eric-lawrences-MBP-2 com.apple.WindowServer[85]: Sun Sep 13 18:11:27 eric-lawrences-MBP-2.local WindowServer[85] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Sep 13 18:11:27 eric-lawrences-MBP-2 WindowServer[85]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Sep 13 18:11:29 eric-lawrences-MBP-2 SystemUIServer[126]: MenuCracker 2.0 (/Library/Application Support/iStat local/extras/MenuCracker.menu)\n See http://sourceforge.net/projects/menucracker\n MenuCracker is now loaded. Ready to accept new menu extras. Ignore the failure message that follows.
    Sep 13 18:11:29 eric-lawrences-MBP-2 SystemUIServer[126]: failed to instantiate and get the principal class of bundle: NSBundle </Library/Application Support/iStat local/extras/MenuCracker.menu> (loaded)
    Sep 13 18:11:29 eric-lawrences-MBP-2 SystemUIServer[126]: MenuCracker: Allowing "iStatMenusDateAndTimes".
    Sep 13 18:11:36 eric-lawrences-MBP-2 SystemUIServer[126]: MenuCracker: Allowing "iStatMenusNetwork".
    secure.log
    Sep 13 18:09:08 localhost com.apple.SecurityServer[23]: Session 0x5fbff962 created
    Sep 13 18:09:09 localhost com.apple.SecurityServer[23]: Entering service
    Sep 13 18:09:17 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Succeeded authorizing right 'config.modify.com.apple.CoreRAID.admin' by client '/System/Library/PrivateFrameworks/CoreRAID.framework/Versions/A/Resources/Core RAIDServer' for authorization created by '/System/Library/PrivateFrameworks/CoreRAID.framework/Versions/A/Resources/Core RAIDServer'
    Sep 13 18:09:24 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Session 0x236025 created
    Sep 13 18:09:24 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Session 0x236025 attributes 0x30
    Sep 13 18:09:24 eric-lawrences-MBP-2 loginwindow[50]: Login Window Started Security Agent
    Sep 13 18:09:25 eric-lawrences-MBP-2 SecurityAgent[103]: User info context values set for ericgl
    Sep 13 18:09:26 eric-lawrences-MBP-2 SecurityAgent[103]: Login Window login proceeding
    Sep 13 18:11:00 eric-lawrences-MBP-2 SecurityAgent[103]: Login Window done
    Sep 13 18:11:00 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Succeeded authorizing right 'system.login.console' by client '/System/Library/CoreServices/loginwindow.app' for authorization created by '/System/Library/CoreServices/loginwindow.app'
    Sep 13 18:11:00 eric-lawrences-MBP-2 loginwindow[50]: Login Window - Returned from Security Agent
    Sep 13 18:11:01 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Succeeded authorizing right 'system.login.done' by client '/System/Library/CoreServices/loginwindow.app' for authorization created by '/System/Library/CoreServices/loginwindow.app'
    Sep 13 18:11:09 eric-lawrences-MBP-2 /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[145]: Starting up.
    Sep 13 18:11:14 eric-lawrences-MBP-2 com.apple.SecurityServer[23]: Succeeded authorizing right 'system.print.admin' by client '/System/Library/Printers/Libraries/makequeuesagent' for authorization created by '/System/Library/Printers/Libraries/makequeuesagent'
    Sep 13 18:11:44: --- last message repeated 1 time ---
    all messages
    13/09/09 6:09:07 PM kernel npvhash=4095
    13/09/09 6:09:07 PM kernel PAE enabled
    13/09/09 6:09:07 PM kernel 64 bit mode enabled
    13/09/09 6:09:07 PM kernel Darwin Kernel Version 10.0.0: Fri Jul 31 22:47:34 PDT 2009; root:xnu-1456.1.25~1/RELEASE_I386
    13/09/09 6:09:07 PM kernel vmpagebootstrap: 508922 free pages and 15366 wired pages
    13/09/09 6:09:07 PM kernel standard timeslicing quantum is 10000 us
    13/09/09 6:09:07 PM kernel migtable_maxdispl = 73
    13/09/09 6:09:07 PM kernel AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    13/09/09 6:09:07 PM kernel AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    13/09/09 6:09:07 PM kernel calling mpopolicyinit for TMSafetyNet
    13/09/09 6:09:07 PM kernel Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    13/09/09 6:09:07 PM kernel calling mpopolicyinit for Quarantine
    13/09/09 6:09:07 PM kernel Security policy loaded: Quarantine policy (Quarantine)
    13/09/09 6:09:07 PM kernel calling mpopolicyinit for Sandbox
    13/09/09 6:09:07 PM kernel Security policy loaded: Seatbelt sandbox policy (Sandbox)
    13/09/09 6:09:07 PM kernel Copyright (c) 1982, 1986, 1989, 1991, 1993
    13/09/09 6:09:07 PM kernel The Regents of the University of California. All rights reserved.
    13/09/09 6:09:07 PM kernel MAC Framework successfully initialized
    13/09/09 6:09:07 PM kernel using 10485 buffer headers and 4096 cluster IO buffer headers
    13/09/09 6:09:07 PM kernel IOAPIC: Version 0x20 Vectors 64:87
    13/09/09 6:09:07 PM kernel ACPI: System State [S0 S3 S4 S5] (S3)
    13/09/09 6:09:07 PM kernel mbinit: done (64 MB memory set for mbuf pool)
    13/09/09 6:09:07 PM kernel rooting via boot-uuid from /chosen: DA111E02-C1F5-3C6F-AB90-AD27A5B932BE
    13/09/09 6:09:07 PM kernel Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    13/09/09 6:09:07 PM kernel com.apple.AppleFSCompressionTypeZlib load succeeded
    13/09/09 6:09:07 PM kernel AppleIntelCPUPowerManagementClient: ready
    13/09/09 6:09:07 PM kernel FireWire (OHCI) TI ID 8025 built-in now active, GUID 0017f2fffe7f970e; max speed s800.
    13/09/09 6:09:07 PM kernel Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT2 @2/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/FUJITSU MHW2120BH Media/IOGUIDPartitionScheme/Merged_Untitled@2
    13/09/09 6:09:07 PM kernel BSD root: disk0s2, major 14, minor 2
    13/09/09 6:09:07 PM kernel USBMSC Identifier (non-unique): MY66AB92R404J7 0x3f0 0x5711 0x100
    13/09/09 6:09:07 PM kernel USBMSC Identifier (non-unique): 01974248FFFF 0x59f 0x951 0x0
    13/09/09 6:09:07 PM kernel [Bluetooth::CSRHIDTransition] switchToHCIMode (legacy)
    13/09/09 6:09:07 PM kernel [Bluetooth::CSRHIDTransition] transition complete.
    13/09/09 6:09:07 PM kernel CSRUSBBluetoothHCIController::setupHardware super returned 0
    13/09/09 6:09:07 PM kernel AppleIntelCPUPowerManagement: initialization complete
    13/09/09 6:09:07 PM kernel AppleYukon2: Marvell Yukon Gigabit Adapter 88E8053 Singleport Copper SA
    13/09/09 6:09:07 PM kernel AppleYukon2: RxRingSize <= 1024, TxRingSize 256, RXMAXLE 1024, TXMAXLE 768, STMAXLE 3328
    13/09/09 6:09:01 PM com.apple.launchd[1] * launchd[1] has started up. *
    13/09/09 6:09:08 PM kernel yukon: Ethernet address 00:16:cb:a1:8f:b7
    13/09/09 6:09:08 PM kernel systemShutdown false
    13/09/09 6:09:08 PM mDNSResponder[17] mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    13/09/09 6:09:08 PM com.apple.SecurityServer[23] Session 0x5fbff962 created
    13/09/09 6:09:09 PM com.apple.SecurityServer[23] Entering service
    13/09/09 6:09:10 PM kernel Previous Shutdown Cause: 5
    13/09/09 6:09:10 PM kernel DSMOS has arrived
    13/09/09 6:09:10 PM kernel Atheros: mac 12.2 phy 8.1 radio 12.0
    13/09/09 6:09:17 PM configd[15] network configuration changed.
    13/09/09 6:09:17 PM configd[15] setting hostname to "eric-lawrences-MBP-2.local"
    13/09/09 6:09:17 PM kernel AirPort_AthrFusion: Ethernet address 00:17:f2:e6:a8:d1
    13/09/09 6:09:17 PM kernel IO80211Controller::dataLinkLayerAttachComplete(): adding AppleEFINVRAM notification
    13/09/09 6:09:17 PM bootlog[60] BOOT_TIME: 1252829340 0
    13/09/09 6:09:18 PM fseventsd[54] could not open <</Volumes/ERICGLPC/.fseventsd/fseventsd-uuid>> (No such file or directory)
    13/09/09 6:09:18 PM fseventsd[54] log dir: /Volumes/ERICGLPC/.fseventsd getting new uuid: 493B2D00-47B9-4820-96FB-EF447F07CCDA
    13/09/09 6:09:19 PM kernel AirPort: Link Down on en1. Reason 1 (Unspecified).
    13/09/09 6:09:19 PM kernel AirPort: Link Up on en1
    13/09/09 6:09:20 PM kernel AirPort: RSN handshake complete on en1
    13/09/09 6:09:20 PM com.apple.usbmuxd[44] usbmuxd-176 built for iTunesNine on Jul 20 2009 at 13:06:53, running 32 bit
    13/09/09 6:09:20 PM sudo[78] root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    13/09/09 6:09:21 PM blued[61] Apple Bluetooth daemon started
    13/09/09 6:09:21 PM /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[50] Login Window Application Started
    13/09/09 6:09:22 PM kernel Warning - com.apple.driver.InternalModemSupport declares no kernel dependencies; using com.apple.kernel.6.0.
    13/09/09 6:09:23 PM kernel IOBluetoothBNEPDriver: Ethernet address 00:17:f2:9f:b7:a5
    13/09/09 6:09:24 PM com.apple.SecurityServer[23] Session 0x236025 created
    13/09/09 6:09:24 PM com.apple.SecurityServer[23] Session 0x236025 attributes 0x30
    13/09/09 6:09:24 PM loginwindow[50] Login Window Started Security Agent
    13/09/09 6:09:25 PM Firewall[100] krb5kdc is listening from :::88 proto=6
    13/09/09 6:09:25 PM Firewall[100] krb5kdc is listening from 0.0.0.0:88 proto=6
    13/09/09 6:09:25 PM Firewall[100] iStatLocalDaemon is listening from 0.0.0.0:5204 proto=6
    13/09/09 6:09:25 PM Firewall[100] iStatLocalDaemon is listening from ::ffff:0.0.0.0:5204 proto=6
    13/09/09 6:09:25 PM SecurityAgent[103] User info context values set for ericgl
    13/09/09 6:09:26 PM SecurityAgent[103] Login Window login proceeding
    13/09/09 6:09:27 PM mDNSResponder[17] SIGHUP: Purge cache
    13/09/09 6:09:31 PM Firewall[100] krb5kdc is listening from :::88 proto=6
    13/09/09 6:09:31 PM Firewall[100] krb5kdc is listening from 0.0.0.0:88 proto=6
    13/09/09 6:09:31 PM configd[15] network configuration changed.
    13/09/09 6:09:35 PM Firewall[100] krb5kdc is listening from :::88 proto=6
    13/09/09 6:09:35 PM Firewall[100] krb5kdc is listening from 0.0.0.0:88 proto=6
    13/09/09 6:11:00 PM SecurityAgent[103] Login Window done
    13/09/09 6:11:00 PM loginwindow[50] Login Window - Returned from Security Agent
    13/09/09 6:11:00 PM loginwindow[50] USER_PROCESS: 50 console
    13/09/09 6:11:01 PM com.apple.launchd.peruser.501[121] (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    13/09/09 6:11:10 PM com.apple.launchd.peruser.501[121] (com.apple.Kerberos.renew.plist[137]) Exited with exit code: 1
    13/09/09 6:11:11 PM ServerScanner[134] Not scanning because node /Active Directory/All Domains is in searchPath
    13/09/09 6:11:27 PM com.apple.WindowServer[85] Sun Sep 13 18:11:27 eric-lawrences-MBP-2.local WindowServer[85] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13/09/09 6:11:27 PM WindowServer[85] kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    13/09/09 6:11:29 PM SystemUIServer[126] MenuCracker 2.0 (/Library/Application Support/iStat local/extras/MenuCracker.menu)
    See http://sourceforge.net/projects/menucracker
    MenuCracker is now loaded. Ready to accept new menu extras. Ignore the failure message that follows.
    13/09/09 6:11:29 PM SystemUIServer[126] failed to instantiate and get the principal class of bundle: NSBundle </Library/Application Support/iStat local/extras/MenuCracker.menu> (loaded)
    13/09/09 6:11:29 PM SystemUIServer[126] MenuCracker: Allowing "iStatMenusDateAndTimes".
    13/09/09 6:11:36 PM SystemUIServer[126] MenuCracker: Allowing "iStatMenusNetwork".
    failed reboot from windows - note date and time wrong
    Sep 13 19:00:10 eric-lawrences-MBP-2 sudo[200]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    Sep 13 19:00:10 eric-lawrences-MBP-2 WindowServer[85]: bootstraplookip failed: Unknown service name
    Sep 14 05:26:46 localhost com.apple.launchd[1]: * launchd[1] has started up. *
    Sep 14 05:26:53 localhost mDNSResponder[18]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Sep 14 05:26:54 localhost pcscd[28]: Non-smartcard device launched pcscd [Vendor: 0X3F0, Product: 0X5711]
    Sep 14 05:27:02: --- last message repeated 1 time ---
    Sep 14 05:27:02 localhost configd[14]: network configuration changed.
    Sep 14 05:27:02 eric-lawrences-MBP-2 configd[14]: setting hostname to "eric-lawrences-MBP-2.local"
    Sep 14 05:27:02 eric-lawrences-MBP-2 bootlog[62]: BOOT_TIME: 1252870005 0
    Sep 14 05:27:03 eric-lawrences-MBP-2 fseventsd[56]: checkvol_last_modtime:XXX failed to get mount time (25; &mount_time == 0x1000b5358)
    Sep 14 05:27:03 eric-lawrences-MBP-2 fseventsd[56]: log dir: /Volumes/ERICGLPC/.fseventsd getting new uuid: 1C45E673-8EEA-4ACF-B0F2-BAE1FB843D2B
    Sep 14 05:27:05 eric-lawrences-MBP-2 com.apple.usbmuxd[46]: usbmuxd-176 built for iTunesNine on Jul 20 2009 at 13:06:53, running 32 bit
    Sep 14 05:27:05 eric-lawrences-MBP-2 sudo[82]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    Sep 14 05:27:06 eric-lawrences-MBP-2 blued[63]: Apple Bluetooth daemon started
    Sep 14 05:27:06 eric-lawrences-MBP-2 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[52]: Login Window Application Started
    Sep 14 05:27:11 eric-lawrences-MBP-2 iStatLocalDaemon[68]: Waiting for connections on port 5204.
    Sep 14 05:27:11 eric-lawrences-MBP-2 configd[14]: network configuration changed.
    Sep 14 05:27:12 eric-lawrences-MBP-2 mDNSResponder[18]: SIGHUP: Purge cache
    Sep 14 05:27:12 eric-lawrences-MBP-2 loginwindow[52]: Login Window Started Security Agent
    Sep 13 19:33:18 localhost com.apple.launchd[1]: * launchd[1] has started up. *
    Sep 13 19:33:25 localhost DirectoryService[11]: Improper shutdown detected
    Sep 13 19:33:39 localhost mDNSResponder[17]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    fast reboot from boot camp icon in Windows - note date and time wrong
    Sep 14 05:46:42 localhost com.apple.launchd[1]: * launchd[1] has started up. *
    Sep 14 05:46:53 localhost mDNSResponder[18]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Sep 14 05:46:53 localhost pcscd[31]: Non-smartcard device launched pcscd [Vendor: 0X3F0, Product: 0X5711]
    Sep 14 05:46:54: --- last message repeated 1 time ---
    Sep 14 05:46:54 localhost configd[15]: network configuration changed.
    Sep 14 05:46:54 eric-lawrences-MBP-2 configd[15]: setting hostname to "eric-lawrences-MBP-2.local"
    Sep 14 05:46:56 eric-lawrences-MBP-2 configd[15]: network configuration changed.
    Sep 14 05:46:57 eric-lawrences-MBP-2 bootlog[65]: BOOT_TIME: 1252871201 0
    Sep 14 05:46:58 eric-lawrences-MBP-2 configd[15]: network configuration changed.
    Sep 14 05:47:01 eric-lawrences-MBP-2 fseventsd[59]: could not open <</Volumes/ERICGLPC/.fseventsd/fseventsd-uuid>> (No such file or directory)
    Sep 14 05:47:01 eric-lawrences-MBP-2 fseventsd[59]: log dir: /Volumes/ERICGLPC/.fseventsd getting new uuid: CA5F549C-7E51-4D0B-BEB6-7B91A7544AE2
    Sep 14 05:47:01 eric-lawrences-MBP-2 sudo[82]: root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    Sep 14 05:47:03 eric-lawrences-MBP-2 com.apple.usbmuxd[49]: usbmuxd-176 built for iTunesNine on Jul 20 2009 at 13:06:53, running 32 bit
    Sep 14 05:47:03 eric-lawrences-MBP-2 blued[66]: Apple Bluetooth daemon started
    Sep 14 05:47:04 eric-lawrences-MBP-2 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[55]: Login Window Application Started
    Sep 14 05:47:09 eric-lawrences-MBP-2 iStatLocalDaemon[71]: Waiting for connections on port 5204.
    Sep 14 05:47:09 eric-lawrences-MBP-2 mDNSResponder[18]: SIGHUP: Purge cache
    Sep 14 05:47:10 eric-lawrences-MBP-2 configd[15]: network configuration changed.
    Sep 14 05:47:10 eric-lawrences-MBP-2 loginwindow[55]: Login Window Started Security Agent
    Sep 14 05:47:11 eric-lawrences-MBP-2 loginwindow[55]: Login Window - Returned from Security Agent
    Sep 14 05:47:11 eric-lawrences-MBP-2 loginwindow[55]: USER_PROCESS: 55 console
    Sep 14 05:47:11 eric-lawrences-MBP-2 com.apple.launchd.peruser.501[109] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Sep 13 19:47:17 eric-lawrences-MBP-2 com.apple.launchd.peruser.501[109] (com.apple.AddressBook.abd): The following job tried to hijack the service "com.apple.AddressBook.abd" from this job: [0x0-0x5005].com.apple.AddressBook.abd
    Sep 13 19:47:24 eric-lawrences-MBP-2 com.apple.launchd.peruser.501[109] (com.apple.Kerberos.renew.plist[131]): Exited with exit code: 1
    Sep 13 19:47:24 eric-lawrences-MBP-2 ServerScanner[128]: Not scanning because node /Active Directory/All Domains is in searchPath
    Sep 13 19:47:38 eric-lawrences-MBP-2 SystemUIServer[114]: MenuCracker 2.0 (/Library/Application Support/iStat local/extras/MenuCracker.menu)\n See http://sourceforge.net/projects/menucracker\n MenuCracker is now loaded. Ready to accept new menu extras. Ignore the failure message that follows.
    Sep 13 19:47:38 eric-lawrences-MBP-2 SystemUIServer[114]: failed to instantiate and get the principal class of bundle: NSBundle </Library/Application Support/iStat local/extras/MenuCracker.menu> (loaded)
    Sep 13 19:48:03 eric-lawrences-MBP-2 WindowServer[85]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Sep 13 19:48:03 eric-lawrences-MBP-2 com.apple.WindowServer[85]: Sun Sep 13 19:48:03 eric-lawrences-MBP-2.local WindowServer[85] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.

    Hi guys
    Thanks for your contributions. I have made little progress on this issue since posting.
    Just as added info, I did a re-install of Snow leopard from install DVD and upgrade again to 10.6.1 and no change to the startup behaviours. Same pattern as before, although the first restart was fast and probably how it is meant to be, then the slow ones reappeared.
    I also had a thought that somehow it may be related to the nominated startup disk. There were posts on other boards about similar issues with Leopard where the hanging start was found to be related to the computer not knowing which startup disk to use. I thought maybe as it works when using the boot camp icon from Windows but not the restart button, it may be related, but in OSX and Windows both are set to startup in OSX on HD. So no further joy.
    Maybe someone else will come along who can understand the Console logs. Why does the loginwindow and Security Agent take so long?
    Do you guys have any clues from your Console system logs? Does yours hang on loginwindow?
    The fact that there are so few people with the same problem suggests to me that there is a third party device/preference/ hidden file somewhere that is having an effect and it's not an Apple issue.
    I am getting close to wiping the hard drive and starting again....but live in hope.
    Cheers

Maybe you are looking for

  • How to compile the Java classes generated in JAXB

    I am using Windows 2000 Operating System. I found a xjc batch file on the sun's java forum. I used that to generate classes from XML. After generating the classes I could not compile the classes each depends on other AND THEY REQUIRE BOTH CLASS FILES

  • Stop and restart screen sharing

    When I call stop() on the ScreenSharePublisher it seems like it's not stopped in the right way or something. If I try to start it again I get this trace: ERROR:The Connection wasn't closed properly by abrupt killing of sharing instance. You need to c

  • 920 music store download not working after updates...

    Can somebody please help me. i already followed the instructions on nokia site. i also deleted my account then recreated.

  • Problem running a client

    Hi, we are having difficulties accessing EJBs that are deployed to oracle 9ias We get [Root exception is org.omg.CORBA.UNKNOWN: minor code: 16 completed: Maybe]javax.naming.NamingException: Unknown reasons java.lang.Object oracle.aurora.jndi.sess_iio

  • Can not import PSD file (comes in as Quicktime Picture)

    I've created a PSD for a layered menu in DVD Studio... but I can not get it to come into DVD Studio as layered PSD... comes in as QuickTime Picture. PhotoShop - I am using PhotoShop v8.0 The image size is 720x486, 72 dpi. I have 18 layers, and have R