BI publisher returning data very slowly

Hi BI gurus,
I have quite afew reports in BI publisher that pulled a huge volume of data ( transactional data from OLTP systems). My clients want these data in excel format. Now the problem I am facing right now is that, when the report query is ran, it spools huge dump files in the server that crashes the server :(.
So what should I do to tackle this.
1. Data has approx 50,000 + rows
2. I am using both the sql query format and the data template format.
Is this the problem of my query or is there any limit on the amount of data that BIP can pull, is there anyways i can pull the data faster changing some modes, or enabling the multithreading or something ??
Well I have exhuasted all avenues and I am going nuts.....
So would Appreciate any help i get......
thanks
Suvha
Edited by: 857501 on May 9, 2011 5:37 PM

When your query takes too long ...
HOW TO: Post a SQL statement tuning request - template posting

Similar Messages

  • Query is returning data very slowly

    Hi,
    Please advise for the solution. Thanks in advance.
    The problem is that the queries returning data very very slow.
    Let me explain further, There is one major table that is storing master data (Main Transaction) and its detail data (Child Records) and further detail of the detail data (Child Records of the Child Records) and so on sometimes upto 5 or 6 levels in the same ONE big table called "TRANSACTIONS_TABLE" table.
    Therefore, mostly my quries are self joins like
    SELECT /*+ FIRST_ROWS(10) */ JUDG.ID JUDG_ID,
    SE.ID SE_ID,
    CS.ID CS_ID,
    CS.CS_DATE,
    CS.CS_J_ID,
    CS.CT_ID,
    C.ID C_ID,
    C.TRANSACTIOIN_TYPE_ID C_TRANSACTIOIN_TYPE_ID,
    C.TRANSACTIOIN_NO,
    C.TRANSACTIOIN_YEAR,
    C.TRANSACTIOIN_DATE,
    C.SUBJECT,
    C.UNIT_ID,
    (SELECT U.NAME_N FROM ORG U WHERE U.ID = C.UNIT_ID) PRC_UNIT_DESC,
    C.E4 NO_AL_QAZYA_ID,
    SELECT T.DESCRIPTION
    FROM prc_charge_categories T
    WHERE T.ID = TO_NUMBER(C.E4)
    ) NO_AL_QAZYA,
    C.CREATED_BY
    FROM TRANSACTIOINSACTION_TABLE C,TRANSACTIOINSACTION_TABLE SE, TRANSACTIOINSACTION_TABLE JUDG, DEF_TABLE CS
    WHERE C.ID = SE.PARENT_ID
    AND SE.ID = J.PARENT_ID
    AND SE.TRANSACTIOIN_TYPE_ID = 63755
    AND J.TRANSACTIOIN_TYPE_ID = 63424
    AND J.E1 = '3'
    AND CS.ID = TO_NUMBER(SE.E9);
    23 rows selected in 48.672 seconds
    I run the below query on this table
    select transaction_type_id,count(*) total_rows
    from transactions_table
    group by transaction_type_id
    order by 2 desc;
    transact total_rows
    114893     1192544
    63755     774132
    62270     682361
    63424     633046
    65220     515605
    67728     457831
    84928     378754
    58806     296351
    64240     277624
    65244     275267
    67224     152061
    112610     123796
    67434     116100
    65824     88787
    61369     76196
    62269     74821
    61740     67085
    56448     56185
    65703     55336
    99601     54552
    64423     49368
    61478     43187
    101689     39372
    61652     38196
    67136     27713
    61364     25790
    97961     23610
    65380     19811
    56353     18910
    65618     18309
    57041     16808
    98137     15837
    101794     14618
    100127     14118
    98916     13691
    112735     13082
    117349     11930
    69334     11462
    99064     10291
    67811     10151
    69402     9142
    112753     8243
    95950     7390
    68902     6900
    119474     6693
    65659     5972
    68360     5862
    66198     5690
    118340     5161
    62012     4490
    71088     4050
    112040     3864
    57315     3047
    112031     2957
    57289     2891
    112039     2523
    112038     2446
    114254     2269
    55550     2242
    119926     2225
    69650     2135
    65033     1343
    119078     811
    69788     780
    115133     774
    116390     578
    114968     549
    65575     521
    64290     412
    120026     403
    67388     359
    116340     249
    66847     228
    98524     144
    68214     138
    120459     105
    118777     92
    79395     87
    116039     79
    65768     67
    118376     58
    120906     57
    55848     52
    58983     50
    61195     48
    68134     29
    66645     24
    55992     23
    69037     21
    70379     21
    56674     20
    112019     20
    68911     18
    70206     17
    66028     16
    114335     11
    69555     7
    55849     6
    57122     6
    65034     5
    60496     5
    57273     4
    56286     4
    55563     4
    56972     3
    55542     3
    70654     3
    55999     3
    56721     3
    57138     2
    117802     2
    57005     2
    61058     2
    116351     2
    57096     2
    57075     2
    95136     1
    115210     1
    117601     1
    68298     1
    56939     1
    65935     1
    61739     1
    65611     1
    71249     1
    57010     1
    95024     1
    68406     1
    57097     1
    122206     1
    57062     1
    132 rows selected in 5.266 seconds
    Immediately, I again run this same query
    132 rows selected in 5.079 seconds
    then again
    132 rows selected in 2.672 seconds
    then again
    132 rows selected in 4.438 seconds
    then again
    132 rows selected in 2.684 seconds
    The structure of this table is
    CREATE TABLE transactions_table
    ID NUMBER NOT NULL,
    PARENT_ID NUMBER,
    TRANSACTION_TYPE_ID NUMBER NOT NULL,
    TRANSACTION_YEAR NUMBER(4),
    TRANSACTION_NO NUMBER(8),
    TRANSACTION_DATE DATE NOT NULL,
    C1 VARCHAR2(255 BYTE),
    C2 VARCHAR2(255 BYTE),
    C3 VARCHAR2(255 BYTE),
    LONG_C1 VARCHAR2(4000 BYTE),
    LONG_C2 VARCHAR2(4000 BYTE),
    LONG_C3 VARCHAR2(4000 BYTE)
    TABLESPACE TS16K_DATA
    PCTUSED 0
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 3144M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    LOGGING
    NOCOMPRESS
    NOCACHE
    NOPARALLEL
    MONITORING;
    CREATE UNIQUE INDEX MOJ.EVN_PK_I ON transactions_table
    (ID)
    NOLOGGING
    TABLESPACE TS16K_INDX
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 168M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    NOPARALLEL;
    CREATE INDEX EVN_EVN_TYP_I ON transactions_table
    (TRANSACTION_TYPE_ID)
    NOLOGGING
    TABLESPACE TS16K_INDX
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE (
    INITIAL 136M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    NOPARALLEL;
    There are 150 COLUMNS in this table and out of which there are 33 columns data type is VARCHAR2(4000 BYTE) and others NUMBER datatype and some are VARCHAR2(255 BYTE)
    As from above, the index on TRANSACTION_TYPE_ID is not unique and not bit map but a normal index.
    Further there are no partitions for this table.
    Many of the database views based on this table return results after several minutes.
    * Around 5000 to 8000 rows are entered in this table on daily basis and is it feasible to create partitions and modify indexes to bit map and vice versa where ever required because already this table is having 54 Indexes including composite ones.
    Please help and advise.

    When your query takes too long ...
    HOW TO: Post a SQL statement tuning request - template posting

  • Published file loads very slowly

    The total file size for this project is about 35 MB but everything loads slowly when published. Buttons react slowly and slides start with a white or grey backgrond and slowly transitions to the real slide background. This was developed in Captivate 5 and project size is 1024 by 768. Any pointers?

    Hello oluolu,
    Here are few steps that you can try to resolve your issue
    Try to create a Test project and use these following steps
    STEP 1>  Go to Edit> Prefernces> Project (left side)>Sef Size and Quality> Select the same settings mentioned in the screenshot below
    STEP 2>If your Projhect has widgets, animations etc, you can check these optionhs as well
    STEP 3> In the slide properties, set Quality to Low
    STEP4 > As mentioned by Lilybiri above, try to clear cache as well
    Also Make Sure that you are using the latest version opf Flash player, if not you can update to latest from here
    http://get.adobe.com/flashplayer/?promoid=BUIGP
    Hope it helps!!!
    Thank you
    Vishal

  • Sqlloader loads data very slowly

    I've got simple table in async. multimaster environment (Oracle 9i on Linux RH AS2.1) and nonreplicated table with the same structure. When i load data with sqlloader into nonreplicated table it takes 30sec and the same load into replicated table lasts 15 minutes. When i queried v$system_event, i've seen that
    knpc_anq_AwaitNonemptyQueue event (with
    total_waits=1170
    time_waited=6785856
    average_wait=5800 ) is leading in average_wait.
    It looks like repl.triggers and def.queue making the process realy slow.
    How can i speed up data load? Maybe some special replication events ought to be monitored?
    Thanks in advance!

    Natalia if u find the solution of your problem than mail me at [email protected]
    Secondly with sqlloader while i insert the data into the table it does'nt move to materialized view log and i m unable to go for fast refresh .....Do you hv any way to push the data into materialized view log so i can go for fast refresh .

  • Thunderbird runs very slowly after latest round of 11 updates from Microsoft, restoring computer to earlier date fixes problem.

    Thunderbird version 24.4.0
    Windows 7 Professional Service Pack 1
    Microsoft uploaded 11 new updates ( 7 updates for Windows 7 and 4 for Office 2010) on 9 April 2014. After automatically installing updates on my computer Thunderbird runs very slowly, i.e., every time anything is selected, Thunderbird give error "Thunderbird fails to response" which takes about 1 minute to clear. I restored computer to earlier date that did not have these updates and Thunderbird works OK.
    Also updates changed default search engine in Firefox 28.0 from Google to Bing ! ! !
    Marti Sarigul-Klijn, Ph.D.

    Appears that you are right.
    McAfee was running a scan continuously. I uninstalled it. Then ran all of the Microsoft updates. Finally I reinstalled McAfee and turned off real time scanning of e-mail.
    Thunderbird appears to be working OK now.
    Thanks for your help.
    Marti

  • When I add a while loop to the vi "niScope EX Multi-Device Configured Acquisition (TClk)" to acquire data for multiple times, it works but it runs very slowly.

    Because I want to acquire the similar data for multiple times and then take an average to increase SNR, I add a while loop to the vi "niScope EX Multi-Device Configured Acquisition (TClk)".  It works but it runs very slowly (about 1 sec for each iteration). I think I had put the while loop at a wrong position, which makes the vi run from the very beginning in each iteration. So I really want to know where should I put the while loop to improve the speed? I have attached all the vi and subvi.
    Thanks very much.
    Attachments:
    Multi-Device External Clocking (TClk).vi ‏1166 KB
    avgWfm.vi ‏15 KB

    Dear Zainykhas,
    Thank you for posting this to the discussion forums and for uploading some sample code.  I took a lok at the issue you have been having, and it is unclear to me as to why you have placed two for loops around the original while loop.  My understanding is that you want to use the original Sample.vi and want to execute this N times where N is the Max Freq divided by Interval so that you can scan for a range of frequencies.
    Why not just put Sample.vi around one for loop and use the increment counter scaled by the interval to count up towards Max Freq and insert the desired Frequency into the cluster using Bundle By Name?
    Kind Regards,
    Robert Ward
    Applications Engineer, NI
    Attachments:
    Modified - RW.vi ‏48 KB

  • Report is generating very slowly

    Hi all, my crystal report is generating very very slowly my report is having many sub reports inside it as well,
    see the time difference in the following lines that comes out while generating the report from my Application, please comment how can i solve this
    03/26/2014 06:03:47 PM ... Process({User I/F} Priority: 4, user interface)
    a RDCReport is getting OLE property "SQLQueryString" with arguments: ()
    03/26/2014 06:07:38 PM ... Process({User I/F} Priority: 4, user interface)
    Get OLE Property "SQLQueryString" returned: SELECT "TABLE"."COLUMNS" .................... long long query here
    No functions or cursors have applied in crystal report but still it is taking too long to generate

    hi Muhammad,
    what happens if you run the report in the report designer, i.e. crw32?
    i would suggest looking at your subreports as running a lot of details level subs in a report is going to be slow. if you've got subs on the details level, one query will be run per subreport on each record, which will eat up a lot of processing.
    sometimes subreports can be eliminated as well...for example, if your subreport contains the same tables as your main report, you can get rid of a subreport and substitute it for a cross-tab if you're only showing data in tabular format.
    try suppressing all of your subreports as well, and then un-suppress them one at a time, refreshing the report each time a subreport is unsuppressed. perhaps there is one particular subreport that is a problem.
    if you only find that your subreport is slow in your application, please post a new discussion to the crystal reports for visual studio forum.
    -jamie

  • Computer running very slowly

    Computer has been running very slowly for some time and I have decided to try and find out what is wrong.
    I have several folders on my desktop, some of which contain many jpegs.  I know I they are causing part of the problem.  Can I just put all the folders into one folder and move that new folder to the documents folder in my home folder? 
    I have never emptied my downloads folder.  Does that play a role in my computer being slow?
    I don't know how much of these are relevant but maybe?
    Computer came with 10.6 and has been updated to Yosemite.
    I have a bootable clone on my external HD which I use as a backup.  Today, for the first time, I can't boot from the external.
    I am the only user of the machine, but I do have another account.  Last night I tried to switch users and it just wouldn't switch.  I waited over 5 minutes.
    I have emptied all trash (desktop, iTunes, iPhoto) and have reset Safari (clear history and website data).
    I looked at activity monitor and though I'm not sure what I'm looking I copied these numbers:
    for the CPU %used was System .71 (and that was in red), user .91 and idle 98.2
    for the memory I have 2.0G memory and am using 1.94
    for disk activity data read/sec is 758 kb and data written /sec 12.0 KB (in red)
    Thanks for any help/advoce.
    Dave

    Linc
    Thank you for offering to help.
    The computer is very slow to boot up.  So, here is the log from a second start-up this morning:
    2/28/15 10:35:07.713 AM warmd[31]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    2/28/15 10:35:07.713 AM warmd[31]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    2/28/15 10:35:07.968 AM warmd[31]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    2/28/15 10:35:08.044 AM warmd[31]: [_bootcachectl_playlist_for_file:3197] Unable to generate playlist for file: 2 No such file or directory
    2/28/15 10:35:09.724 AM CoreServicesUIAgent[264]: unexpected message <OS_xpc_error: <error: 0x7fff76885c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff76885f70> { length = 18, contents = "Connection invalid" }
    }>
    2/28/15 10:35:09.733 AM com.apple.xpc.launchd[1]: (com.apple.WebKit.Networking.E0C1684B-7B49-416C-B38D-BC901F02D0E9[570]) Service exited with abnormal code: 1
    2/28/15 10:35:10.465 AM CoreServicesUIAgent[264]: unexpected message <OS_xpc_error: <error: 0x7fff76885c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff76885f70> { length = 18, contents = "Connection invalid" }
    }>
    2/28/15 10:35:10.472 AM com.apple.xpc.launchd[1]: (com.apple.WebKit.WebContent.5584D0F5-13CC-4610-8AB2-0E6D991C388D[365]) Service exited with abnormal code: 1
    2/28/15 10:35:10.606 AM com.apple.xpc.launchd[1]: (com.apple.WebKit.WebContent.9C6CBD30-1851-4A30-9FFE-2F0219F0CD0D[290]) Service exited with abnormal code: 1
    2/28/15 10:35:10.777 AM loginwindow[64]: ERROR | __34-[SessionLogoutManager quitFinder]_block_invoke | Finder is killable, calling SMJobRemove
    2/28/15 10:35:10.785 AM WindowServer[112]: CGXGetConnectionProperty: Invalid connection 42755
    2/28/15 10:35:10.785 AM WindowServer[112]: CGXGetConnectionProperty: Invalid connection 42755
    2/28/15 10:35:10.785 AM WindowServer[112]: CGXGetConnectionProperty: Invalid connection 42755
    2/28/15 10:35:10.785 AM WindowServer[112]: CGXGetConnectionProperty: Invalid connection 42755
    2/28/15 10:35:10.785 AM WindowServer[112]: CGXGetConnectionProperty: Invalid connection 42755
    2/28/15 10:35:10.786 AM WindowServer[112]: CGXGetConnectionProperty: Invalid connection 42755
    2/28/15 10:35:10.802 AM loginwindow[64]: Login Window point of no return
    2/28/15 10:35:10.838 AM CoreServicesUIAgent[264]: unexpected message <OS_xpc_error: <error: 0x7fff76885c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff76885f70> { length = 18, contents = "Connection invalid" }
    }>
    2/28/15 10:35:10.844 AM CoreServicesUIAgent[264]: unexpected message <OS_xpc_error: <error: 0x7fff76885c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff76885f70> { length = 18, contents = "Connection invalid" }
    }>
    2/28/15 10:35:10.846 AM com.apple.xpc.launchd[1]: (com.apple.lateragent[284]) Service exited due to signal: Killed: 9
    2/28/15 10:35:10.881 AM sharingd[202]: 10:35:10.881 : SIGTERM received, shutting down.
    2/28/15 10:35:10.858 AM com.apple.xpc.launchd[1]: (com.apple.MailServiceAgent[293]) Service exited due to signal: Killed: 9
    2/28/15 10:35:10.877 AM com.apple.xpc.launchd[1]: (com.apple.AirPlayUIAgent[408]) Service exited due to signal: Killed: 9
    2/28/15 10:35:12.673 AM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.openAndSavePanelService[563]) Service exited due to signal: Killed: 9
    2/28/15 10:35:12.673 AM com.apple.xpc.launchd[1]: (com.apple.universalaccessd[177]) Service exited due to signal: Killed: 9
    2/28/15 10:35:12.673 AM com.apple.xpc.launchd[1]: (com.apple.iWork.Pages.20480[559]) Service exited due to signal: Killed: 9
    2/28/15 10:35:12.673 AM com.apple.xpc.launchd[1]: (com.apple.coreservices.uiagent[264]) Service exited due to signal: Killed: 9
    2/28/15 10:35:12.673 AM com.apple.xpc.launchd[1]: (com.apple.internetaccounts[258]) Service exited due to signal: Killed: 9
    2/28/15 10:35:12.673 AM com.apple.xpc.launchd[1]: (com.apple.EscrowSecurityAlert[400]) Service exited due to signal: Killed: 9
    2/28/15 10:35:13.185 AM sessionlogoutd[577]: sessionlogoutd Launched
    2/28/15 10:35:13.683 AM sessionlogoutd[577]: DEAD_PROCESS: 64 console
    2/28/15 10:35:15.731 AM shutdown[578]: halt by david_schlachter:
    2/28/15 10:35:15.732 AM shutdown[578]: SHUTDOWN_TIME: 1425137715 731658
    2/28/15 10:35:15.000 AM kernel[0]: Kext loading now disabled.
    2/28/15 10:35:15.000 AM kernel[0]: Kext unloading now disabled.
    2/28/15 10:35:15.000 AM kernel[0]: Kext autounloading now disabled.
    2/28/15 10:35:15.000 AM kernel[0]: Kernel requests now disabled.
    2/28/15 10:35:15.733 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.domain.system) System reboot initiated by: shutdown.578<-sessionlogoutd.577<-launchd.1
    2/28/15 10:35:15.764 AM WindowServer[112]: CGXRestartSessionWorkspace: session workspace exited for session 257 (on console)
    2/28/15 10:35:15.764 AM WindowServer[112]: Session 257 released (1 references)
    2/28/15 10:35:15.764 AM WindowServer[112]: Session 257 released (0 references)
    2/28/15 10:35:15.765 AM WindowServer[112]: loginwindow connection closed; closing server.
    2/28/15 10:36:13.000 AM bootlog[0]: BOOT_TIME 1425137773 0
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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".
    2/28/15 10:36:35.000 AM syslogd[16]: 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".
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM syslogd[16]: 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.
    2/28/15 10:36:35.000 AM kernel[0]: Longterm timer threshold: 1000 ms
    2/28/15 10:36:35.000 AM kernel[0]: Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64
    2/28/15 10:36:35.000 AM kernel[0]: vm_page_bootstrap: 407540 free pages and 51212 wired pages
    2/28/15 10:36:35.000 AM kernel[0]: kext submap [0xffffff7f80a00000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000a00000]
    2/28/15 10:36:35.000 AM kernel[0]: zone leak detection enabled
    2/28/15 10:36:35.000 AM kernel[0]: "vm_compressor_mode" is 4
    2/28/15 10:36:35.000 AM kernel[0]: multiq scheduler config: deep-drain 0, urgent first 1, depth limit 4, band limit 127, sanity check 0
    2/28/15 10:36:35.000 AM kernel[0]: standard timeslicing quantum is 10000 us
    2/28/15 10:36:35.000 AM kernel[0]: standard background quantum is 2500 us
    2/28/15 10:36:35.000 AM kernel[0]: mig_table_max_displ = 13
    2/28/15 10:36:35.000 AM kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    2/28/15 10:36:35.000 AM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    2/28/15 10:36:35.000 AM kernel[0]: calling mpo_policy_init for TMSafetyNet
    2/28/15 10:36:35.000 AM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    2/28/15 10:36:35.000 AM kernel[0]: calling mpo_policy_init for AMFI
    2/28/15 10:36:35.000 AM kernel[0]: Security policy loaded: Apple Mobile File Integrity (AMFI)
    2/28/15 10:36:35.000 AM kernel[0]: calling mpo_policy_init for Sandbox
    2/28/15 10:36:35.000 AM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    2/28/15 10:36:35.000 AM kernel[0]: calling mpo_policy_init for Quarantine
    2/28/15 10:36:35.000 AM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    2/28/15 10:36:35.000 AM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    2/28/15 10:36:35.000 AM kernel[0]: The Regents of the University of California. All rights reserved.
    2/28/15 10:36:35.000 AM kernel[0]: MAC Framework successfully initialized
    2/28/15 10:36:35.000 AM kernel[0]: using 9175 buffer headers and 6635 cluster IO buffer headers
    2/28/15 10:36:25.609 AM com.apple.xpc.launchd[1]: (com.apple.alf) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:35.000 AM kernel[0]: AppleKeyStore starting (BUILT: Dec 22 2014 23:20:35)
    2/28/15 10:36:35.000 AM kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    2/28/15 10:36:35.000 AM kernel[0]: ACPI: sleep states S3 S4 S5
    2/28/15 10:36:35.000 AM kernel[0]: AppleIntelCPUPowerManagement: (built 23:20:47 Dec 22 2014) initialization complete
    2/28/15 10:36:35.000 AM kernel[0]: pci (build 23:16:47 Dec 22 2014), flags 0xe3000, pfm64 (36 cpu) 0xf80000000, 0x80000000
    2/28/15 10:36:35.000 AM kernel[0]: [ PCI configuration begin ]
    2/28/15 10:36:35.000 AM kernel[0]: console relocated to 0xf80010000
    2/28/15 10:36:35.000 AM kernel[0]: [ PCI configuration end, bridges 6, devices 18 ]
    2/28/15 10:36:35.000 AM kernel[0]: NVEthernet::start - Built Dec 22 2014 23:16:14
    2/28/15 10:36:35.000 AM kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 002500fffea9fc7a; max speed s800.
    2/28/15 10:36:35.000 AM kernel[0]: mcache: 2 CPU(s), 64 bytes CPU cache line size
    2/28/15 10:36:35.000 AM kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    2/28/15 10:36:35.000 AM kernel[0]: rooting via boot-uuid from /chosen: B69A6807-4DA6-32CA-B64D-C23E1E4E40DA
    2/28/15 10:36:35.000 AM 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>
    2/28/15 10:36:35.000 AM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    2/28/15 10:36:35.000 AM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    2/28/15 10:36:35.000 AM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    2/28/15 10:36:35.000 AM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    2/28/15 10:36:35.000 AM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    2/28/15 10:36:35.000 AM kernel[0]: BTCOEXIST off
    2/28/15 10:36:35.000 AM kernel[0]: BRCM tunables:
    2/28/15 10:36:35.000 AM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    2/28/15 10:36:35.000 AM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HDT721032SLA380 Media/IOGUIDPartitionScheme/Untitled@2
    2/28/15 10:36:35.000 AM kernel[0]: BSD root: disk0s2, major 1, minor 2
    2/28/15 10:36:35.000 AM kernel[0]: hfs: mounted Macintosh HD on device root_device
    2/28/15 10:36:35.000 AM kernel[0]: VM Swap Subsystem is ON
    2/28/15 10:36:25.609 AM com.apple.xpc.launchd[1]: (com.apple.audio.coreaudiod) Unknown key for array: seatbelt-profiles
    2/28/15 10:36:25.610 AM com.apple.xpc.launchd[1]: (com.apple.auditd) The TimeOut key is no longer respected. It never did anything anyway.
    2/28/15 10:36:25.610 AM com.apple.xpc.launchd[1]: (com.apple.autofsd) This service is defined to be constantly running and is inherently inefficient.
    2/28/15 10:36:25.611 AM com.apple.xpc.launchd[1]: (com.apple.backupd-status) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:35.233 AM hidd[68]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    2/28/15 10:36:35.233 AM watchdogd[30]:  [watchdog_daemon] @(    wd_watchdog_open) - IOIteratorNext failed (kr=0)
    2/28/15 10:36:35.233 AM watchdogd[30]:  [watchdog_daemon] @(      wd_daemon_init) - could not initialize the hardware watchdog
    2/28/15 10:36:25.611 AM com.apple.xpc.launchd[1]: (com.apple.backupd.status.xpc) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:35.233 AM watchdogd[30]:  [watchdog_daemon] @(                main) - cannot initialize the watchdog service
    2/28/15 10:36:35.235 AM hidd[68]: ____IOHIDSessionScheduleAsync_block_invoke: thread_id=0x1070e3000
    2/28/15 10:36:35.235 AM hidd[68]: HID Session async scheduling initiated.
    2/28/15 10:36:35.236 AM hidd[68]: HID Session async root queue running at priority 63 and schedule 2.
    2/28/15 10:36:25.612 AM com.apple.xpc.launchd[1]: (com.apple.bsd.dirhelper) The TimeOut key is no longer respected. It never did anything anyway.
    2/28/15 10:36:35.532 AM hidd[68]: HID Session async scheduling complete.
    2/28/15 10:36:25.613 AM com.apple.xpc.launchd[1]: (com.apple.cmio.AVCAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    2/28/15 10:36:25.613 AM com.apple.xpc.launchd[1]: (com.apple.cmio.VDCAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    2/28/15 10:36:25.613 AM com.apple.xpc.launchd[1]: (com.apple.cmio.IIDCVideoAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    2/28/15 10:36:25.614 AM com.apple.xpc.launchd[1]: (com.apple.configd) This service is defined to be constantly running and is inherently inefficient.
    2/28/15 10:36:35.532 AM hidd[68]: Successfully opened the IOHIDSession
    2/28/15 10:36:35.236 AM iconservicesagent[36]: iconservicesagent launched.
    2/28/15 10:36:25.615 AM com.apple.xpc.launchd[1]: (com.apple.coreduetd) This service is defined to be constantly running and is inherently inefficient.
    2/28/15 10:36:25.615 AM com.apple.xpc.launchd[1]: (com.apple.CoreRAID) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:25.615 AM com.apple.xpc.launchd[1]: (com.apple.CoreRAID) The ServiceIPC key is no longer respected. Please remove it.
    2/28/15 10:36:25.615 AM com.apple.xpc.launchd[1]: (com.apple.coreservicesd) The HopefullyExitsLast key is no longer respected. Please remove it.
    2/28/15 10:36:35.953 AM iconservicesagent[36]: Starting service with cache path: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.iconservices
    2/28/15 10:36:36.253 AM watchdogd[77]:  [watchdog_daemon] @(    wd_watchdog_open) - IOIteratorNext failed (kr=0)
    2/28/15 10:36:36.253 AM watchdogd[77]:  [watchdog_daemon] @(      wd_daemon_init) - could not initialize the hardware watchdog
    2/28/15 10:36:36.254 AM watchdogd[77]:  [watchdog_daemon] @(                main) - cannot initialize the watchdog service
    2/28/15 10:36:36.254 AM com.apple.xpc.launchd[1]: (com.apple.watchdogd) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    2/28/15 10:36:36.270 AM com.apple.SecurityServer[52]: Session 100000 created
    2/28/15 10:36:36.000 AM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    2/28/15 10:36:36.000 AM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    2/28/15 10:36:36.000 AM kernel[0]: bpfAttach len 64 dlt 12
    2/28/15 10:36:37.408 AM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    2/28/15 10:36:37.422 AM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:37.448 AM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    2/28/15 10:36:37.448 AM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    2/28/15 10:36:37.474 AM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    2/28/15 10:36:37.475 AM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    2/28/15 10:36:37.479 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    2/28/15 10:36:37.485 AM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    2/28/15 10:36:37.699 AM com.apple.usbmuxd[51]: usbmuxd-344.5 on Dec  5 2014 at 17:02:22, running 64 bit
    2/28/15 10:36:37.714 AM opendirectoryd[45]: BUG in libdispatch: 14C109 - 2004 - 0x5
    2/28/15 10:36:37.881 AM configd[25]: preference: no sharing preferences
    2/28/15 10:36:38.000 AM kernel[0]: IOGraphics flags 0x43
    2/28/15 10:36:38.000 AM kernel[0]: NVDAStartup: Official
    2/28/15 10:36:38.000 AM kernel[0]: IOBluetoothUSBDFU::probe
    2/28/15 10:36:38.000 AM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8215 FirmwareVersion - 0x0208
    2/28/15 10:36:38.000 AM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xb800 ****
    2/28/15 10:36:38.000 AM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed (matched on Device) -- 0xb800 ****
    2/28/15 10:36:38.000 AM kernel[0]: NVDANV50HAL loaded and registered
    2/28/15 10:36:38.000 AM kernel[0]: [IOBluetoothHCIController][staticBluetoothTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xb800
    2/28/15 10:36:38.000 AM kernel[0]: [IOBluetoothHCIController][start] -- completed
    2/28/15 10:36:38.000 AM kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    2/28/15 10:36:38.000 AM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    2/28/15 10:36:38.000 AM kernel[0]: **** [IOBluetoothHCIController][ProcessBluetoothTransportShowsUpActionWL] -- Connected to the transport successfully -- 0x0d00 -- 0x1800 -- 0xb800 ****
    2/28/15 10:36:38.000 AM kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    2/28/15 10:36:38.000 AM kernel[0]: Previous shutdown cause: 5
    2/28/15 10:36:38.000 AM kernel[0]: DSMOS has arrived
    2/28/15 10:36:38.000 AM kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    2/28/15 10:36:39.871 AM iconservicesd[37]: iconservicesd launched.
    2/28/15 10:36:39.872 AM iconservicesd[37]: Cache path: /Library/Caches/com.apple.iconservices.store
    2/28/15 10:36:40.000 AM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    2/28/15 10:36:40.000 AM kernel[0]: en1: channel changed to 1
    2/28/15 10:36:40.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    2/28/15 10:36:40.000 AM kernel[0]: bpfAttach len 94 dlt 163
    2/28/15 10:36:40.000 AM kernel[0]: bpfAttach len 30 dlt 105
    2/28/15 10:36:40.000 AM kernel[0]: bpfAttach len 52 dlt 127
    2/28/15 10:36:40.000 AM kernel[0]: bpfAttach len 38 dlt 192
    2/28/15 10:36:40.239 AM configd[25]: network changed.
    2/28/15 10:36:40.240 AM configd[25]: setting hostname to "david-schlachters-imac.local"
    2/28/15 10:36:41.000 AM kernel[0]: Ethernet [nvenet]: Link up on en0, 1-Gigabit, Full-duplex, Symmetric flow-control, Debug [796d,0000,0de1,000d,cde1,3c00]
    2/28/15 10:36:41.000 AM kernel[0]: 3b9aca00  00500030  NVEthernet::setLinkStatus - Active
    2/28/15 10:36:42.644 AM com.apple.SecurityServer[52]: Entering service
    2/28/15 10:36:42.902 AM 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
    2/28/15 10:36:42.925 AM loginwindow[64]: Login Window Application Started
    2/28/15 10:36:42.938 AM thermald[22]: Waiting for OSTT support notification
    2/28/15 10:36:43.109 AM digest-service[107]: label: default
    2/28/15 10:36:43.109 AM digest-service[107]: dbname: od:/Local/Default
    2/28/15 10:36:43.110 AM digest-service[107]: mkey_file: /var/db/krb5kdc/m-key
    2/28/15 10:36:43.110 AM digest-service[107]: acl_file: /var/db/krb5kdc/kadmind.acl
    2/28/15 10:36:43.182 AM WindowServer[113]: Server is starting up
    2/28/15 10:36:43.414 AM locationd[54]: Logging binary sensor data to /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/locationdSensors.bin
    2/28/15 10:36:43.421 AM locationd[54]: NBB-Could not get UDID for stable refill timing, falling back on random
    2/28/15 10:36:43.668 AM digest-service[107]: digest-request: uid=0
    2/28/15 10:36:43.730 AM digest-service[107]: digest-request: netr probe 0
    2/28/15 10:36:43.731 AM digest-service[107]: digest-request: init request
    2/28/15 10:36:43.743 AM digest-service[107]: digest-request: init return domain: BUILTIN server: DAVID-SCHLACHTERS-IMAC indomain was: <NULL>
    2/28/15 10:36:43.840 AM locationd[54]: Location icon should now be in state 'Inactive'
    2/28/15 10:36:43.000 AM kernel[0]: in func createVirtualInterface ifRole = 1
    2/28/15 10:36:43.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    2/28/15 10:36:43.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init <p2p> role 1
    2/28/15 10:36:43.000 AM kernel[0]: Created virtif 0xffffff8012c6a000 p2p0
    2/28/15 10:36:43.892 AM airportd[29]: airportdProcessDLILEvent: en1 attached (up)
    2/28/15 10:36:43.969 AM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    2/28/15 10:36:44.125 AM secinitd[115]: UID[0]: cache loaded: /System/Library/Caches/com.apple.app-sandbox-cache.plist
    2/28/15 10:36:44.126 AM secinitd[115]: ctkd[114]: unable to get root path for bundle of main executable: /System/Library/Frameworks/CryptoTokenKit.framework/ctkd
    2/28/15 10:36:44.503 AM mdmclient[40]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/28/15 10:36:45.151 AM discoveryd[48]: Basic Sockets GetProcessNameFromSocket() failed errno[57] err[-1]
    2/28/15 10:36:45.151 AM discoveryd[48]: Basic Sockets Unknown(-1), errno 0 UDS FD=3
    2/28/15 10:36:45.151 AM discoveryd[48]: Basic Sockets UDS FD=3 ERROR: failed to get effective user ID, errno 0
    2/28/15 10:36:45.152 AM discoveryd[48]: Basic SleepProxy BSP Server Disabled. Metric = 3373
    2/28/15 10:36:45.158 AM discoveryd[48]: AwdlD2d AwdlD2dInitialize: Initialized
    2/28/15 10:36:45.160 AM discoveryd[48]: D2D_IPC: Loaded
    2/28/15 10:36:45.175 AM discoveryd[48]: Basic WABServer NetResolverEvent no resolvers, resetting domains
    2/28/15 10:36:45.176 AM discoveryd[48]: Basic DNSResolver etc/hosts file changed: Event 0x7fafea5147d0 Flushed /etc/hosts cache
    2/28/15 10:36:45.176 AM discoveryd[48]: Basic RemoteControl com.apple.discoveryd Starting XPC Server
    2/28/15 10:36:45.176 AM discoveryd[48]: Basic SleepProxy Could not get the primary interface
    2/28/15 10:36:45.178 AM discoveryd_helper[122]: Basic RemoteControl com.apple.discoveryd_helper Starting XPC Server
    2/28/15 10:36:45.178 AM discoveryd[48]: Basic RemoteControl com.apple.discoveryd.dnsproxy Starting XPC Server
    2/28/15 10:36:45.179 AM discoveryd_helper[122]: Detailed RemoteControl com.apple.discoveryd_helper XPC connection 0x7fe588403b40: start (pid=48, <unknown> not root)
    2/28/15 10:36:45.181 AM discoveryd[48]: Basic SleepProxy Sleep Proxy Server is not enabled
    2/28/15 10:36:45.223 AM networkd[123]: networkd-411.1 pid 123
    2/28/15 10:36:45.523 AM mds[32]: (FMW.Normal:1402) FMW 0 0
    2/28/15 10:36:45.554 AM mdmclient[40]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/28/15 10:36:45.872 AM apsd[49]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2/28/15 10:36:45.967 AM systemkeychain[126]: done file: /var/run/systemkeychaincheck.done
    2/28/15 10:36:46.016 AM apsd[49]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    2/28/15 10:36:46.019 AM apsd[49]: Attempt to set push wake topics without dark wake enabled: ()
    2/28/15 10:36:46.019 AM apsd[49]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    2/28/15 10:36:46.019 AM apsd[49]: <APSConnectionServer: 0x7fe629461cb0> Invalid mach port - Cleaning up this named port's topics. com.apple.askpermission.aps
    2/28/15 10:36:47.586 AM stackshot[62]: Timed out waiting for IOKit to finish matching.
    2/28/15 10:36:48.873 AM configd[25]: network changed: v4(en0+:192.168.0.2) DNS+ Proxy+ SMB
    2/28/15 10:36:49.324 AM blued[57]: Logging disabled
    2/28/15 10:36:50.885 AM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    2/28/15 10:36:50.885 AM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    2/28/15 10:36:50.900 AM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:50.903 AM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    2/28/15 10:36:50.903 AM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    2/28/15 10:36:50.909 AM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    2/28/15 10:36:50.909 AM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    2/28/15 10:36:50.911 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    2/28/15 10:36:50.913 AM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    2/28/15 10:36:50.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:51.687 AM UserEventAgent[17]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/28/15 10:36:51.732 AM com.apple.xpc.launchd[1]: (com.apple.lakitu) The JoinExistingSession key is only available to Application services.
    2/28/15 10:36:51.732 AM com.apple.xpc.launchd[1]: (com.apple.accounts.dom) The _DirtyJetsamMemoryLimit key is not available on this platform.
    2/28/15 10:36:51.732 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    2/28/15 10:36:52.014 AM UserEventAgent[17]: nsurlsessiond_events plugin: adding token 1 for client softwareupdate_download_service
    2/28/15 10:36:52.772 AM sntp[152]: time set +0.547046 s
    2/28/15 10:36:53.477 AM ntpd[144]: peer time.apple.com @ 17.253.4.241
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.501 AM ntpd[144]: drift PPM:0.000 -> -98.260
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:53.000 AM kernel[0]: BUG in process suhelperd[141]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    2/28/15 10:36:55.693 AM WindowServer[113]: Session 257 retained (2 references)
    2/28/15 10:36:55.693 AM WindowServer[113]: Session 257 released (1 references)
    2/28/15 10:36:55.723 AM WindowServer[113]: Session 257 retained (2 references)
    2/28/15 10:36:55.756 AM WindowServer[113]: init_page_flip: page flip mode is on
    2/28/15 10:36:56.210 AM WindowServer[113]: Found 30 modes for display 0x00000000 [30, 0]
    2/28/15 10:36:56.211 AM lsregister[125]: LaunchServices: Begin database seeding
    2/28/15 10:36:56.211 AM lsregister[125]: LaunchServices: Completed database seeding
    2/28/15 10:36:56.218 AM UserEventAgent[17]: Captive: CNPluginHandler en1: Inactive
    2/28/15 10:36:56.222 AM WindowServer[113]: Found 1 modes for display 0x00000000 [1, 0]
    2/28/15 10:36:56.223 AM WindowServer[113]: mux_initialize: Couldn't find any matches
    2/28/15 10:36:56.230 AM WindowServer[113]: Found 30 modes for display 0x00000000 [30, 0]
    2/28/15 10:36:56.235 AM WindowServer[113]: Found 1 modes for display 0x00000000 [1, 0]
    2/28/15 10:36:56.280 AM WindowServer[113]: WSMachineUsesNewStyleMirroring: false
    2/28/15 10:36:56.282 AM WindowServer[113]: Display 0x042724c0: GL mask 0x1; bounds (0, 0)[1680 x 1050], 30 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9c93, S/N 0, Unit 0, Rotation 0
    UUID 0x16a4e283743a276736293bc4a92077c4
    2/28/15 10:36:56.282 AM WindowServer[113]: 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
    2/28/15 10:36:56.283 AM WindowServer[113]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    2/28/15 10:36:56.283 AM WindowServer[113]: WSSetWindowTransform: Singular matrix
    2/28/15 10:36:56.285 AM WindowServer[113]: Display 0x042724c0: GL mask 0x1; bounds (0, 0)[1680 x 1050], 30 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9c93, S/N 0, Unit 0, Rotation 0
    UUID 0x16a4e283743a276736293bc4a92077c4
    2/28/15 10:36:56.285 AM WindowServer[113]: Display 0x003f003d: GL mask 0x2; bounds (2704, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/28/15 10:36:56.286 AM WindowServer[113]: CGXPerformInitialDisplayConfiguration
    2/28/15 10:36:56.286 AM WindowServer[113]:   Display 0x042724c0: Unit 0; Vendor 0x610 Model 0x9c93 S/N 0 Dimensions 17.05 x 10.63; online enabled built-in, Bounds (0,0)[1680 x 1050], Rotation 0, Resolution 1
    2/28/15 10:36:56.286 AM WindowServer[113]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2704,0)[1 x 1], Rotation 0, Resolution 1
    2/28/15 10:36:56.319 AM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:56.321 AM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    2/28/15 10:36:56.321 AM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    2/28/15 10:36:56.324 AM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    2/28/15 10:36:56.324 AM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    2/28/15 10:36:56.325 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    2/28/15 10:36:56.327 AM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    2/28/15 10:36:56.332 AM WindowServer[113]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, accelerator 0x0000369b, unit 0, caps QEX|MIPMAP, vram 256 MB
    2/28/15 10:36:56.339 AM WindowServer[113]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions NPOT|GLSL|FLOAT
    2/28/15 10:36:56.339 AM WindowServer[113]: GLCompositor enabled for tile size [256 x 256]
    2/28/15 10:36:56.339 AM WindowServer[113]: CGXGLInitMipMap: mip map mode is on
    2/28/15 10:36:56.395 AM WindowServer[113]: CGXSetDisplayColorProfileAndTransfer: Display 0x042724c0: Unit 0; ColorProfile { 1937185313 }; TransferTable (256, 12)
    2/28/15 10:36:56.411 AM com.apple.AmbientDisplayAgent[159]: AmbientDisplayAgent started
    2/28/15 10:36:56.416 AM com.apple.AmbientDisplayAgent[159]: AMBD initializing devices
    2/28/15 10:36:56.425 AM com.apple.AmbientDisplayAgent[159]: AMBD Agent: xpc connection became invalid during event handler
    2/28/15 10:36:56.429 AM com.apple.xpc.launchd[1]: (com.apple.AssistiveControl.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:56.429 AM com.apple.xpc.launchd[1]: (com.apple.btsa) This key does not do anything: OnDemand
    2/28/15 10:36:56.431 AM com.apple.xpc.launchd[1]: (com.apple.coreservices.lsactivity) Unknown key for Boolean: DrainMessagesAfterFailedInit
    2/28/15 10:36:56.433 AM com.apple.xpc.launchd[1]: (com.apple.helpd) This key does not do anything: OnDemand
    2/28/15 10:36:56.438 AM com.apple.xpc.launchd[1]: (com.apple.noticeboard.agent) This key does not do anything: OnDemand
    2/28/15 10:36:56.441 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    2/28/15 10:36:56.443 AM com.apple.xpc.launchd[1]: (com.apple.inputswitcher.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:56.443 AM com.apple.xpc.launchd[1]: (com.apple.universalaccesscontrol.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:56.443 AM com.apple.xpc.launchd[1]: (com.apple.universalaccessd.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:56.444 AM com.apple.xpc.launchd[1]: (com.apple.UserEventAgent-LoginWindow) This service is defined to be constantly running and is inherently inefficient.
    2/28/15 10:36:56.446 AM com.apple.xpc.launchd[1]: (com.apple.VoiceOver.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:56.447 AM com.apple.xpc.launchd[1]: (com.apple.ZoomWindow.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:56.602 AM WindowServer[113]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7f81e3d1f2c0) - enabling OpenGL
    2/28/15 10:36:56.744 AM loginwindow[64]: The current system was not found in the list of machines requiring a switch to a black background
    2/28/15 10:36:56.763 AM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    2/28/15 10:36:56.778 AM loginwindow[64]: Login Window Started Security Agent
    2/28/15 10:36:56.766 AM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    2/28/15 10:36:56.812 AM com.apple.SecurityServer[52]: Session 100006 created
    2/28/15 10:36:56.826 AM askpermissiond[160]: objc[160]: 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.
    2/28/15 10:36:56.924 AM SecurityAgent[171]: This is the first run
    2/28/15 10:36:56.924 AM SecurityAgent[171]: MacBuddy was run = 0
    2/28/15 10:36:56.960 AM SecurityAgent[171]: User info context values set for david_schlachter
    2/28/15 10:36:57.132 AM askpermissiond[160]: StoreTransport: Resetting APS Connection using environment name production
    2/28/15 10:36:57.150 AM SecurityAgent[171]: Login Window login proceeding
    2/28/15 10:36:57.256 AM apsd[49]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    2/28/15 10:36:57.278 AM loginwindow[64]: Login Window - Returned from Security Agent
    2/28/15 10:36:57.294 AM loginwindow[64]: USER_PROCESS: 64 console
    2/28/15 10:36:57.312 AM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:57.314 AM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    2/28/15 10:36:57.315 AM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    2/28/15 10:36:57.318 AM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    2/28/15 10:36:57.318 AM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    2/28/15 10:36:57.319 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    2/28/15 10:36:57.320 AM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    2/28/15 10:36:57.335 AM UserEventAgent[165]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/28/15 10:36:57.337 AM WiFiAgent[166]:  securityd_message_with_reply_sync Failed to talk to secd after 4 attempts.
    2/28/15 10:36:57.353 AM UserEventAgent[165]: user agent networkd: built Nov 19 2014 21:39:47
    2/28/15 10:36:57.000 AM kernel[0]: AppleKeyStore:Sending lock change 0 for handle -501
    2/28/15 10:36:57.539 AM com.apple.xpc.launchd[1]: (com.apple.AssistiveControl.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:57.539 AM com.apple.xpc.launchd[1]: (com.apple.btsa) This key does not do anything: OnDemand
    2/28/15 10:36:57.540 AM com.apple.xpc.launchd[1]: (com.apple.coreservices.lsactivity) Unknown key for Boolean: DrainMessagesAfterFailedInit
    2/28/15 10:36:57.540 AM com.apple.xpc.launchd[1]: (com.apple.coreservices.uiagent) This key does not do anything: OnDemand
    2/28/15 10:36:57.571 AM distnoted[177]: # distnote server agent  absolute time: 46.169239341   civil time: Sat Feb 28 10:36:57 2015   pid: 177 uid: 501  root: no
    2/28/15 10:36:57.541 AM com.apple.xpc.launchd[1]: (com.apple.diagnostics_agent) This service is defined to be constantly running and is inherently inefficient.
    2/28/15 10:36:57.543 AM com.apple.xpc.launchd[1]: (com.apple.dock.fullscreen) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:57.543 AM com.apple.xpc.launchd[1]: (com.apple.dock.server) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:57.543 AM com.apple.xpc.launchd[1]: (com.apple.dock.notificationcenter) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    2/28/15 10:36:57

  • Mail in Mavericks is a disaster for me.  Mail opens VERY slowly and cannot be deleted. I can move copies of messages to On My Mac but the original stays in the In Box. Scrolling works then it doesn't then it does. I tried every advice here; nothing helps.

    I've read and tried all the solutions proffered to others about Mail in Mavericks and scrolling issues as well.  They either are not applicable (hard drive seems fine; is less than half full; permissions have been repaired; Disk Utility finds no hard drive issues) or don't work (rebuilding, removing envelope files and re-importing, removing various preference files).
    I have about 200,000 emails in four In Boxes.  Prior to Mavericks this was not a problem.  I have tried to remove them in case that helps but when I move them to a new folder in "On My Mac" the new folder is (very slowly) created but the original messages stay in the In Box as well.  I went through one box and deleted over 52,000 messages -- or so I thought.  When I closed mail later, I got a message saying the messages could not be moved to trash.  They are in the In Box now.
    Maybe the problem is not Mavericks, but it started when I upgraded, and except for scrolling, which has been problematic elsewhere as well but no where more than in Mail, everything but Mail seems to be working ok.
    Are other people having problems to this extent?  I can wait a little while for a fix but I get over 2,000 emails a day (yes, a lot of spam) and I don't think I can go on in perpetuity without the ability to delete messages.  I've used Apple Mail since its inception and would prefer to keep it but may be forced out.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    While logged in as Guest, launch Mail and set up one of your IMAP accounts. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you boot, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • IPhone 4S doesnt show charge symbol and charges very slowly on brand new MacBook Pro. Not recognised by iTunes. Charges fine on Asus laptop. iPod charges fine on Macbook Pro...

    Hi!
    I'm trying to fix a problem I'm having with my iPhone 4S and MacBook Pro.
    I did manage to connect it initially and set it up with XCode as well as iTunes.
    Today I have spent two hours trying to connect it to my MacBook Pro and I have so far found the following...
    iPod 2G - charges from MacBook Pro, Wall Charger, Asus Laptop (works with both my Apple USB cables)
    iPhone 4S - doesnt charge from MacBook Pro, but does from Wall Charger and Asus Laptop
                      - Asus Laptop running Linux Mint recognises the iPhone as a device with 'lsusb' and you can browse photos etc
                      - MacBook Pro doesn't recognise the iPhone as a device with the 'systemprofiler' equivalent of lsusb
                      - Interestingly, despite the charging icon not showing, the iPhone either maintains charge or very, very slowly charges
                         when connected to the MacBook Pro.
    Any ideas as to what might be wrong? I've tried both the USB ports on the MacBook Pro and no difference. I've tried the 6 ports
    on my old Asus laptop and they all work fine!
    Thanks for your help!

    OK.. Went to the Apple Store - they could either book an appointment with a Genius.. or send the phone for
    testing and repair. Found out I have a 2 year warranty on it so have a year left.
    My research has led me to assume that the USB 2.0 function of my iPhone was faulty from the day I got it (it kept disconnecting the reconnecting but transferred data fast), but soon stopped doing that and ran at about 1MB/s - USB 1.1 speed - and has done this ever since.
    The MacBook Pro somehow is trying to use the USB2.0 function and is not letting the phone fall back to USB 1.1.
    To test my theory I found an old USB 1.1 hub... plugged it into the MacBook Pro... then plugged the iPhone
    into that. Job done. Charging fine, recognised every single time I connect, and only took a few secs to send over my XCode app to the phone and runs fine! I guess this works as the hub forces the iPhone and MacBook both to USB1.1 mode which then works fine! Will just use it like this for a few months then send it in at an opportune moment (want to get some apps out before I lose my device for repair for a while!)
    I will in the next week or so test my iPhone on my friend's MacBook Pro (we bought them the same day but I didn't get the Retina cos I like to be able to upgrade RAM, Hard Drive, and replace battery when it wears out). I will also test their iPhones on my MacBook Pro to see whether it really is the phone or the MacBook!
    PS I will get WiFi Sync running since transferring 60GB of data over USB1.1 won't be fun... will do a full factory reset on the phone just in case there is an issue there - will post results of this too!

  • My MacBook Pro is running very slowly! Please help!

    Hi all, as of late last year my MacBook Pro started running very slowly. As I'm a novice when it comes to computers I thought I'd turn to the interweb for solutions. I've tried a couple of basic things but don't seem to be getting anywhere.I ran the EtreCheck program as it seemed to help others. Would love some help interpreting this...
    Problem description:
    My MacBook Pro is running very slowly!
    EtreCheck version: 2.1.8 (121)
    Report generated 12 March 2015 3:15:41 pm AEDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Mid 2010) (Technical Specifications)
        MacBook Pro - model: MacBookPro7,1
        1 2.4 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 255
    Video Information: ℹ️
        NVIDIA GeForce 320M - VRAM: 256 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.1 (14B25) - Time since boot: 2 days 4:7:57
    Disk Information: ℹ️
        TOSHIBA MK2555GSXF disk0 : (250.06 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 249.20 GB (25.07 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
        Apple Internal Memory Card Reader
        Apple Inc. Built-in iSight
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Library/Extensions
        [loaded]    com.squirrels.airparrot.framebuffer (3 - SDK 10.8) [Click for support]
        [loaded]    com.squirrels.driver.AirParrotSpeakers (1.8 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.logmein.driver.LogMeInSoundDriver (1.0.0) [Click for support]
        [not loaded]    com.nike.sportwatch (1.0.0) [Click for support]
    Startup Items: ℹ️
        HW_CreateNetwork: Path: /Library/StartupItems/HW_CreateNetwork
        HWPortDetect_driver: Path: /Library/StartupItems/HWPortDetect_driver
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [running]    com.nike.nikeplusconnect.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.cloudpath.maccmd.plist [Click for support]
        [not loaded]    com.logmein.logmeinserver.plist [Click for support]
        [loaded]    com.logmein.raupdate.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        GrowlHelperApp    Application  (/Users/[redacted]/Library/PreferencePanes/Growl.prefPane/Contents/Resources/Gr owlHelperApp.app)
        iTunesHelper    UNKNOWN Hidden (missing value)
        Calendar    Application  (/Applications/Calendar.app)
        Dropbox    Application  (/Applications/Dropbox.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        DivXBrowserPlugin: Version: 2.0 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        NP_2020Player_IKEA: Version: 5.0.94.1 - SDK 10.6 [Click for support]
        OfficeLiveBrowserPlugin: Version: 12.2.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        DirectorShockwave: Version: 12.1.3r153 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0
    3rd Party Preference Panes: ℹ️
        DivX  [Click for support]
        Flash Player  [Click for support]
        Growl  [Click for support]
    Time Machine: ℹ️
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 249.20 GB Disk used: 224.13 GB
        Destinations:
            Michael's HD [Local]
            Total size: 319.73 GB
            Total number of backups: 12
            Oldest backup: 2012-02-08 22:52:31 +0000
            Last backup: 2015-02-24 08:22:40 +0000
            Size of backup disk: Too small
                Backup size 319.73 GB < (Disk used 224.13 GB X 3)
    Top Processes by CPU: ℹ️
            14%    WindowServer
             2%    DashboardClient
             0%    AppleSpell
             0%    Dropbox
             0%    fontd
    Top Processes by Memory: ℹ️
        507 MB    firefox
        86 MB    Finder
        64 MB    Preview
        64 MB    WindowServer
        56 MB    Mail
    Virtual Memory Information: ℹ️
        441 MB    Free RAM
        1.36 GB    Active RAM
        809 MB    Inactive RAM
        713 MB    Wired RAM
        14.96 GB    Page-ins
        119 MB    Page-outs
    Diagnostics Information: ℹ️
        Mar 10, 2015, 11:05:38 AM    Self test - passed
        Mar 10, 2015, 10:27:48 AM    /Library/Logs/DiagnosticReports/firefox_2015-03-10-102748_[redacted].cpu_resour ce.diag [Click for details]
    Thanks in advance! Mike

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. It will be slow, but there should be no beachballing. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • My latest photos are missing, however they are not uploading into the PhotoStream.. (very slowly), they are not in the last import or in events... where are they ?

    I uploaded around 200 photos into iphoto, I worked on these photos breifly, cropping and deleting some, then iphoto crashed.. and when I relaunched it the photos were missing from both the events section and the last import showed nothing.  I also looked in the Trash for the deleted photos, and that was empty too..
    Now the photos are reappearing in PhotoSteam, all be it very slowly... I cant seem to find the orginals anywhere... I have tried to reoganise the events by ascending and descending to see if they are hiding... but I am unable to see any evidence of them.
    Can anyone help.  My computer is about 1 week old, however I did take all the photos from my Mac Notebook, which I think has taken some dodge

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • FCPX hangs on loading event in boot up, but when it does boot it runs very slowly.

    I'm having a problem with FCP 10.0.9
    When I try to open the program it gets hung up on the opening logo at loading event. I get a message that FCP is not responding in the force quit menu,  but after around 6 hours FCPX opens up, but runs very slowly. I can see all of my projects and everything appears to be intact.
    I'd like for FCPX to run smoothly again so I am looking for advice on how to fix it.
    Here is some pertinent information.
    I'm working on an 2.93 GHz intel core 7 iMac / 16GB memory / ATI Radeon HD 5750 1024 MB / OS 10.7.5
    Everything is on an external 12tb Raid drive that has 5.7 TB free and is connected via Firewire 800.
    The footage has been going into FCP is Arri Alexa footage that has been transcoded using Devinci resolve and proxies were created for all the footage within fcp.
    My event folder is around 600 gb and the transcoded footage that has been imported into FCP is around 6TB
    I've been working for about 3 weeks and have everything broken into 4 projects within one event and everything was working smoothly until yesterday.
    I have no compound clips, but all of my imported footage has been synced, multicam-ed and organized by keyword collections.
    I've tried loading the even backup to no avail (and foolishly I did not have backups stored anywhere else)
    I've tried trashing preferences.
    I've tried reinstalling the program.
    I've tried hiding events and projects with Event Manager X.
    I've tried running diagnostics using the digital rebellion pro maintenance tools Corrupt Clip Finder, Project repair, and Quick Fix but everything came back clean.
    One person at Apple technical support suggested I move the footage out of my event folder In pieces to see if there was a corrupt clip. First I removed the proxies and then the original media and then everything else (including all render data) until the only thing in the even folder was the event itself, but still FCP hung up on boot up.
    Another apple technical support person suggested I should have optimized my media (which I did not do) but after getting FCP to boot up I let it optimize all my media overnight and this has not had any significant effect.
    My console displays lots of error messages end with "Too many SQL Variables"
    Another error message I am getting in console is: 
    Class CMIOGraphService is implemented in both /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO and /Applications/Final Cut Pro.app/Contents/Frameworks/CoreMediaLion/CoreMediaIO.framework/Versions/Curren t/CoreMediaIO. One of the two will be used. Which one is undefined.
    When I hide the event but keep the projects in their proper place FCP boots up quickly and my projects are all there but none of the footage appears since it is all within my event.
    One thing I am reluctant to try but may end up doing if I cannot find the correct answer from this internet community is Export and XML and use Xto7 to try to open it up in FCP7 and finish the project there. This feels like something that is going to cause me problems down the road, but I'm unsure.
    As is almost always the case, I'm under an impossibly tight deadline so any advice would be much appreciated.
    Thanks!
    Brody

    Quite the same problem here: FCP X (10.0.9) crashed while quitting, now it's always hanging up (opening logo freezes while displaying "loading .... event"). The Console says: "SQLite error code:1, 'too many SQL variables'".
    The difference maybe is that my event isn't that big. 350 GB, including the original and transcoded media. The fcpevent file itself is about 340 MB. Unfortunately (my fault!) I didn't backup any of the .fcpevent files.
    Is there any possibility to repair the .fcpevent file? I tested the repair tool by digital rebellion, but still no success. Are there any other ideas?
    Thanks!
    Ronja

  • Yosemite running very slowly on new MacBook Pro

    I just bought a new 13" MacBook Pro (not Retina) last month.  When I set it up I copied the data and apps from my 2006 MacBook running Snow Leopard.  When I try to open apps such as Safari or jEdit or Adobe Reader or NeoOffice it seems to wait forever (or at least 30 seconds) to open them.  I thought this would be faster than Snow Leopard, but it's not!
    Should I just back this all up with my SuperDuper and start over?
    Here are my Etrecheck data:
    Problem description:
    Yosemite running very slowly.
    EtreCheck version: 2.1.8 (121)
    Report generated April 17, 2015 at 9:06:04 AM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Mid 2012) (Technical Specifications)
        MacBook Pro - model: MacBookPro9,2
        1 2.5 GHz Intel Core i5 CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 36
    Video Information: ℹ️
        Intel HD Graphics 4000
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.2 (14C1514) - Time since boot: one day 20:46:11
    Disk Information: ℹ️
        APPLE HDD HTS545050A7E362 disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Kathryn (disk1) / : 498.89 GB (227.44 GB free)
                Core Storage: disk0s2 499.25 GB Online
        HL-DT-ST DVDRW  GS41N
    USB Information: ℹ️
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
        Apple Inc. FaceTime HD Camera (Built-in)
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/HardwareMonitor.app
        [not loaded]    com.bresink.driver.BRESINKx86Monitoring (4.0) [Click for support]
            /Applications/InsomniaX.app
        [not loaded]    org.binaervarianz.driver.insomnia (1.0.0d1) [Click for support]
        [not loaded]    org.binaervarianz.iokit.insomnia (1.0.0d1) [Click for support]
            /Applications/Parallels Access.app
        [loaded]    com.parallels.virtualsound (1.0.36 36 - SDK 10.6) [Click for support]
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hypervisor (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (10.2.0 28956 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.vnic (10.2.0 28956 - SDK 10.7) [Click for support]
            /Applications/Utilities/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (4.3) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.increw.kext.speedit (0.32) [Click for support]
        [not loaded]    com.kodak.printer.XXXX.kext (5.3.0) [Click for support]
        [not loaded]    se.coolbook.driver2 (2.1.5) [Click for support]
    Startup Items: ℹ️
        MySQLCOM: Path: /Library/StartupItems/MySQLCOM
        ParallelsDesktopTransporter: Path: /Library/StartupItems/ParallelsDesktopTransporter
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudd.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.SafariNotificationAgent.plist
        [killed]    com.apple.sbd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        10 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.installd.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.softwareupdated.plist
        [killed]    com.apple.wdhelper.plist
        12 processes killed due to memory pressure
    Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.parallels.mobile.prl_deskctl_agent.launchagent.plist [Click for support]
    Launch Daemons: ℹ️
        [failed]    com.adobe.fpsaud.plist [Click for support]
        [not loaded]    com.barebones.textwrangler.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [running]    com.parallels.mobile.dispatcher.launchdaemon.plist [Click for support]
        [loaded]    com.parallels.mobile.kextloader.launchdaemon.plist [Click for support]
        [running]    de.jinx.SmartSleepDaemon.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.parallels.mobile.startgui.launchagent.plist [Click for support]
    User Login Items: ℹ️
        ChronoSyncBackgrounder    Application  (/Library/Application Support/ChronoSync/ChronoSyncBackgrounder.app)
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        VipRiser    Application  (/Applications/VipRiser.app)
        Cinch    Application  (/Applications/Cinch.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
    Internet Plug-ins: ℹ️
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 Outdated! Update
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        googletalkbrowserplugin: Version: 5.41.0.0 - SDK 10.8 [Click for support]
        Scorch: Version: 6.1.0 [Click for support]
        iPhotoPhotocast: Version: 7.0
        RealPlayer Plugin: Version: Unknown [Click for support]
        DirectorShockwave: Version: 11.0.3r470 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        WidevineMediaTransformer: Version: Unknown [Click for support]
        Mozillaplug: Version: 1.0
        Musicnotes: Version: 1.16.12 [Click for support]
        Silverlight: Version: 5.1.30214.0 - SDK 10.6 [Click for support]
        MacCouponPrinter: Version: Unknown
        CouponPrinter-FireFox_v2: Version: 1.1.10 - SDK 10.6 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.4.2 [Click for support]
        o1dbrowserplugin: Version: 5.41.0.0 - SDK 10.8 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
    Safari Extensions: ℹ️
        Open in Internet Explorer
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Java  [Click for support]
        MacFUSE  [Click for support]
        More Internet  [Click for support]
        MySQL  [Click for support]
        SmartSleep  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Kathryn: Disk size: 498.89 GB Disk used: 271.45 GB
        Destinations:
            Time Capsule [Local]
            Total size: 0 B
            Total number of backups: 0
            Oldest backup: -
            Last backup: -
            Size of backup disk: Too small
                Backup size 0 B < (Disk used 271.45 GB X 3)
    Top Processes by CPU: ℹ️
            11%    WindowServer
             5%    com.apple.WebKit.Networking
             3%    Mail
             3%    Safari
             2%    Dock
    Top Processes by Memory: ℹ️
        365 MB    com.apple.WebKit.WebContent
        133 MB    Safari
        120 MB    Mail
        47 MB    mdworker
        39 MB    mds_stores
    Virtual Memory Information: ℹ️
        36 MB    Free RAM
        1.05 GB    Active RAM
        1.03 GB    Inactive RAM
        810 MB    Wired RAM
        21.89 GB    Page-ins
        521 MB    Page-outs
    Diagnostics Information: ℹ️
        Apr 15, 2015, 12:14:37 PM    Self test - passed
        Apr 14, 2015, 03:59:14 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Inkjet6_2015-04-14-155914_[red acted].crash
        Apr 14, 2015, 03:59:10 PM    /Library/Logs/DiagnosticReports/Inkjet6_2015-04-14-155910_[redacted].crash
        Apr 14, 2015, 12:59:36 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Inkjet6_2015-04-14-125936_[red acted].crash
        Apr 14, 2015, 12:59:31 PM    /Library/Logs/DiagnosticReports/Inkjet6_2015-04-14-125931_[redacted].crash

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.
    One of the myths that circulate on this site is the myth that the current version of OS X always needs to more than 4 GB of memory to run well. The myth is based on nothing except the fact that some people keep repeating it. Apple is today selling new Macs with 4 GB of memory that can never be upgraded after they leave the factory. Those Macs come with Yosemite preinstalled, and it can never be downgraded to an older version. So if you were to believe the myth, you would also believe that Apple knows that it's selling products that are permanently crippled right out of the box, no matter how they're used. Read this discussion before you spend money on memory that you may not need.
    Some users do need more than 4 GB of memory for full performance. They are running memory-intensive applications, such as photo or video editors, or they're running many programs concurrently, or they have more than one account logged in at the same time. Whether you're one of those users can be determined, in part, by observing the level of memory pressure in the Memory tab of the Activity Monitor window. If the memory pressure graph always stays in the green zone, then a shortage of memory is not causing the problem.
    Even if memory pressure is high, that doesn't necessarily mean that adding more memory will help. If one or more processes has a memory leak—a kind of bug—then adding memory, no matter how much, won't help. It will merely delay the onset of the problem, perhaps only by a few minutes or less. That is very likely the case if you already have more than 4 GB.

  • Macbook Pro Running Very Slowly

    Lately, my Macbook Pro has been running very slowly. The rainbow wheel keeps popping up and it takes a very long time to open windows or quit applications. Also, the computer gets really slowly even if only a few applications are open (e.g. Microsoft Word and iTunes). This problem has started recently, a few months after installing OSX 10.9.5. I don't know if this is the problem, if the hard drive needs to be cleared, some programs are taking up too much RAM, or if the computer is just getting old. Any help would be appreciated, and I have included the EtreCheck below as well.
    EtreCheck version: 2.1.8 (121)
    Report generated February 20, 2015 at 11:56:30 AM EST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Late 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,1
        1 2.4 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
        Battery Health: Normal - Cycle count 1000
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 384 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.9.5 (13F34) - Time since boot: 7 days 23:24:10
    Disk Information: ℹ️
        ST9500325ASG disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (165.99 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-ST DVDRW  GS31N 
    USB Information: ℹ️
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. FaceTime HD Camera (Built-in)
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [not loaded]    com.motorola-mobility.driver.MotMobileUSB (1.2.0 - SDK 10.5) [Click for support]
        [not loaded]    com.usboverdrive.driver.hid (3.0.1) [Click for support]
        [not loaded]    com.veltrop.taylor.driver.virtualhid (1.1) [Click for support]
            /System/Library/Extensions/MotMobileUSB.kext/Contents/PlugIns
        [not loaded]    com.motorola-mobility.driver.MotMobileMS (1.0.0 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileMTP (1.2.0 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileUSBLAN (1.2.0 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileUSBLANMerge (1.2.0 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileUSBSwch (1.2.0 - SDK 10.5) [Click for support]
            /System/Library/Extensions/USBOverdrive.kext/Contents/PlugIns
        [not loaded]    com.usboverdrive.driver.hid.safe (3.0.1) [Click for support]
    Startup Items: ℹ️
        ChmodBPF: Path: /Library/StartupItems/ChmodBPF
        Startup items are obsolete in OS X Yosemite
    Problem System Launch Daemons: ℹ️
        [failed]    com.apple.AOSNotificationOSX.plist [Click for details]
        [failed]    com.apple.wdhelper.plist
    Launch Agents: ℹ️
        [running]    com.brother.LOGINserver.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.motorola.motohelper.plist [Click for support]
        [loaded]    com.motorola.motohelperUpdater.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [loaded]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.barebones.textwrangler.plist [Click for support]
        [loaded]    com.github.GitHub.GHInstallCLI.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [running]    com.motorola-mobility.mmcfgd.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
    User Launch Agents: ℹ️
        [failed]    com.adobe.ARM.[...].plist [Click for support]
        [failed]    com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist
        [failed]    com.bitcasa.BitcasaUI.plist [Click for support]
        [loaded]    com.BlueStacks.AppPlayer.LogRotator.plist [Click for support]
        [loaded]    com.BlueStacks.AppPlayer.Service.plist [Click for support]
        [loaded]    com.BlueStacks.AppPlayer.UninstallAgent.plist [Click for support]
        [loaded]    com.BlueStacks.AppPlayer.UpdaterAgent.plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
    User Login Items: ℹ️
        uHD-Agent    Application  (/Applications/BlueStacks.app/Contents/Runtime/uHD-Agent.app)
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        MotoCastUpdater    Application Hidden (/Applications/MotoCast.app/Contents/Resources/MotoCastUpdater.app)
        Android File Transfer Agent    Application  (/Users/[redacted]/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app)
        USBOverdriveHelper    UNKNOWN  (missing value)
        Google Drive    Application  (/Applications/Google Drive.app)
        Google Chrome    Application Hidden (/Applications/Google Chrome.app)
        BitTorrent    UNKNOWN  (missing value)
        MotoCast    Application Hidden (/Applications/MotoCast.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 20 Check version
        o1dbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]
        Unity Web Player: Version: UnityPlayer version 4.6.1f1 - SDK 10.6 [Click for support]
        Default Browser: Version: 537 - SDK 10.9
        Flip4Mac WMV Plugin: Version: 2.4.4.2 [Click for support]
        AdobePDFViewerNPAPI: Version: 11.0.06 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.10411.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        JavaAppletPlugin1: Version: Java 8 Update 20 [Click for support]
        CitrixICAClientPlugIn: Version: 11.2.0 [Click for support]
        AdobePDFViewer: Version: 11.0.06 - SDK 10.6 [Click for support]
        googletalkbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]
        SharePointBrowserPlugin: Version: 14.3.6 - SDK 10.6 [Click for support]
        DirectorShockwave: Version: 12.0.3r133 - SDK 10.6 [Click for support]
    User internet Plug-ins: ℹ️
        BlueStacks Install Detector: Version: 0.3.6 - SDK 10.7 [Click for support]
        Picasa: Version: 1.0 - SDK 10.6 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
    3rd Party Preference Panes: ℹ️
        Citrix Online Plug-in  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        Java  [Click for support]
        MagicPrefs  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
            19%    Google Chrome
             7%    WindowServer
             2%    hidd
             1%    NETGEARGenieDaemon
             0%    Google Drive
    Top Processes by Memory: ℹ️
        180 MB    Google Chrome
        82 MB    Finder
        35 MB    Google Chrome Helper
        34 MB    ocspd
        34 MB    mds_stores
    Virtual Memory Information: ℹ️
        28 MB    Free RAM
        906 MB    Active RAM
        890 MB    Inactive RAM
        1.17 GB    Wired RAM
        39.99 GB    Page-ins
        423 MB    Page-outs

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console 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 and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

Maybe you are looking for