AppendDNSNameString: Illegal empty label in name "."

Hello,
in my system.log there are many of the following messages:
03.02.08 11:27:16 mDNSResponder[16] AppendDNSNameString: Illegal empty label in name "."
Does anybody have an idea.
Dynamic Global Host name is deactivated.
in may router UPnP is also deaktivated.
reagrds
Walter

Hi and Welcome to the Discussions!
Dunno if I can help with just a 6th grae education, but...
Have you entered a name in the Sharing CP under Computer Name?
Have you enabled the Root User yet?
Have you repaired Permissions since the last update/upgrade?

Similar Messages

  • Clip Label and Name not automatically updating in the timeline

    I just finished a major project, so now it's time to take the plunge and upgrade Premiere. So far, it's going well, but clip labels and names aren't automatically updating in the timeline when I change them in the bin. Is that something that only works on new projects (rather than old projects updated in this new version)? Or...?

    Go to the menu File > Project Settings > General and when the Project Pane opens, check the box for "Display the project items name and label color for all instances"
    MtD

  • Axis label alias names being dropped in CRDC only

    We have a report containing a pie chart that has alias names assigned to the pie chart legend (axis labels).  The report is saved with data and when refreshed in CR designer, the alias names are retained and display correctly.  When this report is published and viewed in Crystalreports.com (CRDC) the alias names are also retained and display correctly.  However, once this published report is scheduled and refreshed in CRDC, the latest instance shows the pie chart legend without the alias names.  This effectively renders the pie chart useless as the pie chart legend values are cryptic, very long and scale too small to read.  So, my question is, why are pie chart axis label alias names retained when refreshed in CR designer, but dropped when refreshed in CRDC and how can we address this?  
    thanks

    I just tried to reproduce this using both CR 2008 and with CR XIr2 to build the report and was not able to reproduce. CR.com kept my defined Axis label.
    Is this something you see on other reports or just this particular report?

  • IR Report Filters - Developer should be able to Label or Name the filter

    Hi,
    Wouldn't it be great if a developer was able to Label or Name the IR Report filter and then have the actual filter syntax hidden behind the scenes.
    Ex: os.status_id =1 would not show this way but as "Active Companies"
    thanks, Bill

    You can achieve this. It may not be exactly what you are looking for (you might want something more flexible from a users point of view), but in the SELECT statement create a column:
    CASE os.status_id
      WHEN 1 THEN 'Y'
      ELSE 'N'
    END active_companyAPEX uses the column label as the filter name, so change the column label to 'Active Companies'.
    Now go to the report, apply a filter: Active Companies = 'Y'
    The filter is not quite there because you still have the = 'Y' part showing
    Go to the report definition and change the column's Display Type property to Hidden.
    The filter won't be editable anymore and will appear as 'Active Companies'.
    regards,
    Malcolm.

  • Single Label domain names

    Greetz!
    I would like clarification on Single Label Domain names in SP 2013 web applications.
    When I set up my A record I can set the Name, FQDN and IP Address. If I leave Name blank it will use whatever is in the FQDN?When I enter the FQDN I should use something like "Company.Local" or "SP.Company.Local" and not "Company"
    When I set up my root Web Application, I will use the FQDN that I gave in the A record and I will not leave the ":80" on the end of it.
    My intention is to setup a single web application and run HNSCs off the default zone. I will use Windows Authentication with basic Kerberos. I'll have a root site collection but we won't be using it.
    Am I thinking straight about avoiding the use of single label domain names?
    Thanks!
    Love them all...regardless. - Buddha

    "Single Label Domain names" has specific meaning and that applies to Active Directory (SLDs are not supported by SharePoint).
    You will want to use an FQDN as your Host-Named Site Collections will be present underneath the root domain (e.g. if you create a Web Application using "root.company.com", your sites will be "portal.company.com", "teams.company.com",
    as a couple of examples). Your Web Application will be created without a host name (see PowerShell example here: https://technet.microsoft.com/en-us/library/cc424952.aspx#section2).
    Your "root.company.com", in my example, with be a path-based Site Collection as the "Root" Site Collection, which is required for all SharePoint Web Apps. That is described here: https://technet.microsoft.com/en-us/library/cc424952.aspx#section2b.
    They use the WFE URL, but I prefer using the FQDN.
    Another advantage of using FQDNs + SSL is that you don't have two different URLs for internal and external access, thus SharePoint Alerts will always have the correct URL, etc.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Insert 'illegal' characters into file name for print label?

    Hey all (Happy New Year)
    I actually see some people here who helped me with this originally so many years ago (hi 'x'). Any way, I'm using this .js file to annotate aerial imagery prior to printing, and I know just enough about scripting to make changes to the basic layout as needs arise - until now. A new rather anal retentive mgr doesn't like substitutions I've made for a few 'illegal' characters that windows doesn't allow in file names. For example, the file name used for the annotation is:
    001    0003    1in = 660ft    CFL 154_074    01-01014   503-013.tif
    But Mr. mgr doesn't like the in, the ft and the use of the _ instead of a period (.) so what I need is a modification that goes something like (and note I DO NOT CODE, so stop laughing) -
    "look for in and replace with ", look for ft and replace with ' and look for _ and replace with , " so the final annotation written to the image is:
    001    0003    1" = 660'    CFL 154.074    01-01014   503-013.tif
    My current .js is below, I'd really appreciate any assistance. Thanks! TLL
    // CREATE NEW CANVAS W/SPACE ON TOP
    var deltaW = 0; // add 'N' pixels to the width
    var deltaH = 150; // add 'N' pixels to the height
    var anchor = AnchorPosition.BOTTOMCENTER; // anchor point for canvas resize
    // SET FONT TYPE AND SIZE - use GetFontName.js to get exact name
    var fontName = "ArialMT";
    var fontSize = 18;
       // Check if a document is open
       if ( documents.length > 0 ) {
       var originalRulerUnits = preferences.rulerUnits;
       preferences.rulerUnits = Units.PIXELS;
       try {
         var docRef = activeDocument;
         docRef.resizeCanvas(docRef.width + deltaW, docRef.height + deltaH, anchor);
       // Create a text layer at the front
       var myLayerRef = docRef.artLayers.add();
       myLayerRef.kind = LayerKind.TEXT;
       myLayerRef.name = "Filename";
       var myTextRef = myLayerRef.textItem;
       // ADD FILE EXTENSION, change the n to y below
       var ShowExtension = "n";
       myTextRef.size = fontSize;
       myTextRef.font = fontName;
    // SET TEXT COLOR in RGB values
    var newColor = new SolidColor();
        newColor.rgb.red = 0;
        newColor.rgb.green = 0;
        newColor.rgb.blue = 0;
        myTextRef.color = newColor;
    // SET POSITION OF TEXT - PIXELS from left first, then from top.
    myTextRef.position = new Array( 30,110);
        // Set the Blend Mode of the Text Layer. The name must be in CAPITALS
        // ie change NORMAL to DIFFERENCE.
        myLayerRef.blendMode = BlendMode.NORMAL;
        // select opacity in percentage
        myLayerRef.opacity = 100;
        // The following code strips the extension and writes tha text layer.
        // fname = file name only
        //use extension if set
        if ( ShowExtension == "y" ) {
           fname = docRef.name;
         } else {
           di=(docRef.name).indexOf(".");
           fname = (docRef.name).substr(0, di);
         myTextRef.contents = fname;
         // docRef.flatten("n");
       } catch( e ) {
         // An error occurred. Restore ruler units, then propagate the error back
         // to the user
         preferences.rulerUnits = originalRulerUnits;
         throw e;
       // Everything went Ok. Restore ruler units
       preferences.rulerUnits = originalRulerUnits;
    }  else {
       alert( "You must have a document open to add the filename!" );

    I did some quick testing and here is what I have seen.
    I went into a cygwin shell and successfully did this:
    $ touch t\"est\'t.jpg
    $ ls t\"*
    t"est't.jpg
    This means that the underlying file system (NTFS) is able to correctly encode both the ' and " characters, at least as far as cygwin is concerned.
    However, from the Windows command line and Explorer point of view, the ' is OK but the " is not. The characters /\"*?<>:| can't be used in file names in Win. This means you can get the ' and . characters working but not the " character.
    From the js side, the code would look like:
    var x = "001    0003    1in = 660ft    CFL 154_074    01-01014   503-013.tif";
    var str = x.replace(/in/, '"').replace(/ft/, "'").replace(/_/, '.');
    alert(str);
    Which displays
    001    0003    1" = 660'    CFL 154.074    01-01014   503-013.tif
    The string stuff is easy, but while you can save a file with ' and . you can't use " via js. You can't even do it using the PS UI manually.
    I've tested and verified this. Let Mr. Mgr know that it is not possible to completely comply with his requests. Unless, of course, you upgrade to OS X : )
    -X

  • Remove Empty Folders by name

    Hi guys!
    i must remove all empty folders in my PC.
    Each folder can be removed only if folder start-name is not 0 or 1 or scan.
    Examples:
    C:\Scan --> keep
    C:\Scan\Try -->delete try and subfolders, keep scan
    C:\Scan\0-Try --> keep all
    C:\Try -->delete all
    C:\Try\1-This\2-That -->delete only 2-that 
    i made this code:
    function Move-EmptyDir{
    [CmdletBinding()]
    param (
    [Parameter(Mandatory = $true)][string]$Source,
    [Parameter(Mandatory = $true)][string]$Destination,
    [ValidateNotNullOrEmpty()][regex]$NoMatch
    $EmptyFolders=@()
    $AllFolders= (Dir $Source -Force -Recurse) | Where-Object{$_.Attributes -match "Directory"}
    $ExistFolders= $AllFolders | Group-Object -Property Exists | Where-Object{$_.Name -match "True"}
    Foreach($Item in $ExistFolders.Group){
    $MeltinCount= $Item.GetFileSystemInfos().count #se 0 non ha elementi
    $SimCount= (($ExistFolders.Group | Group-Object -Property Parent) | Where-Object{$_.Name -eq $Item.Name}).Count #0=no subfolders
    if($MeltinCount -eq $SimCount){
    $EmptyFolders+= $Item
    $Moved= @()
    $Moving= $EmptyFolders.Length -1
    While($Moving -ne -1){
    $OneFolder= $EmptyFolders[$Moving]
    if($OneFolder.GetFileSystemInfos().count -gt 0){
    Write-Warning "This Folder $OneFolder is not empty"
    $Moving--
    elseif($OneFolder.Name -match $NoMatch){
    Write-Warning "The Folder $OneFolder Match the Exceptions"
    $Moving--
    elseif($OneFolder.Parent.Name -match $NoMatch){
    Write-Host "The Parent Folder of $OneFolder Match the Exceptions" -BackgroundColor Green
    $Moved += $OneFolder
    $Place = $OneFolder.FullName -replace "^$([regex]::Escape($Source))", $Destination
    if((Test-Path $Place) -eq $false){
    New-Item -Path $Place -ItemType Directory
    Remove-Item -Path $OneFolder.fullname -Force -ErrorAction SilentlyContinue
    Write-Verbose ('Moved folder "{0}" to "{1}"' -f $OneFolder.FullName, $Place)
    $Moving --
    else{
    Remove-Item -Path $OneFolder.FullName -Force -ErrorAction SilentlyContinue
    $Moving --
    else{
    $Moved += $OneFolder
    $Place = $OneFolder.FullName -replace "^$([regex]::Escape($Source))", $Destination
    if((Test-Path $Place) -eq $false){
    New-Item -Path $Place -ItemType Directory
    Remove-Item -Path $OneFolder.fullname -Force -ErrorAction SilentlyContinue
    Write-Verbose ('Moved folder "{0}" to "{1}"' -f $OneFolder.FullName, $Place)
    $Moving --
    else{
    Remove-Item -Path $OneFolder.fullname -Force -ErrorAction SilentlyContinue
    $Moving --
    return $Moved
    $Where= 'C:\temp'
    $ToGo= 'C:\estinto'
    $MatchList= '0','1','8','9','Scansion'
    $Kind= 'Empty'
    if(Test-Path $Where){
    #$TheMatch = Select-Match -FullList $MatchList
    $Folders = Move-EmptyDir -Source $Where -Destination $ToGo -NoMatch 'F' -Verbose
    $Drives = ForEach($Item in $Folders){
    Select-Object -Property @(
    @{ Name = 'Name'; Expression = { $Item.Name } }
    @{ Name = 'Percorso'; Expression = { $Item.Parent.FullName } }
    #Get-Report $Drives $Kind
    else{
    Write-Error 'Invalid Path' -Category ResourceUnavailable
    with powershell v4 can you do somthing better?
    Thanks
    A

    As far as reducing the amount of code start with this:
    #return all folders that match name rules
    dir c:\temp\* -exclude 1*,0*,scan* -directory
    ¯\_(ツ)_/¯
    $Folders=Get-ChildItemD:\-Recurse-Directory-Exclude0*,1*,2*,8*,9*,scan*-ErrorActionSilentlyContinue
    $EmptyFolders
    =$Folders|Where-Object{$_.GetFileSystemInfos().Count
    -eq0}
    -ErrorActionSilentlyContinue
    $EmptyFoldersFullname
    =$EmptyFolders|Group-Object-PropertyFullname
    Get-Report
    $EmptyFoldersFullname.Group
    "Empty"
    DONE!

  • Globally removing an illegal symbol from file names in the finder

    I recently discovered that my method of dating files makes use of the illegal symbol, '/'. Now I have thousands of files with that symbol in them and am having trouble transferring them to my new hard drive. Is there a was that I can globally remove that symbol from the file names via the finder?

    Hi
    download filelist.dmg
    Double click on it to open it. Drag the Filelist app' into your Application Folder, a good a place as anywhere to keep it.
    Open the FileList application, it should show as a window.
    Drag a file or a group of files onto that open window- the left hand side pane.
    ... and there you can manipulate the prefix and suffix of the files to give them new file names.
    Create a file in text edit, type something in it, save is as test.rtf, and then drag it into the FileList app and experiment with changing its name.
    When you get the hang of it, do a group of files as a batch.
    I tried to do what you wanted to do in your initial post and was successful, so just have a play around with it.
    regards roam

  • Changing label set names after the fact

    Hi,
    Let's assume I have applied the standard labels to a set of images. Now, I decide that Red, Green, Blue,... are not self explanatory enough and I change the names of the default label set (this also applies to a custom label set).
    Problem: for all images marked with the original label set, the label color switches back to white because the new names are not recognized.
    How can I make the new names apply to the already marked images?
    Thanks in advance.
    Patrick

    John,
    Glad you got it set now
    That's not the case. My previous message explained what I exactly did but as I said, this procedure failed. When I deleted the temporary collections that I created (one for each label), all labels were switched to Custom (white). Here is exactly what happened:
    1. I started with the standard label names (Red = Red, Green = Green,...). I had a lot of images in various folders marked with these labels.
    2. I created a collection for each label (Red Collection containing only images with the red label, Green collection,...)
    3. I changed the label names (Red = To be fixed, Gree = Ready to print,...)
    4. I selected each collection and applied the corresponding new label. No problem.
    5. Once all marked images had the label with the correct (new) name, I deleted the temporary collections which were now useless.
    6. After I did this, all marked images were assigned the same label (Custom = White). All previous label attributes were lost.
    It seems that labels are valid only within a collection and that the same image can have different attributes depending on whether you look at it through a collection or directly in a folder. So the whole approach doesn't work.
    Regards.
    Patrick

  • Change report legend label waveform name

    I am automatically generating a report using VBScript. Everything works OK, except the legend label for one of my waveforms. For one waveform I want to use the channel group name instead of the channel name. For the other one, I want the channel name, which is what it seems to use by default.
    How do I change the waveform name displayed in the legend using VBScript?

    Use the related text option for the column legend (eLegendTextCurveRelatedText), and then you can customize the name in the legend for each of the ploted curves curve.
    ' Add the plot
    Set Plot = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem,"Plot2d")
    ' Set the ithColumn of the of the legend to -> related curve text
    Plot.CurveLegend.Columns(ithColumn).Type=eLegendTextCurveRelatedText
    ' Set the related text in each of the curves for the ithColumn
    Plot.Curves2D.Item(1).RelatedLegendText(ithColumn) = "@@Data.GetChannel(CurrChnNo).Name@@"
    Plot.Curves2D.Item(2).RelatedLegendText(ithColumn) = "@@Data.GetChannel(CurrChnNo).ChannelGroup.Name@@"

  • Label menu names missing

    Hi friends,
    I've got a requirement for preparing dashboards, where i have to use label menu for showing different units data using bar charts.
    so when i am giving those unit names(18 units) for label menu list, label names on dashboards are missing i.e are appearing partially in menu.
    in clear
    if unit name is: network -> netwo. i think these names are missing partially because of label size. i tried to maximise(width) of labels buts its not working.
    so what should i do to get complete names on label menu for all units.
    please assist me in this.....
    thanks
    ram

    Hi Rambabu,
    You can change its Orientation from Horizontal to Vertical from GENERAL tab of its Properties.
    If you don't want to change orientation then you can use 2 Horizontal Label Based Menu to adjust your all tabs by keeping half Units in first label menu and other half Units in second label menu..
    Regards,
    Muhammad Faisal Akram

  • Document set change field label for "Name"

    Hi,
    is it possible to change the field names without changing the NewDocSet.aspx form?
    I'm want to change the field "Name" to something else.
    Thanks,
    Peter

    This is a very common question, and generally addressed by core ECM/Governance, where the users will view the name of Content Type and accept that the Name is the name of the content.
    In undertaking split testing for multiple clients, I found that an overwhelming number of users easily accepted and preferred that the field was left as Name since the Content Type provided the context (Ex. if the Content Type is named Matter,
    implicitly you would not need to repeat by having a field named Matter Name since the user knew that they were providing the name of the Matter).
    This is a similiar situation as "Title" for a document. If I upload a document and select the appropriate Content Type such as "Summons", I know that I am providing the title of a summons document.
    The challenge is not so much technical, but one of core ECM principles for context. I would flush out your Content Types so that they provide the description (ex. Matter, Summon, Pleading, Memo, etc.) and then the "Name" or "Title" fields do not become
    a barrier since the user knows that when they select "Matter" as their Content Type, they are entering the "Name" for that "Matter File".
    Personal Blog: http://thebitsthatbyte.com

  • I have all my photos both in the photo library by date and as events . When I open I-photo in either format there are just empty rectangles with names. If I click the photo appears. This was not like this before. How can I get it back so that I can see th

    I have all my photos organized in i-photo as both photos and events. When I opened in the past the images in each event or album appeared as icons on the sreen. Now when I open I only get a dotted line rectangle and only if I click I see the picture, which is really problematic when trying to see or select nay image.
    I don't know if mistakenly I did something with the settings although I couls not find anything in preferences or any of the menus that could relate to this.

    Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your iPhoto thumbnails - this may take several tries
    Also what version of iPhoto? What recently changed?
    LN

  • Help Ipod Menu is empty of song names but files acessible thru iPod Control

    Hi when I scroll to Ipod / Music / Artists etc. Nothing shows up. However when I view hidden folders and look in the Ipod_control/Music folder all the songs are still there listed in folders such as FE1 etc.
    I've checked for the Itunes DB file in the itunes folder and this is all ok.
    Anyone have any ideas
    thank you garreth

    You can use the repair function of this program to get the iPod to recognize the songs on it...
    YamiPod
    Repair iPod (YamiPod)
    You can also restore your iPod and have iTunes properly reload everything and update the iTunesDB file...
    Restore iPod
    btabz

  • Help! can anyone decipher these console logs? thx

    Hi all,
    I'm new to macs need some answers as i am getting nowhere fast waiting for support to look into it properly.
    Random freezing on a fully loaded haswell rMBP oct 13 version, becomes totally unresponsive requiring a forced reboot...poo
    I was listening to some music through my native instruments kontrol s4 soundcard and just ripping a cd with itunes, mail was open and safari.
    Sorry for the long data dump, but support are not interested in the data, why is this? it is the log file after all, right?
    The crash happened at 22:31 marked in bold.
    The crashes are quite frequent with or without external gear plugged in.
    11/12/13 22:16:04,076 PluginProcess[501]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    11/12/13 22:16:04,269 PluginProcess[501]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    11/12/13 22:18:14,073 mds[81]: (Warning) Volume: vsd:0x7fe1f1862e00 Open failed.  failureCount:5 {
        DisabledRecycleCount = 5;
    11/12/13 22:20:41,270 com.apple.IconServicesAgent[334]: main Failed to composit image for binding VariantBinding [0x851] flags: 0x8 binding: FileInfoBinding [0x47d] - extension: mp3, UTI: public.mp3, fileType: ????.
    11/12/13 22:20:41,271 quicklookd[509]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: mp3, UTI: public.mp3, fileType: ???? request size:32 scale: 1
    11/12/13 22:20:41,284 com.apple.SecurityServer[15]: Session 100024 created
    11/12/13 22:20:41,314 com.apple.IconServicesAgent[334]: main Failed to composit image for binding VariantBinding [0x271] flags: 0x8 binding: FileInfoBinding [0x657] - extension: png, UTI: public.png, fileType: ????.
    11/12/13 22:20:41,314 quicklookd[509]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x403] flags: 0x8 binding: FileInfoBinding [0x303] - extension: png, UTI: public.png, fileType: ???? request size:32 scale: 1
    11/12/13 22:21:44,225 Preview[517]: It does not make sense to draw an image when [NSGraphicsContext currentContext] is nil.  This is a programming error. Break on void _NSWarnForDrawingImageWithNoCurrentContext() to debug.  This will be logged only once.  This may break in the future.
    11/12/13 22:21:44,307 com.apple.Preview.TrustedBookmarksService[522]: Failure to de-serialize bookmark data file.
    11/12/13 22:26:16,516 mds[81]: (Warning) Volume: vsd:0x7fe1f2810000 Open failed.  failureCount:6 {
        DisabledRecycleCount = 6;
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/Guitar Rig 5.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Guitar Rig 5.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Guitar Rig 5.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/Kontakt 5.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Kontakt 5.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Kontakt 5.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/Maschine 2.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Maschine 2.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Maschine 2.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/Maschine.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Maschine.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Maschine.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/Massive.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Massive.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Massive.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/Omnisphere.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Omnisphere.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Omnisphere.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/Reaktor5.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Reaktor5.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Reaktor5.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/RoughRider.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/RoughRider.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/RoughRider.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/Solid Bus Comp.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Solid Bus Comp.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Solid Bus Comp.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/StylusRMX.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/StylusRMX.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/StylusRMX.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/Trilian.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Trilian.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Trilian.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-data /Library/Audio/Plug-Ins/Components/WaveShell-AU 9.2.component
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/WaveShell-AU 9.2.component/Contents
    11/12/13 22:27:49,000 kernel[0]: Sandbox: coreaudiod(298) deny file-read-metadata /Library/Audio/Plug-Ins/Components/WaveShell-AU 9.2.component
    11/12/13 22:28:37,597 PluginProcess[550]: CoreText performance note: Client called CTFontCreateWithName() using name "Arial" and got font with PostScript name "ArialMT". For best performance, only use PostScript names when calling this API.
    11/12/13 22:28:37,597 PluginProcess[550]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    11/12/13 22:28:37,818 mDNSResponder[42]: AppendDNSNameString: Illegal empty label in name "t.c..."
    11/12/13 22:28:37,833 PluginProcess[550]: CoreText performance note: Client called CTFontCreateWithName() using name "Times Roman" and got font with PostScript name "Times-Roman". For best performance, only use PostScript names when calling this API.
    11/12/13 22:31:07,000 kernel[0]: com_caiaq_driver_TraktorKontrolS4_NIUSBAudioEngine(0xffffff81bcfff000): unable to submit irp for writing (0xe00002ef (UNDEFINED))
    11/12/13 22:31:07,000 kernel[0]: vtd[0] fault: device 0:20:0 reason 0x6 R:0x1953000
    11/12/13 22:31:07,000 kernel[0]: com_caiaq_driver_TraktorKontrolS4_NIUSBAudioEngine(0xffffff81bcfff000): unable to submit irp for writing (0xe00002ef (UNDEFINED))
    11/12/13 22:31:07,000 kernel[0]: USBF:    2201.980    AppleUSBXHCI::PollEventRing2 (bottom) - HSE bit set - USBSTS: 0x00000005
    11/12/13 22:35:04,964 WindowServer[140]: _CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    11/12/13 22:35:04,971 loginwindow[84]: find_shared_window: WID -1
    11/12/13 22:35:04,971 loginwindow[84]: CGSGetWindowTags: Invalid window 0xffffffff
    11/12/13 22:35:04,971 loginwindow[84]: find_shared_window: WID -1
    11/12/13 22:35:04,971 loginwindow[84]: CGSSetWindowTags: Invalid window 0xffffffff
    11/12/13 22:35:05,094 WindowServer[140]: device_generate_desktop_screenshot: authw 0x7ff24b848110(2000), shield 0x7ff24953fb30(2001)
    11/12/13 22:35:05,169 WindowServer[140]: device_generate_lock_screen_screenshot: authw 0x7ff24b848110(2000), shield 0x7ff24953fb30(2001)
    11/12/13 22:35:05,211 WindowServer[140]: device_generate_desktop_screenshot: authw 0x7ff24b848110(2000), shield 0x7ff24953fb30(2001)
    11/12/13 22:35:06,245 WindowServer[140]: disable_update_timeout: UI updates were forcibly disabled by application "loginwindow" for over 1.00 seconds. Server has re-enabled them.
    11/12/13 22:35:20,246 WindowServer[140]: disable_update_likely_unbalanced: UI updates still disabled by application "loginwindow" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    11/12/13 22:35:20,246 loginwindow[84]: void CGSUpdateManager::log() const: conn 0x9003 token 0x5ffffffffffb8f
    11/12/13 22:35:20,254 loginwindow[84]: Backtrace (at 2439.34):
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  0   CoreGraphics                        0x00007fff8bef61c1 CGSBacktraceCreate + 59
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  1   CoreGraphics                        0x00007fff8bf19fdc _ZN16CGSUpdateManager14disable_updateEv + 98
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  2   AppKit                              0x00007fff81f968be -[NSWindow disableScreenUpdatesUntilFlush] + 158
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  3   AppKit                              0x00007fff81f2ad9d -[NSView _gainedLayerTreeHostAncestor] + 231
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  4   AppKit                              0x00007fff81f2aca3 -[NSView _recursiveGainedLayerTreeHostAncestor] + 29
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  5   AppKit                              0x00007fff81f2ef18 -[NSScroller _recursiveGainedLayerTreeHostAncestor] + 103
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  6   AppKit                              0x00007fff821ea089 -[NSScroller _setSurfaceBacked:] + 218
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  7   AppKit                              0x00007fff82147d64 -[NSScrollView setScrollerStyle:] + 326
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  8   AppKit                              0x00007fff827bdb0e +[NSScrollerImpPair _updateAllScrollerImpPairsForNewRecommendedScrollerStyle:] + 401
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  9   CoreFoundation                      0x00007fff88b23fcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    11/12/13 22:35:20,254 loginwindow[84]: void CGSUpdateManager::log() const:  10  CoreFoundation                      0x00007fff88a17c5d _CFXNotificationPost + 2893
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  11  Foundation                          0x00007fff80c4c4aa -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  12  libdispatch.dylib                   0x00007fff877981d7 _dispatch_call_block_and_release + 12
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  13  libdispatch.dylib                   0x00007fff877952ad _dispatch_client_callout + 8
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  14  libdispatch.dylib                   0x00007fff8779cf03 _dispatch_main_queue_callback_4CF + 333
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  15  CoreFoundation                      0x00007fff88abc839 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  16  CoreFoundation                      0x00007fff88a77b14 __CFRunLoopRun + 1636
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  17  CoreFoundation                      0x00007fff88a77275 CFRunLoopRunSpecific + 309
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  18  HIToolbox                           0x00007fff8640ef0d RunCurrentEventLoopInMode + 226
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  19  HIToolbox                           0x00007fff8640ecb7 ReceiveNextEventCommon + 479
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  20  HIToolbox                           0x00007fff8640eabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  21  AppKit                              0x00007fff81ea828e _DPSNextEvent + 1434
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  22  AppKit                              0x00007fff81ea78db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  23  AppKit                              0x00007fff81e9b9cc -[NSApplication run] + 553
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  24  loginwindow                         0x000000010bdf4382 loginwindow + 21378
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  25  libdyld.dylib                       0x00007fff85ed25fd start + 1
    11/12/13 22:35:20,255 loginwindow[84]: void CGSUpdateManager::log() const:  26  ???                                 0x0000000000000002 0x0 + 2
    11/12/13 22:35:27,554 loginwindow[84]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    11/12/13 22:35:38,908 loginwindow[84]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    11/12/13 22:35:56,397 loginwindow[84]: ERROR | -[LWBuiltInScreenLockAuthLion closeAuthAndReset:] | Attempted to remove an observer when not observing
    11/12/13 22:35:56,398 WindowServer[140]: common_reenable_update: UI updates were finally reenabled by application "loginwindow" after 51.16 seconds (server forcibly re-enabled them after 1.00 seconds)
    11/12/13 22:35:57,022 WindowServer[140]: handle_will_sleep_auth_and_shield_windows: Deferring.
    11/12/13 22:35:57,023 WindowServer[140]: CGXDisplayDidWakeNotification [2491122247570]: posting kCGSDisplayDidWake
    11/12/13 22:38:15,000 bootlog[0]: BOOT_TIME 1386797895 0
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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".
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 syslogd[18]: 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.
    11/12/13 22:38:17,000 kernel[0]: Longterm timer threshold: 1000 ms
    11/12/13 22:38:17,000 kernel[0]: PMAP: PCID enabled
    11/12/13 22:38:17,000 kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    11/12/13 22:38:17,000 kernel[0]: Darwin Kernel Version 13.0.2: Sun Sep 29 19:38:57 PDT 2013; root:xnu-2422.75.4~1/RELEASE_X86_64
    11/12/13 22:38:17,000 kernel[0]: vm_page_bootstrap: 3992196 free pages and 169340 wired pages
    11/12/13 22:38:17,000 kernel[0]: kext submap [0xffffff7f807a4000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a4000]
    11/12/13 22:38:17,000 kernel[0]: zone leak detection enabled
    11/12/13 22:38:17,000 kernel[0]: "vm_compressor_mode" is 4
    11/12/13 22:38:17,000 kernel[0]: standard timeslicing quantum is 10000 us
    11/12/13 22:38:17,000 kernel[0]: standard background quantum is 2500 us
    11/12/13 22:38:17,000 kernel[0]: mig_table_max_displ = 74
    11/12/13 22:38:17,000 kernel[0]: TSC Deadline Timer supported and enabled
    11/12/13 22:38:17,000 kernel[0]: Notice - new kext com.caiaq.driver.NIUSBTraktorKontrolX1Driver, v2.4.18 matches prelinked kext but can't determine if executables are the same (no UUIDs).
    11/12/13 22:38:17,000 kernel[0]: Refusing new kext com.caiaq.driver.NIUSBTraktorKontrolX1Driver, v2.4.18: already have prelinked v2.6.
    11/12/13 22:38:17,000 kernel[0]: Notice - new kext com.caiaq.driver.NIUSBMaschineControllerDriver, v2.5.2 matches prelinked kext but can't determine if executables are the same (no UUIDs).
    11/12/13 22:38:17,000 kernel[0]: Refusing new kext com.caiaq.driver.NIUSBMaschineControllerDriver, v2.5.2: already have prelinked v2.6.
    11/12/13 22:38:17,000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    11/12/13 22:38:17,000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    11/12/13 22:38:17,000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    11/12/13 22:38:17,000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    11/12/13 22:38:17,000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    11/12/13 22:38:17,000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    11/12/13 22:38:17,000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    11/12/13 22:38:17,000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    11/12/13 22:38:17,000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    11/12/13 22:38:16,320 com.apple.launchd[1]: *** launchd[1] has started up. ***
    11/12/13 22:38:17,000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    11/12/13 22:38:17,000 kernel[0]: calling mpo_policy_init for Sandbox
    11/12/13 22:38:16,320 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    11/12/13 22:38:17,000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    11/12/13 22:38:17,000 kernel[0]: calling mpo_policy_init for Quarantine
    11/12/13 22:38:17,000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    11/12/13 22:38:17,000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    11/12/13 22:38:17,000 kernel[0]: The Regents of the University of California. All rights reserved.
    11/12/13 22:38:17,000 kernel[0]: MAC Framework successfully initialized
    11/12/13 22:38:17,000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    11/12/13 22:38:17,000 kernel[0]: AppleKeyStore starting (BUILT: Sep 29 2013 19:37:40)
    11/12/13 22:38:17,000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    11/12/13 22:38:17,000 kernel[0]: ACPI: sleep states S3 S4 S5
    11/12/13 22:38:17,000 kernel[0]: pci (build 19:33:41 Sep 29 2013), flags 0x63008, pfm64 (39 cpu) 0x7f80000000, 0x80000000
    11/12/13 22:38:17,000 kernel[0]: [ PCI configuration begin ]
    11/12/13 22:38:17,000 kernel[0]: console relocated to 0x7f80020000
    11/12/13 22:38:17,000 kernel[0]: [ PCI configuration end, bridges 13, devices 14 ]
    11/12/13 22:38:17,000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    11/12/13 22:38:17,000 kernel[0]: SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    11/12/13 22:38:17,000 kernel[0]: mcache: 8 CPU(s), 64 bytes CPU cache line size
    11/12/13 22:38:17,000 kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    11/12/13 22:38:17,000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    11/12/13 22:38:17,000 kernel[0]: rooting via boot-uuid from /chosen: E147C4B4-D694-31CC-8FD1-B4BCCA6E109E
    11/12/13 22:38:17,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>
    11/12/13 22:38:17,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    11/12/13 22:38:17,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    11/12/13 22:38:17,000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    11/12/13 22:38:17,000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    11/12/13 22:38:17,000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/SSD0@0/Ap pleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlo ckStorageDriver/APPLE SSD SM0512F Media/IOGUIDPartitionScheme/Untitled@2
    11/12/13 22:38:17,000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    11/12/13 22:38:17,000 kernel[0]: jnl: b(1, 2): replay_journal: from: 22341120 to: 24684032 (joffset 0xe8f000)
    11/12/13 22:38:17,000 kernel[0]: srom rev:11
    11/12/13 22:38:17,000 kernel[0]: ARPT: 1.237625: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    11/12/13 22:38:17,000 kernel[0]: ARPT: 1.237660: Data written into the PLL_CNTRL_ADDR2: 00000c31
    11/12/13 22:38:17,000 kernel[0]: ARPT: 1.237741: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    11/12/13 22:38:17,000 kernel[0]: ARPT: 1.249950: BTCOEXIST off
    11/12/13 22:38:17,000 kernel[0]: ARPT: 1.250429: BRCM tunables:
    11/12/13 22:38:17,000 kernel[0]: ARPT: 1.250446:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    11/12/13 22:38:17,000 kernel[0]: ARPT: 1.252412: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xc1a00004]
    11/12/13 22:38:17,000 kernel[0]: 6.30.223.154 (r420397)
    11/12/13 22:38:17,000 kernel[0]: jnl: b(1, 2): journal replay done.
    11/12/13 22:38:17,000 kernel[0]: IOThunderboltSwitch<0xffffff802f72fa00>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    11/12/13 22:38:17,000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    11/12/13 22:38:17,000 kernel[0]: XCPM: registered
    11/12/13 22:38:17,000 kernel[0]: hfs: Removed 25 orphaned / unlinked files and 31 directories
    11/12/13 22:38:17,000 kernel[0]: USBMSC Identifier (non-unique): 000000000820 0x5ac 0x8406 0x820, 3
    11/12/13 22:38:17,000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    11/12/13 22:38:17,615 com.apple.SecurityServer[15]: Session 100000 created
    11/12/13 22:38:17,000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    11/12/13 22:38:17,000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    11/12/13 22:38:18,000 kernel[0]: USBMSC Identifier (non-unique): 11C401837FFF 0x59f 0x102a 0x100, 2
    11/12/13 22:38:18,754 com.apple.SecurityServer[15]: Entering service
    11/12/13 22:38:18,000 kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).
    11/12/13 22:38:18,762 configd[19]: dhcp_arp_router: en0 SSID unavailable
    11/12/13 22:38:18,000 kernel[0]: Previous Shutdown Cause: 3
    11/12/13 22:38:18,000 kernel[0]: AppleCamIn::init
    11/12/13 22:38:18,000 kernel[0]: AppleCamIn::probe
    11/12/13 22:38:18,000 kernel[0]: AppleCamIn::start
    11/12/13 22:38:18,000 kernel[0]: AppleCamIn::start: fS2DeviceRegs=0xffffff81e1cbd000 (len=65536)
    11/12/13 22:38:18,000 kernel[0]: AppleCamIn::start: fS2DeviceMemory=0xffffff81e1ccd000 (len=268435456)
    11/12/13 22:38:18,000 kernel[0]: AppleCamIn::start: fISPRegsMem=0xffffff802fcc9100 (len=1048576)
    11/12/13 22:38:18,000 kernel[0]: virtual bool AppleCamIn::start(IOService *): about to configure DDR
    11/12/13 22:38:18,000 kernel[0]: AGC: 3.4.28, HW version=4.0.8 [3.2.8], flags:0, features:20600
    11/12/13 22:38:18,000 kernel[0]: NVDAStartup: Official
    11/12/13 22:38:18,000 kernel[0]: init
    11/12/13 22:38:18,000 kernel[0]: probe
    11/12/13 22:38:18,000 kernel[0]: start
    11/12/13 22:38:18,000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    11/12/13 22:38:18,000 kernel[0]: IOBluetoothUSBDFU::probe
    11/12/13 22:38:18,000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8289 FirmwareVersion - 0x0078
    11/12/13 22:38:18,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xb400 ****
    11/12/13 22:38:18,000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xb400 ****
    11/12/13 22:38:18,000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xb400
    11/12/13 22:38:18,000 kernel[0]: NVDAGK100HAL loaded and registered
    11/12/13 22:38:18,000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    11/12/13 22:38:18,000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x89c0 -- 0xf000 -- 0xb400 ****
    11/12/13 22:38:18,000 kernel[0]: DSMOS has arrived
    11/12/13 22:38:18,000 kernel[0]: IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
    11/12/13 22:38:18,000 kernel[0]: hmm.. mismatch sizes: 3100 vs 20
    11/12/13 22:38:19,060 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    11/12/13 22:38:19,065 UserEventAgent[11]: Captive: CNPluginHandler en0: Inactive
    11/12/13 22:38:19,000 kernel[0]: IOPPF: XCPM mode
    11/12/13 22:38:19,000 kernel[0]: save_ddr_phy_regs: saving 127 DDR PHY shmoo-calibrated registers
    11/12/13 22:38:19,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path_object = 0xffffff802f299620
    11/12/13 22:38:19,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_path = IOACPIPlane:/_SB/PCI0@0/RP04@1c0003/CMRA@0
    11/12/13 22:38:19,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, acpi_device_entry = 0xffffff802f67d500
    11/12/13 22:38:19,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIDevice = 0xffffff802f67d500
    11/12/13 22:38:19,000 kernel[0]: AppleCamIn::initACPI - status = 0x00000000, fACPIPowerEnabled = 1
    11/12/13 22:38:19,000 kernel[0]: AppleCamIn::start - link control offset in PCI bridge = 0x50
    11/12/13 22:38:19,000 kernel[0]: AppleCamIn::start - pmcsr offset in PCI bridge = 0xa4
    11/12/13 22:38:19,000 kernel[0]: AppleCamIn::power_off_hardware
    11/12/13 22:38:19,000 kernel[0]: USBMSC Identifier (non-unique): A820SY0E     0xd49 0x7000 0x200, 2
    11/12/13 22:38:19,000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    11/12/13 22:38:19,274 configd[19]: network changed.
    11/12/13 22:38:19,274 configd[19]: setting hostname to "Rorys-MacBook-Pro.local"
    11/12/13 22:38:19,315 UserEventAgent[11]: assertion failed: 13A3017: com.apple.telemetry + 22832 [3B8D9E94-8664-3488-847A-C41C32F8A4AD]: 0x0
    11/12/13 22:38:19,316 UserEventAgent[11]: assertion failed: 13A3017: com.apple.telemetry + 22832 [3B8D9E94-8664-3488-847A-C41C32F8A4AD]: 0x0
    11/12/13 22:38:19,323 fseventsd[40]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (11949 4 12046)
    11/12/13 22:38:19,324 fseventsd[40]: log dir: /.fseventsd getting new uuid: 8C55A97B-A983-49CD-BC7E-3D8FE4B75B88
    11/12/13 22:38:19,336 mDNSResponder[43]: mDNSResponder mDNSResponder-522.1.11 (Sep 12 2013 20:25:01) starting OSXVers 13
    11/12/13 22:38:19,337 networkd[42]: networkd.42 built Sep 12 2013 15:08:27
    11/12/13 22:38:19,000 kernel[0]: AppleCamIn::initForPM
    11/12/13 22:38:19,000 kernel[0]: AppleCamIn::systemWakeCall - messageType = 0xE0000340
    11/12/13 22:38:19,399 systemkeychain[46]: done file: /var/run/systemkeychaincheck.done
    11/12/13 22:38:19,000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0xb400 ****
    11/12/13 22:38:19,404 configd[19]: network changed.
    11/12/13 22:38:19,405 configd[19]: network changed: DNS*
    11/12/13 22:38:19,405 mDNSResponder[43]: D2D_IPC: Loaded
    11/12/13 22:38:19,405 mDNSResponder[43]: D2DInitialize succeeded
    11/12/13 22:38:19,407 mDNSResponder[43]:   4: Listening for incoming Unix Domain Socket client requests
    11/12/13 22:38:19,411 mDNSResponder[43]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FCB7C001160 Rorys-MacBook-Pro.local. (AAAA) that's already in the list
    11/12/13 22:38:19,411 mDNSResponder[43]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FCB7C0015F0 6.0.C.9.F.3.E.F.F.F.6.5.8.E.A.B.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
    11/12/13 22:38:19,411 mDNSResponder[43]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FCB7C002D60 Rorys-MacBook-Pro.local. (Addr) that's already in the list
    11/12/13 22:38:19,411 mDNSResponder[43]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007FCB7C0031F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    11/12/13 22:38:19,000 kernel[0]: USBMSC Identifier (non-unique): DRX-700UL_MP_4715680 0x54c 0x1d0 0x1, 2
    11/12/13 22:38:19,000 kernel[0]: en1: promiscuous mode enable succeeded
    11/12/13 22:38:19,000 kernel[0]: en2: promiscuous mode enable succeeded
    11/12/13 22:38:19,000 kernel[0]: VM Swap Subsystem is ON
    11/12/13 22:38:19,929 hidd[90]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    11/12/13 22:38:19,929 hidd[90]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    11/12/13 22:38:19,947 kdc[88]: label: default
    11/12/13 22:38:19,947 kdc[88]:           dbname: od:/Local/Default
    11/12/13 22:38:19,947 kdc[88]:           mkey_file: /var/db/krb5kdc/m-key
    11/12/13 22:38:19,947 kdc[88]:           acl_file: /var/db/krb5kdc/kadmind.acl
    11/12/13 22:38:19,962 kdc[88]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    11/12/13 22:38:19,962 com.apple.usbmuxd[67]: usbmuxd-323.1 on Oct  3 2013 at 12:43:24, running 64 bit
    11/12/13 22:38:20,008 loginwindow[84]: Login Window Application Started
    11/12/13 22:38:20,028 awacsd[99]: Starting awacsd connectivity_executables-97 (Sep 12 2013 20:24:33)
    11/12/13 22:38:20,029 digest-service[106]: label: default
    11/12/13 22:38:20,029 digest-service[106]:           dbname: od:/Local/Default
    11/12/13 22:38:20,029 digest-service[106]:           mkey_file: /var/db/krb5kdc/m-key
    11/12/13 22:38:20,029 digest-service[106]:           acl_file: /var/db/krb5kdc/kadmind.acl
    11/12/13 22:38:20,030 mds[81]: (Normal) FMW: FMW 0 0
    11/12/13 22:38:20,030 digest-service[106]: digest-request: uid=0
    11/12/13 22:38:20,031 awacsd[99]: InnerStore CopyAllZones: no info in Dynamic Store
    11/12/13 22:38:20,038 kdc[88]: KDC started
    11/12/13 22:38:20,047 apsd[101]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    11/12/13 22:38:20,069 digest-service[106]: digest-request: netr probe 0
    11/12/13 22:38:20,070 digest-service[106]: digest-request: init request
    11/12/13 22:38:20,076 digest-service[106]: digest-request: init return domain: BUILTIN server: RORYS-MACBOOK-PRO indomain was: <NULL>
    11/12/13 22:38:20,087 WindowServer[151]: Server is starting up
    11/12/13 22:38:20,090 WindowServer[151]: Session 256 retained (2 references)
    11/12/13 22:38:20,090 WindowServer[151]: Session 256 released (1 references)
    11/12/13 22:38:20,111 WindowServer[151]: Session 256 retained (2 references)
    11/12/13 22:38:20,113 WindowServer[151]: init_page_flip: page flip mode is on
    11/12/13 22:38:20,190 com.apple.kextd[12]: WARNING - Invalid signature -67050 0xFFFFFFFFFFFEFA16 for kext "/Library/Application Support/VirtualBox/VBoxDrv.kext"
    11/12/13 22:38:20,204 airportd[104]: airportdProcessDLILEvent: en0 attached (up)
    11/12/13 22:38:20,000 kernel[0]: AirPort_Brcm4360_P2PInterface::init name <p2p0> role 1
    11/12/13 22:38:20,000 kernel[0]: AirPort_Brcm4360_P2PInterface::init() <p2p> role 1
    11/12/13 22:38:20,228 locationd[86]: NBB-Could not get UDID for stable refill timing, falling back on random
    11/12/13 22:38:20,000 kernel[0]: ast_pending=0xffffff800d2cadb0
    11/12/13 22:38:20,000 kernel[0]: cpu_interrupt=0xffffff800d2e2f90
    11/12/13 22:38:20,000 kernel[0]: vboxdrv: fAsync=0 offMin=0x1dd0 offMax=0x22f0
    11/12/13 22:38:20,000 kernel[0]: VBoxDrv: version 4.3.2 r90405; IOCtl version 0x1a0005; IDC version 0x10000; dev major=34
    11/12/13 22:38:20,000 kernel[0]: VBoxDrv: vmx_resume=ffffff800d2ef950 vmx_suspend=ffffff800d2ef910 vmx_use_count=ffffff800d8d8848 (0) cr4=0x1606e0
    11/12/13 22:38:20,283 locationd[86]: Location icon should now be in state 'Inactive'
    11/12/13 22:38:20,293 locationd[86]: locationd was started after an unclean shutdown
    11/12/13 22:38:20,300 com.apple.kextd[12]: WARNING - Invalid signature -67050 0xFFFFFFFFFFFEFA16 for kext "/Library/Application Support/VirtualBox/VBoxUSB.kext"
    11/12/13 22:38:20,415 com.apple.kextd[12]: WARNING - Invalid signature -67050 0xFFFFFFFFFFFEFA16 for kext "/Library/Application Support/VirtualBox/VBoxNetFlt.kext"
    11/12/13 22:38:20,000 kernel[0]: VBoxFltDrv: version 4.3.2 r90405
    11/12/13 22:38:20,483 com.apple.kextd[12]: WARNING - Invalid signature -67050 0xFFFFFFFFFFFEFA16 for kext "/Library/Application Support/VirtualBox/VBoxNetAdp.kext"
    11/12/13 22:38:20,000 kernel[0]: VBoxAdpDrv: version 4.3.2 r90405
    11/12/13 22:38:20,825 WindowServer[151]: Found 62 modes for display 0x00000000 [36, 26]
    11/12/13 22:38:20,828 WindowServer[151]: Found 1 modes for display 0x00000000 [1, 0]
    11/12/13 22:38:20,834 WindowServer[151]: Found 128 modes for display 0x00000000 [82, 36]
    11/12/13 22:38:20,837 WindowServer[151]: Found 1 modes for display 0x00000000 [1, 0]
    11/12/13 22:38:20,840 WindowServer[151]: Found 1 modes for display 0x00000000 [1, 0]
    11/12/13 22:38:20,855 WindowServer[151]: mux_initialize: Mode is dynamic
    11/12/13 22:38:20,856 WindowServer[151]: Found 62 modes for display 0x00000000 [36, 26]
    11/12/13 22:38:20,859 WindowServer[151]: Found 1 modes for display 0x00000000 [1, 0]
    11/12/13 22:38:20,860 WindowServer[151]: Found 128 modes for display 0x00000000 [82, 36]
    11/12/13 22:38:20,871 WindowServer[151]: Found 1 modes for display 0x00000000 [1, 0]
    11/12/13 22:38:21,252 WindowServer[151]: WSMachineUsesNewStyleMirroring: true
    11/12/13 22:38:21,256 WindowServer[151]: MPServiceForDisplayDevice: Invalid device alias (0)
    11/12/13 22:38:21,256 WindowServer[151]: Display 0x04280880: GL mask 0x21; bounds (0, 0)[1440 x 900], 62 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a022, S/N 0, Unit 0, Rotation 0
    UUID

    Yeah, there are problems with your mail server database. Are you running email on that server? If so, there are configuration problems and possible mail database corruption, which you can fix by using the relevant troubleshooting techniques detailed in the manual:
    http://images.apple.com/server/pdfs/MailServicev10.4.pdf
    Of course, if you're not using the box as a mail server, then it would be easiest to stop it from Server Admin.

Maybe you are looking for