Adding to Library is very very slow

I have 139 GB of music. My library gets slow, until I purge out the entire main library and start fresh.
I begin to add songs to my playlist by dragging folders sorted by genre of music. Progressively it gets slower and at some points it gets very slow.
I have a feeling I have a corrupted file or some file formats that iTunes does not like (maybe a gif or jpeg for album artwork).
Once my library is poulated, it gets so slow that adding one new album I have digitized, takes about 4 minutes before anything happens (then it adds them at normal speed), and my computer is locked up until it finishes adding. The music still plays fine without a skip. My drive are in top condition and not SMART test failures.
I mostly have music, some have album artwork, some do not. Most of my files are mp3 since I use the music for video editing. I get some other files from my customers which may have .m3us .gifs itif .txt in there.
I am running the latest version. I selected all the music in my library , and am changing tags to blank besides the important ones like artist, song name and album (incase there is a bad non alphanumeric character in for example comments)

Any time any change is made to to iTunes (song added, skipped, played, info edited, etc.) iTunes rewrites the iTunes library and iTunes library.xml files.
In addition, the more playlists you have, especially smart playlists, will slow down iTunes because the library and .xml files are larger.
More than 100 playlists and you will likely see a significant slowdown.
The larger the library, the more it will slow down.

Similar Messages

  • Hi all.When pressed play and make some changes in loop (eg fade in fade out) are very slow to implement, and also the loops from the library are very slow to play, corrects the somewhat self so is the Logic??

    hi all.When pressed play and make some changes in loop (eg fade in fade out) are very slow to implement, and also the loops from the library are very slow to play, corrects the somewhat self so is the Logic??

    Hey there Logic Pro21,
    It sounds like you are seeing some odd performance issues with Logic Pro X. I recommend these troubleshooting steps specifically from the following article to help troubleshoot what is happening:
    Logic Pro X: Troubleshooting basics
    http://support.apple.com/kb/HT5859
    Verify that your computer meets the system requirements for Logic Pro X
    See Logic Pro X Technical Specifications.
    Test using the computer's built-in audio hardware
    If you use external audio hardware, try setting Logic Pro X to use the built-in audio hardware on your computer. Choose Logic Pro X > Preferences > Audio from the main menu and click the Devices tab. Choose the built in audio hardware from the Input Device and Output Device pop-up menus. If the issue is resolved using built-in audio, refer to the manufacturer of your audio interface.
    Start Logic with a different project template
    Sometimes project files can become damaged, causing unexpected behavior in Logic. If you use a template, damage to the template can cause unexpected results with any project subsequently created from it. To create a completely fresh project choose File > New from Template and select Empty Project in the template selector window. Test to see if the issue is resolved in the new project.
    Sometimes, issues with the data in a project can be repaired. Open an affected project and open the Project Information window with the Project Information key command. Click Reorganize Memory to attempt to repair the project. When you reorganize memory, the current project is checked for any signs of damage, structural problems, and unused blocks. If any unused blocks are found, you will be able to remove these, and repair the project. Project memory is also reorganized automatically after saving or opening a project.
    Delete the user preferences
    You can resolve many issues by restoring Logic Pro X back to its original settings. This will not impact your media files. To reset your Logic Pro X user preference settings to their original state, do the following:
    In the Finder, choose Go to Folder from the Go menu.
    Type ~/Library/Preferences in the "Go to the folder" field.
    Press the Go button.
    Remove the com.apple.logic10.plist file from the Preferences folder. Note that if you have programmed any custom key commands, this will reset them to the defaults. You may wish to export your custom key command as a preset before performing this step. See the Logic Pro X User Manual for details on how to do this. If you are having trouble with a control surface in Logic Pro X, then you may also wish to delete the com.apple.logic.pro.cs file from the preferences folder.
    If you have upgraded from an earlier version of Logic Pro, you should also remove~/Library/Preferences/Logic/com.apple.logic.pro.
    Restart the computer.
    Isolate an issue by using another user account
    For more information see Isolating an issue by using another user account.
    Reinstall Logic Pro X
    Another approach you might consider is reinstalling Logic Pro X. To do this effectively, you need to remove the application, then reinstall Logic Pro X. You don't have to remove everything that was installed with Logic Pro X. Follow the steps below to completely reinstall a fresh copy of Logic Pro X.
    In the Finder, choose Applications from the Go menu.
    Locate the Logic Pro X application and drag it to the trash.
    Open the Mac App Store
    Click the Purchases button in the Mac App Store toolbar.
    Sign in to the Mac App Store using the Apple ID you first used to purchase Logic Pro X.
    Look for Logic Pro X in the list of purchased applications in the App Store. If you don't see Logic Pro X in the list, make sure it's not hidden. See Mac App Store: Hiding and unhiding purchases for more information.
    Click Install to download and install Logic Pro X.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • FlasCC compiled swc library is very slow on first function call - how can I speed it up?

    Hi everyone,
    I have a C++ library that fits a mesh onto images of faces, now compiled into an swc.
    I have just exposed one function from the library, that operates on a BitmapData and returns a Vector of Points indicating various parts of the face.
    The problem is that the first call to the library (to process the first image) seems to take about 10 seconds. After that repeated calls take a fraction of a second.
    Is there any way I can improve the performance on the first call, by initialising my library class in an init method or something? In the target application most users will only call the library once, so I need to improve this.
    UPDATE: Profiling in Flash Builder, the [verify] action (which I understand is JIT bytecode verification) takes 10.1 seconds. The other main culprits are [avm1] (1.7s) and global$init.global$init (2.0s).
    Can this be normal behaviour that JIT verification takes 10 seconds? Or can I speed it up? The source C++ code is probably 100,000 lines because it includes several modules from OpenCV, however so does Alex Mac's OpenCV demo and it doesn't take this long.
    Below is the code for my library wrapper. Very grateful for any help!
    #include <AS3/AS3.h>
    #include <AS3/AS3++.h>
    #include <Flash++.h>
    #include "FlashCLM.h"
    using namespace AS3::local;
    // First we mark the function declaration with a GCC attribute specifying the
    // AS3 signature we want it to have in the generated SWC. The function will
    // be located in the com.FrameFish namespace.
    void fitCLM() __attribute__((used,
              annotate("as3sig:public function fitCLM(img:BitmapData,shape:Vector.<Point>):int"),
              annotate("as3package:com.FrameFish"),
              annotate("as3import:flash.utils.ByteArray"),
              annotate("as3import:flash.geom.Point"),
              annotate("as3import:flash.display.BitmapData"),
              annotate("as3import:flash.Vector")));
    void fitCLM(){
              AS3_Trace("fitCLM starting");
              // Copy pixels to C ram
              inline_as3(
                        "var ba:ByteArray = img.getPixels(img.rect);\n"
            "var imgPtr:int = CModule.malloc(ba.length);\n"
                        "ba.position = 0;\n"
                        "CModule.writeBytes(imgPtr, ba.length, ba);\n"
        uint8_t* pixels = 0;
        AS3_GetScalarFromVar(pixels, imgPtr);
              // Get the width and height of image
              inline_as3(
                        "var w:int = img.width;\n"
                        "var h:int = img.height;\n"
              int width, height;
              AS3_GetScalarFromVar(width, w);
              AS3_GetScalarFromVar(height, h);
              // Fit CLM
              ff::FlashCLM clm;
              int shapeSize = 58*2; // Size of the imm_face_db markup
              int* shapeBuffer = new int[shapeSize];
              int result;
              clm.fit(pixels, width, height, shapeBuffer, &shapeSize, &result);
              // Copy shape to as3 shape vector
              if (result == ff::FlashCLM::FOUND){
                        for (int i=1; i<shapeSize; i+=2){
                                  inline_as3(
                                            "var x:Number = %0;\n"
                                            "var y:Number = %1;\n"
                                            "var p:Point = new Point(x,y);\n"
                                            "shape.push(p);\n"
                                            : : "r"(shapeBuffer[i-1]), "r"(shapeBuffer[i])
              // Clean up C memory
              inline_as3(
                        "CModule.free(imgPtr);\n"
              delete shapeBuffer;
        // return the result (using an AS3 return rather than a C/C++ return)
        AS3_Return(result);
    int main(){
        // We still need a main function for the SWC. this function must be called
        // so that all the static init code is executed before any library functions
        // are used.
        // The main function for a library must throw an exception so that it does
        // not return normally. Returning normally would cause the static
        // destructors to be executed leaving the library in an unuseable state.
        AS3_GoAsync();

    I never did get to the bottom of it. I got this response from Alex Mac:
    It's hard to give good advice at the C++ level because the problem is more
    of  a code generation issue. When a function ends up requiring too many
    registers to be live at once the resulting AS3 code can in some cases cause
    the verifier to take a long time to run. Exception handling and
    setjmp/longjmp can contribute to this, but so can things beyond your
    control when LLVM inlines too much into a single function and ends up
    generating unreasonable code...
    In the end I moved most of my C++ code out of flash and on to a server. To
    me flascc was a nice idea but didn't live up to the hype

  • Updating iTunes library is very slow

    My iTunes library lives on an external drive, so when I'm away from my desk at home, my MacBook Pro defaults back to the internal drive if I use iTunes while disconnected from the main library. Before the 7.2 upgrade this workflow worked fine: I would mount my external drive with my library, reset the library location in iTunes prefs, and iTunes would go about "Updating iTunes library" after which I could consolidate to copy over anything I added while not connected to the external drive.
    Since the 7.2 upgrade, updating the library is EXTREMELY slow. Granted my library is large (300GB), but the procedure used to take at most a few minutes, and now after 7.2 it is more like 15 minutes. Any ideas why? I'm also open to suggestions for a better workflow for handling an external library, and reconciling it with my MacBook.
    I appreciate your help!

    Hi
    I am having the same issue - what's interesting is I thought it was how I connect to the external drive with all my music on it - currently I connect to a newer model airport extreme with a lacie 1T drive attached. joined to that network is an airport express through which i play music (connected to a stereo).
    like you, updating my itunes library took a minute or 2, now it takes over 15 minutes. not cool. also my library is only 180GB.
    you asked how to manage music on multiple drives, one program i use is called "folder sync" and with it i can make sure anything i've added gets put into the larger library on the external drive...i do this to the album artwork folder too BTW.

  • IOS iphone, updating photo library is very slow

    both on my iphone 4s and ipad 2.
    takes more than 5mins on every time updating. Thus, I need to wait a very long time on every time opening iphoto on my iOS devices.
    any way to solve this problem?
    Thanks.

    The fewer photos you have on your iPad the less time it takes to update the photo library. Probably not the answer you want to hear but that's the way it is for iPhoto for iOS right now.

  • Lost iPhoto Library and very slow iPhoto

    I used to have my library on an external drive and had deleted the library in the pictures subfolder on my ibook. subsequently my external drive is hibernating. however, i appear to have copies on my laptop and am able to import new pictures. however, i can not locate a iPhoto Library or the file names on my photos on my laptop or anything resembling them and my iPhoto runs really slow and drags down the rest of my laptop.
    Any idea where i can locate where my photos are stored on my laptop and why my iPhoto is performing so poorly?
    iBook G4   Mac OS X (10.4.7)  

    ok, one more thing to try. By the way, what do you mean by "the external is hybernating"?
    The next instructions will help you find where a photo that you see in iPhoto is in the Finder. Once you find that out, tell me the path of the photo.
    There is a way to find out where the original photo is that you have in your iPhoto Library. On this page there are iPhoto Applescripts. One of them is "show image file" I tried it and it does work for iPhoto 5. If you click on the image in your library window and then use the applescript it will open up a finder window with the image file, and you can see it's path of where it is.
    http://www.apple.com/applescript/iphoto/
    Download the scripts from the link
    Once downloaded, put the folder "iPhoto Scripts" in ~/Library/Scripts
    Now navigate to Applications/Applescript
    In that Applescript folder is an icon that says "Install Script menu"
    double click that icon to install the Script menu in your menu bar. You might have an item called ScriptMenu.menu instead. follow directions on next link
    http://www.appleclub.com.hk/applescript/script_menu/
    It will look like a little black scrolled paper.
    Or you might have an item named AppleScript Utility.app in the folder. Double click to open it and make sure you have show script menu in menu bar checked.
    Now open iPhoto, click on a photo to highlight it
    Go to the menu bar and click and hold on the Applescript icon
    scroll down to iPhoto Scripts, then scroll to "show image file"
    Wait for the Finder top open a finder window showing you where the image is.
    OR:
    Or you can download Joe's iPhoto Applescripts
    He gives instructions on the page for the installation of the scripts.

  • 6720c & MU-45 - music library is very slow

    Last time I checked MU-45 compatibility with my phone it was listed and I ordered the memory-card, but to my surprise the music library became painfully slow. In fact slower than my Qtek 8300 from '05 which had an ARM9E @ 200 mhz and Windows Mobile 5, but my five years newer phone with this memory card is rendered nearly useless.
    Entering the music library and select a group, wait about seven seconds, select album another seven seconds, select song... before with a 8 GB (class 6) card it was instantaneous and quite zippy. This Nokia/ SanDisk class 2 card benches about the same as my last card with a read speed of 14 MB/s.
    There is something terribly wrong with accessing the music library...
    My phone is up-to-date and all that, checked MU-45 compatibility list right now and 6720 Classic is no longer listed as before, if one Google -> 6720 AND "mu-45" and go to the fourth page, hit number eight and press the cached (4. sept. '10)  version of the Swedish page you'll see back then that it was listed (long winding road, but url was not accepted).
    So I wonder what this means, shall I wait for an update or return the card as it's no longer officially supported?

    I still reckon something else is wrong and I think that the file in question is stored on the phone itself and not on the memory card since music can be stored on the phone and memory card at the same time and still show in the library.  Once i had to do a hard reset of the phone because my Contacts library was corrupt, so corrupt libraries on Nokias is not so uncommon - I couldn't fix the corruption any other way.
    So I suggest a hard reset of the phone.  Hard reset will wipe all info on the phone so backup your data first.  Hard reset code is  *#7370#
    Sorry I can't give better advise.
    I don't think that the memory card should affect the speed of the Music Player application on the phone since the music player app stores a file describing the music library, and doesn't actually access the music on the card to show the files.  
    Just my opinion...

  • I've just updated my Apple TV now streaming from my iTunes Library is very slow

    I've had Apple TV since november and ever since i've installed it, it has worked like a treat and is a great way to watch content on my iMac. unfortunately since i have done a recent update on Apple TV it is having real issues with the content on my itunes library, streaming on netflix is fine, i am having no issues with my internet, it is just stuck loading when it comes to content on from my iMac. Has anyone else had this problem? is it the update? and is there a way of correcting the error. I have tried:
    restarting Apple TV
    restarting itunes
    rebooting iMac
    resetting Apple TV
    Restoring Apple TV
    signing in and out of itunes
    nothing works.....Help!

    its not apple going "down the tubes" its that you have windows junk.  These opinion best left at apple.com/feedback
    you need to completely uninstall itunes and all components
    see these for help
    http://support.apple.com/kb/HT1925
    http://support.apple.com/kb/HT1923
    Peace, Clyde

  • My big library gets Itunes 7 and my whole pc very slow

    Hello,
    Since i installed Itunes 7.0.0, i notice that when i launch it, my whole pc is getting very slow. My mouse doesn't move properly.
    Il still have the problem with 7.0.1 and 7.0.2...
    Then, i thought that i had a big library (nearly 20.000 songs). All my music is inside (all my cds since i am 13 years old !). Maybe it's a problem?
    As 20.000 is the number of songs that you can get on an 80GB Ipod, i don't think it should be a problem in Itunes.
    I can see Itunes is 95 752 Ko in RAM memory!
    Even downloading music i buy and posdcasts from the itunes store is getting very slow
    After closing Itunes, my pc gets back its natural speed.
    My PC has Windows XP system, 2GB of RAM, AMD AThlon 3700+ (220 Mhz) and frequently formatted and reinstalled.
    Help would be much appreciated if you have a solution.
    Sorry for my bad english. This is not my native language.
    Yves

    I was trying to solve the same problem on a Mac, and found a slightly different solution. When I tried "Date Modified", I was seeing only the dates when the songs were originally added to my old Mac. So in View Options, i checked the "Date Added" column, which showed me all the duplicates as having been added on the same date. I was able to easily delete these and recover 20gigs of space.
    Mac Pro Dual Core Intel   Mac OS X (10.4.8)  

  • Adding songs and editing info is VERY slow on brand new mac

    Hello, I have a brand new macbook computer. I'm trying to add songs to my iTunes library, which is mostly empty at this point. As I try to add songs to iTunes, they take quite a bit of time to get added into iTunes. If I try to edit their info (through Get Info), it takes forever for the information to go through. I have my preferences set to organize my music library folder. I noticed that only songs that are in my iTunes Library folder take a long time to get added (so, adding music that's in a random folder on the computer and isn't in my organized library folder gets added to iTunes very quickly, but if I'm adding music that's going to get organized in my library folder, it's very slow.)
    I don't remember it being this slow on my older macbook. Any ideas as to why this is going so slow? It's clearly not a RAM or size problem, since this is a brand new macbook.

    Hi JGG,
    Thank you for your reply. I forgot to mention that I house my iTunes library on an external drive. I understand that, of course, anything hosted off of my computer would be slower than if it was on my laptop, but this still seems much slower than it was on my older computers (where I also used an external to host the music). Also, I mentioned earlier that if I added music to iTunes that was in a random folder on the external, it would show up instantly on the playlist; but if I added music that was within my iTunes library-folder on the external, it would upload very slowly. Even after it's on the iTunes playlist and "organized" within the Library-folder with the correct titles/folder names, just editing a song (for example, to change the year) would take a long time as well.
    Edit: And, I just realized, there is a big delay when I try to click on a song to play. The little spinning color wheel pops up for a few seconds every single time I click to play a new song out of my playlist. I'm sure that NEVER happened in the past on my old macbook when I also used an external drive.
    Thanks for your help!
    Message was edited by: LappyCat

  • Aperture Library Very Slow Copy to LaCie Thunderbolt Drive

    Just installed new LaCie Thunderbolt drive and copying various media files to it. Music and video files copied like a rocket. My Aperture folder is copying as slow as molasses. Right now it says 2 days to copy 211GB. Any help would be appreciated.

    Sorry, I misread Mtn Ed's last note.  My USB2 was stalling out at 2-3 MB per second.  Quite a bit slower than the stated Thunderbolt rate to say the least.  There is a portion of the Aperture Library that copies at a very slow speed, but after an hour or so it kicks back up to normal file transfer rates.  Finder was originally estimating over 20 hours for the copy to complete.  Now the total elapsed time will be about 3 hours for 350GB.

  • Aperture suddenly becomes very slow opening library

    Hi.
    I've got only 100 or so photos, and Aperture suddenly becomes very slow, it take a couple of minutes now to open the library.
    Just before this started to happen, I got a very short massage, saying something like, "It's repairing some files."
    I wonder if there are some corrupt files there, causing very slow opening the program.
    Is there any way to check this and fix this problem?
    I'm using 3.4.3, and OS 10.8.3.
    I appreciate your help.
    Hiro

    I'm surprised nobody has responded to this yet. Hopefully you have already figured it out, but if you double click on the aperture library while holding down the option and command keys, Aperture will bring up a dialog that gives you three options for dealing with potential library issues: repair permissions, repair the library or rebuild the library. You should try them in that order, and it is a good idea to back up your library first (especially before rebuilding the library).
    Hope this helps.

  • Connecting iPad to movie library via Home Sharing is very slow to connect (20 mins +)

    Hi, I'm trying to connect my iPad to my movie library and it is very slow. Is there any tips to get it to connect. I have an iPad Air (ver 1) and iMac (late 2012). I restarted all the devices and I am able to connect my iMac library to my Apple TV. Any feedback is greatly appreciated. Oh and everything is all updated.

    Hi, I'm trying to connect my iPad to my movie library and it is very slow. Is there any tips to get it to connect. I have an iPad Air (ver 1) and iMac (late 2012). I restarted all the devices and I am able to connect my iMac library to my Apple TV. Any feedback is greatly appreciated. Oh and everything is all updated.

  • CNA becomes very SLOW after adding new switch to cluster

    Added a CAT-2970 to my cluster and now CNA is acting very slow, especially when I attempt managing the new switch. I am still below the 16 node cluster limit. I did initially find a CRC on the new switch trunk port int. and noticed that it came up as Dynamic Auto/ISL and the core was at Dynamic Desireable/ISL, so I hard set it to Dyn-desire to match... still very slow CNA.
    The problem was not there before and after restarting the application, it appears to be fine... until I attempt to manage/view/reach the new switch - and then EVERYTHING in CNA goes slow again (hourglass of death) for some period of time.
    Yet, telnet & ping to new switch is always fast, no problems at all. Strictly seems to be a CNA problem...
    Ideas??
    Thanks,
    Al

    Looking at the outline given by u,there may be several reasons for this slow access such as loose connection, improper trunking and so on.Ofcourse, CNA problem can also be one cause.But, if u r sure that it is a CNA problem, why not u try for a new version of CNA?First of all, which version of CNA r u using?is it CNA 1.0 or 2.0 version.If so, try installing or upgrading CNA3.0.
    For detailed info on installing and upgrading to CNA3.0, the following URL will be useful.
    http://www.cisco.com/en/US/products/ps5931/prod_installation_guides_list.html

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

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

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

Maybe you are looking for

  • Can't open Mail, Index is broken!

    Hi, I need some help. I don't use Mail on my iMac or Macbook Pro Retina but need it to run some AppleScripts, so I tried to open it on my Macbook Pro Retina and iMac but can't open it on either, it just comes up with the below: First: To use the new

  • Database mssql server 2008 is in suspect mode?

    Database sql server 2008 is in suspect mode and I am not able to bring the database online and i have no backup to restore. To resolve this issue run the commands listed below, EXEC sp_resetstatus 'DATABASE_NAME'; ALTER DATABASE DATABASE_NAME SET EME

  • Calculation Before Aggregation obsolete in NW2004s

    We are upgrading our sandbox from BW 3.5 to NW2004s and several of our queries use the obsolete Time of Calculation 'Before Aggregation' technique. I searched and found a thread Time of Calculation "Before Aggregation" obsolete in NW2004s in which Kl

  • Open PDF files

    This question was posted in response to the following article: http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-78faa.h tml

  • Trying to share internet connection using Airport Express

    I have an internet connection via a Verizon Wireless broadband card in the Express Card slot in my MacBookPro. I share this connection to my iMac via Airport and I have an Airport Express card connected to a printer & stereo. However, when I establis