Breakpoints File

Last week I set a couple of breakpoints in my process model (on a pc with a deployment license), I ran a test and then manually removed them; or at least thats what I thought because they were appearing to the operators during the weekend. I had to go to [Debug>>Breakpoints>>Delete All] to get rid of them, which I guess is the normal procedure to do it. It was strange to me that this happened because I have a deployment license and my whole short teststand life I had the wrong idea that they were being stored in the seq file so, can someone illuminate me and tell me where are they being stored???
Thanx,
Iñaki

Iñaki -
The file that David mentioned is the file that TestStand uses when no workspace is loaded. If a workspace is loaded TestStand creates a file with the same name as the workspace with the .opt extension, and TestStand saves the breakpoint and workspace information in this file instead of the default.
Scott Richardson
National Instruments

Similar Messages

  • How do I delete hidden breakpoints?

    Hi,
    XCode is being really annoying with a hidden breakpoint.  It added a breakpoint in a weird spot, and it's a spot that gets hit constantly, so I'm constantly having to restart the program.  I can see the breakpoint in the breakpoint navigator, how do I delete it?  There is a delete option in the ctrl+click menu, but it doesn't do anything, how do I make it functional?

    Try to remove the Breakpoints file from your project. You'll be able to find it inside your xcodeproj file:
    your_project_name.xcodeproj/xcuserdata/your_username.xcuserdatad/xcdebugger/
    Breakpoints.xcbkptlist

  • FLEX debugger not hitting breakpoints, because Flash sometimes embeds source file paths with wrong letter case?

    I was trying to figure out why breakpoints were working fine for source files in some locations but not others.  FlashDevelop's debugger (which I believe is actually the FLEXSDK debugger) was successfully connecting, tracing output, and hitting breakpoints in SOME files, but not others.
    I downloaded SWFInvestigator from Adobe Labs and checked the embedded debug paths for various source files to see what was going on.
    I discovered that files in which no breakpoints could be hit had their paths embedded in all lowercase (e.g. "c:\users\username\desktop\source\myproject" instead of "C:\Users\username\Desktop\source\MyProject").
    So I have two questions:
    First, is this a Flex debugger issue, or a FlashDevelop plugin issue? Letter case shouldn't matter or interfere with matching file paths in Windows.
    Second, what could possibly influence the letter case of embedded paths in a SWF output by Flash Professional (CS6), such that they are sometimes all lowercase and other times maintain the same case from the file system?  And why would that affect a debuggers ability to hit breakpoints in Windows 7?  I am compiling in multiple ways. Sometimes clicking Publish within Flash. Sometimes the file being published is not even open in Flash, and my JSFL script file is passed to Flash.exe containing embedded file paths to open the document. Usually, everything seems to work fine, no matter where I publish from, regardless of whether the FLA file is open or not. I'm honestly starting to believe that it depends on how the FLA was last opened in Flash Professional, as though it saves some sort of last access path internally and uses that to embed debug information.

    I don't think it's the source path in my case, because it's simply the dot ".", although I did check that because it would most likely influence the embedded paths.
    In the library path, I use relative paths exclusively, since all my individual project folders exist in the same "source" folder.
    Here's how I arrived at the conclusion that something more complex or "stateful" must be occuring:
    I publish my files with a one-click application, which does the following
    updates version timestamps (static constants) in specific files via regex match
    fills in a JSFL template with the FLA filename and writes the JSFL file to disk, then passes the JSFL file path to flash.exe for publication
    the JSFL then runs a command, which signals the main application via cross-process communication that the script has finished publishing
    That all makes it easy for me to update and publish multiple projects and deploy them, with a single click.  Here is the JSFL template I created, which has been drastically simplified since the days where it used to search to see if the file was open in Flash, select the document, and call publish.  Now it just uses the publishDocument method to silently publish files without opening them.
    var filepath = "FLAFILEPATH"; //template parameter: the URI (beginning with "file:///") of the FLA file to publish
    fl.publishDocument( filepath, "PUBLISHPROFILENAME" );
    FLfile.runCommandLine("COMPLETECOMMAND");
    The C# app replaces the strings in all caps with the actual values.  The COMPLETECOMMAND is actually populated with the application's own executable path, along with a "complete" switch, which lauches a 2nd instance, which handles the complete switch by broadcasting a signal over an interprocess channel and then terminates.  The main instance captures the signal, triggers a wait handle, and continues with publishing the next file.  Here is the core code for it:
    private string fillTemplate( string fla_directory, string fla_filename, string publish_profile_name )
        string fileuri = "file:///" + Path.Combine( fla_directory, fla_filename ).Replace( '\\','/' );
        return EmbeddedResources.OpenAndPublish //JSFL template file embedded as string resource
            .Replace( "FLAFILEPATH", HttpUtility.JavaScriptStringEncode( fileuri ) )
            .Replace("COMPLETECOMMAND", HttpUtility.JavaScriptStringEncode( "\"" + Application.ExecutablePath + "\"" + " -publishcomplete" )) //call self with -publishcomplete switch to signal main instance's publishCompleteSignal
            .Replace("PUBLISHPROFILENAME", HttpUtility.JavaScriptStringEncode( publish_profile_name ) );
    private static readonly string FLASH_PATH = @"C:\Program Files (x86)\Adobe\Adobe Flash CS6\Flash.exe";
    public void publish( string fla_directory, string fla_filename, string publish_profile_name )
        Program.publishCompleteSignal.Reset();
        string template = fillTemplate( fla_directory, fla_filename, publish_profile_name );
        string curdir = Environment.CurrentDirectory;
        string tempJSFLfilepath = Path.Combine( curdir, "temp_script.jsfl" );
        File.WriteAllText( tempJSFLfilepath, template );
        Process p = Process.Start( FLASH_PATH, tempJSFLfilepath );
        Program.publishCompleteSignal.WaitOne( 30000 ); //timeout after 30 seconds
    Here's where it gets interesting.  The FLAFILEPATH has ALWAYS been passed in as all lower case, yet this publication method has worked 99% of the time for hundreds of publish operations every day.  This applies to both the publication of the first SWC, which is referenced by the second published SWF (both were being published with lowercase paths), yet the paths for the main SWF were remaining in lowercase, while those in the referenced SWC were maintaining the correct case from the file system.
    So there may be any number of things going on here.  SWCs may be published differently than SWFs, such that SWCs always have the correct letter case for debug source files, regardless of how the source FLA project was opened.  Ensuring the path passed to publishDocument uses the right case definitely fixes the problem, but it doesn't explain why it usually worked, despite having always been passing a lowercase string.  The only variable I can think of in all of this is Windows itself or Flash, such as whether the document was open in Flash at the time the silent JSLF publishDocument command ran, and how that FLA was last opened (via shortcut, via "recent documents" in Flash, via recent documents in Windows.  It has to be something, even if it's something as obscure as how the folder path was last accessed in windows, although I strongly suspect it's just how (in terms of path case) the FLA was last opened in Flash.
    In any case, I'm happy that passing the right case to JSLF's publishDocument command fixes the problem, so I'm not going to spend any more time trying to figure out how opening the FLA in various ways could affect the embedded debug paths.  The only thing that should be done is to address how paths with the wrong case are handled when they do get embedded that way for whatever reason.  Perhaps the flex debugger should be updated to use case-insensitive matches in case-insensitive file systems, unless, perhaps, this is a FlashDevelop debugger issue after all.

  • JDeveloper 11g breakpoints do not work in .jspx file.

    Hi, there is an issue with the JDeveloper 11g debugger, running an ADF application with embedded WL server (JSF version - Trinidad).
    It stops at the breakpoints in the .java file, but not in the .jspx files.
    Any suggestions on configurations to check....
    Currently:
    -Generate Debug info is checked,
    -precompile JSP is unchecked
    -server and application are being ran in debug mode
    Spent a lot of time already seeing similar posts but there is no meaningfull answer as to what configurations are responsible for the debugger.
    Please do not waist your time or mine advising to reboot pc or re-install Jdev ;-)
    Thank you

    Hi John,
    Thank you for your prompt response.
    Here is a sample code with the breakpoint.
    (breakpoint here)<tr:outputText value="Date of hire #{bk_editSalesRoleBean.salesRole.person.effective}">
    <f:convertDateTime pattern="#{res['date.format.readOnly.display']}"/>
    </tr:outputText>
    It's a source line type breakpoint and the execution should be halted at it. I wanted to review value in the pattern reference in the convertDateTime tag.
    Thanks,
    Taras

  • Unable to set breakpoint in UIX file

    I am trying to set a breakpoint in a uix file (within the xml itself ) and I receive an error. The breakpoint looks like it gets set in jDeveloper but the error displayed is:
    Unable to set breakpoint ( searchRequest.uix ), unable to resolve Jave Package.
    Can you not set breakpoints in the uix file itself? If not where should I look to set the breakpoint?
    Thanks

    More information: I have debug turned on in the uix_config.xml. I can see where it gets to the eventhandler named "goQuery"
    <handlers>
    <event name="goQuery">
    <go name="query"/>
    </event>
    </handlers>
    but the go is never executed.
    04/11/18 15:03:35 Rendering page = Page[name=searchRequest]
    04/11/18 15:09:28 Requested page = Page[name=searchRequest]
    04/11/18 15:09:28 Event = goQuery
    04/11/18 15:09:28 Parameter settlementRefId=
    04/11/18 15:09:28 Parameter companyId=6999
    04/11/18 15:09:28 Rendering page = Page[name=searchRequest]
    It looks like the forward "query" is never executed and when executing the submit, it resets the page. I would like to step through this to see what is occurring so that I can correct whatever is happenning. But not know where to set break points in the uix page is frustrating.
    Thanks

  • I am facing problem regarding graphical user interface. I am using text box for editing files. I want to show the line numbers and graphical breakpoint​s along with text box. Can anybody help me in this? Thanks.

    I am facing problem regarding graphical user interface. I am using text box for editing files. I want to show the line numbers and graphical breakpoints along with text box. Can anybody help me in this? Thanks.

    Thanks for you reply.
    But actually I don't want to show the \ (backslashes) to the user in my text box. 
    Ok let me elaborate this problem little more. 
    I want to show my text box as it is in normal editors e.g. In Matlab editor. There is a text box and on left side the gray bar shows the line numbers corresponding to the text. Further more i want that the user should be able to click on any line number to mark specific line as breakpoint (red circle or any graphical indication for mark). 
    Regards,
    Waqas Ahmad

  • Error while loading flat file into DSO

    Hi
    I am loading data from a flat file into a DSO. My fields in the flat file are Trans_Dt, (CHAR) Particulars (CHAR), Card_Name, (CHAR) Exps_Type, (CHAR)
    Debit_Amount,Credit_Amount,***._Amt,Open_Bal_Check_Acnt, (CURR)
    0Currency (CHAR)
    In the proposal tab apart from the above mentioned fields 3 additional fields viz, field 10, field 11, and field 12 have come. How did these 3 additional fields come when I don't have any additional fields in my flat file? I've deleted these extra 3 fields though.
    When I activate the DataSource it is getting activated but then I get the message 'Data structures were changed. Start transactions before hand'. What does this message mean?
    When I hit the 'Read preview data' button it doesn't show me any data and gives me the error Missing reference to currency field / unit field for the fields Debit_Amount,Credit_Amount,***._Amt,Open_Bal_Check_Acnt
    How do I create a reference field to the above mentioned fields?
    Earlier I didn't have the 0Currency field in the flat file. But in my DSO while creating the key figures by default the 0Currency field also got created which is quite obvious. Now while activating the transformations I was getting a message that 'No source field for the field 0Currency'. Hence I had to create a new field in my flat file called 0Currency and load it with USD in all rows.
    Please help me in loading this flat file into the DSO.
    Thank you.
    TR.

    Hi guys,
    Thanks a lot for your answers. with your help I could see the data in the 'Read preview data' and schedule the load. I did use all the Info objects in the info objects column of the data source to load the flat file.
    The data is in PSA successfully without any issues. but when I executed the DTP it failed with errors.
    Earlier there was no mapping from Currency field in source to the all the key figure fields in the target in the transformation. The mapping was only from Currency to 0CURRENCY but still the transformation got activated. As per your advise I mapped Currency field to the remaining Key Figure fields but then I am getting the error
    'Source parameter CURRENCY is not being used'
    Why is that so?
    list of Errors after executing the DTP:
    1. 'Record filtered because records with the same key contain errors'
    Message:
    Diagnosis: The data record was filtered out becoz data records with the same key have already been filtered out in the current step for other reasons and the current update is non-commutative (for example, MOVE). This means that data records cannot be exchanged on the basis of the semantic key.
    System Response: The data record is filtered out; further processing is performed in accordance with the settings chosen for error handling.
    Procedure: Check these data records and data records with the same key for errors and then update them.
    Procedure for System administration
    Can you please explain this error and how should I fix this error.
    2. Exception input_not_numeric; see long text - ID RSTRAN
    Diagnosis: An exception input_not_numeric was raised while executing function module RST_TOBJ_TO_DERIVED_TOBJ.
    System Response
    Processing the corresponding record has been terminated.
    Procedure
    To analyse the cause, set a break point in the program of the transformation at the call point of function module RST_TOBJ_TO_DERIVED_TOBJ. Simulate the data transfer process to investigate the cause.
    Procedure for System Administration
    What does this error mean? How do I set a breakpoint in the program to fix this error inorder to load the data?
    What does Procedure for System Administration mean?
    Please advise.
    Thank you.
    TR.

  • Excel file from FTP Server UNIX

    Hi All,
    I am trying to fetch data from file server which is in EXCEL(.XLS) format.
    Able to connect FTP using FTP_CONNECT,using FTP_COMMAND(get filename).
    Now the problem is i am able to read text file but not EXCEL file.
    How to capture the excel file entries,help me regarding this?
    Sachin.

    Sachin, this question is asked several times each week in the forum. There are solutions, in short: DOI or OLE for dialog, external softwares for other cases. As said by breakpoint, you'll be able to process these files more easily and quickly, if they are saved under other (text) formats: txt, csv, xml, xslx.
    Please search and read these posts and revert back if any question.

  • Need to remove all ximeta files from system

    I continue to experience terribly slow and unusal performance issues since upgrading to Mavericks. An old NDAS external backup device was long ao removed but I still see some signs of files or code in the system that I don't know how to remove. Any advice to help clear the following is appreciated.
    This is not the full log from the console, but it has the errors I'm dealing with:
    12/4/13 8:21:09.333 AM com.apple.kextd[12]: kext com.ximeta.driver.NDASFamily  22500009000 is in exception list, allowing to load
    12/4/13 8:21:09.333 AM com.apple.kextd[12]: Can't load /System/Library/Extensions/NDASFamily.kext - no code for running kernel's architecture.
    12/4/13 8:21:09.335 AM com.apple.kextd[12]: Load com.ximeta.driver.NDASFamily failed; removing personalities from kernel.
    12/4/13 8:21:14.307 AM launchctl[173]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:21:14.317 AM loginwindow[39]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    12/4/13 8:21:16.263 AM WindowServer[147]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    12/4/13 8:21:16.748 AM com.apple.kextd[12]: kext com.digidesign.iokit.DigiDal  900007004 is in exception list, allowing to load
    12/4/13 8:21:16.808 AM com.apple.kextd[12]: kext com.ximeta.nke.netlpx  20900009000 is in exception list, allowing to load
    12/4/13 8:21:16.835 AM com.apple.kextd[12]: Can't load /System/Library/Extensions/netlpx.kext - no code for running kernel's architecture.
    12/4/13 8:21:16.839 AM SystemStarter[142]: LPX Network Extensions (153) did not complete successfully
    12/4/13 8:21:16.866 AM com.apple.kextd[12]: kext com.nvidia.CUDA  101009000 is in exception list, allowing to load
    12/4/13 8:21:16.879 AM SystemStarter[142]: The following StartupItems failed to start properly:
    12/4/13 8:21:16.879 AM SystemStarter[142]: /Library/StartupItems/XiMetaNetLpx
    12/4/13 8:21:16.879 AM SystemStarter[142]:  - execution of Startup script failed
    12/4/13 8:21:17.135 AM WindowServer[147]: Display 0x1c803274: Unit 0; ColorProfile { 2, "Acer G235H"}; TransferFormula (1.000000, 1.000000, 1.000000)
    12/4/13 8:21:17.142 AM launchctl[177]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:21:17.328 AM UserEventAgent[179]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    12/4/13 8:21:17.468 AM SecurityAgent[186]: This is the first run
    12/4/13 8:21:17.468 AM SecurityAgent[186]: MacBuddy was run = 0
    12/4/13 8:21:17.493 AM SecurityAgent[186]: User info context values set for Admin
    12/4/13 8:21:17.823 AM loginwindow[39]: Login Window - Returned from Security Agent
    12/4/13 8:21:17.862 AM loginwindow[39]: USER_PROCESS: 39 console
    12/4/13 8:21:17.877 AM launchctl[191]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:21:18.482 AM launchctl[193]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:21:18.502 AM com.apple.launchd.peruser.501[190]: (com.apple.cmfsyncagent) Ignored this key: UserName
    12/4/13 8:21:18.503 AM com.apple.launchd.peruser.501[190]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    12/4/13 8:21:18.504 AM com.apple.launchd.peruser.501[190]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    12/4/13 8:21:18.508 AM launchctl[193]: com.apple.pluginkit.pkd: Already loaded
    12/4/13 8:21:18.508 AM launchctl[193]: com.apple.sbd: Already loaded
    12/4/13 8:21:18.520 AM distnoted[195]: # distnote server agent  absolute time: 52.826756100   civil time: Wed Dec  4 08:21:18 2013   pid: 195 uid: 501  root: no
    This last section seems to have a lot of other errors as well:
    12/4/13 8:21:43.235 AM com.apple.internetaccounts[271]: An instance 0x7fb089a2df60 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fb089a2efe0> (
    <NSKeyValueObservance 0x7fb089a2f110: Observer: 0x7fb089a2b080, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff9069a44b, Property: 0x7fb089a2efb0>
    12/4/13 8:21:43.238 AM com.apple.internetaccounts[271]: An instance 0x7fb089a36890 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fb089a36cb0> (
    <NSKeyValueObservance 0x7fb089a36940: Observer: 0x7fb089a357d0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff9069a44b, Property: 0x7fb089a2efb0>
    12/4/13 8:21:43.253 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:44.270 AM syncdefaultsd[250]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    12/4/13 8:21:45.330 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:46.317 AM ReportCrash[294]: Saved crash report for gutenprint.5.2[300] version ??? to /Library/Logs/DiagnosticReports/gutenprint.5.2_2013-12-04-082145_Admins-Mac-Pro .crash
    12/4/13 8:21:46.373 AM PrintUITool[301]: There are no drivers posted for Canon MF4360-4390 (UFRII LT).
    12/4/13 8:21:46.431 AM PrintUITool[301]: There are no drivers posted for Canon MF4360-4390 (FAX).
    12/4/13 8:21:47.093 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x33f] flags: 0x8 binding: FileInfoBinding [0x241] - extension: doc, UTI: com.microsoft.word.doc, fileType: ????.
    12/4/13 8:21:47.145 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x203] flags: 0x8 binding: FileInfoBinding [0x103] - extension: doc, UTI: com.microsoft.word.doc, fileType: ???? request size:128 scale: 1
    12/4/13 8:21:47.522 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x247] flags: 0x8 binding: FileInfoBinding [0x345] - extension: pdf, UTI: com.adobe.pdf, fileType: ????.
    12/4/13 8:21:47.522 AM quicklookd[297]: 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:128 scale: 1
    12/4/13 8:21:48.523 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:50.478 AM parentalcontrolsd[302]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    12/4/13 8:21:51.503 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:53.096 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:55.218 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:55.278 AM WDQuickView[253]: Updating service information
    12/4/13 8:21:57.666 AM sandboxd[289]: ([204]) coreaudiod(204) deny mach-lookup com.apple.coreservices.launchservicesd
    12/4/13 8:21:59.471 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1cb] flags: 0x8 binding: FileInfoBinding [0x27f] - extension: jpeg, UTI: public.jpeg, fileType: ????.
    12/4/13 8:21:59.472 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: jpeg, UTI: public.jpeg, fileType: ???? request size:64 scale: 1
    12/4/13 8:21:59.474 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1cd] flags: 0x8 binding: FileInfoBinding [0x37d] - extension: jpg, UTI: public.jpeg, fileType: JPEG.
    12/4/13 8:21:59.474 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x803] flags: 0x8 binding: FileInfoBinding [0x703] - extension: jpg, UTI: public.jpeg, fileType: JPEG request size:64 scale: 1
    12/4/13 8:21:59.476 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1cf] flags: 0x8 binding: FileInfoBinding [0x281] - extension: JPG, UTI: public.jpeg, fileType: ????.
    12/4/13 8:21:59.477 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xa03] flags: 0x8 binding: FileInfoBinding [0x903] - extension: JPG, UTI: public.jpeg, fileType: ???? request size:64 scale: 1
    12/4/13 8:21:59.478 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1d1] flags: 0x8 binding: FileInfoBinding [0x37f] - extension: MOV, UTI: com.apple.quicktime-movie, fileType: ????.
    12/4/13 8:21:59.479 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xc03] flags: 0x8 binding: FileInfoBinding [0xb03] - extension: MOV, UTI: com.apple.quicktime-movie, fileType: ???? request size:64 scale: 1
    12/4/13 8:21:59.480 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1d3] flags: 0x8 binding: FileInfoBinding [0x283] - extension: numbers, UTI: com.apple.iwork.numbers.numbers, fileType: ????.
    12/4/13 8:21:59.480 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xe03] flags: 0x8 binding: FileInfoBinding [0xd03] - extension: numbers, UTI: com.apple.iwork.numbers.numbers, fileType: ???? request size:64 scale: 1
    12/4/13 8:21:59.482 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1d5] flags: 0x8 binding: FileInfoBinding [0x381] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN.
    12/4/13 8:21:59.482 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1003] flags: 0x8 binding: FileInfoBinding [0xf03] - extension: docx, UTI: org.openxmlformats.wordprocessingml.document, fileType: WXBN request size:64 scale: 1
    12/4/13 8:21:59.484 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1d7] flags: 0x8 binding: FileInfoBinding [0x285] - extension: xls, UTI: com.microsoft.excel.xls, fileType: XLS8.
    12/4/13 8:21:59.484 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1203] flags: 0x8 binding: FileInfoBinding [0x1103] - extension: xls, UTI: com.microsoft.excel.xls, fileType: XLS8 request size:64 scale: 1
    12/4/13 8:21:59.486 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1d9] flags: 0x8 binding: FileInfoBinding [0x383] - extension: mov, UTI: com.apple.quicktime-movie, fileType: MooV.
    12/4/13 8:21:59.487 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1403] flags: 0x8 binding: FileInfoBinding [0x1303] - extension: mov, UTI: com.apple.quicktime-movie, fileType: MooV request size:64 scale: 1
    12/4/13 8:21:59.488 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1db] flags: 0x8 binding: FileInfoBinding [0x287] - extension: JPG, UTI: public.jpeg, fileType: ????.
    12/4/13 8:21:59.489 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1603] flags: 0x8 binding: FileInfoBinding [0x1503] - extension: JPG, UTI: public.jpeg, fileType: ???? request size:64 scale: 1
    12/4/13 8:21:59.492 AM com.apple.IconServicesAgent[256]: main Failed to composit image for binding VariantBinding [0x1dd] flags: 0x8 binding: FileInfoBinding [0x385] - extension: rtf, UTI: public.rtf, fileType: ????.
    12/4/13 8:21:59.492 AM quicklookd[297]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1803] flags: 0x8 binding: FileInfoBinding [0x1703] - extension: rtf, UTI: public.rtf, fileType: ???? request size:64 scale: 1
    12/4/13 8:22:01.904 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:22:07.265 AM SystemUIServer[202]: Cannot find executable for CFBundle 0x7f9118725350 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    12/4/13 8:22:07.267 AM CIJScannerRegister[264]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:22:07.268 AM Canon MFScanner[267]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:22:07.293 AM GoogleSoftwareUpdateAgent[247]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:22:07.364 AM SystemUIServer[202]: Cannot find executable for CFBundle 0x7f9118725d90 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    12/4/13 8:22:16.479 AM Dropbox[254]: PyObjCPointer created: at 0xcbefc88 of type {OpaqueJSContext=}
    12/4/13 8:22:25.278 AM WDQuickView[253]: Updating service information
    12/4/13 8:22:26.000 AM kernel[0]: fsevents: watcher dbfseventsd (pid: 329) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    12/4/13 8:22:28.344 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:22:29.331 AM Dropbox[254]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    12/4/13 8:22:31.631 AM Calendar[322]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:22:32.161 AM Opera[317]: stat on /Users/Admin/Library/Application Support/com.operasoftware.OperaNext/Bookmarks: No such file or directory
    12/4/13 8:22:33.049 AM com.apple.dock.extra[299]: <NSXPCConnection: 0x7fd3a1611970>: received an undecodable message (no exported object to receive message). Dropping message.
    12/4/13 8:22:41.007 AM Mail[319]: Could not create query for expression ((null)) && (kMDItemContentType == 'com.apple.mail.emlx')
    12/4/13 8:22:41.000 AM kernel[0]: hfs: summary table not allowed on FS with block size of 2048
    12/4/13 8:22:41.000 AM kernel[0]: hfs: could not initialize summary table for Google Chrome 31.0.1650.57-31.0.1650.63 Update
    12/4/13 8:22:41.000 AM kernel[0]: hfs: mounted Google Chrome 31.0.1650.57-31.0.1650.63 Update on device disk5s2
    12/4/13 8:22:42.104 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:22:42.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=370[ksadmin] final status 0x0, allow (remove VALID)ing page
    12/4/13 8:22:43.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=373[ksadmin] final status 0x0, allow (remove VALID)ing page
    12/4/13 8:22:43.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=375[ksadmin] final status 0x0, allow (remove VALID)ing page
    12/4/13 8:22:48.538 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Opera" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:22:49.701 AM com.apple.SecurityServer[14]: Session 100018 created
    12/4/13 8:22:51.123 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Opera" after 3.59 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:22:51.437 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 10.33 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:22:51.967 AM Mail[319]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:22:52.672 AM launchctl[382]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:22:53.908 AM Opera Helper[379]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:22:53.908 AM Opera Helper[379]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:22:54.032 AM Opera[317]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:22:54.105 AM Opera Helper[379]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:22:55.279 AM WDQuickView[253]: Updating service information
    12/4/13 8:22:56.088 AM com.apple.SecurityServer[14]: Session 100003 created
    12/4/13 8:23:05.243 AM Opera Helper[388]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:23:05.243 AM Opera Helper[388]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:23:05.563 AM Opera Helper[388]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:23:06.503 AM Mail[319]: Couldn't contact spell checker for Multilingual
    12/4/13 8:23:25.281 AM WDQuickView[253]: Updating service information
    12/4/13 8:23:52.241 AM Opera Helper[390]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:23:52.241 AM Opera Helper[390]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:23:52.264 AM Opera Helper[390]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:23:55.282 AM WDQuickView[253]: Updating service information
    12/4/13 8:23:58.856 AM SyncServicesAgent[246]: OTAtomicAdd8 is deprecated and will be removed soon.  Please stop using it.
    12/4/13 8:23:58.857 AM SyncServicesAgent[246]: OTCompareAndSwap8 is deprecated and will be removed soon.  Please stop using it.
    12/4/13 8:23:58.877 AM Microsoft Database Daemon[305]: OTAtomicAdd8 is deprecated and will be removed soon.  Please stop using it.
    12/4/13 8:23:58.877 AM Microsoft Database Daemon[305]: OTCompareAndSwap8 is deprecated and will be removed soon.  Please stop using it.
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Battery 3.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Blue.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Blue.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Blue.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/FM8.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/FM8.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/FM8.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Guitar Rig 4.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Guitar Rig 4.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Guitar Rig 4.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Kontakt 4.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Kontakt 4.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Kontakt 4.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Kore Player.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Kore Player.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Kore Player.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Massive.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Massive.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Massive.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Nexus.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Nexus.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Nexus.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Predator.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Predator.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Predator.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/PredatorFX.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/PredatorFX.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/PredatorFX.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Reaktor5.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Reaktor5.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Reaktor5.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/WaveShell-AU 7.0.component
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/WaveShell-AU 7.0.component/Contents
    12/4/13 8:24:00.000 AM kernel[0]: Sandbox: coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/WaveShell-AU 7.0.component
    12/4/13 8:24:01.117 AM launchctl[394]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:24:01.389 AM defaults[396]:
    The domain/default pair of (/Applications/Google Chrome.app/Contents/Info, KSBrandID) does not exist
    12/4/13 8:24:02.199 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Absynth 5.component
    12/4/13 8:24:03.049 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Absynth 5.component/Contents
    12/4/13 8:24:03.622 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Absynth 5.component
    12/4/13 8:24:04.950 AM Finder[203]: copyPrimaryAirPortInterface::ACInterfaceDeviceNameCopy returned NULL
    12/4/13 8:24:05.091 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Albino 3.component
    12/4/13 8:24:05.884 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:24:06.458 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Albino 3.component/Contents
    12/4/13 8:24:06.609 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Albino 3.component
    12/4/13 8:24:07.043 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-data /Library/Audio/Plug-Ins/Components/Battery 3.component
    12/4/13 8:24:08.053 AM sandboxd[289]: ([204]) coreaudiod(204) deny file-read-metadata /Library/Audio/Plug-Ins/Components/Battery 3.component/Contents
    12/4/13 8:24:08.854 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 3.97 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:24:09.159 AM SyncServicesAgent[246]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:24:09.913 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:24:10.496 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.58 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:24:16.588 AM Console[502]: setPresentationOptions called with NSApplicationPresentationFullScreen when there is no visible fullscreen window; this call will be ignored.
    12/4/13 8:24:18.877 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Console" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:24:19.203 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Console" after 1.33 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:24:19.210 AM Console[502]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:24:25.283 AM WDQuickView[253]: Updating service information
    12/4/13 8:24:55.284 AM WDQuickView[253]: Updating service information
    12/4/13 8:24:59.728 AM defaults[2659]:
    The domain/default pair of (/Applications/Google Chrome.app/Contents/Info, KSChannelID) does not exist
    12/4/13 8:25:01.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=2666[ksadmin] final status 0x0, allow (remove VALID)ing page
    12/4/13 8:25:04.090 AM com.google.Chrome[2685]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    12/4/13 8:25:04.000 AM kernel[0]: hfs: unmount initiated on Google Chrome 31.0.1650.57-31.0.1650.63 Update on device disk5s2
    12/4/13 8:25:04.883 AM mds[35]: (Normal) Volume: volume:0x7f8eb2865000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.q3uSEG
    12/4/13 8:25:25.286 AM WDQuickView[253]: Updating service information
    12/4/13 8:25:55.287 AM WDQuickView[253]: Updating service information
    12/4/13 8:26:25.288 AM WDQuickView[253]: Updating service information
    12/4/13 8:26:55.289 AM WDQuickView[253]: Updating service information
    12/4/13 8:27:25.290 AM WDQuickView[253]: Updating service information
    12/4/13 8:27:55.292 AM WDQuickView[253]: Updating service information
    12/4/13 8:28:25.292 AM WDQuickView[253]: Updating service information
    12/4/13 8:28:55.294 AM WDQuickView[253]: Updating service information
    12/4/13 8:29:16.566 AM Opera Helper[2722]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:29:16.566 AM Opera Helper[2722]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:29:16.575 AM Opera Helper[2722]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:29:25.295 AM WDQuickView[253]: Updating service information
    12/4/13 8:29:29.452 AM Opera Helper[2725]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:29:29.452 AM Opera Helper[2725]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:29:29.461 AM Opera Helper[2725]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:29:55.296 AM WDQuickView[253]: Updating service information
    12/4/13 8:30:25.298 AM WDQuickView[253]: Updating service information
    12/4/13 8:30:25.601 AM Opera Helper[2730]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:30:25.601 AM Opera Helper[2730]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:30:25.610 AM Opera Helper[2730]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:30:55.299 AM WDQuickView[253]: Updating service information
    12/4/13 8:31:08.609 AM Opera Helper[2736]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    12/4/13 8:31:08.609 AM Opera Helper[2736]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    12/4/13 8:31:08.618 AM Opera Helper[2736]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    12/4/13 8:31:25.300 AM WDQuickView[253]: Updating service information
    12/4/13 8:31:44.919 AM Adobe Photoshop CS6[2738]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:31:46.108 AM Adobe Photoshop CS6[2738]: 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.
    12/4/13 8:31:46.109 AM Adobe Photoshop CS6[2738]: CoreText performance note: Set a breakpoint on CTFontLogSuboptimalRequest to debug.
    12/4/13 8:31:46.117 AM Adobe Photoshop CS6[2738]: 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.
    12/4/13 8:31:55.301 AM WDQuickView[253]: Updating service information
    12/4/13 8:32:25.302 AM WDQuickView[253]: Updating service information
    12/4/13 8:32:55.303 AM WDQuickView[253]: Updating service information
    12/4/13 8:33:25.304 AM WDQuickView[253]: Updating service information
    12/4/13 8:33:55.306 AM WDQuickView[253]: Updating service information
    12/4/13 8:34:25.307 AM WDQuickView[253]: Updating service information
    12/4/13 8:34:55.308 AM WDQuickView[253]: Updating service information
    12/4/13 8:35:25.310 AM WDQuickView[253]: Updating service information
    12/4/13 8:35:55.311 AM WDQuickView[253]: Updating service information
    12/4/13 8:36:25.312 AM WDQuickView[253]: Updating service information
    12/4/13 8:36:55.313 AM WDQuickView[253]: Updating service information
    12/4/13 8:37:13.530 AM Mail[319]: Could not load x-msg URL
    12/4/13 8:37:25.314 AM WDQuickView[253]: Updating service information
    12/4/13 8:37:55.316 AM WDQuickView[253]: Updating service information
    12/4/13 8:38:25.317 AM WDQuickView[253]: Updating service information
    12/4/13 8:38:55.318 AM WDQuickView[253]: Updating service information
    12/4/13 8:39:05.983 AM launchctl[2776]: launchctl: Dubious file. Not of type .plist (skipping): /Library/LaunchAgents/com.trendnet.wutility
    12/4/13 8:39:06.501 AM Safari[2769]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:39:25.319 AM WDQuickView[253]: Updating service information
    12/4/13 8:39:55.320 AM WDQuickView[253]: Updating service information
    12/4/13 8:40:25.322 AM WDQuickView[253]: Updating service information
    12/4/13 8:40:55.323 AM WDQuickView[253]: Updating service information
    12/4/13 8:41:25.324 AM WDQuickView[253]: Updating service information
    12/4/13 8:41:55.325 AM WDQuickView[253]: Updating service information
    12/4/13 8:42:22.502 AM WindowServer[147]: disable_update_timeout: UI updates were forcibly disabled by application "Terminal" for over 1.00 seconds. Server has re-enabled them.
    12/4/13 8:42:22.718 AM WindowServer[147]: common_reenable_update: UI updates were finally reenabled by application "Terminal" after 1.22 seconds (server forcibly re-enabled them after 1.00 seconds)
    12/4/13 8:42:22.996 AM Terminal[2790]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:42:23.331 AM login[2792]: USER_PROCESS: 2792 ttys000
    12/4/13 8:42:25.326 AM WDQuickView[253]: Updating service information
    12/4/13 8:42:55.328 AM WDQuickView[253]: Updating service information
    12/4/13 8:43:25.329 AM WDQuickView[253]: Updating service information
    12/4/13 8:43:55.329 AM WDQuickView[253]: Updating service information
    12/4/13 8:44:25.331 AM WDQuickView[253]: Updating service information
    12/4/13 8:44:55.332 AM WDQuickView[253]: Updating service information
    12/4/13 8:45:25.334 AM WDQuickView[253]: Updating service information
    12/4/13 8:45:55.335 AM WDQuickView[253]: Updating service information
    12/4/13 8:46:25.336 AM WDQuickView[253]: Updating service information
    12/4/13 8:46:55.337 AM WDQuickView[253]: Updating service information
    12/4/13 8:47:25.338 AM WDQuickView[253]: Updating service information
    12/4/13 8:47:55.339 AM WDQuickView[253]: Updating service information
    12/4/13 8:48:13.896 AM com.apple.SecurityServer[14]: Killing auth hosts
    12/4/13 8:48:13.896 AM com.apple.SecurityServer[14]: Session 100018 destroyed
    12/4/13 8:48:13.899 AM com.apple.SecurityServer[14]: Session 100022 created
    12/4/13 8:48:14.114 AM Contacts[2816]: The function `CGContextErase' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    12/4/13 8:48:25.341 AM WDQuickView[253]: Updating service information
    12/4/13 8:48:55.341 AM WDQuickView[253]: Updating service information
    12/4/13 8:49:25.343 AM WDQuickView[253]: Updating service information
    12/4/13 8:49:55.344 AM WDQuickView[253]: Updating service information
    12/4/13 8:49:58.367 AM sandboxd[289]: ([2816]) Contacts(2816) deny hid-control
    12/4/13 8:50:25.345 AM WDQuickView[253]: Updating service information
    12/4/13 8:50:55.347 AM WDQuickView[253]: Updating service information
    12/4/13 8:51:25.348 AM WDQuickView[253]: Updating service information
    12/4/13 8:51:35.802 AM com.apple.backupd[2829]: Starting automatic backup
    12/4/13 8:51:36.488 AM com.apple.backupd[2829]: Backing up to /dev/disk0s2: /Volumes/Untitled Backup/Backups.backupdb
    12/4/13 8:51:42.701 AM com.apple.backupd[2829]: Will copy (295.8 MB) from Untitled 1
    12/4/13 8:51:42.702 AM com.apple.backupd[2829]: Will copy (Zero KB) from RAID
    12/4/13 8:51:42.702 AM com.apple.backupd[2829]: Found 2065 files (295.8 MB) needing backup
    12/4/13 8:51:42.726 AM com.apple.backupd[2829]: 3.03 GB required (including padding), 69.69 GB available
    12/4/13 8:51:55.349 AM WDQuickView[253]: Updating service information
    12/4/13 8:52:25.349 AM WDQuickView[253]: Updating service information
    12/4/13 8:52:45.056 AM com.apple.backupd[2829]: Copied 2064 items (295.8 MB) from volume Untitled 1. Linked 2937.
    12/4/13 8:52:55.352 AM WDQuickView[253]: Updating service information
    12/4/13 8:53:00.476 AM com.apple.backupd[2829]: Copied 1 items (Zero KB) from volume RAID. Linked 27.
    12/4/13 8:53:01.875 AM com.apple.backupd[2829]: Will copy (47 KB) from Untitled 1
    12/4/13 8:53:01.875 AM com.apple.backupd[2829]: Not using file event preflight for RAID
    12/4/13 8:53:01.882 AM com.apple.backupd[2829]: Found 48 files (47 KB) needing backup
    12/4/13 8:53:01.883 AM com.apple.backupd[2829]: 2.67 GB required (including padding), 69.39 GB available
    12/4/13 8:53:04.840 AM com.apple.backupd[2829]: Copied 51 items (47 KB) from volume Untitled 1. Linked 543.
    12/4/13 8:53:08.932 AM com.apple.backupd[2829]: Copied 1 items (Zero KB) from volume RAID. Linked 27.
    12/4/13 8:53:10.543 AM com.apple.backupd[2829]: Created new backup: 2013-12-04-085310
    12/4/13 8:53:13.152 AM com.apple.backupd[2829]: Starting post-backup thinning
    12/4/13 8:53:17.724 AM com.apple.backupd[2829]: Deleted /Volumes/Untitled Backup/Backups.backupdb/Admin’s Mac Pro/2013-12-02-234450 (197 KB)
    12/4/13 8:53:20.517 AM com.apple.backupd[2829]: Deleted /Volumes/Untitled Backup/Backups.backupdb/Admin’s Mac Pro/2013-12-02-224256 (201 KB)
    12/4/13 8:53:23.705 AM com.apple.backupd[2829]: Deleted /Volumes/Untitled Backup/Backups.backupdb/Admin’s Mac Pro/2013-12-02-214156 (1.1 MB)
    12/4/13 8:53:25.352 AM WDQuickView[253]: Updating service information
    12/4/13 8:53:30.183 AM com.apple.backupd[2829]: Deleted /Volumes/Untitled Backup/Backups.backupdb/Admin’s Mac Pro/2013-12-02-204048 (4.4 MB)
    12/4/13 8:53:33.037 AM com.apple.backupd[2829]: Deleted /Volumes/Untitled Backup/Backups.backupdb/Admin’s Mac Pro/2013-12-03-075300 (197 KB)
    12/4/13 8:53:33.037 AM com.apple.backupd[2829]: Post-backup thinning complete: 5 expired backups removed
    12/4/13 8:53:33.090 AM com.apple.backupd[2829]: Backup completed successfully.
    12/4/13 8:53:55.354 AM WDQuickView[253]: Updating service information
    12/4/13 8:54:25.354 AM WDQuickView[253]: Updating service information
    12/4/13 8:54:55.356 AM WDQuickView[253]: Updating service information
    12/4/13 8:55:25.358 AM WDQuickView[253]: Updating service information
    12/4/13 8:55:55.358 AM WDQuickView[253]: Updating service information
    12/4/13 8:56:25.360 AM WDQuickView[253]: Updating service information
    12/4/13 8:56:55.360 AM WDQuickView[253]: Updating service information
    12/4/13 8:57:25.362 AM WDQuickView[253]: Updating service information
    12/4/13 8:57:55.364 AM WDQuickView[253]: Updating service information
    12/4/13 8:58:25.364 AM WDQuickView[253]: Updating service information
    12/4/13 8:58:55.366 AM WDQuickView[253]: Updating service information
    12/4/13 8:59:25.367 AM WDQuickView[253]: Updating service information
    12/4/13 8:59:55.368 AM WDQuickView[253]: Updating service information
    12/4/13 8:59:59.439 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.444 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.448 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.452 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.455 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.459 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.463 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.468 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.471 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.475 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.479 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.483 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.486 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.490 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.494 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.498 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.502 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.506 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.509 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.513 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.517 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.520 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.524 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.528 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.531 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.535 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.539 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.542 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.546 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.550 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.554 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.558 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.562 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.566 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.569 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.573 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.577 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.581 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.585 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.589 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.593 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.597 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.601 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.604 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.608 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.612 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.615 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.619 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.622 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.626 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.630 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.634 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.638 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.642 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.646 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.650 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.654 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.658 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.662 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.665 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.669 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.673 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.677 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.681 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.684 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.688 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.692 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.696 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.700 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.703 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.707 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.711 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.715 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.718 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.722 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.726 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.730 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.734 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.738 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.741 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.745 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.749 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.752 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.756 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.760 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.764 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.767 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.771 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.775 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.778 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.782 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.786 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.790 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.794 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.797 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.801 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.805 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.808 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.812 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.816 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.820 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.824 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.828 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.831 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.835 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.839 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.842 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.846 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.850 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.854 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.858 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.862 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.866 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.870 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.874 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.877 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.881 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.885 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.888 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.892 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.896 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.900 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.904 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.908 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.911 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.915 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.919 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.923 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.927 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.931 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.934 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.938 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.942 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.945 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.949 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.952 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.956 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.960 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.963 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.967 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.971 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.975 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.979 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.982 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.986 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.990 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.994 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 8:59:59.998 AM com.apple.time[194]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    12/4/13 9:00:0

    You can try contacting iTunes Support and see if they will refund or credit you : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    To try and stop it happening again you can use Settings > General > Restrictions to turn off in-app purchases and to require your account's password to be entered for every purchase (the default is a 15 minute period during which it doesn't need re-entering).

  • Line number in a *.class file, please help, advanced language guys

    dear all,
    i use c++ to open a *.class file and try to read line number of code in the file, i have 2 questions:
    1. i read line number in a method successfully, but i can not understand the meaning of start_pc, following are one of those data, please explain:
    s = start_pc,n = line_number
    s , n
    0 , 123
    8 , 125
    23 , 126
    29 , 127
    34 , 129
    38 , 130
    2. i can not find where the class's line number are, i.e. class start line and class end line, or field's line number.
    does these info exist inside a *.class file?
    thx for any light

    jdb gets line number of fields from class file, not
    source file definitely.I'm not really sure how you tested this, but here's my test, and JDB definitely gets its listing from the source file.
    First, I created and compiled class Tester:
    public class Tester
        public static void main( String[] argv )
        throws Exception
            Tester x = new Tester();
            System.out.println(x.toString());
        int     x;
        int     y;
        private Tester()
            x = 0;
            y = 1;
    }Then, I ran this in JDB. Note lines 16 and 17 in the output from "list":
    H:\Workspace>jdb Tester
    Initializing jdb ...
    stop in Tester.mainDeferring breakpoint Tester.main.
    It will be set after the class is loaded.
    runrun Tester
    Set uncaught java.lang.Throwable
    Set deferred uncaught java.lang.Throwable
    >
    VM Started: Set deferred breakpoint Tester.main
    Breakpoint hit: "thread=main", Tester.main(), line=12 bci=0
    12            Tester x = new Tester();
    main[1] list
    8    {
    9        public static void main( String[] argv )
    10        throws Exception
    11        {
    12 =>         Tester x = new Tester();
    13            System.out.println(x.toString());
    14        }
    15
    16        int     x;
    17        int     y;
    main[1] quit
    Tester@b82368Then I edited the source file. Again, look at lines 16 and 17:
    H:\Workspace>jdb Tester
    Initializing jdb ...
    stop in Tester.mainDeferring breakpoint Tester.main.
    It will be set after the class is loaded.
    runrun Tester
    Set uncaught java.lang.Throwable
    Set deferred uncaught java.lang.Throwable
    >
    VM Started: Set deferred breakpoint Tester.main
    Breakpoint hit: "thread=main", Tester.main(), line=12 bci=0
    12            Tester x = new Tester();
    main[1] list
    8    {
    9        public static void main( String[] argv )
    10        throws Exception
    11        {
    12 =>         Tester x = new Tester();
    13            System.out.println(x.toString());
    14        }
    15
    16        int     a;
    17        int     b;
    main[1]

  • How to download internal structure in Excel file ?

    Hi,
    In a ABAP 4.7 program, we need to download internal table/structures in a excel file. Automatically (as manually with breakpoint and Excel export button),
    The SAP_CONVERT_TO_XLS_FORMAT doesn't work (empty file) certainly cause non STANDARD TABLE used.
    There is various internal tables/structures, see one below
    TYPES:
      BEGIN OF gty_rup,
        kunnr                   LIKE           bsid-kunnr,
        xref1                   LIKE           bsid-xref1,
        xref3                   LIKE           bsid-xref3,
      END OF gty_rup.
    TYPES:
      BEGIN OF gty_rup_tiers,
        zztie                   LIKE           bseg-zztie,
        zzdat                   LIKE           bseg-zzdat,
        zzsea                   LIKE           bseg-zzsea,
      END OF gty_rup_tiers.
    TYPES:
      BEGIN OF gty_data_solde,
        wrbtr                   LIKE           bsid-wrbtr,
        shkzg                   LIKE           bsid-shkzg,
        belnr                   LIKE           bsid-belnr,
        hkont                   LIKE           bsid-hkont,
        buzei                   LIKE           bsid-buzei,
        bldat                   LIKE           bsid-bldat,
        gjahr                   LIKE           bsid-gjahr,
        blart                   LIKE           bsid-blart,
      END OF gty_data_solde,
    DATA:
      BEGIN OF lt_prps            OCCURS         0,
        key_client              TYPE           gty_rup,
        key_tiers               TYPE           gty_rup_tiers,
        data                    TYPE           gty_data_solde,
      END OF lt_prps.
    Does someone know function working with only the table/structure name as parameter ?
    Thanks
    Herve

    here's what I did....I opened the xfile2.txt with Excel 2007 and stepped through the import wizard as a tab-delimited file.  You're quite right it seems about the XLS function module.... I couldn't get a file downloaded that I could open with that thing.  So I dropped it and just did the following:
    TYPES: BEGIN OF gtypx.
    INCLUDE TYPE gty_rup.
    INCLUDE TYPE gty_rup_tiers.
    INCLUDE TYPE gty_data_solde.
    TYPES END OF gtypx.
    DATA: lt_prps TYPE STANDARD TABLE OF gtypx WITH HEADER LINE.
    START-OF-SELECTION.
      lt_prps-kunnr = '1234'.
      APPEND lt_prps.
      LOOP AT lt_prps.
        WRITE:/ lt_prps-kunnr.
      ENDLOOP.
      DATA:  lv_filen type string value 'c:\xfile2.txt'.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
    *     BIN_FILESIZE                    =
          filename                        = lv_filen
         FILETYPE                        = 'ASC'
    *     APPEND                          = ' '
         WRITE_FIELD_SEPARATOR           = 'X'
    *     HEADER                          = '00'
    *     TRUNC_TRAILING_BLANKS           = ' '
    *     WRITE_LF                        = 'X'
    *     COL_SELECT                      = ' '
    *     COL_SELECT_MASK                 = ' '
    *     DAT_MODE                        = ' '
    *     CONFIRM_OVERWRITE               = ' '
    *     NO_AUTH_CHECK                   = ' '
    *     CODEPAGE                        = ' '
    *     IGNORE_CERR                     = ABAP_TRUE
    *     REPLACEMENT                     = '#'
    *     WRITE_BOM                       = ' '
    *     TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *     WK1_N_FORMAT                    = ' '
    *     WK1_N_SIZE                      = ' '
    *     WK1_T_FORMAT                    = ' '
    *     WK1_T_SIZE                      = ' '
    *     WRITE_LF_AFTER_LAST_LINE        = ABAP_TRUE
    *     SHOW_TRANSFER_STATUS            = ABAP_TRUE
    *   IMPORTING
    *     FILELENGTH                      =
        tables
          data_tab                        =  lt_prps
    *     FIELDNAMES                      =
    *   EXCEPTIONS
    *     FILE_WRITE_ERROR                = 1
    *     NO_BATCH                        = 2
    *     GUI_REFUSE_FILETRANSFER         = 3
    *     INVALID_TYPE                    = 4
    *     NO_AUTHORITY                    = 5
    *     UNKNOWN_ERROR                   = 6
    *     HEADER_NOT_ALLOWED              = 7
    *     SEPARATOR_NOT_ALLOWED           = 8
    *     FILESIZE_NOT_ALLOWED            = 9
    *     HEADER_TOO_LONG                 = 10
    *     DP_ERROR_CREATE                 = 11
    *     DP_ERROR_SEND                   = 12
    *     DP_ERROR_WRITE                  = 13
    *     UNKNOWN_DP_ERROR                = 14
    *     ACCESS_DENIED                   = 15
    *     DP_OUT_OF_MEMORY                = 16
    *     DISK_FULL                       = 17
    *     DP_TIMEOUT                      = 18
    *     FILE_NOT_FOUND                  = 19
    *     DATAPROVIDER_EXCEPTION          = 20
    *     CONTROL_FLUSH_ERROR             = 21
    *     OTHERS                          = 22
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

  • Time machine osx 10.6.8 problem slow backupd CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary. mdworker32 kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.

    Hello Guys I have a problem that I can not get to the bottom.
    Time Machine has suddenly stopped working it really slow to make up. Copy a few kb at a time and long hours it takes to close the back. (up to a few tens of megs, 10, 20 Mb).
    I made ​​the following list of tests that will follow along with the log file.
    First of all I made ​​a copy as root with Carbon Copy Cloner disk of the iMac. (So that they can go back in case of disaster)
    Following the guides Pondini (pondini.org) I did the following steps:
    1) Changed the internfaccia FW800 to USB hard drive (does not change anything, still slow)
    2) Changed to another external HD for time machine with FW800 and USB (nothing changes still slow)
    3) Recreated the full backup with Time Machine on either drive (still slow)
    4) Reinstalled the 10.6.8 Combo Pack (still slow)
    5) Re spootlight indexed with the disk (still slow)
    6) At this point, in desperation I reinstalled on the internal drive of my iMac 10.6.8 creating a new user, User Migration Assistant from my hd clone with Carbon Copy Cloner. Recreated the full backup with Time Machine.
    The first full backup is fast, but slow incremental backups are back (as to 'start a few kb at a time).
    I compared the log files with those of my other machine with same configuration and I found these errors:
    backupdir [19376]: CFPropertyListCreateFromXMLData (): Old-style plist parser: missing semicolon in dictionary.
    mdworker32 [20950]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint () to catch errors logged as They Are.
    You know help me? I saw that this error is from 10.5 to 10.7, but no one has found a real solution to the issue.
    I never installed antivirus software and tried with different external drives COPN capacity equal to or greater than the external drive. Only at the end I tried to divide the external drive to back up into two parts by a 1.5 TB and 500 GB but with the same mistakes that I have described.
    thanks
    Stefano
    Ciao  Ragazzi ho un problema a cui non riesco a venire a capo.
    improvvisamente time machine ha smesso di funzionare va veramente lento a fare backup. Copia pochi kb alla volta e impiega tanto tempo ore per chiudere il backup. (backup di poche decine di mega, 10, 20 Mb).
    Ho effettuato le seguenti prove che vi elenco di seguito insieme al file log.
    Prima di tutto ho fatto una copia  come utente root con Carbon Copy cloner del disco del imac.(in maniera tale di poter tornare indietro in caso di disastro)
    Seguendo le guide di Pondini (pondini.org) ho effettuato i seguenti passaggi:
    1) Cambiato internfaccia del disco rigido da FW800 a USB (non cambia nulla, sempre lento)
    2) Cambiato hd esterno con un altro per time machine con FW800 e USB (non cambia nulla sempre lento)
    3) Ricreato il full Backup con time machine su entrambe i dischi (sempre lento)
    4) Reinstallato il Combo pack 10.6.8 (sempre lento)
    5) Re indicizzato con spootlight il disco (sempre lento)
    6) A questo punto preso dalla disperazione ho reinstallato sul disco interno del mio imac il 10.6.8 creando un nuovo utente, Assistente migrazione utente dal mio hd clonato con Carbon copy cloner. Ricreato il backup completo con time machine.
    Il primo full backup è veloce, ma i backup incrementali sono tornati lentissimi (come all' inizio pochi kb alla volta).
    Ho confrontato il file log con quelli di un mio altro mac con la stessa configurazione ed ho trovato questi errori:
    backupd[19376]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    mdworker32[20950]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Sapete darmi aiuto? Ho visto che questo errore è presente dal 10.5 al 10.7 ma nessuno ha trovato una vera soluzione alla questione.
    Non ho mai installato software antivirus ed ho provato con diversi dischi esterni copn capacità uguale o superiore al disco esterno. Solo alla fine ho provato a dividere il disco esterno del backup in due parti una da 1,5TB e una da 500 Gb ma con i medesimi errori che vi ho descritto.
    grazie
    Stefano
    File LOG:
    Jan  9 00:31:37 ihomez newsyslog[19803]: logfile turned over
    Jan  9 00:33:26 ihomez com.apple.backupd[19376]: Copied 534.0 GB of 1020.2 GB, 649387 of 1786353 items
    Jan  9 01:33:27 ihomez com.apple.backupd[19376]: Copied 728.3 GB of 1020.2 GB, 805293 of 1786353 items
    Jan  9 02:33:27 ihomez com.apple.backupd[19376]: Copied 938.5 GB of 1020.2 GB, 807979 of 1786353 items
    Jan  9 02:55:58 ihomez com.apple.backupd[19376]: Copied 808871 files (1012.7 GB) from volume i5 2TB.
    Jan  9 03:08:03 ihomez com.apple.backupd[19376]: No pre-backup thinning needed: 100.0 MB requested (including padding), 383.44 GB available
    Jan  9 03:10:13 ihomez backupd[19376]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan  9 03:27:54 ihomez [0x0-0x12012].com.getdropbox.dropbox[0]: Sampling process 12446 for 5 seconds with 10 milliseconds of run time between samples
    Jan  9 03:27:59 ihomez [0x0-0x12012].com.getdropbox.dropbox[0]: Sampling completed, processing symbols...
    Jan  9 03:28:00 ihomez mds[19366]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Jan  9 03:28:00 ihomez [0x0-0x12012].com.getdropbox.dropbox[0]: Sample analysis of process 12446 written to file /Users/home/.dropbox/s4f0a50aa
    Jan  9 03:33:30 ihomez com.apple.backupd[19376]: Copied 717781 files (13.0 MB) from volume i5 2TB.
    Jan  9 04:06:38 ihomez com.apple.backupd[19376]: Starting post-backup thinning
    Jan  9 04:06:38 ihomez com.apple.backupd[19376]: No post-back up thinning needed: no expired backups exist
    Jan  9 04:06:39 ihomez com.apple.backupd[19376]: Backup completed successfully.
    Jan  9 04:33:45 ihomez com.apple.backupd[20287]: Starting standard backup
    Jan  9 04:33:46 ihomez com.apple.backupd[20287]: Backing up to: /Volumes/Time Machime LA/Backups.backupdb
    Jan  9 04:33:46 ihomez mds[19366]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Jan  9 04:40:18 ihomez com.apple.backupd[20287]: No pre-backup thinning needed: 100.0 MB requested (including padding), 382.47 GB available
    Jan  9 04:59:25 ihomez backupd[20287]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan  9 05:31:48 ihomez com.apple.backupd[20287]: Copied 720482 files (13.0 MB) from volume i5 2TB.
    Jan  9 05:45:22 ihomez com.apple.backupd[20287]: No pre-backup thinning needed: 100.0 MB requested (including padding), 381.98 GB available
    Jan  9 06:05:14 ihomez backupd[20287]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan  9 06:32:57 ihomez com.apple.backupd[20287]: Copied 12.7 MB of 12.7 MB, 538084 of 538084 items
    Jan  9 06:36:52 ihomez com.apple.backupd[20287]: Copied 717781 files (12.7 MB) from volume i5 2TB.
    Jan  9 08:12:05 ihomez mds[19366]: (Normal) DiskStore: Creating index for /
    Jan  9 08:12:30 ihomez System Preferences[20910]: Preference bundle "/Users/home/Library/PreferencePanes/Archives.prefPane" is misplaced, ignoring...
    Jan  9 08:12:32 ihomez System Preferences[20910]: Error loading /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio:  dlopen(/Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHD Audio, 262): no suitable image found.  Did find:\n    /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio: no matching architecture in universal wrapper
    Jan  9 08:12:32 ihomez System Preferences[20910]: Cannot find function pointer NewPlugIn for factory C5A4CE5B-0BB8-11D8-9D75-0003939615B6 in CFBundle/CFPlugIn 0x20056cb80 </Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin> (bundle, not loaded)
    Jan  9 08:23:40 ihomez mdworker[20945]: Error, could not create MachMessagePort for com.apple.AddressBook.abd
    Jan  9 08:23:46 ihomez mdworker32[20948]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan  9 08:23:52 ihomez mdworker32[20950]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan  9 08:30:47 ihomez com.apple.Finder[225]: Failed to send message to backup server: error = -2
    Jan  9 08:30:41 ihomez com.apple.backupd[20287]: Starting post-backup thinning
    Jan  9 08:30:49 ihomez com.apple.backupd[20287]: No post-back up thinning needed: no expired backups exist
    Jan  9 08:30:51 ihomez com.apple.launchd[1] (0x1001017c0.mach_init.mdworker[20949]): Exited: Killed
    Jan  9 08:35:39 ihomez mdworker[20959]: (Normal) Import: Spotlight giving up on importing file /Users/home/Desktop/testdisk-6.11.3/recupero/recup_dir.34/f2515784.abcdp after 240.256 seconds, 239.841 seconds of which was spent in the Spotlight importer plugin.
    Jan  9 08:35:39 ihomez com.apple.launchd[1] (0x1001017c0.mach_init.mdworker[20959]): Exited with exit code: 75
    Jan  9 08:36:55 ihomez com.apple.backupd[20287]: Backup completed successfully.
    Jan  9 08:37:17 ihomez mdworker32[20974]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan  9 08:39:36 ihomez mdworker[20969]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan  9 08:41:09 ihomez mdworker[20969]: Corrupt JPEG data: 10053 extraneous bytes before marker 0xed
    Jan  9 08:41:37 ihomez /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker[20969]: zip importer encountered an error (3) scanning "/Users/home/Downloads/Griffin Seconda serie.zip".
    Jan  9 08:45:44 ihomez /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker[20969]: FontImporter: Validation failed - "/Users/home/Library/Fonts Disabled/MT Extra".
    Jan  9 08:45:44 ihomez /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker[20969]: FontImporter: Validation Result - "<CFArray 0x10204f310 [0x7fff70eaeee0]>{type = mutable-small, count = 5, values = (\n    0 : <CFString 0x102762af8 [0x7fff70eaeee0]>{contents = "kATSFontTestSeverityInformation"}\n    1 : <CFString 0x102762b18 [0x7fff70eaeee0]>{contents = "kATSFontTestSeverityTechnicalError"}\n    2 : <CFString 0x102762b58 [0x7fff70eaeee0]>{contents = "kATSFontTestSeverityMajorError"}\n    3 : <CFString 0x102762b78 [0x7fff70eaeee0]>{contents = "kATSFontTestSeverityFatalError"}\n    4 : <CFString 0x102762b38 [0x7fff70eaeee0]>{contents = "kATSFontTestSeverityMinorError"}\n)}".
    Jan  9 08:45:55 ihomez mdworker[20969]: Error, could not create MachMessagePort for com.apple.AddressBook.abd
    Jan  9 08:46:09 ihomez mdworker[20969]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan  9 09:03:32 ihomez mdworker[21011]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan  9 09:04:02: --- last message repeated 5 times ---
    Jan  9 09:05:15 ihomez mdworker[20969]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan  9 09:05:43 ihomez mdworker32[21036]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan  9 09:05:44 ihomez mdworker[20969]: iCal.mdimporter: could not parse ICS file: /Applications/Microsoft Office 2008/Office/EntourageCore.framework/Versions/12/Resources/it.lproj/Timezones.ic s
    Jan  9 09:13:28 ihomez mdworker32[21053]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan  9 09:16:17 ihomez mdworker32[21074]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan  9 09:33:45 ihomez com.apple.backupd[21102]: Starting standard backup
    Jan  9 09:33:46 ihomez com.apple.backupd[21102]: Backing up to: /Volumes/Time Machime LA/Backups.backupdb
    Jan  9 09:40:46 ihomez com.apple.backupd[21102]: No pre-backup thinning needed: 100.0 MB requested (including padding), 381.68 GB available
    Jan  9 09:57:57 ihomez backupd[21102]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan  9 10:29:58 ihomez com.apple.backupd[21102]: Copied 718890 files (12.9 MB) from volume i5 2TB.
    Jan  9 10:43:35 ihomez com.apple.backupd[21102]: No pre-backup thinning needed: 100.0 MB requested (including padding), 381.48 GB available
    Jan  9 11:02:16 ihomez backupd[21102]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan  9 11:31:08 ihomez com.apple.backupd[21102]: Copied 12.7 MB of 12.7 MB, 642967 of 642967 items
    Jan  9 11:33:07 ihomez com.apple.backupd[21102]: Copied 716189 files (12.7 MB) from volume i5 2TB.
    Jan  9 13:26:26 ihomez com.apple.backupd[21102]: Backup deletion was canceled by user
    Jan  9 13:26:26 ihomez com.apple.backupd[21102]: Starting post-backup thinning
    Jan  9 13:26:27 ihomez com.apple.backupd[21102]: Backup completed successfully.

    Thanks for the quick response.
    I followed the steps you listed and also remove the files that were creating problems spootlight, including the audio plugin and the panel preferences file.
    Then I stopped by the timemachine reindexed spootlight 'option in the preferences panel spootight privacy. After I restarted my iMac and formatted the external drive again, Time Machine and restarting a full backup. This morning after a quick full backup and disk indexing completed incremental backups are always slow. Proceeds with a few kb at a time. I resend you the log files and screen capture. My iMac is constantly backed up.
    Thank you for your time.
    Stefano
    File log:
    Jan 10 00:30:05 ihomez newsyslog[757]: logfile turned over
    Jan 10 00:43:30 ihomez [0x0-0xe00e].com.getdropbox.dropbox[278]: Sampling process 278 for 5 seconds with 10 milliseconds of run time between samples
    Jan 10 00:43:35 ihomez [0x0-0xe00e].com.getdropbox.dropbox[278]: Sampling completed, processing symbols...
    Jan 10 00:43:35 ihomez [0x0-0xe00e].com.getdropbox.dropbox[278]: Sample analysis of process 278 written to file /Users/home/.dropbox/s4f0b7ba2
    Jan 10 00:44:08 ihomez mdworker32[805]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan 10 01:00:51 ihomez mdworker[579]: -[ABAddressBook sharedAddressBook] Can't ABACQUIRE_FILE_LOCK /SourceCache/AddressBook/AddressBook-883/Framework/AddressBook/ABAddressBook.m: 3314
    Jan 10 01:04:41 ihomez osascript[897]: Initializer-based scripting additions have been deprecated. Please update this addition: "/Library/ScriptingAdditions/QXPScriptingAdditions.osax"
    Jan 10 01:07:56 ihomez mdworker32[930]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan 10 01:08:01 ihomez mdworker32[931]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan 10 01:09:44 ihomez com.apple.backupd[479]: Copied 94.7 GB of 990.4 GB, 506176 of 1771170 items
    Jan 10 01:13:34 ihomez [0x0-0xe00e].com.getdropbox.dropbox[278]: Sampling process 278 for 5 seconds with 10 milliseconds of run time between samples
    Jan 10 01:13:39 ihomez [0x0-0xe00e].com.getdropbox.dropbox[278]: Sampling completed, processing symbols...
    Jan 10 01:13:39 ihomez [0x0-0xe00e].com.getdropbox.dropbox[278]: Sample analysis of process 278 written to file /Users/home/.dropbox/s4f0b82ad
    Jan 10 01:14:19 ihomez mdworker32[946]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan 10 01:20:02 ihomez mdworker32[969]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan 10 02:00:16 ihomez mdworker32[1025]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan 10 02:09:44 ihomez com.apple.backupd[479]: Copied 316.2 GB of 990.4 GB, 530801 of 1771170 items
    Jan 10 02:10:51 ihomez mdworker32[1052]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan 10 02:11:00 ihomez mdworker[937]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan 10 02:15:01 ihomez mdworker[937]: Corrupt JPEG data: 10053 extraneous bytes before marker 0xed
    Jan 10 02:15:37 ihomez mdworker32[1063]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan 10 02:30:55 ihomez mdworker32[1098]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan 10 02:38:32 ihomez /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker[937]: FontImporter: Validation failed - "/Users/home/Library/Fonts Disabled/MT Extra".
    Jan 10 02:38:32 ihomez /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker[937]: FontImporter: Validation Result - "<CFArray 0x10256a570 [0x7fff70e20ee0]>{type = mutable-small, count = 5, values = (\n    0 : <CFString 0x104eb5af8 [0x7fff70e20ee0]>{contents = "kATSFontTestSeverityInformation"}\n    1 : <CFString 0x104eb5b18 [0x7fff70e20ee0]>{contents = "kATSFontTestSeverityTechnicalError"}\n    2 : <CFString 0x104eb5b58 [0x7fff70e20ee0]>{contents = "kATSFontTestSeverityMajorError"}\n    3 : <CFString 0x104eb5b78 [0x7fff70e20ee0]>{contents = "kATSFontTestSeverityFatalError"}\n    4 : <CFString 0x104eb5b38 [0x7fff70e20ee0]>{contents = "kATSFontTestSeverityMinorError"}\n)}".
    Jan 10 02:38:55 ihomez mdworker[937]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan 10 02:38:56 ihomez mdworker32[1115]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jan 10 03:09:44 ihomez com.apple.backupd[479]: Copied 517.9 GB of 990.4 GB, 651137 of 1771170 items
    Jan 10 04:09:45 ihomez com.apple.backupd[479]: Copied 723.7 GB of 990.4 GB, 787449 of 1771170 items
    Jan 10 05:09:46 ihomez com.apple.backupd[479]: Copied 947.2 GB of 990.4 GB, 789860 of 1771170 items
    Jan 10 05:20:55 ihomez com.apple.backupd[479]: Copied 790597 files (982.2 GB) from volume i5 2TB.
    Jan 10 05:32:32 ihomez com.apple.backupd[479]: No pre-backup thinning needed: 1.60 GB requested (including padding), 873.52 GB available
    Jan 10 05:33:14 ihomez mdworker[1452]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan 10 05:35:07: --- last message repeated 5 times ---
    Jan 10 05:35:36 ihomez backupd[479]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan 10 05:35:45 ihomez mdworker[1475]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Jan 10 05:59:42 ihomez com.apple.backupd[479]: Copied 699486 files (1.9 MB) from volume i5 2TB.
    Jan 10 06:34:52 ihomez com.apple.backupd[479]: Starting post-backup thinning
    Jan 10 06:34:52 ihomez com.apple.backupd[479]: No post-back up thinning needed: no expired backups exist
    Jan 10 06:34:52 ihomez com.apple.backupd[479]: Backup completed successfully.
    Jan 10 07:10:09 ihomez com.apple.backupd[1752]: Starting standard backup
    Jan 10 07:10:09 ihomez com.apple.backupd[1752]: Backing up to: /Volumes/TimeMachine LA/Backups.backupdb

  • Someone look at my console file? I'm having trouble loosing connections

    both before and after a clean install on SL....sometimes activity monitor hangs when I'm trying find what's going on. I've used memtest with nothing wrong in ram with one pass. here's my log
    1/12/10 12:25:33 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/12/10 12:25:33 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/12/10 1:12:28 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/12/10 1:12:28 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/12/10 3:34:41 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/12/10 3:34:41 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/12/10 5:27:51 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/12/10 5:27:51 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/12/10 5:27:52 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/12/10 5:27:52 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/12/10 7:14:37 PM com.apple.launchd[1] (com.apple.newsyslog) Throttling respawn: Will start in 9 seconds
    1/12/10 7:14:47 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/12/10 7:14:47 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/12/10 7:29:02 PM Colloquy[351] * WARNING: The function NSRunCriticalAlertPanelRelativeToWindow is deprecated. It will be removed in a future release and should no longer be used.
    1/12/10 7:29:02 PM Colloquy[351] * WARNING: Method runModalForWindow:relativeToWindow: in class NSApplication is deprecated. It will be removed in a future release and should no longer be used.
    1/12/10 7:29:02 PM Colloquy[351] * WARNING: Method beginModalSessionForWindow:relativeToWindow: in class NSApplication is deprecated. It will be removed in a future release and should no longer be used.
    1/12/10 7:29:47 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/12/10 7:29:47 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/12/10 7:35:57 PM [0x0-0x75075].org.mozilla.firefox[1106] Debugger() was called!
    1/12/10 7:37:11 PM Colloquy[351] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/12/10 7:37:11 PM Colloquy[351] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/12/10 7:37:11 PM Colloquy[351] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/12/10 7:37:11 PM Colloquy[351] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/12/10 7:37:11 PM Colloquy[351] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/12/10 7:37:11 PM Colloquy[351] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/12/10 7:37:11 PM Colloquy[351] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/13/10 5:23:58 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/13/10 5:23:58 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/13/10 5:23:59 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/13/10 5:23:59 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/13/10 7:15:40 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/13/10 7:15:40 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/13/10 7:39:58 PM [0x0-0x83083].com.getdropbox.dropbox[1244] Wed Jan 13 19:39:58 Galen-Gusdorfs-MacBook.local Dropbox[1244] <Error>: kCGErrorIllegalArgument: CGSGetWindowBounds: NULL window
    1/13/10 7:39:58 PM [0x0-0x83083].com.getdropbox.dropbox[1244] Wed Jan 13 19:39:58 Galen-Gusdorfs-MacBook.local Dropbox[1244] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/13/10 7:40:20 PM [0x0-0x83083].com.getdropbox.dropbox[1244] Exception exceptions.AttributeError: "'DirectoryWatch' o
    1/13/10 7:40:20 PM [0x0-0x83083].com.getdropbox.dropbox[1244] bject has no attribute 'closed'" in <bound method DirectoryWatch._del_ of <arch.mac.daemon_reader.DirectoryWatch object at 0x13e104d8>> ignored
    1/13/10 7:40:20 PM [0x0-0x83083].com.getdropbox.dropbox[1244] Exception exceptions.AttributeError: "'DirectoryWatch' object has n
    1/13/10 7:40:20 PM [0x0-0x83083].com.getdropbox.dropbox[1244] o attribute 'closed'" in <bound method DirectoryWatch._del_ of <arch.mac.daemon_reader.DirectoryWatch object at 0x14159af8>> ignored
    1/13/10 7:40:20 PM [0x0-0x83083].com.getdropbox.dropbox[1244] Exception exceptions.AttributeError: "'DirectoryWatc
    1/13/10 7:40:20 PM [0x0-0x83083].com.getdropbox.dropbox[1244] h' object has no attribute 'closed'" in <bound method DirectoryWatch._del_ of <arch.mac.daemon_reader.DirectoryWatch object at 0x13e104d8>> ignored
    1/13/10 7:40:20 PM Dropbox[1244] * __NSAutoreleaseNoPool(): Object 0x1808a750 of class OC_PythonUnicode autoreleased with no pool in place - just leaking
    1/13/10 7:40:20 PM Dropbox[1244] * __NSAutoreleaseNoPool(): Object 0x1808efb0 of class NSPathStore2 autoreleased with no pool in place - just leaking
    1/13/10 7:40:20 PM Dropbox[1244] * __NSAutoreleaseNoPool(): Object 0x1808d950 of class NSBundle autoreleased with no pool in place - just leaking
    1/13/10 7:40:20 PM Dropbox[1244] * __NSAutoreleaseNoPool(): Object 0x1805b6e0 of class NSCFArray autoreleased with no pool in place - just leaking
    1/13/10 7:40:20 PM Dropbox[1244] * __NSAutoreleaseNoPool(): Object 0x18092150 of class NSPathStore2 autoreleased with no pool in place - just leaking
    1/13/10 9:45:37 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/13/10 9:45:37 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/13/10 9:45:37 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/13/10 9:45:37 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/13/10 9:52:37 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead: read(5) error 0
    1/13/10 9:52:37 PM [0x0-0x59059].com.adiumX.adiumX[788] SocketRead err = -9802
    1/13/10 10:03:25 PM Mail[1295] Error writing to /Users/thedude/Library/Mail/Mailboxes/.mboxCache.plist: Error Domain=NSCocoaErrorDomain Code=4 UserInfo=0x698800 "The folder “Mailboxes” doesn’t exist." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=2 "The operation couldn’t be completed. No such file or directory")
    1/13/10 10:03:25 PM Mail[1295] Error writing to /Users/thedude/Library/Mail/RSS/.mboxCache.plist: Error Domain=NSCocoaErrorDomain Code=4 UserInfo=0x4a4840 "The folder “RSS” doesn’t exist." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=2 "The operation couldn’t be completed. No such file or directory")
    1/13/10 10:04:30 PM Mail[1299] Error writing to /Users/thedude/Library/Mail/RSS/.mboxCache.plist: Error Domain=NSCocoaErrorDomain Code=4 UserInfo=0x18c7870 "The folder “RSS” doesn’t exist." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=2 "The operation couldn’t be completed. No such file or directory")
    1/13/10 10:04:30 PM Mail[1299] Error writing to /Users/thedude/Library/Mail/Mailboxes/.mboxCache.plist: Error Domain=NSCocoaErrorDomain Code=4 UserInfo=0x18c7a50 "The file “Mailboxes” doesn’t exist." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=2 "The operation couldn’t be completed. No such file or directory")
    1/13/10 10:11:17 PM com.apple.launchd.peruser.501[182] ([0x0-0x83083].com.getdropbox.dropbox[1244]) Tried to setup shared memory more than once
    1/13/10 10:40:05 PM com.apple.quicklook[1364] Wed Jan 13 22:40:05 Galen-Gusdorfs-MacBook.local quicklookd[1364] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/13/10 10:41:06 PM com.apple.quicklook[1380] Wed Jan 13 22:41:06 Galen-Gusdorfs-MacBook.local quicklookd[1380] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/13/10 11:04:37 PM [0x0-0xae0ae].com.apple.iTunes[1389] MobileDevice: AMDeviceNotificationSubscribe: USBMuxListenerCreate: Operation timed out
    1/13/10 11:06:26 PM com.apple.launchd.peruser.501[182] ([0x0-0x64064].com.apple.TextEdit[946]) Exited: Killed
    1/13/10 11:06:26 PM com.apple.launchd[1] (com.apple.usbmuxd[20]) Exited abnormally: Broken pipe
    1/13/10 11:06:26 PM com.apple.launchd.peruser.501[182] ([0x0-0xab0ab].com.apple.iTunesHelper[1376]) Exited: Killed
    1/13/10 11:06:28 PM com.apple.WindowServer[1396] Wed Jan 13 23:06:28 Galen-Gusdorfs-MacBook.local WindowServer[1396] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/13/10 11:12:41 PM [0x0-0xb20b2].com.apple.SoftwareUpdate[1405] /: no supported helper partitions to update.
    1/14/10 7:10:04 PM com.apple.launchd[1] * launchd[1] has started up. *
    1/14/10 7:10:54 PM com.apple.launchd.peruser.501[79] (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    1/14/10 7:10:56 PM fontd[92] Database content version mismatch (stored(10) != expected(11))
    1/14/10 7:10:58 PM SoftwareUpdateCheck[90] Checking for updates
    1/14/10 7:11:02 PM com.apple.launchd.peruser.501[79] (com.apple.Kerberos.renew.plist[101]) Exited with exit code: 1
    1/14/10 7:11:05 PM com.apple.WindowServer[59] Thu Jan 14 19:11:05 Galen-Gusdorfs-MacBook.local WindowServer[59] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/14/10 7:11:10 PM com.apple.launchd.peruser.501[79] ([email protected][104]) Exited with exit code: 1
    1/14/10 7:11:25 PM Colloquy[118] Error loading /Applications/Colloquy.app/Contents/PlugIns/F-Script Support.plugin/Contents/MacOS/F-Script Support: dlopen(/Applications/Colloquy.app/Contents/PlugIns/F-Script Support.plugin/Contents/MacOS/F-Script Support, 265): no suitable image found. Did find:
    /Applications/Colloquy.app/Contents/PlugIns/F-Script Support.plugin/Contents/MacOS/F-Script Support: mach-o, but wrong architecture
    1/14/10 7:11:26 PM Colloquy[118] Instantiating NSNavExpansionButtonCell (superclass of the also dead NSDisclosureButtonCell), which is a private class not used by the AppKit and will be removed. Use an NSButton with NSRoundedDisclosureBezelStyle instead. You can drag one out in IB. Break on _NSInstantiatingDeadDisclosureButton to debug. This will be logged only once. This may break in the future.
    1/14/10 7:11:46 PM Colloquy[118] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/14/10 7:11:46 PM Colloquy[118] * WARNING: Method selectRow:byExtendingSelection: in class JVSideOutlineView is deprecated. It will be removed in a future release and should no longer be used.
    1/14/10 7:11:46 PM Colloquy[118] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/14/10 7:11:53 PM SoftwareUpdateCheck[90] Downloading "Remote Desktop Client Update"
    1/14/10 7:11:59 PM [0x0-0x6006].SoftwareUpdateCheck[90] x signature
    1/14/10 7:11:59 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg.tar
    1/14/10 7:11:59 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Archive.bom
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Archive.pax.gz
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Info.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/._RemoteDesktopClient.dist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/RemoteDesktopClient.dist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/background.tif
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/BundleVersions.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/cleanup_list
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/InstallationCheck.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/deleteomatic
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/InstallationCheck.string s
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/InstallationCheck.stri ngs
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/InstallationCheck.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/InstallationCheck.strin gs
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/InstallationCheck.strin gs
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Hints.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/InstallationCheck
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/InstallationCheck.stri ngs
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/InstallationCheck.str ings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd/icons.pn g
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/kickstart
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/InstallationCheck.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/makeuser
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/InstallationCheck.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/package_version
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/PlistBuddy
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflight
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/cleanStartup.pl
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/deleteObsoleteFil es
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/learnFiles
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/postflightKicksta rt
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/setupLaunchFiles
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/setupMenuExtras
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/stampBuildNumInPl istStrings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflight_kickstart
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflightkickstartentries
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/postflightmakeuserentries
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/preflight
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/cleanAndPreflightK ickstart
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/maybeNukeVNCServer
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/moveAsideFirewallD efaultPrefsTiger
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/preflight_kickstart
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/preflightkickstartentries
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/InstallationCheck.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/RemoteDesktopClient.bom
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/RemoteDesktopClient.pax.gz
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/RemoteDesktopClient.sizes
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/InstallationCheck.stri ngs
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/InstallationCheck.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/InstallationCheck.string s
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Description.plist
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/InstallationCheck.string s
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/License.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Localizable.strings
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/PantherSU.xml
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/ReadMe.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/SUDescription.html
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd/icons.png
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd/TXT.rtf
    1/14/10 7:12:00 PM [0x0-0x6006].SoftwareUpdateCheck[90] x RemoteDesktopClient.pkg/Contents/version.plist
    1/14/10 7:12:01 PM SoftwareUpdateCheck[90] Auto-download of "Remote Desktop Client Update" SUCCESSFUL.
    1/14/10 7:12:01 PM SoftwareUpdateCheck[90] Downloading "AirPort Client Update 2009-002"
    1/14/10 7:12:07 PM com.apple.coreservicesd[55] ThrottleProcessIO: throttling disk i/o
    1/14/10 7:12:07 PM com.apple.coreservicesd[55] ThrottleProcessIO: throttling disk i/o
    1/14/10 7:12:22 PM SoftwareUpdateCheck[90] Auto-download of "AirPort Client Update 2009-002" SUCCESSFUL.
    1/14/10 7:12:22 PM SoftwareUpdateCheck[90] Downloading "Java for Mac OS X 10.6 Update 1"
    1/14/10 7:13:26 PM SoftwareUpdateCheck[90] Auto-download of "Java for Mac OS X 10.6 Update 1" SUCCESSFUL.
    1/14/10 7:13:26 PM SoftwareUpdateCheck[90] Downloading "Bonjour Update 2010-001"
    1/14/10 7:13:29 PM SoftwareUpdateCheck[90] Auto-download of "Bonjour Update 2010-001" SUCCESSFUL.
    1/14/10 7:13:29 PM SoftwareUpdateCheck[90] Downloading "Safari"
    1/14/10 7:14:50 PM SoftwareUpdateCheck[90] Auto-download of "Safari" SUCCESSFUL.
    1/14/10 7:14:50 PM SoftwareUpdateCheck[90] Launching app
    1/14/10 7:15:20 PM [0x0-0x11011].org.mozilla.firefox[130] Debugger() was called!
    1/14/10 7:15:35 PM com.apple.launchd.peruser.501[79] ([0x0-0x6006].SoftwareUpdateCheck[90]) Exited with exit code: 102
    1/14/10 7:20:42 PM Colloquy[118] -[NSConcreteAttributedString initWithString:] called with nil string argument. This has undefined behavior and will raise an exception in post-Leopard linked apps. This warning is displayed only once.
    1/14/10 7:20:42 PM com.apple.launchd[1] (com.apple.suhelperd[93]) Exited with exit code: 2
    1/14/10 7:20:42 PM com.apple.launchd.peruser.501[79] ([0x0-0x15015].com.apple.SoftwareUpdate[143]) Exited: Killed
    1/14/10 7:20:42 PM com.apple.launchd.peruser.501[79] ([0x0-0xb00b].com.apple.iTunesHelper[110]) Exited: Killed
    1/14/10 7:20:44 PM com.apple.WindowServer[151] Thu Jan 14 19:20:44 Galen-Gusdorfs-MacBook.local WindowServer[151] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/14/10 7:21:15 PM com.apple.UserEventAgent-LoginWindow[154] dontAutoLoad = EMPTY!
    1/14/10 7:21:52 PM com.apple.UserEventAgent-LoginWindow[154] dontAutoLoad =
    1/14/10 7:21:52 PM com.apple.UserEventAgent-LoginWindow[154] EMPTY!
    1/14/10 7:22:47 PM [0x0-0x1a01a].com.apple.SoftwareUpdate[160] JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    1/14/10 7:22:54 PM [0x0-0x1a01a].com.apple.SoftwareUpdate[160] /: no supported helper partitions to update.
    1/14/10 7:23:48 PM com.apple.launchd[1] * launchd[1] has started up. *
    1/14/10 7:24:29 PM com.apple.launchd.peruser.501[77] (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    1/14/10 7:24:33 PM com.apple.launchd.peruser.501[77] (com.apple.Kerberos.renew.plist[97]) Exited with exit code: 1
    1/14/10 7:24:34 PM com.apple.launchd.peruser.501[77] ([email protected][100]) Exited with exit code: 1
    1/14/10 7:24:59 PM com.apple.WindowServer[56] Thu Jan 14 19:24:59 Galen-Gusdorfs-MacBook.local WindowServer[56] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/14/10 8:24:02 PM Colloquy[138] Error loading /Applications/Colloquy.app/Contents/PlugIns/F-Script Support.plugin/Contents/MacOS/F-Script Support: dlopen(/Applications/Colloquy.app/Contents/PlugIns/F-Script Support.plugin/Contents/MacOS/F-Script Support, 265): no suitable image found. Did find:
    /Applications/Colloquy.app/Contents/PlugIns/F-Script Support.plugin/Contents/MacOS/F-Script Support: mach-o, but wrong architecture
    1/14/10 8:24:02 PM Colloquy[138] Instantiating NSNavExpansionButtonCell (superclass of the also dead NSDisclosureButtonCell), which is a private class not used by the AppKit and will be removed. Use an NSButton with NSRoundedDisclosureBezelStyle instead. You can drag one out in IB. Break on _NSInstantiatingDeadDisclosureButton to debug. This will be logged only once. This may break in the future.
    1/14/10 8:24:20 PM Colloquy[138] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/14/10 8:24:20 PM Colloquy[138] * WARNING: Method selectRow:byExtendingSelection: in class JVSideOutlineView is deprecated. It will be removed in a future release and should no longer be used.
    1/14/10 8:24:20 PM Colloquy[138] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/14/10 8:24:21 PM Colloquy[138] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/14/10 8:24:21 PM Colloquy[138] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/14/10 8:27:45 PM [0x0-0x12012].org.mozilla.firefox[146] Debugger() was called!
    1/14/10 8:31:29 PM [0x0-0x12012].org.mozilla.firefox[146] ### MRJPlugin: getPluginBundle() here. ###
    1/14/10 8:31:29 PM [0x0-0x12012].org.mozilla.firefox[146] ### MRJPlugin: CFBundleGetBundleWithIdentifier() succeeded. ###
    1/14/10 8:31:29 PM [0x0-0x12012].org.mozilla.firefox[146] ### MRJPlugin: CFURLGetFSRef() succeeded. ###
    1/14/10 8:31:35 PM [0x0-0x12012].org.mozilla.firefox[146] Thu Jan 14 20:31:35 PST 2010 JEP creating applet potato.system.PotatoMultiApplet (http://www.thesmartass.info/play/genesis/21006/)
    1/14/10 8:57:45 PM Colloquy[138] -[NSConcreteAttributedString initWithString:] called with nil string argument. This has undefined behavior and will raise an exception in post-Leopard linked apps. This warning is displayed only once.
    1/14/10 9:56:42 PM Adium[194] * WARNING: Method drawsGrid in class AIAnimatingListOutlineView is deprecated. It will be removed in a future release and should no longer be used.
    1/14/10 9:56:48 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead: read(5) error 0
    1/14/10 9:56:48 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead err = -9802
    1/14/10 9:56:49 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead: read(5) error 0
    1/14/10 9:56:49 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead err = -9802
    1/14/10 10:12:19 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead: read(5) error 0
    1/14/10 10:12:19 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead err = -9802
    1/14/10 11:04:38 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead: read(5) error 0
    1/14/10 11:04:38 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead err = -9802
    1/15/10 4:58:18 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead: read(5) error 0
    1/15/10 4:58:18 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead err = -9802
    1/15/10 5:30:38 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead: read(5) error 0
    1/15/10 5:30:38 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead err = -9802
    1/15/10 5:30:41 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead: read(5) error 0
    1/15/10 5:30:41 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead err = -9802
    1/15/10 7:30:25 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead: read(5) error 0
    1/15/10 7:30:25 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead err = -9802
    1/15/10 7:40:26 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead: read(5) error 0
    1/15/10 7:40:26 PM [0x0-0x16016].com.adiumX.adiumX[194] SocketRead err = -9802
    1/15/10 7:42:43 PM com.apple.quicklook[388] Fri Jan 15 19:42:43 Galen-Gusdorfs-MacBook.local quicklookd[388] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:01 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:01 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 7:43:02 PM [0x0-0x23023].com.apple.iTunes[391] Fri Jan 15 19:43:02 Galen-Gusdorfs-MacBook.local iTunes[391] <Error>: doClip: empty path.
    1/15/10 8:04:41 PM com.apple.launchd[1] * launchd[1] has started up. *
    1/15/10 8:05:07 PM com.apple.launchd.peruser.501[74] (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    1/15/10 8:05:09 PM com.apple.launchd.peruser.501[74] (com.apple.Kerberos.renew.plist[94]) Exited with exit code: 1
    1/15/10 8:05:12 PM com.apple.launchd.peruser.501[74] ([email protected][97]) Exited with exit code: 1
    1/15/10 8:05:18 PM com.apple.WindowServer[53] Fri Jan 15 20:05:18 Galen-Gusdorfs-MacBook.local WindowServer[53] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/15/10 8:05:25 PM Colloquy[120] Error loading /Applications/Colloquy.app/Contents/PlugIns/F-Script Support.plugin/Contents/MacOS/F-Script Support: dlopen(/Applications/Colloquy.app/Contents/PlugIns/F-Script Support.plugin/Contents/MacOS/F-Script Support, 265): no suitable image found. Did find:
    /Applications/Colloquy.app/Contents/PlugIns/F-Script Support.plugin/Contents/MacOS/F-Script Support: mach-o, but wrong architecture
    1/15/10 8:05:26 PM Colloquy[120] Instantiating NSNavExpansionButtonCell (superclass of the also dead NSDisclosureButtonCell), which is a private class not used by the AppKit and will be removed. Use an NSButton with NSRoundedDisclosureBezelStyle instead. You can drag one out in IB. Break on _NSInstantiatingDeadDisclosureButton to debug. This will be logged only once. This may break in the future.
    1/15/10 8:05:41 PM [0x0-0xd00d].org.mozilla.firefox[118] Debugger() was called!
    1/15/10 8:09:16 PM Colloquy[120] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/15/10 8:09:16 PM Colloquy[120] * WARNING: Method selectRow:byExtendingSelection: in class JVSideOutlineView is deprecated. It will be removed in a future release and should no longer be used.
    1/15/10 8:09:16 PM Colloquy[120] NSOutlineView Warning: reloadData called while in the middle of doing a reloadData!
    1/15/10 8:54:08 PM Colloquy[120] -[NSConcreteAttributedString initWithString:] called with nil string argument. This has undefined behavior and will raise an exception in post-Leopard linked apps. This warning is displayed only once.
    1/17/10 8:56:14 PM [0x0-0x2a02a].org.mozilla.firefox Debugger() was called!
    1/17/10 9:00:25 PM Adium[453] * WARNING: Method drawsGrid in class AIAnimatingListOutlineView is deprecated. It will be removed in a future release and should no longer be used.
    1/17/10 9:00:33 PM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead: read(5) error 0
    1/17/10 9:00:33 PM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead err = -9802
    1/17/10 11:10:50 PM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead: read(5) error 0
    1/17/10 11:10:50 PM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead err = -9802
    1/18/10 12:35:09 AM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead: read(5) error 0
    1/18/10 12:35:09 AM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead err = -9802
    1/18/10 9:58:28 AM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead: read(5) error 0
    1/18/10 9:58:28 AM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead err = -9802
    1/18/10 9:58:29 AM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead: read(5) error 0
    1/18/10 9:58:29 AM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead err = -9802
    1/18/10 5:26:54 PM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead: read(5) error 0
    1/18/10 5:26:54 PM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead err = -9802
    1/18/10 6:07:49 PM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead: read(5) error 0
    1/18/10 6:07:49 PM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead err = -9802
    1/18/10 6:47:55 PM com.apple.launchd.peruser.501[74] ([0x0-0x3d03d].com.apple.ActivityMonitor[616]) Exited: Terminated
    1/18/10 6:48:49 PM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead: read(5) error 0
    1/18/10 6:48:49 PM [0x0-0x2e02e].com.adiumX.adiumX[453] SocketRead err = -9802
    1/18/10 6:50:46 PM com.apple.launchd.peruser.501[74] ([0x0-0x27027].com.apple.TextEdit[414]) Exited: Killed
    1/18/10 6:50:46 PM com.apple.launchd.peruser.501[74] ([0x0-0x15015].com.apple.Preview[154]) Exited: Killed
    1/18/10 6:50:46 PM com.apple.launchd.peruser.501[74] ([0x0-0x9009].com.apple.iTunesHelper[101]) Exited: Killed
    1/18/10 6:51:17 PM com.apple.launchd[1] * launchd[1] has started up. *
    1/18/10 6:51:42 PM com.apple.launchd.peruser.501[78] (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    1/18/10 6:51:44 PM com.apple.launchd.peruser.501[78] (com.apple.Kerberos.renew.plist[104]) Exited with exit code: 1
    1/18/10 6:51:46 PM com.apple.launchd.peruser.501[78] ([email protected][107]) Exited with exit code: 1
    1/18/10 6:52:46 PM com.apple.WindowServer[56] Mon Jan 18 18:52:46 Galen-Gusdorfs-MacBook.local WindowServer[56] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/18/10 6:53:58 PM com.apple.launchd.peruser.501[78] ([0x0-0x9009].com.apple.iTunesHelper[109]) Exited: Killed
    1/18/10 6:54:26 PM com.apple.launchd[1] * launchd[1] has started up. *
    1/18/10 6:54:45 PM com.apple.launchd.peruser.501[79] (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    1/18/10 6:54:46 PM com.apple.launchd.peruser.501[79] (com.apple.Kerberos.renew.plist[101]) Exited with exit code: 1
    1/18/10 6:54:48 PM com.apple.launchd.peruser.501[79] ([email protected][104]) Exited with exit code: 1
    1/18/10 6:54:56 PM com.apple.WindowServer[56] Mon Jan 18 18:54:56 Galen-Gusdorfs-MacBook.local WindowServer[56] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/18/10 6:55:03 PM SystemUIServer[84] /SourceCache/SpotlightUI/Spotlight-507.4/menu/Application/../Models/MDQueryWork er.m __+[MDQueryWorker startQuery:withOptions:]block_invoke1 Can't execute query 'InRange(_kMDItemGroupId,8,8)'
    1/18/10 6:57:45 PM com.apple.launchd[1] (com.apple.metadata.mds[28]) Job appears to have crashed: Bus error
    1/18/10 6:57:45 PM com.apple.ReportCrash.Root[139] 2010-01-18 18:57:45.234 ReportCrash[139:2303] Saved crash report for mds[28] version ??? (???) to /Library/Logs/DiagnosticReports/mds2010-01-18-185745localhost.crash
    1/18/10 6:57:49 PM com.apple.launchd.peruser.501[79] ([0x0-0x9009].com.apple.iTunesHelper[109]) Exited: Killed
    1/18/10 6:58:10 PM com.apple.launchd[1] * launchd[1] has started up. *
    1/18/10 6:58:33 PM com.apple.launchd.peruser.501[78] (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    1/18/10 6:58:34 PM com.apple.launchd.peruser.501[78] (com.apple.Kerberos.renew.plist[102]) Exited with exit code: 1
    1/18/10 6:58:37 PM com.apple.launchd.peruser.501[78] ([email protected][105]) Exited with exit code: 1
    1/18/10 6:58:37 PM com.apple.WindowServer[56] Mon Jan 18 18:58:37 Galen-Gusdorfs-MacBook.local WindowServer[56] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/18/10 7:03:00 PM com.apple.launchd.peruser.501[78] ([0x0-0x9009].com.apple.iTunesHelper[108]) Exited: Killed
    1/18/10 7:03:35 PM com.apple.launchd[1] * launchd[1] has started up. *
    1/18/10 7:03:55 PM com.apple.launchd.peruser.501[78] (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    1/18/10 7:03:57 PM com.apple.launchd.peruser.501[78] (com.apple.Kerberos.renew.plist[104]) Exited with exit code: 1
    1/18/10 7:03:59 PM com.apple.launchd.peruser.501[78] ([email protected][107]) Exited with exit code: 1
    1/18/10 7:05:46 PM com.apple.WindowServer[56] Mon Jan 18 19:05:46 Galen-Gusdorfs-MacBook.local WindowServer[56] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    1/18/10 7:09:02 PM c

    Alright it didn't solve it. Any other suggestions?
    I haven't suggested a solution yet. I want to know whether you still get the messages while Time Machine is disabled. Do you? If so, try any or all of the solutions proposed in this thread:
    There was a Problem connecting to the...: Apple Support Communities

  • I can't figure out how to set a breakpoint in a SenTestingKit unit test

    I'm learning Cocoa after decades of doing other languages. I'm trying to use SenTestingKit for unit tests. One of my unit tests doesn't work, and I want to set a breakpoint to figure out why. So far, I haven't figured out how to do this.
    I found Chris Hanson's instructions for how to do this, but he apparently wrote them for an earlier version of Xcode, and I don't know enough to adapt them.
    I am writing a tutorial document for writing a simple Cocoa App using Xcode 3.1, git, SenTestingKit, and OCMock. It's at http://xorandor.com/FirstCocoaApp. I've got it up to the point of trying to debug a unit test, and I'm stuck there.
    I also couldn't figure out how to have Xcode run the unit tests while building the application. Again, Chris' instructions didn't quite do it, and I don't know enough to figure out the rest.
    So, if you know how to do this, please give me some hints. I'll put those into my tutorial, so that the next people who need this can find it.
    Thanks,
    Pat

    I figured out more of my problem, but I haven't solved it yet.
    What happens is that, after I create a test case, I try to run it with a breakpoint. After I start the program, Xcode turns the breakpoint from blue (meaning active) to orange (meaning that it can't set the breakpoint).
    Several people have said to turn off the Lazy symbol loading preference. I did that, and that didn't fix the problem.
    I wrote up a detailed list of steps that I took at http://www.xorandor.com/DebugQuestion.txt
    I also put a copy of the project file at http://xorandor.com/MyProject.tar
    If anyone has any suggestions on what to try next, please let me know.
    Thanks,
    Pat

  • How can i add a file name(the text of the file name) as a child node to existing node in a treeView1 ?

    bool exists = false;
    TreeNode newNodeParsed = null;
    TreeNode rootNode = treeViewMS1.Nodes[0];
    TreeNode nextNode = rootNode;
    string f = Path.GetFileName(txtUploadFile.Text);
    TreeNode subnode = new TreeNode(txtDir.Text);
    TreeNode filename = new TreeNode(f);
    if (!txtDir.Text.Contains("/"))
    foreach (TreeNode node in rootNode.Nodes)
    if (node.Text == txtDir.Text)
    exists = true;
    break;
    if (exists == true)
    subnode.Nodes.Add(f);
    else
    rootNode.Nodes.Add(subnode);
    subnode.Nodes.Add(f);
    The rootNode is the root directory in the treeView1
    subnode is a node inside the root. For example the subnode name is manuelisback
    I'm checking if the subnode exist i want to add the file for example (lightning1.jpg) to be under subnode.
    If the subnode is not existing add the subnode to the root and then add the file name lightning1.jpg under the subnode.
    But the file name is never added under the subnode:
    I added manualy the lightning1.jpg under test.
    But the lightning1.jpg also should be added to be under manuelisback. There should be two lightning1.jpg here.
    One under manuelisback and one under test. The one under test i added manualy from my ftp server.
    But the one i want to be under manuelisback i'm trying to add from my program and it dosen't add it to there.
    And when i'm using a breakpoint i see on subnode the text manuelisback and i see on f the text lightning1.jpg

    If I understand your question correctly, you might want to try changing:
    if (!txtDir.Text.Contains("/"))
    foreach (TreeNode node in rootNode.Nodes)
    if (node.Text == txtDir.Text)
    exists = true;
    break;
    if (exists == true)
    subnode.Nodes.Add(f);
    else
    rootNode.Nodes.Add(subnode);
    subnode.Nodes.Add(f);
    to something like:
    if (!txtDir.Text.Contains("/"))
    foreach (TreeNode node in rootNode.Nodes)
    if (node.Text == txtDir.Text)
    subnode = node;
    exists = true;
    break;
    if (exists == true)
    subnode.Nodes.Add(f);
    else
    rootNode.Nodes.Add(subnode);
    subnode.Nodes.Add(f);
    rootNode.Nodes.Add(f);
    It would be greatly appreciated if you would mark any helpful entries as helpful and if the entry answers your question, please mark it with the Answer link.

Maybe you are looking for

  • How to keep contacts on iPhone w/out sync?

    Hi, I am new to iPhone. I set up a Microsoft Exchange account on the iPhone for my work email, via Entourage. I also imported my (all personal) contacts from my previous SIM card. Upon Sync, this loaded all my personal contacts into the "Contacts" fo

  • Nokia Belle Custom Version & Custom Version Date P...

    Hello, I just want to ask if there's anything wrong with my Nokia Belle version. After the update, I checked the Device manager on my Nokia N8 and found out that the custom version is dated 2011-01-26. I feel something is wrong about the custom versi

  • How to create a substituion at Vendor master level

    HI, i need to make the House bank defaulted in vendor master while creating new vendor master in Xk01. For this i need to define substituion.Kindly provide me the path or transaction codes to create a substituion at vendor level.It would be a great h

  • JTable-How to save in file

    Hi all, I am developing an application using JTable in swing.I want to save all the records of that JTABLE in excel and pdf file.Please help me with code.Thanks

  • Change the order of the preffered networks through ARD

    Is there a command to change the ORDER of the wifi Networks under Network - Wi-fi - Advanced - Wi-fi. I know you can drag them around but I want to do this in an enterprise on many machines where users don't have admin rights. I'd rather not have to