string of slow

Hello.

I want to take a file and remove all lines starting with a '!' and save the file in a single string.

After a few hours of work and a lot of Googling around, I've implemented finally something that works, but it's far too slow, it takes about 2 seconds for a file of lines of 1140.

It is obvious that the way I'm treats the string is terrible, but I can't find another way to do it.

Can someone help me with tips and tricks to make it work a lot faster?

I'm using LabVIEW 2014, because it's new, I enclose also a registered version of 2011.

Thank you all.

First of all, I had read the entire file in one shot.  You use a lot of time continuously open and close this file.  This is probably a very large percentage of your time.  From there, use a for loop and make your cheque.

Tags: NI Software

Similar Questions

  • FUNCTION SLOW - subset of the string

    Hello everyone,

    in the image of attacched, I have a loop that goes through a 1 d array of strings, searches for items starting with "02" and went back inside their index in the array.

    The problem is that it is very slow, it takes about 18 seconds to analyze the overall picture of the file which is long about 20000 pieces. Since I'm on a PC, I expect to do the job in a few seconds.

    Any suggestions?

    Thanks in advance,

    Lorenzo

    OK, here's a few things I noticed that could slow things in:

    -Nodes of property inside the loop will definitely slow down your loop. It's also dead code - you must update the maximum on the scale once before the loop executes.

    -Local variables are also (I don't think marginally) slower than the use of the Terminal. LabVIEW is a data flow language: you must use cables to connect all things!

    -Using conditional indexation will cause dynamic memory allocations, because you have to resize the table... you could improve this by preallocating a table for the number of iterations in the loop and then resize the table at the end

  • conversion string to bytearray very very slow on iOS

    Dear members,

    I want to convert the string value of image read xml to bytearray to an iOS Application file.

    By asking Google, I discovered that there is an existing class from Base64 written by Subhero for AS3.

    I have attached the code below for your references

    However, during testing, I found that the _decodeSring(str); function call is really really slow. It took hundreds mini-secondes to run. My image string length is about 90 k.

    Has anyone else tried with this room code and what is the performance.

    Is there another way to do the conversion, even with the best performance?

    Thank you

    /*
    *  A Base64 encoder/decoder implementation in Actionscript 3
    *  This work is made available under http://creativecommons.org/licenses/by-nc-sa/2.0/de/deed.en
    *
    *  @author [email protected]
    *  @version 0.5
    */

    package formatter {
    // import ->
    import flash.utils.ByteArray;
    import flash.errors.EOFError;
    // <- import

    // Base64 ->
    /*
    *   A class used for transforming a ByteArray to a Base64-encoded string and vice versa.
    *   Since the "built-in" class (mx.utils.Base64Encoder) is not documented yet, this class can be 
    *   used for Base64 encoding/decoding in the meantime.
    *   The class will be deprecated as soon as Macromedia/Adobe decides to fully release the
    *   "native" AS3 Base64 class (Flex2 full release respectively).
    *   Its implementation is based upon a HowTo {@link http://www.kbcafe.com/articles/HowTo.Base64.pdf},
    *   a Java implementation {@link http://ostermiller.org/utils/Base64.java.html} and an
    *   AS2-implementation by Jason Nussbaum {@link http://blog.jasonnussbaum.com/?p=108}
    *
    */

    public class Base64 {
       
    // mx.utils.StringUtil
       
    public static function isWhitespace(char:String):Boolean{
           
    switch (char){
               
    case " ":
               
    case "\t":
               
    case "\r":
               
    case "\n":
               
    case "\f":
                   
    return true;   
               
    default:
                   
    return false;
           
    }
       
    }

       
    // the Base64 "alphabet"
       
    private static var _b64Chars:Array=new Array(
           
    'A','B','C','D','E','F','G','H',
           
    'I','J','K','L','M','N','O','P',
           
    'Q','R','S','T','U','V','W','X',
           
    'Y','Z','a','b','c','d','e','f',
           
    'g','h','i','j','k','l','m','n',
           
    'o','p','q','r','s','t','u','v',
           
    'w','x','y','z','0','1','2','3',
           
    '4','5','6','7','8','9','+','/'
       
    )
       
    // the reverse-lookup object used for decoding
       
    private static var _b64Lookup:Object=_buildB64Lookup();
       
    // the boolean to insert linebreaks after 76 chars into the Base64 encoded string
       
    private static var _linebreaks:Boolean;

       
    /*
        *   The class method for encoding an array of bytes to a Base64 encoded string.
        *
        *   @param bArr A ByteArray containing values to encode
        *   @param linebreaks A boolean to insert a linebreak after 76 Base64-chars
        *   @return The Base64 encoded string
        *  
        */

       
    public static function Encode(bArr:ByteArray, linebreaks:Boolean=false):String
       
    {
            _linebreaks
    = linebreaks;
           
    return _encodeBytes(bArr);
       
    }

       
    /*
        *   The class method for decoding a Base64 encoded string to an array of bytes.
        *
        *   @param str A Base64 encoded string
        *   @return An array of bytes
        *  
        */

       
    public static function Decode(str:String):ByteArray
       
    {
           
    return _decodeSring(str);
       
    }

       
    /*
        *   The private helper class method to build an object used for reverse B64 char lookup.
        *
        *   @return An object with each B64 char as a property containing the corresponding value
        *  
        */

       
    private static function _buildB64Lookup():Object
       
    {
           
    var obj:Object=new Object();
           
    for (var i:Number=0; i < _b64Chars.length; i++)
           
    {
                obj
    [_b64Chars[i]]=i;
           
    }
           
    return obj;
       
    }

       
    /*
        *   The private helper class method to determine whether a given char is B64 compliant.
        *
        *   @param char A character as string (length=1)
        *   @return A boolean indicating the given char *is* in the B64 alphabet
        *  
        */

       
    private static function _isBase64(char:String):Boolean
       
    {
           
    return _b64Lookup[char] != undefined;
       
    }

       
    /*
        *   The private class method for encoding an array of bytes into a B64 encoded string.
        *
        *   @param bs An array of bytes
        *   @return The B64 encoded string
        *
        *   @see formatter.Base64.Encode()
        *  
        */

       
    private static function _encodeBytes(bs:ByteArray):String
       
    {
           
    var b64EncStr:String = "";
           
    var bufferSize:uint;
           
    var col:uint=0;
            bs
    .position=0;
           
    while (bs.position < bs.length)
           
    {
                bufferSize
    = bs.bytesAvailable >= 3 ? 3 : bs.bytesAvailable;
               
    var byteBuffer:ByteArray=new ByteArray();
                bs
    .readBytes(byteBuffer, 0, bufferSize);
                b64EncStr
    += _b64EncodeBuffer(byteBuffer);
                col
    +=4;
               
    if (_linebreaks && col%76 == 0) {
                    b64EncStr
    += "\n";
                    col
    =0;
               
    }
           
    }
           
    return b64EncStr.toString();
       
    }

       
    /*
        *   The private class method for encoding a buffer of 3 bytes (24bit) to 4 B64-chars
        *   (representing 6bit each => 24bit).
        *
        *   @param buffer An array of bytes (1 <= length <= 3)
        *   @return The byte buffer encoded to 4 B64 chars as string
        *
        *   @see formatter.Base64._encodeBytes()
        *  
        */

       
    private static function _b64EncodeBuffer(buffer:ByteArray):String
       
    {
           
    var bufferEncStr:String = "";
            bufferEncStr
    += _b64Chars[buffer[0] >> 2];
           
    switch (buffer.length)
           
    {
               
    case 1 :
                    bufferEncStr
    += _b64Chars[((buffer[0] << 4) & 0x30)];
                    bufferEncStr
    += "==";
                   
    break;
               
    case 2 :
                    bufferEncStr
    += _b64Chars[(buffer[0] << 4) & 0x30 | buffer[1] >> 4];
                    bufferEncStr
    += _b64Chars[(buffer[1] << 2) & 0x3c];
                    bufferEncStr
    += "=";
                   
    break;
               
    case 3 :
                    bufferEncStr
    += _b64Chars[(buffer[0] << 4) & 0x30 | buffer[1] >> 4];
                    bufferEncStr
    += _b64Chars[(buffer[1] << 2) & 0x3c | buffer[2] >> 6];
                    bufferEncStr
    += _b64Chars[buffer[2] & 0x3F];
                   
    break;
               
    default :   trace("Base64 byteBuffer outOfRange"); 
           
    }          
           
    return bufferEncStr.toString();
       
    }

       
    /*
        *   The private class method for decoding a string containing B64 chars to an array of bytes
        *
        *   @param s The B64 encoded string
        *   @return A decoded array of bytes
        *
        *   @see formatter.Base64.Decode()
        *  
        */

       
    private static function _decodeSring(s:String):ByteArray
       
    {
           
    var b64EncString:String="" + s;
           
    var b64DecBytes:ByteArray=new ByteArray();
           
    var stringBuffer:String="";
           
    var lgth:uint=b64EncString.length;     
           
    for (var i:uint=0; i < lgth; i++)
           
    {
               
    var char:String=b64EncString.charAt(i);
               
    if (!isWhitespace(char) && (_isBase64(char) || char == "=")) {
                    stringBuffer
    += char;
                   
    if (stringBuffer.length == 4) {
                        b64DecBytes
    .writeBytes( _b64DecodeBuffer(stringBuffer) );
                        stringBuffer
    ="";
                   
    }
               
    }
           
    }
            b64DecBytes
    .position=0;
           
    return b64DecBytes;
       
    }

       
    /*
        *   The private class method for decoding a string buffer of 4 B64 chars
        *   (each representing 6bit) to an array of 3 bytes.
        *
        *   @param buffer A string containing B64 chars (length = 4)
        *   @return An array of bytes containing the decoded values
        *
        *   @see formatter.Base64._decodeBytes()
        *  
        */

       
    private static function _b64DecodeBuffer(buffer:String):ByteArray
       
    {
           
    var bufferEncBytes:ByteArray=new ByteArray();
           
    var charValue1:uint=_b64Lookup[buffer.charAt(0)];
           
    var charValue2:uint=_b64Lookup[buffer.charAt(1)];
           
    var charValue3:uint=_b64Lookup[buffer.charAt(2)];
           
    var charValue4:uint=_b64Lookup[buffer.charAt(3)];
            bufferEncBytes
    .writeByte(charValue1 << 2 | charValue2 >> 4);
           
    if (buffer.charAt(2) != "=") bufferEncBytes.writeByte(charValue2 << 4 | charValue3 >> 2);
           
    if (buffer.charAt(3) != "=") bufferEncBytes.writeByte(charValue3 << 6 | charValue4);
           
    return bufferEncBytes;
       
    }  
    }
    // <- Base64
    }

    Found another sample of code http://www.foxarc.com/blog/article/60.htm

    It is waaaay faster than the code I post above, if someone wants to convert ByteArray Base64 string, can reference it.

  • String concatenation and put into registry to offset slowing computer

    Hi all

    I tried to create a record of comms between LabVIEW and an Arduino by concatenating the current message with previous posts and put in a shift register.  After a few hours the LabVIEW began to crawl.

    I had a vague idea that you could write a string indicator without wiping the old content.  I thought that if I could do that is there not a huge overload copy all a larger string.

    Am I dreaming?

    Thank you

    If you need registration integer comm I would say the comms streaming the file.  Make sure you put a Boolean value in to turn off logging.

    Usually, it's one of those things you just do everything in debugging.  If so use OR spy rather than writing your own debugger.

  • Color property of multiline string is too slow, why is-console so much faster?



  • Post SUPER SUPER SUPER SLOW

    Mail on OS X 10.11.1 9.1 is SUPER SUPER slow.  It is a new problem.  No updates have been made to the MacBook Pro 15 "2.5 Ghz Mid 2009 laptop computer.

    After clicking on the Mail icon, it begins to start and EVERYTHING is slow analysis.  Mail takes about 15 min to open and is still useless because its so slow.

    Sorry for the mistake, but Long page that's how long it took for the Mail program to start then I force quit it.

    Can anyone help why mail will not work properly and why all the errors?

    02/10/16 com.apple.cts [256 1:18:08.073 PM]: com.apple.suggestd.persist - stats: scheduler_evaluate_activity told me to run this job. However, but the start is no time for 440 seconds.  Ignorant.

    02/10/16 1:18:26.906 PM DCs [284]: sync with system failure SOSAccountThisDeviceCanSyncWithCircle: Domain = com.apple.security.sos.error error Code = 1035 "account identity not defined' UserInfo = {NSDescription = identity account not defined}

    02/10/16 1:18:44.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 69 [iconservicesagen]

    02/10/16 1:18:45.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 73 [wdhelper]

    02/10/16 1:18:46.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 151 [ctkd]

    02/10/16 1:18:47.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 152 [secinitd]

    02/10/16 1:18:48.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 178 [CMS]

    02/10/16 1:18:49.000 PM kernel [0]: memorystatus_thread: idle outgoing pid 202 [com.apple.audio.]

    02/10/16 1:18:50.292 PM storeassetd [350]: FCIsAppAllowedToLaunchExt [343]-* _FCMIGAppCanLaunch has expired. Returns the value false.

    02/10/16 1:18:50.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 181 [nsurlsessiond]

    02/10/16 1:18:51.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 239 [systemsoundserve]

    02/10/16 1:18:52.000 PM kernel [0]: memorystatus_thread: idle outgoing pid 240 [EET]

    02/10/16 1:18:53.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 340 [SafariCloudHisto]

    02/10/16 1:18:54.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 355 [CallHistoryPlugi]

    02/10/16 1:18:55.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 356 [CMFSyncAgent]

    02/10/16 1:18:55.667 PM syncdefaultsd [449]: SecTaskLoadEntitlements no error = 3

    02/10/16 com.apple.CDScheduler [46 1:18:55.992 PM]: State of thermal pressure: 0 State of memory pressure: 1

    02/10/16 1:18:56.283 PM syncdefaultsd [449]: com.apple.cmfsyncagent has been removed from the sync of apps.

    02/10/16 1:18:56.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 342 [CallHistorySyncH]

    02/10/16 1:18:57.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 269 [nsurlsessiond]

    02/10/16 1:18:58.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 348 [PDK]

    02/10/16 1:18:58.672 PM NotificationCenter [305]: communication error: OS_xpc_error: error: 0x7fff7dd42b90 > {count = 1, content =

    'XPCErrorDescription' = > < string: 0x7fff7dd42f40 > {length = 22, content = "Connection interrupted"}

    } >

    02/10/16 1:18:58.681 PM Finder [329]: communication error: OS_xpc_error: error: 0x7fff7dd42b90 > {count = 1, content =

    'XPCErrorDescription' = > < string: 0x7fff7dd42f40 > {length = 22, content = "Connection interrupted"}

    } >

    02/10/16 1:18:59.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 365 [CPE]

    02/10/16 1:19:00.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 140 [amfid]

    02/10/16 1:19:01.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 395 [ScopedBookmarkAg]

    02/10/16 1:19:02.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 396 [com.apple.PhotoI]

    02/10/16 1:19:03.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 295 [com.apple.ICPPho]

    02/10/16 1:19:03.680 PM cloudphotosd [273]: connection cancelled or interrupted for service library photo stream, tempting reconnect...

    02/10/16 1:19:04.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 386 [ContainerMetadat]

    02/10/16 1:19:05.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 199 [sysmond]

    02/10/16 1:19:05.757 PM cloudphotosd [273]: reconnecting to stream photo library service...

    02/10/16 1:19:06.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST [installed] 366

    02/10/16 1:19:07.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 119 [aslmanager]

    02/10/16 1:19:08.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 144 [coresymbolicatio]

    02/10/16 1:19:09.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 400 [systemstatsd]

    02/10/16 1:19:10.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 428 [QuickLookSatelli]

    02/10/16 1:19:11.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 218 [com.apple.Ambien]

    02/10/16 1:19:12.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 179 [backupd-helper]

    02/10/16 com.apple.mtmd [180 1:19:12.957 PM]: open on /. MobileBackups/ordinateur/2016-10-02-131600/Volume/private/var/db/nsurlsessiond/Library/com.apple.nsurlsessiond/bundles.plist: is a directory

    02/10/16 1:19:13.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 246 [akd]

    02/10/16 1:19:14.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 292 [akd]

    02/10/16 1:19:19.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 309 [AppleIDAuthAgent]

    02/10/16 1:19:20.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 347 [cloudd]

    02/10/16 1:19:21.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 398 [AssetCacheLocato]

    02/10/16 1:19:22.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 183 [nehelper]

    02/10/16 1:19:23.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 196 [findmydeviced]

    02/10/16 1:19:24.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 394 [com.apple.photom]

    02/10/16 1:19:25.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 346 [com.apple.geod]

    02/10/16 1:19:26.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 186 [com.apple.ifdrea]

    02/10/16 1:19:27.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 314 [AirPlayUIAgent]

    02/10/16 1:19:28.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 297 [FolderActionsDis]

    02/10/16 1:19:29.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 173 [awdd]

    02/10/16 1:19:30.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 252 [com.apple.Accoun]

    02/10/16 1:19:31.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 293 [IDSKeychainSynci]

    02/10/16 1:19:32.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 288 [IMDPersistenceAg]

    02/10/16 1:19:33.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 323 [fmfd]

    02/10/16 1:19:34.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 286 [callservicesd]

    02/10/16 1:19:35.065 PM image [287]: SecTaskLoadEntitlements no error = 3

    02/10/16 1:19:35.066 PM image [287]: [warning] failed to get the rights for the task of the client. Error: Error Domain NSPOSIXErrorDomain Code = not = 3 "no such process".

    02/10/16 1:19:35.066 PM image [287]: [warning] deny xpc connection, task has no right: com.apple.private.icfcallserver ((null): 286)

    02/10/16 1:19:35.066 PM image [287]: [warning] deny xpc connection, task has no right: com.apple.private.icfcallserver ((null): 286)

    02/10/16 1:19:35.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 321 [soagent]

    02/10/16 com.apple.dock.extra [353 1:19:36.905 PM]: main connection SOHelperCenter down

    02/10/16 1:19:36.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 290 [nsurlstoraged]

    02/10/16 1:19:37.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 382 [com.apple.InputM]

    02/10/16 1:19:38.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST [deleted] 364

    02/10/16 1:19:39.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 266 [iconservicesagen]

    02/10/16 1:19:40.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 68 [iconservicesd]

    02/10/16 com.apple.CDScheduler [256 1:19:41.349 PM]: State of thermal pressure: 0 State of memory pressure: 2

    02/10/16 1:19:41.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 341 [mapspushd]

    02/10/16 1:19:42.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 289 [com.apple.iCloud]

    02/10/16 1:19:43.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 450 [periodical-wrapper]

    02/10/16 1:19:44.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 274 [suggestd]

    02/10/16 1:19:44.978 PM syncdefaultsd [449]: SecTaskLoadEntitlements no error = 3

    02/10/16 1:19:45.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 451 [periodical-wrapper]

    02/10/16 com.apple.CDScheduler [46 1:19:46.001 PM]: SysAdmChk: limitation of the execution of the activities. memFlags:0 x 1 thermalLevel:0 x 0

    02/10/16 1:19:46.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 106 [diagnosticd]

    02/10/16 1:19:47.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 299 [spindump_agent]

    02/10/16 1:19:48.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 401 [com.apple.Perfor]

    02/10/16 1:19:49.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 275 [EET]

    02/10/16 1:19:50.076 PM syncdefaultsd [449]: suggestd withdrew the synchronization of the apps.

    02/10/16 1:19:50.076 PM syncdefaultsd [449]: SecTaskLoadEntitlements no error = 3

    02/10/16 1:19:50.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 281 [com.apple.Addres]

    02/10/16 1:19:51.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 291 [CloudKeychainPro]

    02/10/16 1:19:53.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 117 [sandboxd]

    02/10/16 1:19:54.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 249 [softwareupdated]

    02/10/16 1:19:55.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 369 [com.apple.Commer]

    02/10/16 1:19:56.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 360 [spindump]

    02/10/16 1:19:57.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 280 [com.apple.CloudP]

    02/10/16 1:19:57.180 PM cloudphotosd [273]: service connection down

    02/10/16 1:19:57.907 PM syncdefaultsd [449]: com.apple.CoreSuggestions has been removed from the sync of apps.

    02/10/16 1:19:58.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 550 [com.apple.ICPPho]

    02/10/16 1:19:58.592 PM cloudphotosd [273]: connection cancelled or interrupted for service library photo stream, tempting reconnect...

    02/10/16 1:19:59.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 548 [nsurlsessiond]

    02/10/16 1:20:00.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 270 [secinitd]

    02/10/16 1:20:01.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 172 [networkd_privile]

    02/10/16 1:20:02.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 549 [nsurlsessiond]

    02/10/16 1:20:03.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 371 [DataDetectorsDyn]

    02/10/16 1:20:04.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 344 [bird]

    02/10/16 1:20:05.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 230 [com.apple.CodeSi]

    02/10/16 1:20:06.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 551 [backupd-helper]

    02/10/16 1:20:07.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 284 [DCs]

    02/10/16 1:20:04.743 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the application "Console" for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:20:05.221 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by 2.02 seconds [0.49 fps] "Console" application (server force reactivated their end of 1.00 seconds [1,00 fps])

    02/10/16 1:20:06.586 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:20:07.008 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" after 1.79 seconds [0.56 fps] (server force reactivated their end of 1.36 seconds [1,00 fps])

    02/10/16 1:20:02.809 PM syncdefaultsd [449]: SecTaskLoadEntitlements no error = 3

    02/10/16 1:20:08.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 260 [cfprefsd]

    02/10/16 1:20:09.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 72 [coreduetd]

    02/10/16 1:20:10.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 553 [systemstatsd]

    02/10/16 1:20:11.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 449 [syncdefaultsd]

    02/10/16 1:20:12.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 555 [soagent]

    02/10/16 1:20:13.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 552 [AirPlayUIAgent]

    02/10/16 1:20:14.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 279 [accountsd]

    02/10/16 com.apple.dock.extra [353 1:20:19.516 PM]: main connection SOHelperCenter down

    02/10/16 1:20:20.400 PM cloudphotosd [273]: error: error Domain = NSCocoaErrorDomain Code = 4097 "connection to the service named com.apple.ICPPhotoStreamLibraryService" UserInfo = {NSDebugDescription = connection to the service named com.apple.ICPPhotoStreamLibraryService}

    02/10/16 1:21:00.905 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:21:02.230 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" 2.37 seconds [0.42 fps] (server force reactivated their end of 1.04 seconds [1,00 fps])

    02/10/16 1:21:10.797 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:21:11.526 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" after 1.80 seconds [0.56 fps] (server force reactivated their end 1.07 seconds [1,00 fps])

    02/10/16 com.apple.CDScheduler [46 1:21:56.411 PM]: State of thermal pressure: 0 State of memory pressure: 2

    02/10/16 1:21:57.202 PM SubmitDiagInfo [363]: unable to load the configuration of location on the disk file. To return to the default location. Reason: Won't serialize to _readDictionaryFromJSONData due to the object nil

    02/10/16 1:21:58.327 PM SubmitDiagInfo [363]: unable to load the configuration of location on the disk file. To return to the default location. Reason: Won't serialize to _readDictionaryFromJSONData due to the object nil

    02/10/16 1:21:58.494 PM SubmitDiagInfo [363]: unable to load the configuration of location on the disk file. To return to the default location. Reason: Won't serialize to _readDictionaryFromJSONData due to the object nil

    02/10/16 1:21:58.510 PM SubmitDiagInfo [363]: unable to load the configuration of location on the disk file. To return to the default location. Reason: Won't serialize to _readDictionaryFromJSONData due to the object nil

    02/10/16 1:22:13.224 PM diagnosticd [571]: ostraceutil returned the 18176 error while connecting the caches

    02/10/16 1:22:43.507 PM secinitd [568]: UID [501]: cache loaded: /System/Library/Caches/com.apple.app-sandbox-cache.plist

    02/10/16 1:23:39.000 PM syslogd [45]: sender ASL statistics

    02/10/16 1:24:10.000 PM kernel [0]: nspace-Manager-Update: found no token 1693

    02/10/16 1:24:03.770 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:24:05.360 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" 2.59 seconds [0.39 fps] (server force reactivated their end of 1.00 seconds [1,00 fps])

    02/10/16 com.apple.mtmd [180 1:24:14.408 PM]: Manager timeout reset failed. (status =-1/errno = 2/token = 1693/fd = 4)

    02/10/16 1:24:17.000 PM kernel [0]: nspace-Manager-unlock: found no token 1693

    02/10/16 com.apple.mtmd [180 1:24:17.206 PM]: Manager unlock failed. (status =-1/errno = 2/token = 1693/fd = 4)

    02/10/16 1:24:36.320 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:24:37.451 PM appleeventsd [53]: < rdar://problem/11489077 > an application sandbox with pid 552, "AirPlayUIAgent" registered with the appleeventsd, but his signing of code could not be read and validated by appleeventsd, and so he cannot receive the AppleEvents targeted by bundle id, signature, or name. Install the app in /Applications/ or some other place of the world readable to solve this problem. Error = ERROR: 100003 # {"NSDescription"="SecCodeCopyGuestWithAttributes () returned 100003,-."}  (handleMessage () appleEventsD.cp #2098) com.apple.root.default - qos

    02/10/16 1:24:40.247 PM appleeventsd [53]: 10759711: Error #17 (os/kern) invalidates good attempt to add send directly to the port (port: 14095 / 0x370f rcv:0, sending: 0, d limit: 2:0). appDispatchQ (addSendRight (XPCHelpers.cp #384))

    02/10/16 1:24:40.247 PM appleeventsd [53]: SetClientAppleEventPortQ(), cannot add send it directly to the port (port: 14095 / 0x370f rcv:0, sending: 0, d limit: 2:0) for app to App: [NULL] / [NULL] 552 / 0x0: 27027 0 x 0 x 00000 sess = 100007 for other applications cannot send this request AppleEvents. AppDispatchQ (SetClientAppleEventPortQ (appleEventsD.cp #731))

    02/10/16 1:24:40.248 PM appleeventsd [53]: SecTaskLoadEntitlements no error = 3

    02/10/16 1:24:44.374 PM accountsd [565]: [warning] Services all gone, delete all accounts

    02/10/16 1:24:44.375 PM accountsd [565]: [warning] Services all disappeared, removing all activated accounts

    02/10/16 1:24:44.375 PM accountsd [565]: [warning] Services all disappeared, removing all dependent features

    02/10/16 1:24:49.229 PM sandboxd [574]: invalid connection: com.apple.coresymbolicationd

    02/10/16 com.apple.xpc.launchd [1 1:25:16.799 PM]: (com.apple.PubSub.Agent [578]) endpoint has been activated through legacy launch (3) API. Please go to XPC or bootstrap_check_in(): com.apple.pubsub.ipc

    02/10/16 com.apple.xpc.launchd [1 1:25:16.799 PM]: (com.apple.PubSub.Agent [578]) endpoint has been activated through legacy launch (3) API. Please go to XPC or bootstrap_check_in(): com.apple.pubsub.notification

    02/10/16 1:25:48.686 PM sandboxd [574]: ostraceutil (573) ([573]) political system: refuse the forbidden-link-priv

    02/10/16 com.apple.cts [256 1:25:51.486 PM]: com.apple.accounts.cleanup: Planner returned false. However, this task is overdue 1 seconds. Run anyway.

    02/10/16 1:27:02.932 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:27:03.763 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" after 2.34 seconds [0.43 fps] (server force reactivated their end of 1.51 seconds [1,00 fps])

    02/10/16 1:27:34.000 PM kernel [0]: IOHIDSystem: LLEventQueue overflow postEvent.

    02/10/16 1:27:34.304 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:34.624 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:34.701 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:34.701 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:34.702 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:34.787 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:34.787 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:34.788 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:35.591 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:41.712 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:43.373 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:43.382 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:43.389 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:43.837 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:43.888 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:43.888 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:43.888 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:44.299 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:27:52.315 PM DCs [577]: error in __SOSUpdateKeyInterest_block_invoke_2 get the interests of the ring (null)

    02/10/16 1:27:53.082 PM SubmitDiagInfo [363]: unable to load the configuration of location on the disk file. To return to the default location. Reason: Won't serialize to _readDictionaryFromJSONData due to the object nil

    02/10/16 1:27:56.175 PM SubmitDiagInfo [363]: unable to load the configuration of location on the disk file. To return to the default location. Reason: Won't serialize to _readDictionaryFromJSONData due to the object nil

    02/10/16 1:28:57.747 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the application "Console" for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:28:59.716 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually revived by 'Console' application after 2.97 seconds [0.34 fps] (server force reactivated their end of 1.00 seconds [1,00 fps])

    02/10/16 1:29:37.829 PM sandboxd [574]: ostraceutil (573) ([573]) political system: refuse the forbidden-link-priv

    02/10/16 1:29:56.471 PM CloudKeychainProxy [583]: __45-[UbiqitousKVSProxy doEnsurePeerRegistration] _block_invoke < UB - e - C > ensurePeerRegistration called, success ((null))

    02/10/16 1:30:11.859 PM DCs [577]: securityd_xpc_dictionary_handler IDSKeychainSynci [582] SetDeviceID error Domain = com.apple.security.sos.error Code = 1032 'no equal for me' UserInfo = {NSDescription = no equal for me}

    02/10/16 1:30:12.526 PM DCs [577]: securityd_xpc_dictionary_handler IDSKeychainSynci [582] SetDeviceID error Domain = com.apple.security.sos.error Code = 1032 'no equal for me' UserInfo = {NSDescription = no equal for me}

    02/10/16 1:30:36.424 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:30:36.495 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:30:36.495 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:30:36.495 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:30:36.495 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:30:36.495 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:30:36.495 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:30:36.495 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:31:08.490 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:31:09.628 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" 2.26 seconds [0.44 fps] (server force reactivated their end of 1.12 seconds [1,00 fps])

    02/10/16 1:32:02.929 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:32:03.886 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" after 2.06 seconds [0.49 fps] (server force reactivated their end of 1.10 seconds [1,00 fps])

    02/10/16 1:32:43.000 PM kernel [0]: process Mail [544] taken causing excessive Awakenings. Awakenings (per second) rate: 4202; Maximum rate (per second) Awakenings: 150; Observation period: 300 seconds; Life of the Awakenings of task number: 76094

    02/10/16 1:33:10.665 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:33:11.906 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:33:12.046 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:33:12.046 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:33:12.046 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:33:12.046 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:33:12.046 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:33:12.046 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 1:33:13.855 PM hidd [99]: could not get the policy for the event of type IOHIDEventQueue 11. (e00002e8)

    02/10/16 com.apple.cts [256 1:33:33.488 PM]: com.apple.ical.sync.x-coredata://99558A83-D68B-49EA-9401-A17E1A69EAFC/ExchangeP lute/p26: Planner returned false. However, this task is overdue 1 seconds. Run anyway.

    02/10/16 1:33:34.520 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:33:35.805 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" 2.39 seconds [0.42 fps] (server force reactivated their end of 1.10 seconds [1,00 fps])

    02/10/16 1:34:01.310 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:34:02.007 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" after 1.70 seconds [0.59 fps] (server force reactivated their end of 1.00 seconds [1,00 fps])

    02/10/16 1:34:02.000 PM syslogd [45]: sender ASL statistics

    02/10/16 1:34:04.382 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the application "Console" for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:34:04.949 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually revived by 'Console' application after 1.57 seconds [0,64 fps] (server force reactivated their end of 1.00 seconds [1,00 fps])

    02/10/16 1:34:11.258 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "Fitbit Connect" application for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:34:11.259 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by application "Fitbit Connect" after 1.30 seconds [0.77 fps] (server force reactivated their end of 1.30 seconds [1,00 fps])

    02/10/16 1:34:13.232 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "Fitbit Connect" application for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:34:13.235 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by application "Fitbit Connect" after 1.07 seconds [0.93 fps] (server force reactivated their end 1.07 seconds [1,00 fps])

    02/10/16 1:34:29.098 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "Fitbit Connect" application for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:34:29.976 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by application "Fitbit Connect" after 1.88 seconds [0.53 fps] (server force reactivated their end of 1.00 seconds [1,00 fps])

    02/10/16 1:34:35.727 PM sandboxd [574]: ostraceutil (573) ([573]) political system: refuse the forbidden-link-priv

    02/10/16 1:34:40.539 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "Fitbit Connect" application for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:34:40.539 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by application "Fitbit Connect" after 1.01 seconds [0.99 fps] (server force reactivated their end of 1.01 seconds [1,00 fps])

    02/10/16 com.apple.xpc.launchd [1 1:34:54.320 PM]: (com.apple.ReportCrash [586]) endpoint has been activated through legacy launch (3) API. Please go to XPC or bootstrap_check_in(): com.apple.ReportCrash

    02/10/16 1:34:54.902 PM ReportCrash [586]: call to spindump for pid = 544 wakeups_rate = 4202 time = 11 because of excessive Awakenings

    02/10/16 1:35:11.741 PM syncdefaultsd [575]: ApplePushService: Timed out call blocking, cannot make the call via a XPC connection to "com.apple.apsd".

    02/10/16 1:35:13.695 PM syncdefaultsd [575]: ApplePushService: Timed out call blocking, cannot make the call via a XPC connection to "com.apple.apsd".

    02/10/16 1:35:19.701 PM syncdefaultsd [575]: ApplePushService: Timed out call blocking, cannot make the call via a XPC connection to "com.apple.apsd".

    02/10/16 1:35:21.312 PM syncdefaultsd [575]: ApplePushService: Timed out call blocking, cannot make the call via a XPC connection to "com.apple.apsd".

    02/10/16 1:35:23.823 PM syncdefaultsd [575]: ApplePushService: Timed out call blocking, cannot make the call via a XPC connection to "com.apple.apsd".

    02/10/16 1:35:25.050 PM syncdefaultsd [575]: ApplePushService: Timed out call blocking, cannot make the call via a XPC connection to "com.apple.apsd".

    02/10/16 com.apple.cts [256 1:35:50.975 PM]: com.apple.ical.sync.x-coredata://99558A83-D68B-49EA-9401-A17E1A69EAFC/CalDAVPri unjte/p24: Planner returned false. However, this task is overdue 1 seconds. Run anyway.

    02/10/16 1:35:56.452 PM syncdefaultsd [575]: ApplePushService: connection timed out trying to communicate with apsd

    02/10/16 1:35:57.375 PM spindump [558]: the timeout of waiting for SMJobCopyDictionary after 10 seconds

    02/10/16 1:36:01.544 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:36:05.348 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" after 4,92 seconds [0.20 fps] (server force reactivated their end of 1.12 seconds [1,00 fps])

    02/10/16 1:36:08.000 PM kernel [0]: process Finder [329] taken causing excessive Awakenings. Awakenings (per second) rate: 237; Maximum rate (per second) Awakenings: 150; Observation period: 300 seconds; Life of the Awakenings of task number: 59350

    02/10/16 1:36:28.391 PM syncdefaultsd [575]: ApplePushService: connection timed out trying to communicate with apsd

    02/10/16 1:36:55.000 PM kernel [0]: process mds [64] taken causing excessive Awakenings. Awakenings (per second) rate: 180; Maximum rate (per second) Awakenings: 150; Observation period: 300 seconds; Life of the Awakenings of task number: 74467

    02/10/16 1:36:51.669 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:36:53.437 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by 2.87 seconds [0.35 fps] "SystemUIServer" application (server force reactivated their end of 1.11 seconds [1,00 fps])

    02/10/16 1:37:07.595 PM syncdefaultsd [575]: ApplePushService: connection timed out trying to communicate with apsd

    02/10/16 1:37:35.701 PM syncdefaultsd [575]: ApplePushService: connection timed out trying to communicate with apsd

    02/10/16 1:37:40.376 PM apsd [79]: unexpected replacement of connection to < APSConnectionServer: 0x7feec244e380 >

    02/10/16 1:37:41.812 PM WindowServer [158]: send_datagram_available_ping: pid 544 has not acted on a ping it removed before expiring.

    02/10/16 1:37:42.242 PM WindowServer [158]: send_datagram_available_ping: pid 324 did not act on a ping it removed before expiring.

    02/10/16 1:37:42.986 PM apsd [79]: unexpected replacement of connection to < APSConnectionServer: 0x7feec244e380 >

    02/10/16 com.apple.xpc.launchd [1 1:37:48.664 PM]: (com.apple.ReportCrash [587]) endpoint has been activated through legacy launch (3) API. Please go to XPC or bootstrap_check_in(): com.apple.ReportCrash

    02/10/16 com.apple.xpc.launchd [1 1:37:48.664 PM]: (com.apple.ReportCrash.Root [588]) endpoint has been activated through legacy launch (3) API. Please go to XPC or bootstrap_check_in(): com.apple.ReportCrash.DirectoryService

    02/10/16 1:37:51.355 PM ReportCrash [587]: appeal of spindump for NEST = 329 wakeups_rate = 237 duration = 190 because of excessive Awakenings

    02/10/16 1:38:01.044 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "SystemUIServer" app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:38:03.546 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "SystemUIServer" 3.50 seconds [0.29 fps] (server force reactivated their end of 1.00 seconds [1,00 fps])

    02/10/16 1:38:32.000 PM kernel [0]: process airportd [61] taken causing excessive Awakenings. Awakenings (per second) rate: 689; Maximum rate (per second) Awakenings: 150; Observation period: 300 seconds; Life of the Awakenings of task number: 83898

    02/10/16 com.apple.iCloudHelper [589 1:38:41.485 PM]: ApplePushService: Timed out call blocking, cannot make the call via a XPC connection to "com.apple.apsd".

    02/10/16 com.apple.iCloudHelper [589 1:38:42.728 PM]: ApplePushService: Timed out call blocking, cannot make the call via a XPC connection to "com.apple.apsd".

    02/10/16 com.apple.iCloudHelper [589 1:38:43.599 PM]: AOSKit WARN: timeout APS met (cxn initialization)

    02/10/16 com.apple.iCloudHelper [589 1:38:43.669 PM]: WARN AOSKit: could not get the answer of APSConnection initialization methods

    02/10/16 1:39:13.301 PM sandboxd [574]: ostraceutil (573) ([573]) political system: refuse the forbidden-link-priv

    02/10/16 1:39:32.488 PM accountsd [565]: [AOSAccounts]: [MMCopyMailAliasForAccount]: _AOSAccountRetrieveMailAliasInfo Domain = AOSErrorDomain Code error error = 1000 '(null) '.

    02/10/16 1:39:32.488 PM accountsd [565]: [AOSAccounts]: [iCloudAccountAuthorizationPlugin]-[iCloudIDAuthenticationPlugin discoverPropertiesForAccount:accountStore:options:completion:]: mailProperties has not been changed for the account ID: [email protected]

    02/10/16 1:40:18.117 PM WindowServer [158]: send_datagram_available_ping: pid 187 did not act on a ping it removed before expiring.

    02/10/16 1:40:28.632 PM watchdogd [209]: [watchdog_daemon] @(_wd_daemon_service_thread) - service (com.apple.WindowServer) reported as insensitive

    02/10/16 1:40:37.594 PM SubmitDiagInfo [363]: unable to load the configuration of location on the disk file. To return to the default location. Reason: Won't serialize to _readDictionaryFromJSONData due to the object nil

    02/10/16 1:40:48.643 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the 'Mail' app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:40:55.256 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the "Fitbit Connect" application for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:40:55.270 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by application "Fitbit Connect" after 6.63 seconds [0.15 fps] (force reactive Server their end of 6.61 seconds [1,00 fps])

    02/10/16 1:40:54.741 PM watchdogd [209]: [watchdog_daemon] @(_wd_daemon_service_thread) - service (com.apple.WindowServer) reported as insensitive

    02/10/16 1:40:56.066 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually revived by the 'Mail' app after 9.07 seconds [0.11 fps] (server force reactivated their end of 1.65 seconds [1,00 fps])

    02/10/16 1:41:18.742 PM WindowServer [158]: send_datagram_available_ping: pid 187 did not act on a ping it removed before expiring.

    02/10/16 1:41:20.635 PM SubmitDiagInfo [363]: unable to load the configuration of location on the disk file. To return to the default location. Reason: Won't serialize to _readDictionaryFromJSONData due to the object nil

    02/10/16 1:41:45.154 PM watchdogd [209]: [watchdog_daemon] @(__wd_service_report_unresponsive_block_invoke) - could not collect a spindump for (com.apple.WindowServer)

    02/10/16 1:42:13.126 PM spindump [558]: invalid connection: com.apple.coresymbolicationd

    02/10/16 1:43:28.008 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by application "loginwindow" more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:43:32.491 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "loginwindow" after 5.49 seconds [0.18 fps] (server force reactivated their end of 1.00 seconds [1,00 fps])

    02/10/16 1:43:40.175 PM mds [64]: f007 (DiskStore.Normal:2382) 7.099125

    02/10/16 1:43:47.929 PM mds [64]: (DiskStore.Normal:2382) 1d00b 1.058819

    02/10/16 1:43:54.894 PM mds [64]: f007 (DiskStore.Normal:2382) 6.391944

    02/10/16 1:44:06.000 PM syslogd [45]: sender ASL statistics

    02/10/16 1:44:15.147 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by the 'Dock' app for more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:44:15.147 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by application "Dock" after 2.56 seconds [0.39 fps] (force reactive Server their end of 2.56 seconds [1,00 fps])

    02/10/16 1:44:28.402 PM mds [64]: f007 (DiskStore.Normal:2382) 7.165023

    02/10/16 1:44:37.510 PM mds [64]: f007 (DiskStore.Normal:2382) 3.424955

    02/10/16 1:44:39.000 PM kernel [0]: process CalendarAgent [268] taken causing excessive Awakenings. Awakenings (per second) rate: 194; Maximum rate (per second) Awakenings: 150; Observation period: 300 seconds; Life of the Awakenings of task number: 68293

    02/10/16 1:44:49.595 PM WindowServer [158]: disable_update_timeout: updates the user interface have been disabled by force by application "loginwindow" more than 1.00 seconds. Server has reactivated the.

    02/10/16 1:44:50.264 PM WindowServer [158]: common_reenable_update: updates the user interface were eventually reactivated by the application "loginwindow" after 1.67 seconds [0,60 fps] (server force reactivated their end of 1.00 seconds [1,00 fps])

    02/10/16 com.apple.xpc.launchd [1 1:44:55.521 PM]: (com.apple.ReportCrash [597]) endpoint has been activated through legacy launch (3) API. Please go to XPC or bootstrap_check_in(): com.apple.ReportCrash

    02/10/16 1:45:00.100 PM ReportCrash [597]: call to spindump for pid = 268 wakeups_rate = duration 194 = 232 because of excessive Awakenings

    02/10/16 1:45:24.250 PM mds [64]: (DiskStore.Normal:2382) 1 d 004 9.790222

    02/10/16 1:45:32.254 PM mds [64]: (DiskStore.Normal:2382) 1 d 006 7.964825

    02/10/16 1:45:35.726 PM coreduetd [561]: LaunchServices: disconnect the event received for service com.apple.lsd.mapdb

    02/10/16 1:45:35.726 PM coreduetd [561]: LaunchServices: received XPC_ERROR_CONNECTION_INVALID trying to map database

    02/10/16 1:45:35.877 PM coreduetd [561]: LaunchServices: mapping of database failed with result-10822, retrying

    02/10/16 1:45:38.273 PM coreduetd [561]: LaunchServices: received XPC_ERROR_CONNECTION_INVALID trying to map database

    02/10/16 1:45:38.279 PM coreduetd [561]: LaunchServices: disconnect the event received for service com.apple.lsd.mapdb

    02/10/16 1:45:40.673 PM syncdefaultsd [575]: SecTaskLoadEntitlements no error = 3

    02/10/16 1:45:44.961 PM sharingd [313]: 13:45:42.287: SDConnectionManager: connection XPC invalidated

    02/10/16 1:45:48.219 PM spindump [558]: [544] no response agent localized name for /Applications/Mail.app/Contents/MacOS/Mail for user 501

    02/10/16 1:45:50.372 PM syncdefaultsd [575]: com.apple.mail withdrew the synchronization of the apps.

    02/10/16 1:45:51.139 PM EET [580]: SecTaskLoadEntitlements no error = 3

    02/10/16 1:45:53.196 PM EET [580]: SecTaskLoadEntitlements no error = 3

    02/10/16 1:45:53.197 PM EET [580]: customer refusing without path (pid 544)

    02/10/16 com.apple.AddressBook.ContactsAccountsService [585 1:45:53.202 PM]: [ContactsAccountService]: Client has no access TCC

    02/10/16 com.apple.AddressBook.ContactsAccountsService [585 1:45:53.202 PM]: [ContactsAccountService]: Client not allowed, refuse the new connection

    02/10/16 1:46:01.860 PM coreduetd [561]: error-54 record path /System/Library/CoreServices/CoreTypes.bundle

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files/Applications/App Store.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files/Applications/App Store.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files/Applications/App Store.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files/Applications/App Store.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files/Applications/App Store.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Automator.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Automator.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Automator.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Automator.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Automator.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Calculator.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Calculator.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Calculator.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Calculator.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Calculator.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Calendar.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Calendar.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Calendar.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Calendar.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Calendar.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Chess.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Chess.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Chess.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Chess.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Chess.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Contacts.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Contacts.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Contacts.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Contacts.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Contacts.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Dashboard.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Dashboard.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Dashboard.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Dashboard.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Dashboard.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - metadata-reading files /Applications/Dictionary.app

    02/10/16 1:46:02.000 PM kernel [0]: Sandtility.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) file-read-metadata Applications/Utilities/voice off Utility.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) file-read-metadata Applications/Utilities/voice off Utility.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) file-read-metadata Applications/Utilities/voice off Utility.app

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) - reading-metadata of the file.

    02/10/16 1:46:02.000 PM kernel [0]: sandbox: coreduetd (561) deny (1) mach-research com.apple.lsd.modifydb

    02/10/16 1:46:01.870 PM coreduetd [561]: LaunchServices: disconnect the event received for service com.apple.lsd.modifydb

    02/10/16 1:46:11.092 PM DataDetectorsDynamicData [601]: # cannot load the AddressBook class CNContactNameFormatter

    02/10/16 1:46:17.514 PM AddressBookSourceSync [594]: WARN AOSKit: invalid url: mail.com https://email%[email protected]/carddav/v1/principals/mellabeni%40g ///email% [email protected]/carddav/v1/principals/mellabeni%40gmail.com/

    02/10/16 1:46:19.000 PM kernel [0]: memorystatus_thread: idle to leave the NEST 559 [backupd-helper]

    02/10/16 1:46:22.430 PM DCs [577]: sync with system failure SOSAccountThisDeviceCanSyncWithCircle: Domain = com.apple.security.sos.error error Code = 1035 "account identity not defined' UserInfo = {NSDescription = identity account not defined}

    Make a backup, preferably 2 on 2 separate drives.

    Exit the Mail.

    Go to Finder and select your user folder. With this Finder window as the windshield, select Finder/display/display options for presenting or order - J.  When the display options opens, check "show the library folder. This should make your visible user library folder in your user folder. Go to Library/Containers/com.apple.mail.  Move the folder com.apple.mail on your desktop. You must move the entire folder, not just the content.

    Reboot, re-launch Mail and test. If the problem is resolved, recreate the required e-mail settings and import emails you want to save to the folder on the desktop. You can then put the file in the trash. If the problem persists, return the folder where you have guessed replacing one that is there.

    If he does not repeat the above using Containers/com.apple.MailServiceAgent.

    Information derived from Linc Davis. Thanks to leonie for certain information contained in this.

  • El Capitan 10.11.5 very slow connection time

    I have a 2.4 end 2011 17 Macbook Pro. Start-up and connection time used to be super quick under Leo. Under El Capitan, the start time of the login page, is very fast, but once I log in, it takes 5 minutes before everything is loaded. Could someone take a look at my log from the console and provide suggestions?

    11/08/2016 08:01:18.166 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.167 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f593064d0 >.

    11/08/2016 08:01:18.167 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.168 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f5910c9e0 >.

    11/08/2016 08:01:18.168 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.170 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f59002c20 >.

    11/08/2016 08:01:18.170 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.171 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f59002c20 >.

    11/08/2016 08:01:18.171 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.173 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f593043d0 >.

    11/08/2016 08:01:18.174 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.175 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f59309b30 >.

    11/08/2016 08:01:18.175 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.176 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f586058c0 >.

    11/08/2016 08:01:18.176 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.177 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f5851e8e0 >.

    11/08/2016 08:01:18.178 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.179 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f5910f690 >.

    11/08/2016 08:01:18.179 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.179 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f5851e8e0 >.

    11/08/2016 08:01:18.180 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.181 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f5840ec70 >.

    11/08/2016 08:01:18.181 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.183 iconservicesagent [282]:-[ISGenerateImageOp generateImageWithCompletion:] has no image descriptor composit of < ISBindingImageDescriptor: 0x7f8f5910ed20 >.

    11/08/2016 08:01:18.183 quicklookd [324]: error returned by iconservicesagent: (null)

    11/08/2016 08:01:18.000 kernel [0]: sandbox: QuickLookSatelli (373) deny (1) - reading-file data, Users, daoudhimmo, Google Drive / Ebooks and courses/Excel modeling/functions, shortcuts and formulas in Excel/Excel 2013 - advanced formulas and Functions/8.Date and Functions/126129_08_03_SC11_WEEKDAY.mp4.flv time

    11/08/2016 08:01:18.270 QuickLookSatellite [373]: [08:01:18.269] err = 1 (errno) reported FigFileForkOpenMainByCFURL (open failed) to /Library/Caches/com.apple.xbs/Sources/CoreMedia_frameworks/CoreMedia-1731.15.20 4/Sources/Platform/Darwin/DarwinFile.c line 456

    11/08/2016 08:01:18.270 QuickLookSatellite [373]: [08:01:18.270] < < < < FigFile > > > > FigFileForkOpenMainByCFURL: open the url 'file:///.file/id=6571367.721652', path ' / Users/daoudhimmo/Google Drive/Ebooks and courses/Excel/modeling functions, shortcuts and formulas in Excel/Excel 2013 - Advanced formulas and Functions/8.Date and time Functions/126129_08_03_SC11_WEEKDAY.mp4.flv "blocking options 0 x 00000000 has no errno 1 operation not allowed"

    11/08/2016 08:01:18.403 WindowServer [163]: * DMPROXY * (2) found "/ System/Library/CoreServices/DMProxy. Run with arg = - discovered

    11/08/2016 08:01:18.405 WindowServer [163]: * DMPROXY * (2) found "/ System/Library/CoreServices/DMProxy. Run with arg = - AMBDprefs

    11/08/2016 08:01:18.405 WindowServer [163]: * DMPROXY * (2) found "/ System/Library/CoreServices/DMProxy. Run with arg = - discovered

    11/08/2016 08:01:18.406 WindowServer [163]: * DMPROXY * (2) found "/ System/Library/CoreServices/DMProxy. Run with arg = - AMBDprefs

    11/08/2016 08:01:18.468 WindowServer [163]: CGXSetDisplayColorProfileAndTransfer: 0x0b420f43 of display: Unit 3. ColorProfile {-1849409068}; TransferTable (256, 3)

    11/08/2016 08:01:18.471 WindowServer [163]: CGXSetDisplayColorProfileAndTransfer: 0 x 04273342 display: Unit 2; ColorProfile {-1613643815}; TransferTable (256, 12)

    11/08/2016 08:01:18.521 WindowServer [163]: CGXSetDisplayColorProfileAndTransfer: 0x0b420f43 of display: Unit 3. ColorProfile {-1849409068}; TransferTable (256, 3)

    11/08/2016 08:01:18.524 WindowServer [163]: CGXSetDisplayColorProfileAndTransfer: 0 x 04273342 display: Unit 2; ColorProfile {-1613643815}; TransferTable (256, 12)

    11/08/2016 08:01:18.532 DMProxy [376]: AMBD Services: _CFXPCCreateXPCObjectFromCFObject failed!

    11/08/2016 08:01:18.534 DMProxy [376]: AMBD Services: _CFXPCCreateXPCObjectFromCFObject failed!

    11/08/2016 08:01:18.543 DMProxy [378]: AMBD Services: _CFXPCCreateXPCObjectFromCFObject failed!

    11/08/2016 08:01:18.545 DMProxy [378]: AMBD Services: _CFXPCCreateXPCObjectFromCFObject failed!

    11/08/2016 08:01:19.219 accountsd [312]: AIDA Notification plugin running

    11/08/2016 08:01:19.000 kernel [0]: sandbox: com.apple.Addres (383) deny (1) mach-research com.apple.cdp.daemon

    11/08/2016 08:01:19.000 kernel [0]: sandbox: com.apple.Addres (383) deny (1) mach-research com.apple.cdp.daemon

    11/08/2016 08:01:19.374 com.apple.AddressBook.InternetAccountsBridge [383]: looking for iCDP status IDDM 95646359 (checkWithServer = 0)

    11/08/2016 08:01:19.374 com.apple.AddressBook.InternetAccountsBridge [383]: looking for iCDP status IDDM 95646359 (checkWithServer = 0)

    11/08/2016 08:01:19.374 com.apple.AddressBook.InternetAccountsBridge [383]: connection Daemon invalidated!

    11/08/2016 08:01:19.374 com.apple.AddressBook.InternetAccountsBridge [383]: connection Daemon invalidated!

    11/08/2016 08:01:19.374 com.apple.AddressBook.InternetAccountsBridge [383]: error XPC while checking if iCDP is enabled for IDDM 95646359: error Domain = NSCocoaErrorDomain Code = 4099 "the connection to the service named com.apple.cdp.daemon was invalid." UserInfo = {NSDebugDescription = the connection to the service named com.apple.cdp.daemon has been invalidated.}

    11/08/2016 08:01:19.374 com.apple.AddressBook.InternetAccountsBridge [383]: error XPC while checking if iCDP is enabled for IDDM 95646359: error Domain = NSCocoaErrorDomain Code = 4099 "the connection to the service named com.apple.cdp.daemon was invalid." UserInfo = {NSDebugDescription = the connection to the service named com.apple.cdp.daemon has been invalidated.}

    11/08/2016 08:01:19.776 cloudphotosd [321]: + [CSLogger preferencesChanged:] reconfiguration of logging

    11/08/2016 08:01:19.904 accountsd [312]: AIDA Notification plugin running

    11/08/2016 08:01:19.000 kernel [0]: sandbox: com.apple.Addres (383) deny (1) mach-research com.apple.cdp.daemon

    11/08/2016 08:01:19.949 com.apple.AddressBook.InternetAccountsBridge [383]: looking for iCDP status IDDM 95646359 (checkWithServer = 0)

    11/08/2016 08:01:19.949 com.apple.AddressBook.InternetAccountsBridge [383]: error XPC while checking if iCDP is enabled for IDDM 95646359: error Domain = NSCocoaErrorDomain Code = 4099 "the connection to the service named com.apple.cdp.daemon was invalid." UserInfo = {NSDebugDescription = the connection to the service named com.apple.cdp.daemon has been invalidated.}

    11/08/2016 08:01:19.949 com.apple.AddressBook.InternetAccountsBridge [383]: connection Daemon invalidated!

    11/08/2016 08:01:20.042 AddressBookSourceSync [305]: [CardDAVPlugin-ERROR] caught Exception when executing synchronization with the server: Domain = CoreDAVErrorDomain Code error = 1 '(null) '.

    11/08/2016 08:01:20.154 cloudphotosd [321]: new 384 connection request

    11/08/2016 08:01:20.203 com.apple.photomoments [386]: Photomoments awake process.

    11/08/2016 08:01:20.537 cloudphotosd [321]: determine the start of the transition service: service = personId = 95646359 lastKnownPersonId = (null) targetState = 0 com.apple.photo.icloud.sharedstreams

    11/08/2016 08:01:20.537 cloudphotosd [321]: determine service transition end: currentState 2: 3, shouldEnableService: 0

    11/08/2016 08:01:20.603 com.apple.photomoments [386]: GEO: recovered Server geo rev version version configuration file: 11

    11/08/2016 08:01:20.000 kernel [0]: sandbox: systemsoundserve (220) deny (1) - reading-file data/private/var/root/Library/Preferences/ByHost /. GlobalPreferences.DC982956 - A902-5 4 b 5-8AAA - B0C05ACD8E98.plist

    11/08/2016 08:01:20.000 kernel [0]: sandbox: systemsoundserve (220) deny (1) - reading-file data/private/var/root/Library/Preferences /. GlobalPreferences.plist

    11/08/2016 08:01:21.000 kernel [0]: setting BTCoex mode: 0

    11/08/2016 08:01:21.000 kernel [0]: BTCoex mode setting: 7

    11/08/2016 08:01:21.397 cloudphotosd [321]: determine the start of the transition service: service = personId = 95646359 lastKnownPersonId = (null) targetState = 0 com.apple.photo.icloud.myphotostream

    11/08/2016 08:01:21.397 cloudphotosd [321]: determine service transition end: currentState 2: 3, shouldEnableService: 0

    11/08/2016 08:01:21.721 cloudphotosd [321]: determine the start of the transition service: service = personId = 95646359 lastKnownPersonId = (null) targetState = 0 com.apple.photo.icloud.cloudphoto

    11/08/2016 08:01:21.721 cloudphotosd [321]: determine service transition end: currentState 2: 3, shouldEnableService: 0

    11/08/2016 08:01:22.000 kernel [0]: setting BTCoex mode: 0

    11/08/2016 08:01:22.000 kernel [0]: BTCoex mode setting: 7

    11/08/2016 08:01:23.599 accountsd [312]: AIDA Notification plugin running

    11/08/2016 08:01:23.000 kernel [0]: sandbox: com.apple.Addres (383) deny (1) mach-research com.apple.cdp.daemon

    11/08/2016 08:01:23.611 com.apple.AddressBook.InternetAccountsBridge [383]: looking for iCDP status IDDM 95646359 (checkWithServer = 0)

    11/08/2016 08:01:23.611 com.apple.AddressBook.InternetAccountsBridge [383]: error XPC while checking if iCDP is enabled for IDDM 95646359: error Domain = NSCocoaErrorDomain Code = 4099 "the connection to the service named com.apple.cdp.daemon was invalid." UserInfo = {NSDebugDescription = the connection to the service named com.apple.cdp.daemon has been invalidated.}

    11/08/2016 08:01:23.612 com.apple.AddressBook.InternetAccountsBridge [383]: connection Daemon invalidated!

    11/08/2016 08:01:24.075 taskgated [303]: no identification of the expected demand, cannot use provisioning profiles [pid = 389]

    11/08/2016 08:01:24.375 com.apple.xpc.launchd [1]: key (com.apple.appkit.xpc.sandboxedServiceRunner) the JoinExistingSession is only available for Application services.

    11/08/2016 08:01:24.381 com.apple.xpc.launchd [1]: (com.apple.FileSyncAgent.PHD.isRunning) HideUntilCheckIn of the property is a problem of architectural performance. Please transition away from him.

    11/08/2016 08:01:24.390 com.apple.xpc.launchd [1]: (com.apple.speech.speechsynthesisd) this key does nothing: upon request

    11/08/2016 08:01:24.391 com.apple.xpc.launchd [1]: (com.apple.trustd.agent) this key does nothing: upon request

    11/08/2016 08:01:24.392 com.apple.xpc.launchd [1]: (com.apple.trustd.agent) ServiceIPC the key is no longer respected. Please delete.

    11/08/2016 08:01:24.392 com.apple.xpc.launchd [1]: (com.apple.TrustEvaluationAgent) this key does nothing: upon request

    11/08/2016 08:01:24.393 com.apple.xpc.launchd [1]: (com.apple.xpc.launchd.domain.user.200) calling specified a plist with bad ownership/permissions: path = Library/LaunchAgents/com. MadCatz.MadCatzSmartTechnology.plist, calling = softwareupdated.390

    11/08/2016 08:01:24.393 com.apple.xpc.launchd [1]: (com.apple.xpc.launchd.domain.user.200) calling specified a plist with bad ownership/permissions: path = Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist, calling = softwareupdated.390

    11/08/2016 08:01:24.393 com.apple.xpc.launchd [1]: (com.apple.xpc.launchd.domain.user.200) calling specified a plist with bad ownership/permissions: path = Library/LaunchAgents/com.google.keystone.agent.plist, calling = softwareupdated.390

    11/08/2016 08:01:24.394 com.apple.xpc.launchd [1]: (com.apple.xpc.launchd.domain.user.200) calling specified a plist with bad ownership/permissions: path = Library/LaunchAgents/net.culater.SIMBL.Agent.plist, calling = softwareupdated.390

    11/08/2016 08:01:24.394 com.apple.xpc.launchd [1]: (com.apple.xpc.launchd.domain.user.200) failure of bootstrap path: path = Library/LaunchAgents/com.google.keystone.agent.plist error = 122: path had bad ownership/permissions

    11/08/2016 08:01:24.394 com.apple.xpc.launchd [1]: (com.apple.xpc.launchd.domain.user.200) failure of bootstrap path: path = Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist error = 122: path had bad ownership/permissions

    11/08/2016 08:01:24.394 com.apple.xpc.launchd [1]: (com.apple.xpc.launchd.domain.user.200) failure of bootstrap path: path = Library/LaunchAgents/com. MadCatz.MadCatzSmartTechnology.plist, error = 122: path had bad ownership/permissions

    11/08/2016 08:01:24.394 com.apple.xpc.launchd [1]: (com.apple.xpc.launchd.domain.user.200) failure of bootstrap path: path = Library/LaunchAgents/net.culater.SIMBL.Agent.plist error = 122: path had bad ownership/permissions

    11/08/2016 08:01:24.397 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:25.427 accountsd [312]: AIDA Notification plugin running

    11/08/2016 08:01:25.000 kernel [0]: sandbox: com.apple.Addres (383) deny (1) mach-research com.apple.cdp.daemon

    11/08/2016 08:01:25.441 com.apple.AddressBook.InternetAccountsBridge [383]: looking for iCDP status IDDM 95646359 (checkWithServer = 0)

    11/08/2016 08:01:25.441 com.apple.AddressBook.InternetAccountsBridge [383]: error XPC while checking if iCDP is enabled for IDDM 95646359: error Domain = NSCocoaErrorDomain Code = 4099 "the connection to the service named com.apple.cdp.daemon was invalid." UserInfo = {NSDebugDescription = the connection to the service named com.apple.cdp.daemon has been invalidated.}

    11/08/2016 08:01:25.441 com.apple.AddressBook.InternetAccountsBridge [383]: connection Daemon invalidated!

    11/08/2016 08:01:26.100 AddressBookSourceSync [305]: [CardDAVPlugin-ERROR] caught Exception when executing synchronization with the server: Domain = CoreDAVErrorDomain Code error = 1 '(null) '.

    11/08/2016 08:01:26.000 kernel [0]: setting BTCoex mode: 0

    11/08/2016 08:01:26.000 kernel [0]: BTCoex mode setting: 7

    11/08/2016 08:01:26.651 accountsd [312]: AIDA Notification plugin running

    11/08/2016 08:01:26.000 kernel [0]: sandbox: com.apple.Addres (383) deny (1) mach-research com.apple.cdp.daemon

    11/08/2016 08:01:26.664 com.apple.AddressBook.InternetAccountsBridge [383]: looking for iCDP status IDDM 95646359 (checkWithServer = 0)

    11/08/2016 08:01:26.664 com.apple.AddressBook.InternetAccountsBridge [383]: connection Daemon invalidated!

    11/08/2016 08:01:26.664 com.apple.AddressBook.InternetAccountsBridge [383]: error XPC while checking if iCDP is enabled for IDDM 95646359: error Domain = NSCocoaErrorDomain Code = 4099 "the connection to the service named com.apple.cdp.daemon was invalid." UserInfo = {NSDebugDescription = the connection to the service named com.apple.cdp.daemon has been invalidated.}

    11/08/2016 08:01:28.487 accountsd [312]: AIDA Notification plugin running

    11/08/2016 08:01:28.499 com.apple.AddressBook.InternetAccountsBridge [383]: looking for iCDP status IDDM 95646359 (checkWithServer = 0)

    11/08/2016 08:01:28.000 kernel [0]: sandbox: com.apple.Addres (383) deny (1) mach-research com.apple.cdp.daemon

    11/08/2016 08:01:28.500 com.apple.AddressBook.InternetAccountsBridge [383]: error XPC while checking if iCDP is enabled for IDDM 95646359: error Domain = NSCocoaErrorDomain Code = 4099 "the connection to the service named com.apple.cdp.daemon was invalid." UserInfo = {NSDebugDescription = the connection to the service named com.apple.cdp.daemon has been invalidated.}

    11/08/2016 08:01:28.500 com.apple.AddressBook.InternetAccountsBridge [383]: connection Daemon invalidated!

    11/08/2016 08:01:29.150 AddressBookSourceSync [305]: [CardDAVPlugin-ERROR] caught Exception when executing synchronization with the server: Domain = CoreDAVErrorDomain Code error = 1 '(null) '.

    11/08/2016 08:01:30.883 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:30.999 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:31.116 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:31.232 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:31.243 identityservicesd [264]: IMMacNotificationCenterManager: 0x7f8390eae1b0 >: Center of notification for the configuration identifier: com.apple.iChat subject:)

    'com.apple.madrid '.

    )

    11/08/2016 08:01:31.244 identityservicesd [264]: IMMacNotificationCenterManager: 0x7f8390eae1b0 >: NC disabled: YES

    11/08/2016 08:01:31.250 identityservicesd [264]: IMMacNotificationCenterManager: 0x7f8390eae1b0 >: DND Enabled: No.

    11/08/2016 08:01:31.250 identityservicesd [264]: IMMacNotificationCenterManager: 0x7f8390eae1b0 >: update enabled: No. (subjects: ())

    ))

    11/08/2016 08:01:31.344 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:31.000 kernel [0]: setting BTCoex mode: 0

    11/08/2016 08:01:31.366 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:31.000 kernel [0]: BTCoex mode setting: 7

    11/08/2016 08:01:31.419 Spotlight [394]: spot: logging agent

    11/08/2016 08:01:31.428 SystemUIServer [252]: [BluetoothHIDDeviceController] EventServiceConnectedCallback

    11/08/2016 08:01:31.428 SystemUIServer [252]: [BluetoothHIDDeviceController] EventServiceDisconnectedCallback

    11/08/2016 08:01:31.443 Spotlight [394]: Query applications - began

    11/08/2016 08:01:31.459 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:31.482 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:31.484 SpotlightNetHelper [396]: CGSConnectionByID: 0 is not a valid login ID.

    11/08/2016 08:01:31.484 SpotlightNetHelper [396]: invalid connection ID 0

    11/08/2016 08:01:31.551 SystemUIServer [252]: * ATTENTION: NSStatusItem class view NSMenuToolbarView drawing can get dirty during drawing.

    11/08/2016 08:01:31.589 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:31.603 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:31.000 kernel [0]: sandbox: storeaccountd (328) deny (1) file-writing-creation /Users/daoudhimmo/Library/Caches/com.apple.Spotlight/ProductionBag

    11/08/2016 08:01:31.779 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:31.919 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:32.016 Spotlight [394]: the request of applications - completed in 0.57 seconds

    11/08/2016 08:01:32.040 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:32.162 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:32.351 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:32.471 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:32.622 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:32.778 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:32.903 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:32.936 com.apple.SecurityServer [78]: Session 100020 created

    11/08/2016 08:01:33.035 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:33.176 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:33.362 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:33.520 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:33.636 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:33.785 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:33.912 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:34.100 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:34.239 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:34.375 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:34.530 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:34.651 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:34.835 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:34.998 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:35.193 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:35.363 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:35.536 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:35.661 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:35.785 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:36.001 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:36.118 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:36.304 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:36.443 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:36.565 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:36.682 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:36.809 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:38.519 com.apple.AddressBook.ContactsAccountsService [267]: connect [accounts], < NSXPCConnection: 0x7fa3ab001430 > connection from pid 259, has no access to account.

    11/08/2016 08:01:38.520 sharingd [259]: [accounts] could not update the account with identifier C77E54A5-D96C-4978-B79D-C36526B3D8EA, error: error Domain = ABAddressBookErrorDomain Code = 1002 '(null) '.

    11/08/2016 08:01:38.591 com.apple.AddressBook.ContactsAccountsService [267]: connect [accounts], < NSXPCConnection: 0x7fa3ab008640 > connection from pid 326, has no access to account.

    11/08/2016 08:01:38.592 CalNCService [326]: [accounts] could not update the account with identifier C77E54A5-D96C-4978-B79D-C36526B3D8EA, error: error Domain = ABAddressBookErrorDomain Code = 1002 '(null) '.

    11/08/2016 08:01:38.920 com.apple.SecurityServer [78]: Session 100014 created

    11/08/2016 08:01:40.000 kernel [0]: sandbox: com.apple.spotli (405) deny (1) file-read-metadata/etc

    11/08/2016 08:01:40.110 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.110 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (2) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.110 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.110 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.111 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.111 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (4) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.111 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.111 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.181 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.181 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (6) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.181 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.181 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.183 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.184 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (8) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.184 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.184 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.252 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.252 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (10) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.252 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.252 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.255 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.255 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (12) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.255 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.255 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.317 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.317 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (14) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.317 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.317 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.320 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.320 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (16) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.320 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.320 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.370 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.371 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (18) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.371 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.371 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.373 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.374 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (20) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.374 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.374 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.431 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.431 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (22) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.431 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.431 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.433 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.433 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (24) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.433 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.433 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.485 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.485 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (26) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.486 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.486 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.487 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.487 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (28) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.487 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.488 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.544 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.544 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (30) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.544 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.544 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.545 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.545 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (32) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.545 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.546 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.598 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.598 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (34) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.599 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.599 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.599 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.599 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (36) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.599 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.599 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.649 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    11/08/2016 08:01:40.649 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (38) with error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.649 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.649 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.650 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.650 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (40) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.650 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.650 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: message of the searchable items deletion failed with the error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.847 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.848 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (42) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.848 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.848 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.905 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:40.906 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (44) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.906 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.906 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.962 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    11/08/2016 08:01:40.962 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (46) with error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:40.962 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:40.962 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:41.014 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:41.015 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (48) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:41.015 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:41.015 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:41.067 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:41.067 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (50) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:41.068 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:41.068 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:41.135 com.apple.spotlight.IndexAgent [405]: [com.apple.corespotlight.log] is not allowed to bundle ID

    08/11/2016 08:01:41.136 IMDPersistenceAgent [314]: [com.apple.corespotlight.log.index] completed "index items" (52) with the error: error = CSIndexErrorDomain Code =-1003 "(null)" Domain ".

    11/08/2016 08:01:41.136 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:41.136 IMDPersistenceAgent [314]: [warning] IMDChatAddMessageToSpotlight: indexing of searchable items failed with error error Domain = CSIndexErrorDomain Code =-1003 "(null)".

    11/08/2016 08:01:41.315 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:41.407 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:01:42.645 lsd [248]: LaunchServices: currently 0 installed placeholders:)

    )

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) mach-research com.apple.lsd.mapdb

    11/08/2016 08:01:48.457 coreduetd [69]: LaunchServices: received XPC_ERROR_CONNECTION_INVALID trying to map database

    11/08/2016 08:01:48.457 coreduetd [69]: LaunchServices: disconnect the event received for service com.apple.lsd.mapdb

    11/08/2016 08:01:48.458 coreduetd [69]: LaunchServices: received XPC_ERROR_CONNECTION_INVALID trying to map database

    11/08/2016 08:01:48.000 kernel [0]: sandbox:-reading-file data deny /private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/0/com.apple.LaunchServic (1) coreduetd (69) es - 1340.csstore

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - IPC /tmp/com.apple.csseed.131 posix-shm-reading-data

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.461 coreduetd [69]: error-54 record path /System/Library/CoreServices/CoreTypes.bundle

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/App Store.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/App Store.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/App Store.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/App Store.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/App Store.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Automator.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Automator.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Automator.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Automator.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Automator.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Calculator.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Calculator.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Calculator.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Calculator.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Calculator.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Calendar.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Calendar.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Calendar.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Calendar.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Calendar.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Chess.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Chess.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Chess.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Chess.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Chess.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Contacts.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Contacts.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Contacts.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Contacts.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Contacts.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Dashboard.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Dashboard.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Dashboard.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Dashboard.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Dashboard.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Dictionary.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Dictionary.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Dictionary.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Dictionary.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Dictionary.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/DVD Player.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/DVD Player.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/DVD Player.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/DVD Player.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/DVD Player.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/FaceTime.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/FaceTime.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/FaceTime.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/FaceTime.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/FaceTime.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading Applications/files/fonts Book.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading Applications/files/fonts Book.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading Applications/files/fonts Book.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading Applications/files/fonts Book.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading Applications/files/fonts Book.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/games Center.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/games Center.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/games Center.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/games Center.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/games Center.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading of files/Applications/Image Capture.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading of files/Applications/Image Capture.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading of files/Applications/Image Capture.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading of files/Applications/Image Capture.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading of files/Applications/Image Capture.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/iTunes.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/iTunes.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/iTunes.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/iTunes.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/iTunes.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Launchpad.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Launchpad.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Launchpad.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Launchpad.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Launchpad.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Mail.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Mail.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Mail.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Mail.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Mail.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Messages.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Messages.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Messages.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Messages.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Messages.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Mission Control.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Mission Control.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Mission Control.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Mission Control.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Mission Control.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Notes.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Notes.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Notes.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Notes.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Notes.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/Photo Booth.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/Photo Booth.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/Photo Booth.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/Photo Booth.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/Photo Booth.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Preview.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Preview.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Preview.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Preview.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Preview.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Photos.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Photos.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Photos.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Photos.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Photos.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/QuickTime Player.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/QuickTime Player.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/QuickTime Player.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/QuickTime Player.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/QuickTime Player.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Reminders.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Reminders.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Reminders.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Reminders.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Reminders.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Safari.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Safari.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Safari.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Safari.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Safari.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Stickies.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Stickies.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Stickies.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Stickies.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Stickies.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/System Preferences.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/System Preferences.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/System Preferences.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/System Preferences.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files/Applications/System Preferences.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/TextEdit.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/TextEdit.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/TextEdit.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/TextEdit.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/TextEdit.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-files/Applications/time reading Machine.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-files/Applications/time reading Machine.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-files/Applications/time reading Machine.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-files/Applications/time reading Machine.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-files/Applications/time reading Machine.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file Applications/Utilities/Activity Monitor.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file Applications/Utilities/Activity Monitor.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file Applications/Utilities/Activity Monitor.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file Applications/Utilities/Activity Monitor.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file Applications/Utilities/Activity Monitor.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files, Applications, utilities, airport Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files, Applications, utilities, airport Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files, Applications, utilities, airport Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files, Applications, utilities, airport Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files, Applications, utilities, airport Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Audio MIDI Setup.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Audio MIDI Setup.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Audio MIDI Setup.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Audio MIDI Setup.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Audio MIDI Setup.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file Exchange.app file Applications/Utilities/Bluetooth

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file Exchange.app file Applications/Utilities/Bluetooth

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file Exchange.app file Applications/Utilities/Bluetooth

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file Exchange.app file Applications/Utilities/Bluetooth

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file Exchange.app file Applications/Utilities/Bluetooth

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Boot Camp Assistant.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Boot Camp Assistant.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Boot Camp Assistant.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Boot Camp Assistant.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Boot Camp Assistant.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/ColorSync Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/ColorSync Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/ColorSync Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/ColorSync Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/ColorSync Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Console.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Console.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Console.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Console.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Console.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Disk Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Disk Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Disk Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Disk Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Disk Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Grab.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Grab.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Grab.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Grab.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Grab.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Grapher.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Grapher.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Grapher.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Grapher.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Grapher.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Keychain Access.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Keychain Access.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Keychain Access.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Keychain Access.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Keychain Access.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Migration Assistant.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Migration Assistant.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Migration Assistant.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Migration Assistant.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Migration Assistant.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Script Editor.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Script Editor.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Script Editor.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Script Editor.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/Script Editor.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/System Information.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/System Information.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/System Information.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/System Information.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/System Information.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Terminal.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Terminal.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Terminal.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Terminal.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - metadata-reading files /Applications/Utilities/Terminal.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/voice off Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/voice off Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/voice off Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/voice off Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) file-read-metadata Applications/Utilities/voice off Utility.app

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) - reading-metadata of the file.

    11/08/2016 08:01:48.000 kernel [0]: sandbox: coreduetd (69) deny (1) mach-research com.apple.lsd.modifydb

    11/08/2016 08:01:48.467 coreduetd [69]: LaunchServices: disconnect the event received for service com.apple.lsd.modifydb

    11/08/2016 08:01:48.573 Mail [406]: {'status': '400', 'plans': 'Carrier', 'field' ': 'https://mail.google.com/""}

    11/08/2016 08:01:48.589 [406] Mail: XOAUTH2 requires that the user

    11/08/2016 08:01:48.589 Mail [406]: could not start the SASL login

    SASL(-1): generic failure: XOAUTH2 requires that the user

    11/08/2016 08:01:48.592 Mail [406]: no worthy mechs found

    11/08/2016 08:01:48.592 Mail [406]: no worthy mechs found

    11/08/2016 08:01:49.000 launchd [1]: BUG in libdispatch: 15F34 - 1718 - 0x0

    11/08/2016 08:01:49.877 accountsd [312]: AIDA Notification plugin running

    11/08/2016 08:01:50.001 com.apple.AddressBook.ContactsAccountsService [267]: connect [accounts], < NSXPCConnection: 0x7fa3a970c620 > connection from pid 404, has no access to account.

    11/08/2016 08:01:50.001 DataDetectorsDynamicData [404]: [accounts] could not update the account with identifier C77E54A5-D96C-4978-B79D-C36526B3D8EA, error: error Domain = ABAddressBookErrorDomain Code = 1002 '(null) '.

    11/08/2016 08:01:50.095 com.apple.AddressBook.ContactsAccountsService [267]: connect [accounts], < NSXPCConnection: 0x7fa3ab20f6d0 > connection from 314 pid, has no access to account.

    11/08/2016 08:01:50.095 IMDPersistenceAgent [314]: [accounts] could not update the account with identifier C77E54A5-D96C-4978-B79D-C36526B3D8EA, error: error Domain = ABAddressBookErrorDomain Code = 1002 '(null) '.

    11/08/2016 08:01:50.307 accountsd [312]: AIDA Notification plugin running

    11/08/2016 08:01:50.000 kernel [0]: sandbox: com.apple.Addres (383) deny (1) mach-research com.apple.cdp.daemon

    11/08/2016 08:01:50.345 com.apple.AddressBook.InternetAccountsBridge [383]: looking for iCDP status IDDM 95646359 (checkWithServer = 0)

    11/08/2016 08:01:50.346 com.apple.AddressBook.InternetAccountsBridge [383]: error XPC while checking if iCDP is enabled for IDDM 95646359: error Domain = NSCocoaErrorDomain Code = 4099 "the connection to the service named com.apple.cdp.daemon was invalid." UserInfo = {NSDebugDescription = the connection to the service named com.apple.cdp.daemon has been invalidated.}

    11/08/2016 08:01:50.346 com.apple.AddressBook.InternetAccountsBridge [383]: connection Daemon invalidated!

    11/08/2016 08:01:50.592 DCs [266]: sync with system failure SOSAccountThisDeviceCanSyncWithCircle: Domain = com.apple.security.sos.error error Code = 1035 "account identity not defined' UserInfo = {NSDescription = identity account not defined}

    11/08/2016 08:01:50.903 com.apple.InputMethodKit.TextReplacementService [414]:-[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:] (898): CoreData: Ubiquity: daoudhimmo ~ DC982956-A902-54B5-8AAA-B0C05ACD8E98:UserDictionary

    Use local storage: 1 for the new current token NSFileManager < 0fec0f87 a8ce4a12 50aa766a 96897462 fe3474eb >

    11/08/2016 08:01:50.995 com.apple.InputMethodKit.TextReplacementService [414]:-[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:] (898): CoreData: Ubiquity: daoudhimmo ~ DC982956-A902-54B5-8AAA-B0C05ACD8E98:UserDictionary

    Use local storage: 0 for new current token NSFileManager < 0fec0f87 a8ce4a12 50aa766a 96897462 fe3474eb >

    11/08/2016 08:01:51.242 Mail [406]: {'status': '400', 'plans': 'Carrier', 'field' ': 'https://mail.google.com/""}

    11/08/2016 08:01:51.369 [406] Mail: XOAUTH2 requires that the user

    11/08/2016 08:01:51.369 Mail [406]: could not start the SASL login

    SASL(-1): generic failure: XOAUTH2 requires that the user

    11/08/2016 08:01:51.372 Mail [406]: no worthy mechs found

    11/08/2016 08:01:51.372 Mail [406]: no worthy mechs found

    11/08/2016 08:01:51.475 DCs [266]: securityd_xpc_dictionary_handler cloudd [337] copy_matching error Domain = NSOSStatusErrorDomain Code =-50 'query lack the class name' (paramErr: error in user parameter list) UserInfo = {NSDescription = query missing class name}

    11/08/2016 08:01:51.475 cloudd [337]: error SecOSStatusWith:-[50] error Domain = NSOSStatusErrorDomain Code =-50 'query lack the class name' (paramErr: error in user parameter list) UserInfo = {NSDescription = query missing class name}

    11/08/2016 08:01:51.481 DCs [266]: securityd_xpc_dictionary_handler cloudd [337] copy_matching error Domain = NSOSStatusErrorDomain Code =-50 'query lack the class name' (paramErr: error in user parameter list) UserInfo = {NSDescription = query missing class name}

    11/08/2016 08:01:51.481 cloudd [337]: error SecOSStatusWith:-[50] error Domain = NSOSStatusErrorDomain Code =-50 'query lack the class name' (paramErr: error in user parameter list) UserInfo = {NSDescription = query missing class name}

    11/08/2016 08:02:00.380 com.apple.AddressBook.ContactsAccountsService [267]: connect [accounts], < NSXPCConnection: 0x7fa3ab001430 > connection from pid 259, has no access to account.

    11/08/2016 08:02:00.381 sharingd [259]: [accounts] could not update the account with identifier C77E54A5-D96C-4978-B79D-C36526B3D8EA, error: error Domain = ABAddressBookErrorDomain Code = 1002 '(null) '.

    11/08/2016 08:02:00.410 com.apple.AddressBook.ContactsAccountsService [267]: connect [accounts], < NSXPCConnection: 0x7fa3ab20f6d0 > connection from 314 pid, has no access to account.

    11/08/2016 08:02:00.410 com.apple.AddressBook.ContactsAccountsService [267]: connect [accounts], < NSXPCConnection: 0x7fa3a970c620 > connection from pid 404, has no access to account.

    11/08/2016 08:02:00.410 IMDPersistenceAgent [314]: [accounts] could not update the account with identifier C77E54A5-D96C-4978-B79D-C36526B3D8EA, error: error Domain = ABAddressBookErrorDomain Code = 1002 '(null) '.

    11/08/2016 08:02:00.410 com.apple.AddressBook.ContactsAccountsService [267]: connect [accounts], < NSXPCConnection: 0x7fa3ab008640 > connection from pid 326, has no access to account.

    11/08/2016 08:02:00.410 DataDetectorsDynamicData [404]: [accounts] could not update the account with identifier C77E54A5-D96C-4978-B79D-C36526B3D8EA, error: error Domain = ABAddressBookErrorDomain Code = 1002 '(null) '.

    11/08/2016 08:02:00.410 CalNCService [326]: [accounts] could not update the account with identifier C77E54A5-D96C-4978-B79D-C36526B3D8EA, error: error Domain = ABAddressBookErrorDomain Code = 1002 '(null) '.

    11/08/2016 08:02:01.915 SpotlightNetHelper [396]: tcp_connection_destination_handle_tls_close_notify 4 socket closure due to the TLS CLOSE_NOTIFY alert

    11/08/2016 08:02:01.915 SpotlightNetHelper [396]: tcp_connection_tls_session_error_callback 4 __tcp_connection_tls_session_callback_write_block_invoke.434 error 32

    11/08/2016 08:02:01.936 SpotlightNetHelper [396]: tcp_connection_destination_handle_tls_close_notify 8 taking of closure due to the TLS CLOSE_NOTIFY alert

    11/08/2016 08:02:01.936 SpotlightNetHelper [396]: tcp_connection_tls_session_error_callback 8 __tcp_connection_tls_session_callback_write_block_invoke.434 error 32

    11/08/2016 08:02:02.519 SpotlightNetHelper [396]: tcp_connection_tls_session_error_callback 9 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22

    11/08/2016 08:02:02.520 SpotlightNetHelper [396]: tcp_connection_tls_session_error_callback 5 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22

    11/08/2016 08:02:02.520 SpotlightNetHelper [396]: error __tcp_connection_tls_session_callback_write_block_invoke.434 14 22 tcp_connection_tls_session_error_callback

    11/08/2016 08:02:02.520 SpotlightNetHelper [396]: 15 22 tcp_connection_tls_session_error_callback __tcp_connection_tls_session_callback_write_block_invoke.434 error

    11/08/2016 08:02:02.521 SpotlightNetHelper [396]: error __tcp_connection_tls_session_callback_write_block_invoke.434 16 22 tcp_connection_tls_session_error_callback

    11/08/2016 08:02:02.521 SpotlightNetHelper [396]: 10 22 tcp_connection_tls_session_error_callback __tcp_connection_tls_session_callback_write_block_invoke.434 error

    11/08/2016 08:02:05.600 Mail [406]: unable to parse the date: "__smtpDate."

    Stripped of string: "__smtpDate".

    11/08/2016 08:02:05.603 Mail [406]: unable to parse the date: "__smtpDate."

    Stripped of string: "__smtpDate".

    11/08/2016 08:02:12.056 blued [83]: * iCloudPairingRequest received from the address: 70-81-eb-0e-42-ed, type: 0

    11/08/2016 08:02:12.000 kernel [0]: setting BTCoex mode: 0

    11/08/2016 08:02:12.087 blued [83]: * KeyDistribution received from the address: 70-81-eb-0e-42-ed, type: 0

    11/08/2016 08:02:12.000 kernel [0]: BTCoex mode setting: 7

    11/08/2016 08:02:12.089 identityservicesd [264]: [warning] ID access WARNING: # unknown right type for service: right com.apple.private.alloy.icloudpairing: customer com.apple.private.ids.device - uuid: com.apple.cloudpaird:cloudpaird:292 rights: {}

    'com.apple.private.ids.messaging' =)

    'com.apple.private.alloy.icloudpairing '.

    );

    "com.apple.private.ids.messaging.high - priority ' =)

    'com.apple.private.alloy.icloudpairing '.

    );

    'com.apple.private.ids.registration' = 1;

    }

    11/08/2016 08:02:12.365 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:02:15.422 com.apple.xpc.launchd [1]: (com.apple.mdworker.single.05000000-0000-0000-0000-000000000000) Service only ran for 2 seconds. Push the respawn in 8 seconds.

    11/08/2016 08:02:30.982 NetAuthSysAgent [329]: error AFP - 1 mapped to EIO

    11/08/2016 08:02:30.982 NetAuthSysAgent [329]: ERROR: AFP_GetServerInfo - connect 5 failed

    11/08/2016 08:02:30.982 NetAuthSysAgent [329]: error AFP - 1 mapped to EIO

    11/08/2016 08:02:30.993 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:02:31.006 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:02:31.007 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:02:31.008 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:02:31.009 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:02:31.009 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:02:31.000 kernel [0]: ignored is_io_service_close (0 x 100000486, IOHIDParamUserClient)

    11/08/2016 08:02:32.521 SpotlightNetHelper [396]: 13 22 tcp_connection_tls_session_error_callback __tcp_connection_tls_session_callback_write_block_invoke.434 error

    11/08/2016 08:02:32.521 SpotlightNetHelper [396]: __tcp_connection_tls_session_callback_write_block_invoke.434 tcp_connection_tls_session_error_callback 12 22 error

    11/08/2016 08:02:32.522 SpotlightNetHelper [396]: 11 22 tcp_connection_tls_session_error_callback __tcp_connection_tls_session_callback_write_block_invoke.434 error

    11/08/2016 08:02:32.522 SpotlightNetHelper [396]: tcp_connection_tls_session_error_callback 7 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22

    11/08/2016 08:02:44.819 com.apple.xpc.launchd [1]: (com.yourcompany.continuityCheck.164192 [441]) Service came out with abnormal code: 1

    11/08/2016 08:02:44.891 TotalFinder [444]: agent v1.7.12 started (TotalFinder)

    11/08/2016 08:02:45.018 keep [446]: warning: the selector Gestalt gestaltSystemVersion returns 10.9.5 instead of 10.11.5. This isn't a bug in Gestalt - it is a documented restriction. The NSProcessInfo operatingSystemVersion property to get the correct version number of system.

    Location of the call:

    11/08/2016 08:02:45.021 keep [446]: 0 CarbonCore 0x94139e3d ___Gestalt_SystemVersion_block_invoke + 135

    11/08/2016 08:02:45.021 keep [446]: 1 libdispatch.dylib 0x9e32083f _dispatch_client_callout + 50

    11/08/2016 08:02:45.021 keep [446]: 2 libdispatch.dylib 0x9e32071b dispatch_once_f + 78

    11/08/2016 08:02:45.021 keep [446]: 3 libdispatch.dylib 0x9e321fa5 dispatch_once + 31

    11/08/2016 08:02:45.021 keep [446]: 4 CarbonCore 0x940b58e1 _Gestalt_SystemVersion + 1047

    11/08/2016 08:02:45.021 keep [446]: 5 CarbonCore 0x940b508a Gestalt + 154

    11/08/2016 08:02:45.021 keep [446]: 6 rbframework.dylib 0x00f48824 RuntimeDebugMemoryUsed + 13076

    11/08/2016 08:02:45.090 Google Drive [442]: PyObjCPointer created: to type 0x7fff7642be50 {= __CFBoolean}

    11/08/2016 08:02:45.090 Google Drive [442]: PyObjCPointer created: to type 0x7fff7642be40 {= __CFBoolean}

    11/08/2016 08:02:45.090 Google Drive [442]: 2016-08-11 08:02:45.089 Google Drive [442:5773] created PyObjCPointer: to type 0x7fff7642be50 {= __CFBoolean}

    11/08/2016 08:02:45.090 Google Drive [442]: 2016-08-11 08:02:45.090 Google Drive [442:5773] created PyObjCPointer: to type 0x7fff7642be40 {= __CFBoolean}

    11/08/2016 08:02:45.091 Google Drive [442]: PyObjCPointer created: to type 0x7fff7642be60 {= __CFNumber}

    11/08/2016 08:02:45.091 Google Drive [442]: 2016-08-11 08:02:45.090 Google Drive [442:5773] created PyObjCPointer: to type 0x7fff7642be60 {= __CFNumber}

    11/08/2016 08:02:45.091 Google Drive [442]: PyObjCPointer created: to type 0x7fff7642be78 {= __CFNumber}

    11/08/2016 08:02:45.091 Google Drive [442]: 2016-08-11 08:02:45.090 Google Drive [442:5773] created PyObjCPointer: to type 0x7fff7642be78 {= __CFNumber}

    11/08/2016 08:02:45.091 Google Drive [442]: PyObjCPointer created: to type 0x7fff7642be90 {= __CFNumber}

    11/08/2016 08:02:45.091 Google Drive [442]: 2016-08-11 08:02:45.091 Google Drive [442:5773] created PyObjCPointer: to type 0x7fff7642be90 {= __CFNumber}

    11/08/2016 08:02:45.241 stay [445]: [Crashlytics] Version 3.3.0 (77)

    11/08/2016 08:02:45.518 sandboxd [319]: ([439]) TextEdit (439) political system: allow file-writing-data Applications/App Store.app/Contents/Resources/AppStore.help/Contents/Resources/fi.lproj/navigati on.json

    11/08/2016 08:02:46.224 launchservicesd [76]: failed to SecTaskLoadEntitlements error = 22

    11/08/2016 08:02:46.235 launchservicesd [76]: failed to SecTaskLoadEntitlements error = 22

    11/08/2016 08:02:46.249 appleeventsd [49]: SecTaskLoadEntitlements no error = 22

    11/08/2016 08:02:46.323 Xmarks for Safari [447]: Performance: Please update this script addition to provide a value for the thread-safe for each event handler: ' / Library/ScriptingAdditions/SIMBL.osax '.

    11/08/2016 08:02:46.750 WindowServer [163]: disable_update_timeout: updates the user interface have been disabled by force by application "keep" more than 1.00 seconds. Server has reactivated the.

    11/08/2016 08:02:46.794 WindowServer [163]: common_reenable_update: updates the user interface were eventually revived by the 'keep' application after 1.05 seconds [0.96 fps] (server force reactivated their end of 1.00 seconds [1,00 fps])

    11/08/2016 08:02:46.895 TotalFinder [444]: application for injection in com.apple.finder [254]

    11/08/2016 08:02:46.933 osascript [451]: Performance: Please update this script addition to provide a value for the thread-safe for each event handler: ' / Library/ScriptingAdditions/SIMBL.osax '.

    11/08/2016 08:02:46.980 Finder [254]: Performance: Please update this script addition to provide a value for the thread-safe for each event handler: ' / Library/ScriptingAdditions/SIMBL.osax '.

    11/08/2016 08:02:46.994 Finder [254]: init event of TotalFinderInjector v1.7.12 received

    11/08/2016 08:02:46.994 Finder [254]: TotalFinderInjector: installation TotalFinder dle /Library/ScriptingAdditions/TotalFinder.osax/Contents/Resources/TotalFinder.bun

    11/08/2016 08:02:47.069 Finder [254]: launch TotalFinderCrashWatcher "/Library/ScriptingAdditions/TotalFinder.osax/Contents/Resources/TotalFinder.bu ndle/Contents/Resources/TotalFinderCrashWatcher.app".

    11/08/2016 08:02:47.105 TotalFinderCrashWatcher [452]: I look at "/ users/daoudhimmo/Library/Logs/DiagnosticReports" new reports of crash with the prefix 'Finder '.

    11/08/2016 08:02:47.303 Google Drive [442]: KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.303 Google Drive [442]: 2016-08-11 08:02:47.303 Google Drive [442:5773] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.303 Google Drive [442]: KSBundle failed to get path bundle of the user. [com.google.Keystone.SharedErrorDomain:1201 - "KSBundle.m:44"] (KSPaths could not set property subdirectory. - "/ users/daoudhimmo/library/Google" [com.google.Keystone.SharedErrorDomain:1003])

    11/08/2016 08:02:47.303 Google Drive [442]: 2016-08-11 08:02:47.303 Google Drive [442:5773] KSBundle could not get path bundle of the user. [com.google.Keystone.SharedErrorDomain:1201 - "KSBundle.m:44"] (KSPaths could not set property subdirectory. - "/ users/daoudhimmo/library/Google" [com.google.Keystone.SharedErrorDomain:1003])

    11/08/2016 08:02:47.359 Google Drive [442]: GsyncAppDeletegate.py: Finder level debugging logs: false

    11/08/2016 08:02:47.359 Google Drive [442]: 2016-08-11 08:02:47.359 Google Drive [442:5773] GsyncAppDeletegate.py: Finder level debugging logs: false

    11/08/2016 08:02:47.372 soagent [299]: could not allocate SOHelper < SOMessageHelper: 0x7fd306cef690 > inside the com.apple.soagent

    11/08/2016 08:02:47.380 ksinstall [453]: 2016-08-11 08:02:47.379 ksinstall [453/0xa44c1000] [lvl = 2] - installer [main KeystoneInstallTool] Google Software Update began.

    11/08/2016 08:02:47.391 Finder [254]: found a com.apple.Labels.plist legacy in your Preferences folder. This can interfere with the functionality of the colored labels of TotalFinder.

    More information: http://discuss.binaryage.com/t/problems-with-tag-colors/1691

    File: /Users/daoudhimmo/Library/Preferences/com.apple.Labels.plist

    11/08/2016 08:02:47.396 ksinstall [453]: 2016-08-11 08:02:47.396 ksinstall [453/0xa44c1000] [lvl = 3] + [KSPaths (PrivateMethods) subDirInParent:name: create: protect: owner: Group: mode: error:] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.397 ksinstall [453]: 2016-08-11 08:02:47.397 ksinstall [453/0xa44c1000] [lvl = 3] KeystoneBundlePath() KSBundle could not get path bundle of the user. [com.google.Keystone.SharedErrorDomain:1201 - "KSBundle.m:44"] (KSPaths could not set property subdirectory. - "/ users/daoudhimmo/library/Google" [com.google.Keystone.SharedErrorDomain:1003])

    11/08/2016 08:02:47.399 ksinstall [453]: 2016-08-11 08:02:47.399 ksinstall [453/0xa44c1000] [lvl = 2]-[major KeystoneInstallTool] Google software installer to begin the Installation.

    11/08/2016 08:02:47.400 ksinstall [453]: 2016-08-11 08:02:47.400 ksinstall [453/0xa44c1000] [lvl = 2]-[KeystoneInstallBackend install] upgrading software from Google trying to install.

    11/08/2016 08:02:47.411 TotalFinder [444]: TotalFinder has been successfully injected into com.apple.finder [254]

    11/08/2016 08:02:47.503 Google Drive [442]: KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.504 Google Drive [442]: 2016-08-11 08:02:47.503 Google Drive [442:5773] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.505 Google Drive [442]: error when trying to write to active ingredients: (< KSError:0x10321fb40)

    Domain = "com.google.Keystone.SharedErrorDomain"

    code = 1003

    userInfo = {}

    function = "+ [KSPaths (PrivateMethods) setPermissionsOnPath:owner:group:mode:]";

    Date = 2016-08-11 07:02:47 + 0000;

    NSLocalizedDescription = 'Could not KSPaths set property subdirectory.';

    filename = "KSPaths.m";

    line = 507;

    NSFilePath = ' / users/daoudhimmo/library/Google ";

    NSUnderlyingError = < KSError:0x10323aeb0

    Domain NSPOSIXErrorDomain =

    code = 1

    userInfo = {}

    line = 506;

    filename = "KSPaths.m";

    function = "+ [KSPaths (PrivateMethods) setPermissionsOnPath:owner:group:mode:]";

    Date = 2016-08-11 07:02:47 + 0000;

    }

    >;

    }

    >)

    11/08/2016 08:02:47.505 Google Drive [442]: 2016-08-11 08:02:47.504 Google Drive [442:5773] error when trying to write Active: (< KSError:0x10321fb40)

    11/08/2016 08:02:47.505 Google Drive [442]: domain = "com.google.Keystone.SharedErrorDomain"

    11/08/2016 08:02:47.505 Google Drive [442]: code = 1003

    11/08/2016 08:02:47.505 Google Drive [442]: userInfo = {}

    11/08/2016 08:02:47.505 Google Drive [442]: function = "+ [KSPaths (PrivateMethods) setPermissionsOnPath:owner:group:mode:]";

    11/08/2016 08:02:47.505 Google Drive [442]: date = 2016-08-11 07:02:47 + 0000;

    11/08/2016 08:02:47.505 Google Drive [442]: NSLocalizedDescription = 'Could not KSPaths set property subdirectory.';

    11/08/2016 08:02:47.505 Google Drive [442]: filename = "KSPaths.m";

    11/08/2016 08:02:47.505 Google Drive [442]: line = 507;

    11/08/2016 08:02:47.505 Google Drive [442]: NSFilePath = "/ users/daoudhimmo/library/Google";

    11/08/2016 08:02:47.505 Google Drive [442]: NSUnderlyingError = < KSError:0x10323aeb0

    11/08/2016 08:02:47.505 Google Drive [442]: domain NSPOSIXErrorDomain =

    11/08/2016 08:02:47.505 Google Drive [442]: code = 1

    11/08/2016 08:02:47.505 Google Drive [442]: userInfo = {}

    11/08/2016 08:02:47.505 Google Drive [442]: line = 506;

    11/08/2016 08:02:47.506 Google Drive [442]: filename = "KSPaths.m";

    11/08/2016 08:02:47.506 Google Drive [442]: function = "+ [KSPaths (PrivateMethods) setPermissionsOnPath:owner:group:mode:]";

    11/08/2016 08:02:47.506 Google Drive [442]: date = 2016-08-11 07:02:47 + 0000;

    11/08/2016 08:02:47.506 Google Drive [442] :}

    11/08/2016 08:02:47.506 Google Drive [442]: >.

    11/08/2016 08:02:47.506 Google Drive [442] :}

    08/11/2016 08:02:47.506 Google Drive [442]: >)

    11/08/2016 08:02:47.539 pkd [260]: election of com.google.GoogleDrive.FinderSyncAPIExtension plugin client 455: = 1

    11/08/2016 08:02:47.616 ksinstall [453]: 2016-08-11. 08:02:47.616 ksinstall [453/0xa44c1000] [lvl = 2]-[KeystoneInstallBackend shouldInstallWithVersion:error:] system Google software update installed, but the installation of user-level requested.

    11/08/2016 08:02:47.616 ksinstall [453]: 2016-08-11 08:02:47.616 ksinstall [453/0xa44c1000] [lvl = 2]-[major KeystoneInstallTool] Google software Setup has been run successfully.

    11/08/2016 08:02:47.642 pkd [260]: enable pid = 254 for plugin com.google.GoogleDrive.FinderSyncAPIExtension (1.0) F925828A-7AB3-4895-B673-4D5C1359F1D3/Applications/Cloud, security and backup of apps/Google Drive.app/Contents/PlugIns/FinderSyncAPIExtension.appex

    11/08/2016 08:02:47.684 taskgated [303]: no identification of the expected demand, cannot use provisioning profiles [pid = 458]

    11/08/2016 08:02:47.738 FinderSyncAPIExtension [458]: extension of loading Google Drive Finder

    11/08/2016 08:02:47.739 FinderSyncAPIExtension [458]: The Finder version 1.0 requires no swizzling.

    11/08/2016 08:02:47.745 Google Drive [442]: KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.745 Google Drive [442]: 2016-08-11 08:02:47.744 Google Drive [442:5773] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.745 Google Drive [442]: KSBundle failed to get path bundle of the user. [com.google.Keystone.SharedErrorDomain:1201 - "KSBundle.m:44"] (KSPaths could not set property subdirectory. - "/ users/daoudhimmo/library/Google" [com.google.Keystone.SharedErrorDomain:1003])

    11/08/2016 08:02:47.745 Google Drive [442]: 2016-08-11 08:02:47.744 Google Drive [442:5773] KSBundle could not get path bundle of the user. [com.google.Keystone.SharedErrorDomain:1201 - "KSBundle.m:44"] (KSPaths could not set property subdirectory. - "/ users/daoudhimmo/library/Google" [com.google.Keystone.SharedErrorDomain:1003])

    11/08/2016 08:02:47.779 FinderSyncAPIExtension [458]: unable to connect (colorGridView) out of (NSApplication) (NSColorPickerGridView): missing setter or instance variable

    11/08/2016 08:02:47.780 FinderSyncAPIExtension [458]: unable to connect (NSApplication) (NSColorPickerGridView) (view) output: missing setter or instance variable

    11/08/2016 08:02:47.816 FinderSyncAPIExtension [458]: path of the Pipe is a symbolic link, to connect to the target.

    11/08/2016 08:02:47.818 FinderSyncAPIExtension [458]: / Users/daoudhimmo/Library/Application Support/Google/Reader/GoogleDriveIpcPipe is a symlink to/Users/daoudhimmo/Library/Group containers/google_drive/tmp0PnAks, connection to link target.

    11/08/2016 08:02:47.819 GoogleSoftwareUpdateAgent [456]: 2016-08-11 08:02:47.819 GoogleSoftwareUpdateAgent [456/0xa44c1000] [lvl = 3] + [KSPaths (PrivateMethods) subDirInParent:name: create: protect: owner: Group: mode: error:] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.821 Google Drive [442]: KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.821 Google Drive [442]: KSBundle failed to get path bundle of the user. [com.google.Keystone.SharedErrorDomain:1201 - "KSBundle.m:44"] (KSPaths could not set property subdirectory. - "/ users/daoudhimmo/library/Google" [com.google.Keystone.SharedErrorDomain:1003])

    11/08/2016 08:02:47.821 Google Drive [442]: 2016-08-11 08:02:47.821 Google Drive [442:5773] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.821 Google Drive [442]: 2016-08-11 08:02:47.821 Google Drive [442:5773] KSBundle could not get path bundle of the user. [com.google.Keystone.SharedErrorDomain:1201 - "KSBundle.m:44"] (KSPaths could not set property subdirectory. - "/ users/daoudhimmo/library/Google" [com.google.Keystone.SharedErrorDomain:1003])

    11/08/2016 08:02:47.828 GoogleSoftwareUpdateAgent [456]: 2016-08-11 08:02:47.828 GoogleSoftwareUpdateAgent [456/0xa44c1000] [lvl = 3]-[KSAgentSettings ticketStorePath] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.830 Google Drive [442]: KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.831 Google Drive [442]: 2016-08-11 08:02:47.830 Google Drive [442:5773] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.831 Google Drive [442]: framework of Keystone record failed to get the path of the ticket store. "Falling back to the passage: '-user-store", which may not work on older versions of ksadmin. Error: < KSError:0x10aecfff0

    Domain = "com.google.Keystone.SharedErrorDomain"

    code = 1003

    userInfo = {}

    function = "+ [KSPaths (PrivateMethods) setPermissionsOnPath:owner:group:mode:]";

    Date = 2016-08-11 07:02:47 + 0000;

    NSLocalizedDescription = 'Could not KSPaths set property subdirectory.';

    filename = "KSPaths.m";

    line = 507;

    NSFilePath = ' / users/daoudhimmo/library/Google ";

    NSUnderlyingError = < KSError:0x10aecbe40

    Domain NSPOSIXErrorDomain =

    code = 1

    userInfo = {}

    line = 506;

    filename = "KSPaths.m";

    function = "+ [KSPaths (PrivateMethods) setPermissionsOnPath:owner:group:mode:]";

    Date = 2016-08-11 07:02:47 + 0000;

    }

    >;

    }

    >

    11/08/2016 08:02:47.831 Google Drive [442]: 2016-08-11 08:02:47.830 Google Drive [442:5773] registration key frame cannot get the path of the ticket store. "Falling back to the passage: '-user-store", which may not work on older versions of ksadmin. Error: < KSError:0x10aecfff0

    11/08/2016 08:02:47.831 Google Drive [442]: domain = "com.google.Keystone.SharedErrorDomain"

    11/08/2016 08:02:47.831 Google Drive [442]: code = 1003

    11/08/2016 08:02:47.831 Google Drive [442]: userInfo = {}

    11/08/2016 08:02:47.831 Google Drive [442]: function = "+ [KSPaths (PrivateMethods) setPermissionsOnPath:owner:group:mode:]";

    11/08/2016 08:02:47.831 Google Drive [442]: date = 2016-08-11 07:02:47 + 0000;

    11/08/2016 08:02:47.831 Google Drive [442]: NSLocalizedDescription = 'Could not KSPaths set property subdirectory.';

    11/08/2016 08:02:47.831 Google Drive [442]: filename = "KSPaths.m";

    11/08/2016 08:02:47.831 Google Drive [442]: line = 507;

    11/08/2016 08:02:47.831 Google Drive [442]: NSFilePath = "/ users/daoudhimmo/library/Google";

    11/08/2016 08:02:47.831 Google Drive [442]: NSUnderlyingError = < KSError:0x10aecbe40

    11/08/2016 08:02:47.832 Google Drive [442]: domain NSPOSIXErrorDomain =

    11/08/2016 08:02:47.832 Google Drive [442]: code = 1

    11/08/2016 08:02:47.832 Google Drive [442]: userInfo = {}

    11/08/2016 08:02:47.832 Google Drive [442]: line = 506;

    11/08/2016 08:02:47.832 Google Drive [442]: filename = "KSPaths.m";

    11/08/2016 08:02:47.832 Google Drive [442]: function = "+ [KSPaths (PrivateMethods) setPermissionsOnPath:owner:group:mode:]";

    11/08/2016 08:02:47.832 Google Drive [442]: date = 2016-08-11 07:02:47 + 0000;

    11/08/2016 08:02:47.832 Google Drive [442] :}

    11/08/2016 08:02:47.832 Google Drive [442]: >.

    11/08/2016 08:02:47.832 Google Drive [442] :}

    11/08/2016 08:02:47.832 Google Drive [442]: >

    11/08/2016 08:02:47.842 GoogleSoftwareUpdateAgent [456]: 2016-08-11 08:02:47.806 GoogleSoftwareUpdateAgent [456/0xa44c1000] [lvl = 2] - Agent settings [KSAgentApp setupLoggerOutput]: < KSAgentSettings:0x180f6e0 bundleID = com.google.Keystone.Agent lastCheck = (null) checkInterval = 18000.000000 uiDisplayInterval = 604800.000000 sleepInterval = 1800.000000 jitterInterval = 900 = 0.000000 maxRunInterval isConsoleUser = 1 ticketStorePath = (null) runMode = 3 daemonUpdateEngineBrokerServiceName = com.google.Keystone.Daemon.UpdateEngine daemonAdministrationServiceName = com.google.Keystone.Daemon.Administration logEverything = 0 logBufferSize = 2048 alwaysPromptForUpdates = 0 productIDToUpdate = (null) lastUIDisplayed = (null) alwaysShowStatusItem = 0 updateCheckTag = (null) printResults no = NO userInitiated = NO >

    11/08/2016 08:02:47.843 GoogleSoftwareUpdateAgent [456]: 2016-08-11. 08:02:47.829 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 1]-[KSProductsReportingStore updateActivesData:forProductID:withKey:] update of active data began.

    11/08/2016 08:02:47.843 GoogleSoftwareUpdateAgent [456]: 2016-08-11. 08:02:47.829 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 1]-[KSProductsReportingStore updateActivesData:forProductID:withKey:] completed update of active data.

    11/08/2016 08:02:47.843 GoogleSoftwareUpdateAgent [456]: 2016-08-11. 08:02:47.829 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 1]-[KSProductsReportingStore updateProductActivesWithError:] recovery of assets of products began.

    11/08/2016 08:02:47.843 GoogleSoftwareUpdateAgent [456]: 2016-08-11 08:02:47.842 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 3] + [KSPaths (PrivateMethods) subDirInParent:name: create: protect: owner: Group: mode: error:] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.852 GoogleSoftwareUpdateAgent [456]: 2016-08-11. 08:02:47.843 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 1]-[KSProductsReportingStore updateProductActivesWithError:] recovery of product assets completed. Success: No.

    11/08/2016 08:02:47.852 GoogleSoftwareUpdateAgent [456]: 2016-08-11. 08:02:47.852 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 3]-[KSAgentApp (KeystoneThread) runKeystonesInThreadWithArg:] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.864 GoogleSoftwareUpdateAgent [456]: 2016-08-11 08:02:47.852 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 1] + [KSProductsReportingStore loadReportingAttributesWithError:] waste reports attributes product began.

    11/08/2016 08:02:47.864 GoogleSoftwareUpdateAgent [456]: 2016-08-11 08:02:47.864 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 3] + [KSPaths (PrivateMethods) subDirInParent:name: create: protect: owner: Group: mode: error:] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.874 GoogleSoftwareUpdateAgent [456]: 2016-08-11. 08:02:47.874 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 3]-[KSAgentApp (KeystoneThread) runKeystonesInThreadWithArg:] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.884 GoogleSoftwareUpdateAgent [456]: 2016-08-11 08:02:47.884 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 3] + [KSPaths (PrivateMethods) subDirInParent:name: create: protect: owner: Group: mode: error:] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.893 GoogleSoftwareUpdateAgent [456]: 2016-08-11 08:02:47.893 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 3]-[KSAgentSettings ticketStorePath] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.893 GoogleSoftwareUpdateAgent [456]: 2016-08-11. 08:02:47.893 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 3]-[KSAgentApp (KeystoneThread) runKeystonesInThreadWithArg:] unable to connect to the engine system.

    11/08/2016 08:02:47.904 GoogleSoftwareUpdateAgent [456]: 2016-08-11 08:02:47.904 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 3] + [KSPaths (PrivateMethods) subDirInParent:name: create: protect: owner: Group: mode: error:] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.913 GoogleSoftwareUpdateAgent [456]: 2016-08-11 08:02:47.912 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 3]-[KSAgentSettings ticketStorePath] KSPaths failed to set property subdirectory. [com.google.Keystone.SharedErrorDomain:1003 - ' / users/daoudhimmo/library/Google '-"KSPaths.m:507"] (The operation could not be completed. Operation not permitted [NSPOSIXErrorDomain:1])

    11/08/2016 08:02:47.913 GoogleSoftwareUpdateAgent [456]: 2016-08-11. 08:02:47.913 GoogleSoftwareUpdateAgent [456/0xb031d000] [lvl = 3]-[KSAgentApp (KeystoneThread) runKeystonesInThreadWithArg:] cannot read the user ticket store.

    11/08/2016 08:02:49.025 SubmitDiagInfo [362]: unable to load the configuration of location on the disk file. To return to the default location. Reason: Won't serialize to _readDictionaryFromJSONData due to the object nil

    11/08/2016 08:02:49.030 SubmitDiagInfo [362]: unable to load the configuration of location on the disk file. To return to the default location. Reason: Won't serialize to _readDictionaryFromJSONData due to the object nil

    11/08/2016 08:02:50.898 Google Drive [442]: mod_SCNetworkReachabilityCallBack

    11/08/2016 08:02:50.907 Google Drive [442]: mod_SCNetworkReachabilityCallBack

    11/08/2016 08:02:50.908 Google Drive [442]: mod_SCNetworkReachabilityCallBack

    11/08/2016 08:02:50.939 Google Drive [442]: Performance: Please update this script addition to provide a value for the thread-safe for each event handler: ' / Library/ScriptingAdditions/SIMBL.osax '.

    11/08/2016 08:02:51.419 launchservicesd [76]: failed to SecTaskLoadEntitlements error = 22

    11/08/2016 08:02:51.419 launchservicesd [76]: failed to SecTaskLoadEntitlements error = 22

    11/08/2016 08:02:52.479 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:02:52.488 keep [446]: Performance: Please update this script addition to provide a value for the thread-safe for each event handler: ' / Library/ScriptingAdditions/SIMBL.osax '.

    11/08/2016 08:02:55.076 SecurityFixer [471]: no StartupItems found insecurity!

    11/08/2016 08:03:07.974 Safari [473]: tcp_connection_tls_session_error_callback 2 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22

    11/08/2016 08:03:08.233 Safari [473]: KeychainGetICDPStatus: key :-25300

    11/08/2016 08:03:08.234 Safari [473]: KeychainGetICDPStatus: status: power off

    11/08/2016 08:03:08.254 Safari [473]: KeychainGetICDPStatus: key :-25300

    11/08/2016 08:03:08.254 Safari [473]: KeychainGetICDPStatus: status: power off

    11/08/2016 08:03:08.793 Safari [473]: tcp_connection_tls_session_error_callback 3 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22

    11/08/2016 08:03:09.494 Safari [473]: cached userInfo coded to use until we are marked Sales again (UAUserActivity.m #1567)

    11/08/2016 08:03:09.494 Safari [473]: use userInfo coded memory cache to build ActivityInfo (UAUserActivity.m #2082)

    11/08/2016 08:03:09.728 sandboxd [319]: storeaccountd (328) ([328]) deny file-writing-creation /Users/daoudhimmo/Library/Caches/com.apple.Safari/ProductionBag

    11/08/2016 08:03:10.114 sandboxd [319]: storeaccountd (328) ([328]) deny file-writing-creation /Users/daoudhimmo/Library/Caches/com.apple.Safari/ProductionBag

    11/08/2016 08:03:12.639 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:03:22.099 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:03:28.692 Safari [473]: KeychainGetICDPStatus: key :-25300

    11/08/2016 08:03:28.692 Safari [473]: KeychainGetICDPStatus: status: power off

    11/08/2016 08:04:02.483 NetAuthSysAgent [329]: error AFP - 1 mapped to EIO

    11/08/2016 08:04:02.483 NetAuthSysAgent [329]: ERROR: AFP_GetServerInfo - connect 5 failed

    11/08/2016 08:04:02.483 NetAuthSysAgent [329]: error AFP - 1 mapped to EIO

    11/08/2016 08:04:25.210 ntpd [181]: time together + 3.592249 s

    11/08/2016 08:04:31.672 stay [445]: [Crashlytics:Crash] WARNING: NSApplicationCrashOnExceptions is not defined. This will result in poor level reports superior untrapped exception.

    11/08/2016 08:04:32.135 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:04:33.206 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:04:35.230 com.apple.SecurityServer [78]: Session 100023 created

    11/08/2016 08:04:40.250 Safari [473]: tcp_connection_tls_session_error_callback 128 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22

    11/08/2016 08:04:46.860 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 95

    11/08/2016 08:04:46.936 Safari [473]: tcp_connection_tls_session_error_callback 129 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22

    11/08/2016 08:04:48.513 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:04:52.340 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:04:53.103 com.apple.WebKit.WebContent [492]: < < < < MediaValidator > > > > mv_ValidateRFC4281CodecId: codec unrecognized 1. (null). Specific codec check failed.

    11/08/2016 08:04:53.103 com.apple.WebKit.WebContent [492]: < < < < MediaValidator > > > > mv_LookupCodecSupport: codec unrecognized 1

    11/08/2016 08:04:53.105 com.apple.WebKit.WebContent [492]: [08:04:53.105] mv_LowLevelCheckIfVideoPlayableUsingDecoder reported err =-12956 (kFigMediaValidatorError_VideoCodecNotSupported) (codec video 1) line of 1921

    11/08/2016 08:04:53.173 com.apple.WebKit.WebContent [492]: < < < < MediaValidator > > > > mv_TestCodecSupportUsingDecoders: codec unrecognized 1

    11/08/2016 08:04:53.173 com.apple.WebKit.WebContent [492]: < < < < MediaValidator > > > > mv_ValidateRFC4281CodecId: codec unrecognized 1. (null). Specific codec check failed.

    11/08/2016 08:04:53.173 com.apple.WebKit.WebContent [492]: < < < < MediaValidator > > > > mv_LookupCodecSupport: codec unrecognized 1

    11/08/2016 08:04:53.173 com.apple.WebKit.WebContent [492]: [08:04:53.173] mv_LowLevelCheckIfVideoPlayableUsingDecoder reported err =-12956 (kFigMediaValidatorError_VideoCodecNotSupported) (codec video 1) line of 1921

    11/08/2016 08:04:53.173 com.apple.WebKit.WebContent [492]: < < < < MediaValidator > > > > mv_TestCodecSupportUsingDecoders: codec unrecognized 1

    11/08/2016 08:04:54.646 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:04:55.041 mds [61]: (Volume.Normal:2464) volume: 0x7fed24816000 * started creating a default location: 0 to block the SpotLoc: (null) SpotVerLoc: (null): 0 /Volumes/firmwaresyncd.0wLK5E

    11/08/2016 08:04:55.603 eliminated [346]: failure of normalizeUserMountpoint:791 volRoot for /Volumes/firmwaresyncd.0wLK5E

    11/08/2016 08:04:55.603 eliminated [346]: _validateVolume:813 unable to normalize the volume: "/ Volumes/firmwaresyncd.0wLK5E", flight: (null)

    11/08/2016 08:04:56.492 fontd [262]: BUG in client libdispatch: dispatch_mig_server: mach_msg() has memory invalid (ipc/send) - 0x1000000c

    11/08/2016 08:04:56.517 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:04:57.739 com.apple.WebKit.Networking [474]: tcp_connection_destination_perform_socket_connect 244 connectx to 0.0.0.1:80@0 failed: [65] no route to host

    11/08/2016 08:05:00.612 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:05:02.919 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:05:08.016 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:05:09.653 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:05:12.708 Safari [473]: tcp_connection_destination_handle_tls_close_notify 123 socket closure due to the TLS CLOSE_NOTIFY alert

    11/08/2016 08:05:12.708 Safari [473]: tcp_connection_tls_session_error_callback 123 __tcp_connection_tls_session_callback_write_block_invoke.434 error 32

    11/08/2016 08:05:12.712 Safari [473]: tcp_connection_destination_handle_tls_close_notify 127 closing taken due to the TLS CLOSE_NOTIFY alert

    11/08/2016 08:05:12.712 Safari [473]: tcp_connection_tls_session_error_callback 127 __tcp_connection_tls_session_callback_write_block_invoke.434 error 32

    11/08/2016 08:05:12.713 Safari [473]: making of closing tcp_connection_destination_handle_tls_close_notify 125 due to the TLS CLOSE_NOTIFY alert

    11/08/2016 08:05:12.713 Safari [473]: tcp_connection_tls_session_error_callback 125 __tcp_connection_tls_session_callback_write_block_invoke.434 error 32

    11/08/2016 08:05:15.866 Safari [473]: KeychainGetICDPStatus: key :-25300

    11/08/2016 08:05:15.866 Safari [473]: KeychainGetICDPStatus: status: power off

    11/08/2016 08:05:16.819 Safari [473]: tcp_connection_destination_handle_tls_close_notify 122 decision-making of closure due to the TLS CLOSE_NOTIFY alert

    11/08/2016 08:05:16.820 Safari [473]: tcp_connection_tls_session_error_callback 122 __tcp_connection_tls_session_callback_write_block_invoke.434 error 32

    11/08/2016 08:05:19.179 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:05:21.603 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:05:26.967 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:05:46.875 Safari [473]: KeychainGetICDPStatus: key :-25300

    11/08/2016 08:05:46.875 Safari [473]: KeychainGetICDPStatus: status: power off

    11/08/2016 08:06:17.205 AppTech [273]: [CopyAvailableUpdate] Invalid Remote property list file

    11/08/2016 08:06:17.205 AppTech [273]: no update available

    11/08/2016 08:06:21.450 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:06:52.535 apsd [75]: MessageTracer: load_domain_prefix_whitelist:120: missing default whitelist file: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Resources/Subm itDiagInfo.default.domains

    11/08/2016 08:06:54.153 Safari [473]: KeychainGetICDPStatus: key :-25300

    11/08/2016 08:06:54.153 Safari [473]: KeychainGetICDPStatus: status: power off

    11/08/2016 08:07:16.080 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:07:18.672 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:07:24.931 Safari [473]: KeychainGetICDPStatus: key :-25300

    11/08/2016 08:07:24.931 Safari [473]: KeychainGetICDPStatus: status: power off

    11/08/2016 08:07:39.970 Safari [473]: KeychainGetICDPStatus: key :-25300

    11/08/2016 08:07:39.971 Safari [473]: KeychainGetICDPStatus: status: power off

    11/08/2016 08:08:49.134 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:08:51.960 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:08:54.898 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:08:55.617 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:08:59.327 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:09:00.432 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:09:06.597 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:09:07.783 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:09:09.422 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:09:14.519 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:09:14.718 Safari [473]: KeychainGetICDPStatus: key :-25300

    11/08/2016 08:09:14.718 Safari [473]: KeychainGetICDPStatus: status: power off

    11/08/2016 08:09:21.069 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:09:22.691 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:09:28.143 Safari [473]: KeychainGetICDPStatus: key :-25300

    11/08/2016 08:09:28.144 Safari [473]: KeychainGetICDPStatus: status: power off

    11/08/2016 08:09:28.424 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:09:29.810 WindowServer [163]: _CGXRemoveWindowFromWindowMovementGroup: 0x8e window is not attached to the window 0 x 93

    11/08/2016 08:09:32.164 SpotlightNetHelper [396]: LaunchServices: disconnect the event received for service com.apple.lsd.mapdb

    11/08/2016 08:09:32.164 SpotlightNetHelper [396]: LaunchServices: received XPC_ERROR_CONNECTION_INVALID trying to map database

    11/08/2016 08:09:32.167 SpotlightNetHelper [396]: LaunchServices: received XPC_ERROR_CONNECTION_INVALID trying to map database

    11/08/2016 08:09:32.167 SpotlightNetHelper [396]: LaunchServices: disconnect the event received for service com.apple.lsd.mapdb

    11/08/2016 08:09:32.398 sandboxd [319]: SpotlightNetHelp (396) ([396]) deny com.apple.lsd.mapdb mach-search

    11/08/2016 08:09:32.412 sandboxd [319]: SpotlightNetHelp (396) ([396]) deny com.apple.lsd.mapdb mach-search

    11/08/2016 08:09:32.478 sandboxd [319]: SpotlightNetHelp (396) ([396]) deny-read-data file /private/var/folders/tm/1hd69g0x5_q5rtvxsw_cq9rm0000gn/0/com.apple.LaunchServic es - 134501.csstore

    11/08/2016 08:09:32.492 sandboxd [319]: SpotlightNetHelp (396) ([396]) deny-read-data file /Users/daoudhimmo/Library/Preferences/com.apple.LaunchServices.plist

    11/08/2016 08:09:32.505 sandboxd [319]: SpotlightNetHelp (396) ([396]) deny-read-data file /Users/daoudhimmo/Library/Preferences/com.apple.LaunchServices/com.apple.launch services.secure.plist

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading of files-data Applications/App Store.app/Contents/MacOS/App Store

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data file Store.app/Contents/MacOS/App Applications/App Store /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/App Store.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/App Store.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/App Store.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading of files-data Applications/App Store.app/Contents/MacOS/App Store

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/App Store.app/Contents/PlugIns

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Automator.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Automator.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Automator.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Automator.app/Contents/MacOS/Automator file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Automator.app/Contents/MacOS/Automator/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Automator.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Automator.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Automator.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Automator.app/Contents/MacOS/Automator file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calculator.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calculator.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calculator.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calculator.app/Contents/MacOS/Calculator file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Calculator.app/Contents/MacOS/Calculator/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calculator.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calculator.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calculator.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calculator.app/Contents/MacOS/Calculator file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calculator.app/Contents/PlugIns file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calendar.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calendar.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calendar.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calendar.app/Contents/MacOS/Calendar file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Calendar.app/Contents/MacOS/Calendar/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calendar.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calendar.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calendar.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calendar.app/Contents/MacOS/Calendar file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Calendar.app/Contents/PlugIns file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Chess.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Chess.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Chess.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Chess.app/Contents/MacOS/Chess file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Chess.app/Contents/MacOS/Chess/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Chess.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Chess.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Chess.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Chess.app/Contents/MacOS/Chess file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Contacts.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Contacts.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Contacts.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Contacts.app/Contents/MacOS/Contacts file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Contacts.app/Contents/MacOS/Contacts/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Contacts.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Contacts.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Contacts.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Contacts.app/Contents/MacOS/Contacts file

    11/08/2016 08:09:32.519 sandboxd [319]: SpotlightNetHelp (396) ([396]) deny-read-file data Applications/App Store.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dashboard.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dashboard.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dashboard.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dashboard.app/Contents/MacOS/Dashboard file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Dashboard.app/Contents/MacOS/Dashboard/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dashboard.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dashboard.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dashboard.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dashboard.app/Contents/MacOS/Dashboard file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dictionary.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dictionary.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dictionary.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dictionary.app/Contents/MacOS/Dictionary file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Dictionary.app/Contents/MacOS/Dictionary/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dictionary.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dictionary.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dictionary.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Dictionary.app/Contents/MacOS/Dictionary file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/DVD Player.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/DVD Player.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/DVD Player.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Player.app/Contents/MacOS/DVD DVD player

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Player.app/Contents/MacOS/DVD Applications/DVD Player /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/DVD Player.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/DVD Player.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/DVD Player.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Player.app/Contents/MacOS/DVD DVD player

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/FaceTime.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/FaceTime.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/FaceTime.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/FaceTime.app/Contents/MacOS/FaceTime file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/FaceTime.app/Contents/MacOS/FaceTime/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/FaceTime.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/FaceTime.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/FaceTime.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/FaceTime.app/Contents/MacOS/FaceTime file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/FaceTime.app/Contents/PlugIns file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/fonts Book.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/fonts Book.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/fonts Book.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file Donnees/applications/book.app/contents/macos/font book fonts

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) Book.app/Contents/MacOS/Font Applications/font file-read-data Book /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/fonts Book.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/fonts Book.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/fonts Book.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file Donnees/applications/book.app/contents/macos/font book fonts

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Center.app Applications/games

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Center.app / Applications/games Contents

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Center.app/Contents/PkgInfo Applications/games

    11/08/2016 08:09:32.532 sandboxd [319]: SpotlightNetHelp (396) ([396]) deny-read-file data Applications/App Store.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) Center of Center.app/Contents/MacOS/Game file-read-data Applications/games

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data file Center.app/Contents/MacOS/Game Applications/Game Center /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Center.app Applications/games

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Center.app / Applications/games Contents

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Center.app Applications/games

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) Center of Center.app/Contents/MacOS/Game file-read-data Applications/games

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Image Capture.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Image Capture.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Image Capture.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Capture.app/Contents/MacOS/Image Image Capture

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) Capture.app/Contents/MacOS/Image Applications/Image file-read-data Capture /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Image Capture.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Image Capture.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Image Capture.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Capture.app/Contents/MacOS/Image Image Capture

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-database /Applications/iTunes.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/iTunes.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/iTunes.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/iTunes.app/Contents/MacOS/iTunes file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/iTunes.app/Contents/MacOS/iTunes/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-database /Applications/iTunes.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/iTunes.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-database /Applications/iTunes.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/iTunes.app/Contents/MacOS/iTunes file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/iTunes.app/Contents/PlugIns file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Launchpad.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Launchpad.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Launchpad.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Launchpad.app/Contents/MacOS/Launchpad file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Launchpad.app/Contents/MacOS/Launchpad/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Launchpad.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Launchpad.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Launchpad.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Launchpad.app/Contents/MacOS/Launchpad file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Mail.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Mail.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Mail.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Mail.app/Contents/MacOS/Mail file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Mail.app/Contents/MacOS/Mail/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Mail.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Mail.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Mail.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Mail.app/Contents/MacOS/Mail file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Mail.app/Contents/PlugIns file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Messages.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Messages.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Messages.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Messages.app/Contents/MacOS/Messages file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Messages.app/Contents/MacOS/Messages/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Messages.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Messages.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Messages.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Messages.app/Contents/MacOS/Messages file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Messages.app/Contents/PlugIns file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Control.app Applications/Mission

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Control.app / Contents Applications/Mission

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Control.app/Contents/PkgInfo Applications/Mission

    11/08/2016 08:09:32.550 sandboxd [319]: SpotlightNetHelp (396) ([396]) deny-read-file data Applications/App Store.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) control file-read-data Applications/Mission Control.app/Contents/MacOS/Mission

    11/08/2016 08:09:32.000 kernel [0]: sandbox: control of playback-file-data Applications/Mission Control.app/Contents/MacOS/Mission SpotlightNetHelp (396) deny (1) /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Control.app Applications/Mission

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Control.app / Contents Applications/Mission

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Control.app Applications/Mission

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) control file-read-data Applications/Mission Control.app/Contents/MacOS/Mission

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Notes.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Notes.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Notes.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Notes.app/Contents/MacOS/Notes file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Notes.app/Contents/MacOS/Notes/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Notes.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Notes.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Notes.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Notes.app/Contents/MacOS/Notes file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Notes.app/Contents/PlugIns file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Photo Booth.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Photo Booth.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Photo Booth.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file Donnees/applications/booth.app/contents/macos/photo photo booth

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file Donnees/applications/booth.app/contents/macos/photo photo booth /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Photo Booth.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Photo Booth.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Photo Booth.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file Donnees/applications/booth.app/contents/macos/photo photo booth

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Preview.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Preview.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Preview.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Preview.app/Contents/MacOS/Preview file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Preview.app/Contents/MacOS/Preview/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Preview.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Preview.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Preview.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Preview.app/Contents/MacOS/Preview file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Preview.app/Contents/PlugIns file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Photos.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Photos.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Photos.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Photos.app/Contents/MacOS/Photos file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Photos.app/Contents/MacOS/Photos/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Photos.app/Contents/Library/Automator file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Photos.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Photos.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Photos.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Photos.app/Contents/MacOS/Photos file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/QuickTime Player.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/QuickTime Player.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/QuickTime Player.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/QuickTime Player Player.app/Contents/MacOS/QuickTime

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/QuickTime Player Player.app/Contents/MacOS/QuickTime /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/QuickTime Player.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/QuickTime Player.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/QuickTime Player.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/QuickTime Player Player.app/Contents/MacOS/QuickTime

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/QuickTime Player.app/Contents/PlugIns

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Reminders.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Reminders.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Reminders.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Reminders.app/Contents/MacOS/Reminders file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Reminders.app/Contents/MacOS/Reminders/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Reminders.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Reminders.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Reminders.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Reminders.app/Contents/MacOS/Reminders file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Reminders.app/Contents/PlugIns file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Safari.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Safari.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Safari.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-database /Applications/Safari.app/Contents/MacOS/Safari

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Safari.app/Contents/MacOS/Safari/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Safari.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Safari.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Safari.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-database /Applications/Safari.app/Contents/MacOS/Safari

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Stickies.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Stickies.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Stickies.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Stickies.app/Contents/MacOS/Stickies file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Stickies.app/Contents/MacOS/Stickies/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Stickies.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Stickies.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Stickies.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Stickies.app/Contents/MacOS/Stickies file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/System Preferences.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/System Preferences.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/System Preferences.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file system data/Applications/preferences Preferences.app/Contents/MacOS/System

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file system Preferences.app/Contents/MacOS/System Data/Applications/preferences /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/System Preferences.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/System Preferences.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/System Preferences.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file system data/Applications/preferences Preferences.app/Contents/MacOS/System

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/System Preferences.app/Contents/PlugIns

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/TextEdit.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/TextEdit.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/TextEdit.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading of files-data /Applications/TextEdit.app/Contents/MacOS/TextEdit

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/TextEdit.app/Contents/MacOS/TextEdit/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/TextEdit.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/TextEdit.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/TextEdit.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading of files-data /Applications/TextEdit.app/Contents/MacOS/TextEdit

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/time Machine.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/time Machine.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/time Machine.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Time Machine Machine.app/Contents/MacOS/Time

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Time Machine Machine.app/Contents/MacOS/Time /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/time Machine.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/time Machine.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/time Machine.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Time Machine Machine.app/Contents/MacOS/Time

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Monitor.app Applications/Utilities/activity

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Monitor.app / Contents Applications/Utilities/activity

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Monitor.app/Contents/PkgInfo Applications/Utilities/activity

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Activity Monitor Monitor.app/Contents/MacOS/Activity

    11/08/2016 08:09:32.000 kernel [0]: sandbox: monitor the file-read-data Applications/Utilities/Activity Monitor.app/Contents/MacOS/Activity SpotlightNetHelp (396) deny (1) /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Monitor.app Applications/Utilities/activity

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Monitor.app / Contents Applications/Utilities/activity

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Monitor.app Applications/Utilities/activity

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Activity Monitor Monitor.app/Contents/MacOS/Activity

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file of data, Applications, utilities, airport Utility.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file of data, Applications, utilities, airport Utility.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file data/Applications/Utilities/airport Utility.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file of data, Applications, utilities, AirPort Utility Utility.app/Contents/MacOS/AirPort

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file of data, Applications, utilities, airport utility Utility.app/Contents/MacOS/AirPort /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file of data, Applications, utilities, airport Utility.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file of data, Applications, utilities, airport Utility.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file of data, Applications, utilities, airport Utility.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-file of data, Applications, utilities, AirPort Utility Utility.app/Contents/MacOS/AirPort

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Audio MIDI Setup.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Audio MIDI Setup.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Audio MIDI Setup.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Audio MIDI Setup.app/Contents/MacOS/Audio MIDI Setup

    11/08/2016 08:09:32.000 kernel [0]: sandbox: file-reading data configuration Audio/Applications/Utilities MIDI Setup.app/Contents/MacOS/Audio MIDI SpotlightNetHelp (396) deny (1) /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Audio MIDI Setup.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Audio MIDI Setup.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Audio MIDI Setup.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Audio MIDI Setup.app/Contents/MacOS/Audio MIDI Setup

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data file Exchange.app file Applications/Utilities/Bluetooth

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading data from the file Exchange.app / happy folder Applications/Utilities/Bluetooth

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data file Exchange.app/Contents/PkgInfo file Applications/Utilities/Bluetooth

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Bluetooth File Exchange.app/Contents/MacOS/Bluetooth File Exchange

    11/08/2016 08:09:32.000 kernel [0]: sandbox: Exchange of SpotlightNetHelp (396) deny (1) Exchange.app/Contents/MacOS/Bluetooth of file file-read-data Applications/Utilities/Bluetooth /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data file Exchange.app file Applications/Utilities/Bluetooth

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading data from the file Exchange.app / happy folder Applications/Utilities/Bluetooth

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data file Exchange.app file Applications/Utilities/Bluetooth

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Bluetooth File Exchange.app/Contents/MacOS/Bluetooth File Exchange

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Boot Camp Assistant.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Boot Camp Assistant.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Boot Camp Assistant.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) help file-read-data Applications/Utilities/Boot Camp Assistant.app/Contents/MacOS/Boot Camp

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Boot Camp Assistant.app/Contents/MacOS/Boot Camp Assistant /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Boot Camp Assistant.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Boot Camp Assistant.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Boot Camp Assistant.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) help file-read-data Applications/Utilities/Boot Camp Assistant.app/Contents/MacOS/Boot Camp

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app Applications/Utilities/ColorSync

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app / Contents Applications/Utilities/ColorSync

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app/Contents/PkgInfo Applications/Utilities/ColorSync

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/ColorSync Utility Utility.app/Contents/MacOS/ColorSync

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app/Contents/MacOS/ColorSync Applications/Utilities/ColorSync Utility /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app Applications/Utilities/ColorSync

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app / Contents Applications/Utilities/ColorSync

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app Applications/Utilities/ColorSync

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/ColorSync Utility Utility.app/Contents/MacOS/ColorSync

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Console.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Console.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Console.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Console.app/Contents/MacOS/Console file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Utilities/Console.app/Contents/MacOS/Console/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Console.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Console.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Console.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Console.app/Contents/MacOS/Console file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Disk Utility.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Disk Utility.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Disk Utility.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Disk Utility Utility.app/Contents/MacOS/Disk

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app/Contents/MacOS/Disk Applications/Utilities/Disk utility /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Disk Utility.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Disk Utility.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Disk Utility.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Disk Utility Utility.app/Contents/MacOS/Disk

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grab.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grab.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grab.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grab.app/Contents/MacOS/Grab file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Utilities/Grab.app/Contents/MacOS/Grab/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grab.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grab.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grab.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grab.app/Contents/MacOS/Grab file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grapher.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grapher.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grapher.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grapher.app/Contents/MacOS/Grapher file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Utilities/Grapher.app/Contents/MacOS/Grapher/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grapher.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grapher.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grapher.app file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Grapher.app/Contents/MacOS/Grapher file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Keychain Access.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Keychain Access.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Keychain Access.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Keychain Access Access.app/Contents/MacOS/Keychain

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Access.app/Contents/MacOS/Keychain Applications/Utilities/Keychain Access /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Keychain Access.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Keychain Access.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Keychain Access.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Keychain Access Access.app/Contents/MacOS/Keychain

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Assistant.app Applications/Utilities/Migration

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Assistant.app / Contents Applications/Utilities/Migration

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Assistant.app/Contents/PkgInfo Applications/Utilities/Migration

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Migration Assistant Assistant.app/Contents/MacOS/Migration

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Assistant.app/Contents/MacOS/Migration Applications/Utilities/Migration Assistant /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Assistant.app Applications/Utilities/Migration

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Assistant.app / Contents Applications/Utilities/Migration

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Assistant.app Applications/Utilities/Migration

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Migration Assistant Assistant.app/Contents/MacOS/Migration

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Script Editor.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Script Editor.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Script Editor.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Script Editor Editor.app/Contents/MacOS/Script

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - data file reading Applications/Utilities/Script Editor.app/Contents/MacOS/Script Editor /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Script Editor.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Script Editor.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Script Editor.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Script Editor Editor.app/Contents/MacOS/Script

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/Script Editor.app/Contents/PlugIns

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/System Information.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/System Information.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/System Information.app/Contents/PkgInfo

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/System Information Information.app/Contents/MacOS/System

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Information.app/Contents/MacOS/System Applications/Utilities/system information /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/System Information.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/System Information.app / happy

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/System Information.app

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/System Information Information.app/Contents/MacOS/System

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-/Applications/Utilities/Terminal.app data file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Terminal.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Terminal.app/Contents/PkgInfo file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-Applications/Utilities/Terminal.app/Contents/MacOS/Terminal/... namedfork/rsrc file data

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-/Applications/Utilities/Terminal.app data file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Terminal.app/Contents file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-/Applications/Utilities/Terminal.app data file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal file

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app Applications/Utilities/voiceover

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app / Contents Applications/Utilities/voiceover

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app/Contents/PkgInfo Applications/Utilities/voiceover

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/VoiceOver Utility Utility.app/Contents/MacOS/VoiceOver

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app/Contents/MacOS/VoiceOver Utility Applications/Utilities/VoiceOver /... namedfork/rsrc

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app Applications/Utilities/voiceover

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app / Contents Applications/Utilities/voiceover

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Utility.app Applications/Utilities/voiceover

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) file-read-data Applications/Utilities/VoiceOver Utility Utility.app/Contents/MacOS/VoiceOver

    11/08/2016 08:09:32.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) mach-research com.apple.lsd.modifydb

    11/08/2016 08:09:32.700 SpotlightNetHelper [396]: LaunchServices: disconnect the event received for service com.apple.lsd.modifydb

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.264 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: com.apple.Safari (516) deny (1) mach-research com.apple.cookied

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.265 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.266 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) /private/var/folders/tm/1hd69g0x5_q5rtvxsw_cq9rm0000gn/C/com.apple.IntlDataCach reading of files-data e.

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.266 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.269 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.269 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.270 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.270 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.270 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.270 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - reading-data file Users/daoudhimmo/Library/Keyboard Layouts

    11/08/2016 08:09:33.270 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.271 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.271 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.271 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - data file reading/Users/daoudhimmo/Library/Input methods

    11/08/2016 08:09:33.271 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.271 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.271 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.271 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.272 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.273 Spotlight [394]: connection XPC has been invalidated

    11/08/2016 08:09:33.000 kernel [0]: sandbox: SpotlightNetHelp (396) deny (1) - posix-shm-reading-data IPC CFPBS:186 has 8:

    11/08/2016 08:09:33.273 SpotlightNetHelper [396]: CFPasteboardRef CFPasteboardCreate (CFAllocatorRef, CFStringRef): failed to create aggregate data

    11/08/2016 08:09:33.274 SpotlightNetHelper [396]: CGSConnectionByID: 0 is not a valid login ID.

    11/08/2016 08:09:33.274 SpotlightNetHelper [396]: CGSConnectionByID: 0 is not a valid login ID.

    11/08/2016 08:09:33.274 SpotlightNetHelper [396]: CGSConnectionByID: 0 is not a valid login ID.

    11/08/2016 08:09:33.281 Spotlight [394]: connection XPC has been invalidated

    11/08/2016 08:09:33.439 Spotlight [394]: connection XPC has been invalidated

    11/08/2016 08:09:34.984 Spotlight [394]: connection XPC has been invalidated

    11/08/2016 08:09:49.708 SpotlightNetHelper [396]: 17 22 tcp_connection_tls_session_error_callback __tcp_connection_tls_session_callback_write_block_invoke.434 error

    11/08/2016 08:11:12.000 syslogd [41]: sender ASL statistics

    11/08/2016 08:11:21.523 Spotlight [394]: connection XPC has been invalidated

    11/08/2016 08:11:21.641 Spotlight [394]: connection XPC has been invalidated

    11/08/2016 08:11:21.821 Spotlight [394]: connection XPC has been invalidated

    11/08/2016 08:11:23.797 Spotlight [394]: connection XPC has been invalidated

    11/08/2016 08:11:24.001 Spotlight [394]: connection XPC has been invalidated

    Of your report: ' / Library/LaunchAgents/net.culater.SIMBL.Agent.plist '.

    This is a browser toolbar add on that because of the many problems a Mac user.

    Search for files in bold and move them to the trash. The first five are in your root/library

    / Library/Application Support /Conduit

    /CTLoader

    / Library/ScriptingAddtions (anything realted to CTLoader)

    /Library/receipts / < toolbar name > .pkg

    / Library/Application Support /SIMBL/Plugins/CT2285220.bundle

    The next one is in your file.

    ~/Library/application support /Conduit


    Restart your Mac.


    Restart your Mac. Please do not post more reports. One is enough.

    If the startup is still slow, Google Drive is probably causing as well as an Internet extension.

    And you can remove the point one login and once in system preferences > users and groups > login items to test the startup time.

    And reconstruction of Index Spotlight can help too. Instructions here > rebuild the Spotlight to your Mac - Apple Support index

  • UI of Firefox is slow by typing or selecting the text (after update 33.0)

    After the 33.0 update, I noticed that typing a backspace in any area on a Web page or even in the Firefox address bar is slow to echo, on a lag of 1 second. Also, by selecting the text typed (to remove a TI, etc.) by a click-and - drag quick selects the entire, but when I click in the dialog box to deselect, the part which has not been posted as selected initially, is selected for a moment before the string whole hilite selection disappears.

    What makes the browser very cumbersome to use.

    This seems to be new to 33.0. I tried to reset Firefox, but it does not solve the problem. No problem in IE 11.0, so I do not think that the malware. I have also to keep all s/w and run avast/zonealarm for safety. I've never had an infection of malicious software on this machine. Win7 Home Premium 64-bit, 8 GB of RAM. The use of resources is low, so not out of process control.

    I have request the latest Microsoft "Patch Tuesday" updates 15/10, the same day that I updated to Firefox. This can complicate the diagnosis. But even once, IE was not affected, then, how the different Firefox UI for basic keyboard/screen I/O?

    If there is an easy way to "downgrade" to the 32.0.3 prior revision, I could try to confirm. Help, please!

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem.

    • Put yourself in the DEFAULT theme: Firefox/tools > Modules > appearance
    • Do NOT click on the reset button on the startup window Mode safe

    You can check for problems with the sessionstore.js and sessionstore.bak files in the profile folder of Firefox that store session data.

    Delete sessionstore.js will cause App Tabs and groups of tabs open and closed tabs (back) to get lost and you will have to re-create them (take note or bookmarks if possible).

  • AutoComplete of less than 31 years is slow

    Hello

    Slow AutoComplete for addresses
    Windows 7 Professional (up to date)

    The new version of AutoComplete takes more time and gives me a longer list that contains more than one address that I do not seek to add more time to find the right.

    As this thread https://support.mozilla.org/en-US/questions/1011952, except that I have not yet 1000 addresses.

    It is not extremely slow is just significantly slower than the old version of AutoComplete and gets many more false positives by searching the entire address.

    I tried the solution of the above thread, use the latest version (0.6.11.2) and he could not install "MoreFunctionsForAddressBook could not be installed because it is not compatible with Thunderbird 31.0.

    I searched the forums and did not find other solutions, but might have missed something. Other options?

    As far as I can tell this isn't an error it just the way that the new autocomplete works.

       Thanks
    

    > Luke

    Example:
    Type 'ma' under the v30, I had
    "Margaret".
    "Mark".
    "Matt".

    Type 'ma' under v31 I get
    "Freeman".
    "Maior".
    "Margaret".
    ...

    Hi, autocompletion changed a lot in TB31. Now, it no longer matches the equal strings, but it looks if the typed string is contained in one of your email addresses. It checks only the full name and email address, but also other areas. Also if you type several words all of the words are controlled separately. Unfortunately there is no way to change this behavior again.

  • Extremely slow AutoComplete for addresses after update to Thunderbird

    Yesterday I upgraded to Thunderbird since version 30 to 31, AutoComplete for addresses is now, while I have written messages that are extremely slow to suggest contacts. If I enter only one letter in the destination field, thunderbird hangs for about 20 seconds and then shows me suggestions.
    Type two letters quickly, thunderbird freezes for 13 seconds. typing 06:03 seconds
    All tested even in safe mode
    I have a local address book with about 9870 remote contacts (no address book) and before the upgrade, everything worked fine

    The problem may be due to the new AutoComplete feature looking for matches which include the search string, not just those that match at the beginning of address book fields, which was the old method.

    If you install MoreFunctionsForAddressBook, it will add a preference, morecols.autocomplete.match_just_beginning, that you can pass to true and see if it makes a difference. Tools(or AppMenu/options)/Options/Advanced/general/Config. Editor, paste the preference in search and double-click it from false to true.

    Edit: Version 0.7 of MoreFunctionsForAddressBook includes this switch on the tab to AutoComplete (valid for TB 31 +) Options.

  • serial communication - program is slow

    Hello community,

    I have a problem: I'm using LabVIEW to communicate with a CPU with RS232, but the program is extremely slow. In this configuration (it's a minimal example), it takes about 8 seconds to send a new string. What could be wrong? (I'm a beginner)

    The program of mission is to prepare a string containing incrementing values and send over the UART.

    Thanks for your help!

    Greetings!

    The yellow bulb is to highlight execution.  It is strictly a debugging tool.  Your turn that to slow down execution and be able to see how the data passes through the wires.

    Disable execution of climax, and it will run at full speed.

    But how do you use this VI?  You have not a while loop and you have not told me if an another VI call this VI.  So this VI runs only once and then stops.

    (Please don't tell me you use run continuously the button which is also strictly a debugging tool.)

    I recommend you watch the LabVIEW tutorials online
    LabVIEW Introduction course - 3 hours
    LabVIEW Introduction course - 6 hours

  • Fixed width string of spreadsheet to table

    I have to read a file in a format with a fixed width per column and an unknown number of columns. Y at - it a simple to convert means that in a table - essentially a 'string Array to worksheet.

    I have a working method, but it of not really stylish and is a bit slow for the largest data sets. There also (currently) the halting problem if there is a blank line in the data set. I can fix it by searching for tokens (cr/lf), find the number of lines, replacing that loop outdoor 'while' in a loop for, but...  I hope that there is a better solution.

    Thank you

    M

    Start by right-clicking on your reading text file.  There is an option to read the lines.  Use it.  What it's going to do now is create an array of strings, each element being a line in your file.  Now change this in a loop in a loop with the array of lines autoindexing FOR in.  Then remove the line function get.

    This will help a little.  I'll have to think inside the while loop to see if there is a better way.  Nothing comes immediately to mind.

  • Find the bold, italic and underline the character of a string

    I have a VI to find bold, italic and underline the sequence of character in a string, but it is very slow.  I want to speed up this VI, an idea?

    Jean-Marc

    You feel the joy of the knots of property, whenever you access one, LV feels the urge to update the control it references.  You can speed things up greatly (factor 4 on my machine) by postponed Panel updates on the VI during the Subvi execution.  I probably shape another factor of two with the code, but this simple correction goes a long way.

  • Keep the format of fonts to display by adding a string

    I am trying to imitate an old DOS program with VGA monitor that does exactly what asked the original poster: Add substrings of a string that is displayed without losing the format of font color.  The problem is as soon as you perform concatenate them, you lose the format of font color!.   The program BACK and VGA screen has a host of color font color options and background on a character by character basis, which is what I'm having diffuclty replicant in LV

    I can perform this operation in either incorporation of a stirng format in my sting of panel display before or to maintain a "a 2D color table' indicating the lag in the display string where the colors are changing.  In both cases, I get unsatisfactory results because once a few differnet color substrings enter the chain of display, the flicker of the screen that occurs when updates of color sting is boring and he really boggs down the program.

    Anyone know how to do this easily in LV?  How about a RTF activeX control that can be incorporated as my monitor VGA emulator? Any ideas?

    This is the VI which sets alternating line colors based on the 2D color table where the values indicate the latest issue of the last character of a strng of ENTRY (ODD) and OUPUT (EVEN) colors, works fine if you don't care about performance, but not nearly as well as an old VGA monitor!  Gets a lot more complicated if you do not have alternating color substirngs, then you would probably want to use search srting which quickly became very slow.

    .

    This turns out be a very simple task using the RichTextBox .NET.  See attachment.

  • String concatenation and vi speed

    I'm trying to convert data waveform .tdms in ASCII file in a particular format in order to be read by other software. The vi that I wrote (attached) is capable of doing the job but at a very slow pace. The vi in takes about 20 minutes to complete one a second data (22050 samples). This American too slow because I intend to work with waveform data at 1.5 million samples (it takes 16 hours). I think that the problem is due to the the string concatination. Does anyone has any suggestion how I can improve on this performance of vi with regard to its speed. Thank you.

    LabVIEW 2011 running on a laptop Windows 7 (i5 2.50 GHz with 8 G of RAM)

    Sorry for this question.  I had solved after removing the 'wait until the next multiple ms' vi from the iteration of the loop.

Maybe you are looking for