Clicking mouse after closing JDialog sends event to last component (1.1.8)

There seems to be a bug in Java 1.1.8 that I'm looking for a workaround.
I have a JButton on a JFrame that brings up a modal JDialog when you click it. After closing the dialog, if you click on the JFrame without moving the mouse, it will click the button on the frame that was last clicked, even if the mouse is not over the button.
Steps to reproduce:
1. Use the mouse to click on the button on the frame to bring up the dialog.
2. Close the dialog with the mouse or keyboard and don't move the mouse at all. (Note that the mouse should be over the JFrame at this point, but not over the frame's button.)
3. Click the mouse again.
Result:
This causes the button on the frame to be clicked.
It seems as if the frame thinks that the mouse pointer is located where it was when the dialog came up.
Does anyone know how to prevent this from happening or a workaround?

We are using 1.1.8 because our product has to run on Mac OS 8.x - 9.x (and this is the latest JRE supported by these platforms).
When I say don't move the mouse, what I mean is when closing the dialog, if you don't move the mouse, it doesn't matter where the mouse pointer is, as long as it's over the frame. When you click it, the last button to get clicked will be clicked again. It's as if the frame thinks that the mouse hasn't moved since the dialog came up. This isn't a focus problem because if I set the focus on another control after opening the dialog (by calling requestFocus()), this problem still happens. I can also tab to another control after closing the dialog, but when clicking the mouse it still clicks the last button that was clicked. It's as if the frame needs to reset where the mouse position is when it becomes activated.

Similar Messages

  • How can I get my mac to return to my home page after closing, now it returns to last page viewed.

    Can anyone tell me how to get my desk top IMac to return to my home page after leaving the internet?  Now it returns to the last page viewed,
    I hate that!

    Depends what OS X and Browser you are using?
    If you are on Snow Leopard (10.6) and Safari (5.1.7) then open Safari Preferences, select the General tab and make sure that:
    1. Safari opens with: A new window
    2 New windows open with: Homepage
    3. Homepage: is set to the desired https: site

  • JDialog stores what values are there after closing in JTextfield or JCombo.

    Hii,
    I have a problem with JDialog in which JTextField & JComboBox are there,Problem is After closing JDialog by a button "CLOSE" on it ,or by "X" on top-rightside corner, it stores values which r there in these components ,when i reopen this JDialog without Closing my Application.
    I m using dispose() method for that on CLOSE Button's Action Performed Event but i don't get what i want exactly.......Is there any other method for that CLOSE Button which not preserve those values.... ????
    Give Solution if u have......plz...
    Thanks

    add a windowListener to the dialog
    addWindowListener(new WindowAdapter(){
      public void windowClosed(WindowEvent we){
        textField.setText("");
        comboBox.setSelectedIndex(0);
    });

  • Mouse Drag in JDialog produces Mouse Enter & Mouse Exit events in JFrame.

    Hi, all.
    Do I have a misconception here? When I drag the mouse in a modal JDialog, mouseEntered and mouseExited events are being delivered to JComponents in the parent JFrame that currently happens to be beneath that JDialog. I would not have expected any events to be delivered to any component not in the modal JDialog while that JDialog is displayed.
    I submitted this as a bug many months ago, and have heard nothing back from Sun, nor can I find anything similar to this in BugTraq.
    Here is sample code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    * This class demonstrates what I believe are TWO bugs in Mouse Event handling in Swing
    * 1.1.3_1, 1.1.3_2, 1.1.3_3, and 1.4.0.
    * 1) When a MODAL JDialog is being displayed, and the cursor is DRAGGED from the JDialog
    *    into and across the parent JFrame, Mouse Enter and Mouse Exit events are given to
    *    the parent JFrame and/or it's child components.  It is my belief that NO such events
    *    should be delivered, that modal dialogs should prevent ANY user interaction with any
    *    component NOT in the JDialog.  Am I crazy?
    *    You can reproduce this simply by running the main() method, then dragging the cursor
    *    from the JDialog into and across the JFrame.
    * 2) When a MODAL JDialog is being displayed, and the cursor is DRAGGED across the JDialog,
    *    Mouse Enter and Mouse Exit events are given to the parent JFrame and/or it's child
    *    components.  This is in addition to the problem described above.
    *    You can reproduce this by dismissing the initial JDialog displayed when the main()
    *    method starts up, clicking on the "Perform Action" button in the JFrame, then dragging
    *    the cursor around the displayed JDialog.
    * The Mouse Enter and Mouse Exit events are reported via System.err.
    public class DragTest
        extends JFrame
        public static void main(final String[] p_args)
            new DragTest();
        public DragTest()
            super("JFrame");
            WindowListener l_windowListener = new WindowAdapter() {
                public void windowClosing(final WindowEvent p_evt)
                    DragTest.this.dispose();
                public void windowClosed(final WindowEvent p_evt)
                    System.exit(0);
            MouseListener l_mouseListener = new MouseAdapter() {
                public void mouseEntered(final MouseEvent p_evt)
                    System.err.println(">>> Mouse Entered: " + ((Component)p_evt.getSource()).getName() );
                public void mouseExited(final MouseEvent p_evt)
                    System.err.println(">>> Mouse Exited: " + ((Component)p_evt.getSource()).getName() );
            JPanel l_panel1 = new JPanel();
            l_panel1.setLayout( new BorderLayout(50,50) );
            l_panel1.setName("JFrame Panel");
            l_panel1.addMouseListener(l_mouseListener);
            JButton l_button = null;
            l_button = new JButton("JFrame North Button");
            l_button.setName(l_button.getText());
            l_button.addMouseListener(l_mouseListener);
            l_panel1.add(l_button, BorderLayout.NORTH);
            l_button = new JButton("JFrame South Button");
            l_button.setName(l_button.getText());
            l_button.addMouseListener(l_mouseListener);
            l_panel1.add(l_button, BorderLayout.SOUTH);
            l_button = new JButton("JFrame East Button");
            l_button.setName(l_button.getText());
            l_button.addMouseListener(l_mouseListener);
            l_panel1.add(l_button, BorderLayout.EAST);
            l_button = new JButton("JFrame West Button");
            l_button.setName(l_button.getText());
            l_button.addMouseListener(l_mouseListener);
            l_panel1.add(l_button, BorderLayout.WEST);
            l_button = new JButton("JFrame Center Button");
            l_button.setName(l_button.getText());
            l_button.addMouseListener(l_mouseListener);
            l_panel1.add(l_button, BorderLayout.CENTER);
            JButton l_actionButton = l_button;
            Container l_contentPane = this.getContentPane();
            l_contentPane.setLayout( new BorderLayout() );
            l_contentPane.add(l_panel1, BorderLayout.NORTH);
            JPanel l_panel2 = new JPanel();
            l_panel2.setName("JDialog Panel");
            l_panel2.addMouseListener(l_mouseListener);
            l_panel2.setLayout( new BorderLayout(50,50) );
            l_panel2.add( new JButton("JDialog North Button"),  BorderLayout.NORTH  );
            l_panel2.add( new JButton("JDialog South Button"),  BorderLayout.SOUTH  );
            l_panel2.add( new JButton("JDialog East Button"),   BorderLayout.EAST   );
            l_panel2.add( new JButton("JDialog West Button"),   BorderLayout.WEST   );
            l_panel2.add( new JButton("JDialog Center Button"), BorderLayout.CENTER );
            final JDialog l_dialog = new JDialog(this, "JDialog", true);
            WindowListener l_windowListener2 = new WindowAdapter() {
                public void windowClosing(WindowEvent p_evt)
                    l_dialog.dispose();
            l_dialog.addWindowListener(l_windowListener2);
            l_dialog.setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
            l_dialog.getContentPane().add(l_panel2, BorderLayout.CENTER);
            l_dialog.pack();
            Action l_action = new AbstractAction() {
                { putValue(Action.NAME, "Perform Action (open dialog)"); }
                public void actionPerformed(final ActionEvent p_evt)
                    l_dialog.setVisible(true);
            l_actionButton.setAction(l_action);
            this.addWindowListener(l_windowListener);
            this.pack();
            this.setLocation(100,100);
            this.setVisible(true);
            l_dialog.setVisible(true);
    }(Too bad blank lines are stripped, eh?)
    Thanks in advance for any insights you may be able to provide.
    ---Mark

    I guess we can think of this as one problem. When mouse dragged, JFrame also (Parent) receives events. If i understood correctly, what happens here is, Modal dialog creates its own event pump and Frame will be having its own. See the source code of Dialog's show() method. It uses an interface called Conditional to determine whether to block the events or yield it to parent pump.
    Here is the Conditional code and show method code from java.awt.dialog for reference
    package java.awt;
    * Conditional is used by the EventDispatchThread's message pumps to
    * determine if a given pump should continue to run, or should instead exit
    * and yield control to the parent pump.
    * @version 1.3 02/02/00
    * @author David Mendenhall
    interface Conditional {
        boolean evaluate();
    /////show method
        public void show() {
            if (!isModal()) {
                conditionalShow();
            } else {
                // Set this variable before calling conditionalShow(). That
                // way, if the Dialog is hidden right after being shown, we
                // won't mistakenly block this thread.
                keepBlocking = true;
                if (conditionalShow()) {
                    // We have two mechanisms for blocking: 1. If we're on the
                    // EventDispatchThread, start a new event pump. 2. If we're
                    // on any other thread, call wait() on the treelock.
                    if (Toolkit.getEventQueue().isDispatchThread()) {
                        EventDispatchThread dispatchThread =
                            (EventDispatchThread)Thread.currentThread();
                           * pump events, filter out input events for
                           * component not belong to our modal dialog.
                           * we already disabled other components in native code
                           * but because the event is posted from a different
                           * thread so it's possible that there are some events
                           * for other component already posted in the queue
                           * before we decide do modal show. 
                        dispatchThread.pumpEventsForHierarchy(new Conditional() {
                            public boolean evaluate() {
                                return keepBlocking && windowClosingException == null;
                        }, this);
                    } else {
                        synchronized (getTreeLock()) {
                            while (keepBlocking && windowClosingException == null) {
                                try {
                                    getTreeLock().wait();
                                } catch (InterruptedException e) {
                                    break;
                    if (windowClosingException != null) {
                        windowClosingException.fillInStackTrace();
                        throw windowClosingException;
        }I didn't get exactly what is happening but this may help to think further

  • I have an icloud account which I can access via the web but when I go to systems preferences and click on the icloud it sends me to the mobileme closed site?? How do I get it to go to my icloud log in

    I have an icloud account which I can access via the web but when I go to systems preferences and click on the icloud it sends me to the mobileme closed site?? How do I get it to go to my icloud log in?

    You're saying that when you click on the  iCloud preference pane button it sends you to the defunct MMe
    rather than giving you this?
    Is your profile up to date, i.e. are your running 10.7.5?  Make sure you click on the iCloud button and not the MMe button.
    OT

  • Macbook froze while online. hard shutdown. when it restarted, an error message appeared saying finder shut down unexpectedly containing a message box with a long list of technical jibberish.  after clicking OK that it would send an error report to Apple,

    macbook froze while online. hard shutdown. when it restarted, an error message appeared saying finder shut down unexpectedly containing a message box with a long list of technical jibberish.  after clicking OK that it would send an error report to Apple, the same error message box appeared again and again every time OK was clicked.  Now the macbook will not turn on at all

    If you're able to boot, launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Console in the page that opens.
    Select the most recent panic log under System Diagnostic Reports. Post the contents — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post "shutdownStall" or "hang" reports.
    If you can't boot in the usual way, try a safe boot. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    During startup, you’ll see a progress bar, and then the login screen, which appears even if you normally log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Safe mode is slower than normal, and some things won’t work at all.
    Note: If FileVault is enabled under Mac OS X 10.7 or later, you can’t boot in safe mode.

  • I just did an update to 6.0 on Lion. Now when I re-open Safari after closing it by clicking the red button  it re-opens to my home page, not all my previous tabs..  prior to the update it would re-open with all my previous tabs, which is what I want.

    I just did an update to Lion  10.7.4 with Safari  6.0. Now when I re-open Safari after closing it by clicking the red button,  it re-opens to just my home page, not to all my previous tabs as it did before the update.  I prefer having my old tabs re-open.  How can I fix this?

    I've had what I think is the same problem since the most recent software update.  I have Lion 10.7.4 and have updated to Safari 6.0.  The most noticeable difference is that where previously I had two boxes at the top of the Safari window (one to enter URL addresses, one for Google searches), there is now only one box for both functions.  I don't like that as well, but I can live with it.  However, since the most recent software update my "back button" only works about 5% of the time. Most of the time it is grayed out.  So I usually can't get back to previous pages using the back button.  Also, when I've clicked a link that opens a new window (for instance, going through the return process at Amazon, I clicked UPS locator and it opened a new window), where in the past I would have just clicked the red button after I had the information, the UPS locator window would have closed, and I would have been back at Amazon - now if I close the UPS locator window, all Safari windows close.  The Safari application doesn't close, but the Amazon window closes, I'm back to an empty screen, and I have to open a new Safari window and reenter everything.  I'm using a work-around of clicking on History and selecting the description of the window I want to get back too, but that only works part of the time. In the Amazon example, that's what I did once I had the UPS info, but even though I clicked the correct window description, it took me back to the beginning of the return process & I had to reenter all the info.  Of course, that info was easy to reenter, but if I'm in the middle of a complicated process, it's a big problem.  I've filed a bug report; I surely hope the Apple engineers are able to fix this.  I'm used to using the back button function a lot!

  • TS4080 apple thunderbolt display image on display intermittently goes dark, does not wake from sleep after clicking mouse or keyboard, but there is "bonk" sound after clicking mouse or pressing keys. Rebooting by pressing the power button resolves issue.

    My apple thunderbolt display (which I purchased 1.5 years ago; OS 10.7.5 Mac Mini) intermittently goes dark, does not wake from sleep after clicking mouse or keyboard, but there is "bonk" sound after clicking mouse or pressing keys, so am thinking it is a hardware problem with the display. Rebooting by pressing the power button turns the screen back on, but the same phenomenon has occurred several times. Could this be a software issue, or do I need to have my display repaired? Your feedback would be appreciated.

    Hi ED, tough to tell, but it does sound like it's waking with the bonk, just not displaying.
    Long shot but...
    I wonder if it's a variation of this, of which I've seen many different symptoms...
    Resolution
    Move the mouse or trackpad cursor over the center area of the login window so you can see the user icons. Click on the icon of the user that you would like to login as, type in the user's password, and press Return.
    If the login window is configured to show only the name and password fields, type in the user's name and password into the fields, and press Return (even if you cannot see the rest of the login window).
    Additional Information
    This issue will not occur if the display is not sleeping when the account is logged out. Use the steps below to confirm that the account is not configured to log out automatically while the display is sleeping:
        1.    Open System Preferences > Security & Privacy > General.  Click the padlock to unlock the preference pane and enter your admin password. Click the Advanced button at the bottom, then see if the option "Log out after N minutes of inactivity" (where N is the number of minutes) is enabled.
        2.    Open System Preferences > Energy Saver and configure Display Sleep to occur after the account is logged out, by dragging the slider to a number of minutes that is greater than N was set to in the previous step.
    Important: If automatic log out is not needed, disable "Log out after Nminutes of inactivity" in System Preferences > Security & Privacy > General. This will also prevent the issue.
    http://support.apple.com/kb/TS4135?viewlocale=en_US

  • Can't click anything in firefox after closing "printer error" dialogue box.

    I'm trying to print an important document off the internet in Firefox. I can't try to restart Firefox without losing access to this document but after closing a "printer error" dialogue box I am unable to click anything in Firefox. I can't use "ctrl+p" to print or any of the other keyboard shortcuts. Right-clicking is also not working.
    Running task manager doesn't show any tasks other than the one Firefox window and that shows up as "running" so I don't think it's a case of the dialogue box still being open.
    I CAN right-click on Firefox on the status bar to open a new window (which works perfectly fine) or to open a new tab in the malfunctioning window (which is frozen as well).

    Goto Firefox Menu - File > Exit
    Try in safe mode
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • Cannot right click on wireless mouse after mavericks upgrade

    cannot right click on wireless mouse after mavericks upgrade. please help!

    Hey eedge520,
    Thanks for the question. I understand that you are unable to right-click with your mouse after updating. Let’s check your mouse preferences, as you can enable this behavior in System Preferences > Mouse > Point & Click > Secondary Click
    OS X Mavericks: Change keyboard, mouse, and trackpad settings
    http://support.apple.com/kb/PH14317
    OS X Mavericks: Right-click
    http://support.apple.com/kb/PH14308
    Thanks,
    Matt M.

  • Window Memory usage even after closing windows

    I've included links to a test app that does nothing but
    launch a window, play a sound, close window / repeat.
    When application launches it uses about 20mb of memory. When
    you click on the only button, it will launch a secondary window
    that will simply play a wav file. (I set the volume low but you may
    want to mute it :D)
    After launching and closing the window several times the
    memory usage goes up considerably and *never* falls back a
    significant %. (I got it to about 100MB before I decided to quit
    trying to increase the memory usage. Right now it's been running
    w/o any user interaction since opening about 10 windows and it's
    fairly stable at around 61MB (although that appears to be
    increasing w/o user interaction).
    Does anyone know of any methods I can use to ensure that the
    memory consumed by secondary windows does not just persist forever
    even after closing the window? Is there something I'm doing wrong
    here?
    Example Code:
    http://www.vf-server.com/air/memorytest.air
    (AIR)
    http://www.vf-server.com/air/memorytest.zip
    (source ZIP)
    Note: When I *minimize* the window it looks like garbage
    collection is forced and app drops back to 11MB (on restore back to
    19mb).
    Edit: note in your task manager, application appears as
    JBTest.exe

    You can call System.gc() to force the garbage collector to
    run.
    Try removing the event listeners when they aren't needed
    anymore. I think it is more difficult for the gc to cleanup objects
    when there are host objects (like Sound) refering to JavaScript
    objects and JavaScript objects refering to host objects, so you
    need to be especially careful about those. It SHOULD clean them up
    eventually, but it may take longer for it to figure out that those
    objects are no longer in use.
    You might also clear the secondaryWindow reference in the
    parent document when the window closes. That reference might retard
    garbage collection, too.

  • Why do I have time machine disk problem after closing and later reopening clamshell.

    I consistently see the following after closing and later reopening my Macbook Pro (5,1). I have to unplug and replug my Time Machine USB drive.
    The only thing new is Mountain Lion. The Time Machine disk has 229 GB free of 1.5 TB. I never had to unplug this drive under Lion.
    Does anyone have any idea what is going on? I ran disc repair on Time Machine Drive yesterday, but it found nothing.
    Here is what I see:
    (Window 1)The disk was not properly ejected. if possiblem always eject .....
    (Window 2)The disk you inserted was not readable by this computer.
    Following is console copy/paste starting long before. Today's incident is at 8:00 am Sun Aug 26, 2012.
    8/24/12 3:04:40.341 PM WindowServer[157]: CGXMoveWindowListToWorkspace: Invalid workspace id: -1
    8/24/12 3:04:52.678 PM WindowServer[157]: CGXMoveWindowListToWorkspace: Invalid workspace id: -1
    8/24/12 3:04:57.881 PM prl_client_app[330]: customWindowsToExitFullScreenForWindowIMP called for window <QCocoaWindow: 0x113946150>
    8/24/12 3:04:57.946 PM prl_client_app[330]: Window will exit full screen!
    8/24/12 3:04:58.037 PM prl_client_app[330]: windowDidFailToExitFullScreenIMP called for window <QCocoaWindow: 0x113946150>
    8/24/12 3:04:59.371 PM WindowServer[157]: CGXMoveWindowListToWorkspace: Invalid workspace id: -1
    8/24/12 3:04:59.707 PM WinAppHelper[7346]: NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    8/24/12 3:05:10.991 PM mdworker[7348]: code validation failed in the process of getting signing information; codeRef: 0x7f8b92810bc0
    8/24/12 3:05:10.991 PM mdworker[7348]: code validation failed in the process of getting signing information; codeRef: 0x7f8b92810bc0
    8/24/12 3:05:11.509 PM Neat[4403]: Info: -[NRMSyncToolBarItem showSyncInactiveIcon] : Updating Sync Icon to InActive
    8/24/12 3:05:13.000 PM kernel[0]: nspace-handler-set-snapshot-time: 1345835115
    8/24/12 3:05:19.857 PM Neat[4403]: ApplicationShutdown:  :
    8/24/12 3:05:27.872 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 3:06:07.746 PM lsboxd[422]: @AE relay 4755524c:4755524c
    8/24/12 3:06:08.062 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 3:06:57.819 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 3:08:15.168 PM assistantd[7337]: <Error>: AceConnection - NSStreamEventErrorOccurred <__NSCFInputStream: 0x7fade0c50b10>, error = Error Domain=NSPOSIXErrorDomain Code=54 "The operation couldn’t be completed. Connection reset by peer", domain = NSPOSIXErrorDomain, code = 54
    8/24/12 3:08:15.180 PM assistantd[7337]: <Error>: Session - Connection error: <ADAceConnection: 0x7fade0c462b0> Error Domain=NSPOSIXErrorDomain Code=54 "The operation couldn’t be completed. Connection reset by peer"
    8/24/12 3:08:15.192 PM assistantd[7337]: <Error>: Daemon - Session Error Error Domain=NSPOSIXErrorDomain Code=54 "The operation couldn’t be completed. Connection reset by peer"
    8/24/12 3:08:27.999 PM lsboxd[422]: @AE relay 4755524c:4755524c
    8/24/12 3:08:28.320 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 3:11:45.686 PM WindowServer[157]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    8/24/12 3:11:45.687 PM loginwindow[43]: find_shared_window: WID -1
    8/24/12 3:11:45.687 PM loginwindow[43]: CGSGetWindowTags: Invalid window 0xffffffff
    8/24/12 3:11:45.687 PM loginwindow[43]: find_shared_window: WID -1
    8/24/12 3:11:45.687 PM loginwindow[43]: CGSSetWindowTags: Invalid window 0xffffffff
    8/24/12 3:11:46.411 PM WindowServer[157]: Created shield window 0xd42 for display 0x04272100
    8/24/12 3:11:46.411 PM WindowServer[157]: device_generate_desktop_screenshot: authw 0x7ff1dbb1e9a0(2000), shield 0x7ff1dbb305b0(2001)
    8/24/12 3:11:47.449 PM WindowServer[157]: device_generate_lock_screen_screenshot: authw 0x7ff1dbb1e9a0(2000), shield 0x7ff1dbb305b0(2001)
    8/24/12 3:11:48.023 PM com.apple.time[11]: Next maintenance wake [Backup Interval]: <date: 0x7fdbb1620890> Fri Aug 24 15:22:39 2012 EDT (approx)
    8/24/12 3:11:48.024 PM com.apple.time[11]: Requesting maintenance wake [Backup Interval]: <date: 0x7fdbb1620890> Fri Aug 24 15:22:39 2012 EDT (approx)
    8/24/12 3:11:48.000 PM kernel[0]: /drv/ MacDevice.cpp:598   com_parallels_hypervisor_client::powerDownHandler: message e0000280
    8/24/12 3:11:48.000 PM kernel[0]: hibernate image path: /var/vm/sleepimage
    8/24/12 3:11:48.000 PM kernel[0]: sizeof(IOHibernateImageHeader) == 512
    8/24/12 3:11:48.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    8/24/12 3:11:48.000 PM kernel[0]: kern_open_file_for_direct_io(0) took 54 ms
    8/24/12 3:11:48.000 PM kernel[0]: Opened file /var/vm/sleepimage, size 8589934592, partition base 0x0, maxio 400000 ssd 0
    8/24/12 3:11:48.000 PM kernel[0]: hibernate image major 1, minor 0, blocksize 512, pollers 4
    8/24/12 3:11:48.000 PM kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    8/24/12 3:11:48.000 PM kernel[0]: hibernate_setup(0) took 0 ms
    8/24/12 3:11:48.000 PM kernel[0]: /drv/ MacModule.cpp:304   powerStateWillChangeTo: flags=4 stateNumber=2
    8/24/12 3:11:48.000 PM kernel[0]: /drv/ MacModule.cpp:309   powerStateWillChangeTo: found flag=kIOPMSleepCapability (4)
    8/24/12 3:11:48.000 PM kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    8/24/12 3:11:48.000 PM kernel[0]: /drv/ MacModule.cpp:304   powerStateDidChangeTo: flags=4 stateNumber=2
    8/24/12 3:11:48.000 PM kernel[0]: /drv/ MacModule.cpp:309   powerStateDidChangeTo: found flag=kIOPMSleepCapability (4)
    8/24/12 3:11:48.000 PM kernel[0]: hibernate_page_list_setall start 0xffffff80e35d1000, 0xffffff80e3610000
    8/24/12 3:12:21.000 PM kernel[0]: hibernate_page_list_setall time: 656 ms
    8/24/12 3:12:21.000 PM kernel[0]: pages 1840162, wire 489775, act 447054, inact 1711, cleaned 0 spec 26, zf 58500, throt 0, could discard act 262891 inact 476243 purgeable 23095 spec 58321 cleaned 22546
    8/24/12 3:12:21.000 PM kernel[0]: hibernate_page_list_setall found pageCount 997066
    8/24/12 3:12:21.000 PM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    8/24/12 3:12:21.000 PM kernel[0]: IOHibernatePollerOpen(0)
    8/24/12 3:12:21.000 PM kernel[0]: encryptStart 132b0
    8/24/12 3:12:21.000 PM kernel[0]: writing 994117 pages
    8/24/12 3:12:21.000 PM kernel[0]: encryptEnd 28bb9600
    8/24/12 3:12:21.000 PM kernel[0]: image1Size 0x31f56600, encryptStart1 0x132b0, End1 0x28bb9600
    8/24/12 3:12:21.000 PM kernel[0]: encryptStart 31f56600
    8/24/12 3:12:21.000 PM kernel[0]: encryptEnd 6647b000
    8/24/12 3:12:21.000 PM kernel[0]: PMStats: Hibernate write took 31645 ms
    8/24/12 3:12:21.000 PM kernel[0]: all time: 31645 ms, comp bytes: 4072198144 time: 5166 ms 751 Mb/s, crypt bytes: 1561111888 time: 10064 ms 147 Mb/s,
    8/24/12 3:12:21.000 PM kernel[0]: image 1715974144, uncompressed 4072198144 (994189), compressed 1701090640 (41%), sum1 5919b4ee, sum2 60c7a072
    8/24/12 3:12:21.000 PM kernel[0]: wired_pages_encrypted 389582, wired_pages_clear 97316, dirty_pages_encrypted 507291
    8/24/12 3:12:21.000 PM kernel[0]: hibernate_write_image done(0)
    8/24/12 3:12:21.000 PM kernel[0]: sleep
    8/24/12 3:50:20.616 PM WindowServer[157]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7ff1dbb1e9a0(2004), shield 0x7ff1dbb305b0(2001), lock state 3
    8/24/12 3:50:20.616 PM WindowServer[157]: handle_will_sleep_auth_and_shield_windows: err 0x0
    8/24/12 3:50:20.000 PM kernel[0]: Wake reason: EC LID0
    8/24/12 3:50:20.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    8/24/12 3:50:20.000 PM kernel[0]: /drv/ MacModule.cpp:304   powerStateWillChangeTo: flags=2 stateNumber=3
    8/24/12 3:50:20.000 PM kernel[0]: /drv/ MacModule.cpp:305   powerStateWillChangeTo: found flag=kIOPMPowerOn (2)
    8/24/12 3:50:20.000 PM kernel[0]: /drv/ MacDevice.cpp:598   com_parallels_hypervisor_client::powerDownHandler: message e0000320
    8/24/12 3:50:20.000 PM kernel[0]: HID tickle 118 ms
    8/24/12 3:50:20.000 PM kernel[0]: /drv/ MacModule.cpp:304   powerStateDidChangeTo: flags=2 stateNumber=3
    8/24/12 3:50:20.000 PM kernel[0]: /drv/ MacModule.cpp:305   powerStateDidChangeTo: found flag=kIOPMPowerOn (2)
    8/24/12 3:50:20.000 PM kernel[0]: Previous Sleep Cause: 5
    8/24/12 3:50:20.000 PM kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    8/24/12 3:50:20.000 PM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    8/24/12 3:50:20.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    8/24/12 3:50:20.000 PM kernel[0]: en1: 802.11d country code set to 'X0'.
    8/24/12 3:50:20.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    8/24/12 3:50:20.000 PM kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    8/24/12 3:50:22.844 PM prl_naptd[230]: Reloading configuration...
    8/24/12 3:50:22.000 PM kernel[0]: /drv/ MacDevice.cpp:598   com_parallels_hypervisor_client::powerDownHandler: message e0000300
    8/24/12 3:50:22.952 PM prl_naptd[230]: vnic0: DHCP/NAT for 10.211.55.1-10.211.55.254 netmask 255.255.255.0
    8/24/12 3:50:22.967 PM prl_naptd[230]: vnic1: DHCP for 10.37.129.1-10.37.129.254 netmask 255.255.255.0
    8/24/12 3:50:23.000 PM kernel[0]: en1: 802.11d country code set to 'US'.
    8/24/12 3:50:23.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    8/24/12 3:50:23.532 PM configd[16]: network changed: v4(en1-:192.168.0.180) DNS- Proxy- SMB
    8/24/12 3:50:23.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 00:22:b0:b7:1a:9f  MAC AUTH succeeded
    8/24/12 3:50:23.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    8/24/12 3:50:23.000 PM kernel[0]: AirPort: Link Up on en1
    8/24/12 3:50:23.000 PM kernel[0]: en1: BSSID changed to 00:22:b0:b7:1a:9f
    8/24/12 3:50:23.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    8/24/12 3:50:23.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    8/24/12 3:50:23.934 PM configd[16]: network changed: v4(en1+:192.168.0.180) DNS+ Proxy+ SMB
    8/24/12 3:50:23.967 PM UserEventAgent[11]: Captive: en1: Not probing 'grnn5' (protected network)
    8/24/12 3:50:23.997 PM configd[16]: network changed: v4(en1!:192.168.0.180) DNS Proxy SMB
    8/24/12 3:50:25.169 PM airportd[7372]: _doAutoJoin: Already associated to “grnn5”. Bailing on auto-join.
    8/24/12 3:50:25.280 PM airportd[7372]: _doAutoJoin: Already associated to “grnn5”. Bailing on auto-join.
    8/24/12 3:50:26.069 PM mDNSResponderHelper[7376]: do_mDNSInterfaceAdvtIoctl: ioctl call SIOCGIFINFO_IN6 failed - error (22) Invalid argument
    8/24/12 3:50:26.070 PM mDNSResponderHelper[7376]: do_mDNSInterfaceAdvtIoctl: ioctl call SIOCGIFINFO_IN6 failed - error (22) Invalid argument
    8/24/12 3:50:59.545 PM SyncServer[7385]: [0x7fb8bac0bdb0] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    8/24/12 3:51:01.381 PM iCalExternalSync[7383]: [0x7fa1ea40e480] |Miscellaneous|Error| SyncServices precondition failure in [ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p954"
        sound = Basso;
        triggerduration = "-480";
    8/24/12 3:51:01.382 PM iCalExternalSync[7383]: [ICalExternalSync ]Encountered exception: [ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p954"
        sound = Basso;
        triggerduration = "-480";
    } withStack: (
              0   iCalExternalSync                    0x0000000106549a60 iCalExternalSync + 125536
              1   iCalExternalSync                    0x0000000106538ac9 iCalExternalSync + 56009
              2   iCalExternalSync                    0x0000000106548694 iCalExternalSync + 120468
              3   libdyld.dylib                       0x00007fff97a6d7e1 start + 0
              4   ???                                 0x0000000000000007 0x0 + 7
    8/24/12 3:51:01.383 PM iCalExternalSync[7383]: [ICalExternalSync ]NSException name:ISyncInvalidArgumentsException reason:[ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p954"
        sound = Basso;
        triggerduration = "-480";
    8/24/12 3:51:01.385 PM SyncServer[7385]: [0x7fb8bac0bdb0] |Server|Warning| lost connection 0x7fb8bac86420 to com.apple.iCal
    8/24/12 3:51:16.977 PM com.apple.backupd-helper[7381]: Not starting Time Machine backup after wake - failed to resolve alias to backup volume.
    8/24/12 3:51:25.855 PM DashboardClient[4190]: com.weather.widget.Forecast: updating...
    8/24/12 3:52:00.000 PM kernel[0]: IOSCSIPeripheralDeviceType00::setPowerState(0xffffff802d6e2200, 1 -> 4) timed out after 100473 ms
    8/24/12 3:53:26.425 PM CalendarAgent[383]: Property list invalid for format: 100 (property lists cannot contain objects of type 'CFSet')
    8/24/12 3:53:30.815 PM com.apple.backupd-helper[7390]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    8/24/12 3:53:57.577 PM SyncServer[7401]: [0x7ff98a40bdb0] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    8/24/12 3:53:59.312 PM iCalExternalSync[7400]: [0x7fde9240e480] |Miscellaneous|Error| SyncServices precondition failure in [ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p954"
        sound = Basso;
        triggerduration = "-480";
    8/24/12 3:53:59.312 PM iCalExternalSync[7400]: [ICalExternalSync ]Encountered exception: [ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p954"
        sound = Basso;
        triggerduration = "-480";
    } withStack: (
              0   iCalExternalSync                    0x00000001032afa60 iCalExternalSync + 125536
              1   iCalExternalSync                    0x000000010329eac9 iCalExternalSync + 56009
              2   iCalExternalSync                    0x00000001032ae694 iCalExternalSync + 120468
              3   libdyld.dylib                       0x00007fff97a6d7e1 start + 0
              4   ???                                 0x0000000000000007 0x0 + 7
    8/24/12 3:53:59.313 PM iCalExternalSync[7400]: [ICalExternalSync ]NSException name:ISyncInvalidArgumentsException reason:[ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p954"
        sound = Basso;
        triggerduration = "-480";
    8/24/12 3:53:59.316 PM SyncServer[7401]: [0x7ff98a40bdb0] |Server|Warning| lost connection 0x7ff98a4a9b70 to com.apple.iCal
    8/24/12 3:55:31.118 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 3:57:33.171 PM assistantd[7392]: <Error>: AceConnection - NSStreamEventErrorOccurred <__NSCFInputStream: 0x7fd621444de0>, error = Error Domain=NSPOSIXErrorDomain Code=54 "The operation couldn’t be completed. Connection reset by peer", domain = NSPOSIXErrorDomain, code = 54
    8/24/12 3:57:33.183 PM assistantd[7392]: <Error>: Session - Connection error: <ADAceConnection: 0x7fd62201f2e0> Error Domain=NSPOSIXErrorDomain Code=54 "The operation couldn’t be completed. Connection reset by peer"
    8/24/12 3:57:33.195 PM assistantd[7392]: <Error>: Daemon - Session Error Error Domain=NSPOSIXErrorDomain Code=54 "The operation couldn’t be completed. Connection reset by peer"
    8/24/12 3:58:10.108 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 3:58:40.000 PM kernel[0]: IOSCSIPeripheralDeviceType00::setPowerState(0xffffff802d6e2200, 4 -> 3) timed out after 100546 ms
    8/24/12 3:59:12.253 PM lsboxd[422]: @AE relay 4755524c:4755524c
    8/24/12 3:59:12.566 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:01:25.835 PM DashboardClient[4190]: com.weather.widget.Forecast: updating...
    8/24/12 4:01:40.645 PM com.apple.usbmuxd[26]: _SendAttachNotification (thread 0x7fff7e934180): sending attach for device b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.: _GetAddrInfoReplyReceivedCallback matched.
    8/24/12 4:01:41.157 PM usbmuxd[26]: _AMDeviceConnectByAddressAndPort (thread 0x100781000): IPv4
    8/24/12 4:01:41.244 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x101041c00 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 63, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:01:41.244 PM iTunes[334]: _AMDDeviceAttachedCallbackv3 (thread 0x1148f1000): Device 'AMDevice 0x7fd2d9c2d300 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 63, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:01:41.244 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1005db790 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 63, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:01:41.569 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1005e3d40 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 63, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:01:42.026 PM AppleMobileDeviceHelper[467]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x101569260 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 62, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:01:42.270 PM SyncServer[7523]: [0x7fd95ac0bdb0] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    8/24/12 4:01:42.516 PM AppleMobileDeviceHelper[467]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1010f3730 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 63, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:01:50.831 PM com.apple.usbmuxd[26]: _SendDetachNotification (thread 0x7fff7e934180): sending detach for device b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.: _BrowseReplyReceivedCallback got bonjour removal.
    8/24/12 4:01:50.834 PM iTunes[334]: _AMDDeviceDetached (thread 0x1148f1000): Device 'AMDevice 0x7fd2d9c2d300 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 63, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:01:50.835 PM ath[1217]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x101041c00 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 63, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:01:50.836 PM iTunes[334]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:01:50.838 PM ath[466]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:03:42.000 PM kernel[0]: IOSCSIPeripheralDeviceType00::setPowerState(0xffffff802d6e2200, 3 -> 2) timed out after 100414 ms
    8/24/12 4:07:03.350 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:08:42.000 PM kernel[0]: IOSCSIPeripheralDeviceType00::setPowerState(0xffffff802d6e2200, 2 -> 1) timed out after 100573 ms
    8/24/12 4:10:32.101 PM assistantd[7530]: <Error>: AceConnection - NSStreamEventErrorOccurred <__NSCFInputStream: 0x7fe9e381ff90>, error = Error Domain=NSPOSIXErrorDomain Code=54 "The operation couldn’t be completed. Connection reset by peer", domain = NSPOSIXErrorDomain, code = 54
    8/24/12 4:10:32.114 PM assistantd[7530]: <Error>: Session - Connection error: <ADAceConnection: 0x7fe9e244f850> Error Domain=NSPOSIXErrorDomain Code=54 "The operation couldn’t be completed. Connection reset by peer"
    8/24/12 4:10:32.126 PM assistantd[7530]: <Error>: Daemon - Session Error Error Domain=NSPOSIXErrorDomain Code=54 "The operation couldn’t be completed. Connection reset by peer"
    8/24/12 4:11:25.580 PM com.apple.usbmuxd[26]: _SendAttachNotification (thread 0x7fff7e934180): sending attach for device b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.: _GetAddrInfoReplyReceivedCallback matched.
    8/24/12 4:11:25.745 PM usbmuxd[26]: _AMDeviceConnectByAddressAndPort (thread 0x100781000): IPv4
    8/24/12 4:11:25.815 PM DashboardClient[4190]: com.weather.widget.Forecast: updating...
    8/24/12 4:11:25.828 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x10103a970 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 64, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:11:25.829 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1005ddb70 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 64, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:11:25.841 PM iTunes[334]: _AMDDeviceAttachedCallbackv3 (thread 0x1148f1000): Device 'AMDevice 0x7fd2dc5e1540 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 64, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:11:26.151 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1005dcf10 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 64, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:11:26.519 PM AppleMobileDeviceHelper[467]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x1010f3730 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 63, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:11:26.836 PM SyncServer[7542]: [0x7f813b40bdb0] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    8/24/12 4:11:27.048 PM AppleMobileDeviceHelper[467]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x103318080 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 64, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:11:34.509 PM lsboxd[422]: @AE relay 4755524c:4755524c
    8/24/12 4:11:34.827 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:11:48.019 PM com.apple.usbmuxd[26]: _SendDetachNotification (thread 0x7fff7e934180): sending detach for device b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.: _BrowseReplyReceivedCallback got bonjour removal.
    8/24/12 4:11:48.019 PM iTunes[334]: _AMDDeviceDetached (thread 0x1148f1000): Device 'AMDevice 0x7fd2dc5e1540 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 64, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:11:48.022 PM ath[1217]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x10103a970 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 64, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:11:48.022 PM iTunes[334]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:11:48.025 PM ath[466]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:13:17.675 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:13:48.052 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:18:52.487 PM com.apple.XType.FontHelper[634]: FontHelper:  message received. (<dictionary: 0x7fa35a41e9b0> { count = 2, contents =
              "query" => <string: 0x7fa35a41ffc0> { length = 103, contents = "com_apple_ats_name_postscript == "Frutiger" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
              "restricted" => <bool: 0x7fff7e533320>: true
    8/24/12 4:18:52.487 PM com.apple.XType.FontHelper[634]: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    8/24/12 4:20:55.000 PM kernel[0]: Sandbox: sandboxd(7665) deny mach-lookup com.apple.coresymbolicationd
    8/24/12 4:20:55.523 PM sandboxd[7665]: ([332]) Mail(332) deny file-read-data /Users/Dick/Applications (Parallels)/{13278d2d-2c0b-4c01-af0b-3764186a822a} Applications.localized/Quicken Launcher.app
    8/24/12 4:20:55.564 PM sandboxd[7665]: ([332]) Mail(332) deny file-read-data /Users/Dick/Applications (Parallels)/{13278d2d-2c0b-4c01-af0b-3764186a822a} Applications.localized/Paint.app
    8/24/12 4:21:12.622 PM lsboxd[422]: @AE relay 61657674:6f646f63
    8/24/12 4:21:22.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=7676[GoogleSoftwareUp] clearing CS_VALID
    8/24/12 4:21:25.796 PM DashboardClient[4190]: com.weather.widget.Forecast: updating...
    8/24/12 4:22:47.735 PM com.apple.security.pboxd[7692]: Bug: 12B19: liblaunch.dylib + 23849 [224CB010-6CF8-3FC2-885C-6F80330321EB]: 0x25
    8/24/12 4:24:03.366 PM lsboxd[422]: @AE relay 4755524c:4755524c
    8/24/12 4:24:03.697 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:25:44.290 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:25:45.418 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:25:46.441 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:25:48.396 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:25:49.795 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:27:07.293 PM lsboxd[422]: @AE relay 4755524c:4755524c
    8/24/12 4:27:07.611 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:27:39.368 PM com.apple.usbmuxd[26]: _SendAttachNotification (thread 0x7fff7e934180): sending attach for device b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.: _GetAddrInfoReplyReceivedCallback matched.
    8/24/12 4:27:39.750 PM usbmuxd[26]: _AMDeviceConnectByAddressAndPort (thread 0x100781000): IPv4
    8/24/12 4:27:39.827 PM iTunes[334]: _AMDDeviceAttachedCallbackv3 (thread 0x1148f1000): Device 'AMDevice 0x7fd2daef1330 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 65, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:27:39.828 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1012dc0d0 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 65, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:27:39.828 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x10056c9f0 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 65, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:27:40.129 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1005eb2e0 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 65, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:27:40.482 PM AppleMobileDeviceHelper[467]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x103318080 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 64, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:27:40.669 PM SyncServer[7705]: [0x7f885940bdb0] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    8/24/12 4:27:40.869 PM AppleMobileDeviceHelper[467]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1033f9ba0 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 65, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:28:14.791 PM com.apple.usbmuxd[26]: _SendDetachNotification (thread 0x7fff7e934180): sending detach for device b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.: _BrowseReplyReceivedCallback got bonjour removal.
    8/24/12 4:28:14.792 PM iTunes[334]: _AMDDeviceDetached (thread 0x1148f1000): Device 'AMDevice 0x7fd2daef1330 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 65, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:28:14.793 PM ath[1217]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x10056c9f0 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 65, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:28:14.794 PM iTunes[334]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:28:14.795 PM ath[466]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:31:25.778 PM DashboardClient[4190]: com.weather.widget.Forecast: updating...
    8/24/12 4:34:14.039 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:34:16.877 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:34:28.889 PM lsboxd[422]: @AE relay 4755524c:4755524c
    8/24/12 4:34:29.203 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:34:34.689 PM com.apple.usbmuxd[26]: _SendAttachNotification (thread 0x7fff7e934180): sending attach for device 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.: _GetAddrInfoReplyReceivedCallback matched.
    8/24/12 4:34:34.896 PM usbmuxd[26]: _AMDeviceConnectByAddressAndPort (thread 0x100781000): IPv4
    8/24/12 4:34:35.030 PM iTunes[334]: _AMDDeviceAttachedCallbackv3 (thread 0x1148f1000): Device 'AMDevice 0x7fd2daef3370 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 66, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:34:35.031 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x101041c00 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 66, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:34:35.032 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1005e3d40 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 66, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:34:35.493 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x10056bba0 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 66, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:34:36.205 PM AppleMobileDeviceHelper[467]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x1033f9ba0 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 65, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:34:36.524 PM SyncServer[7720]: [0x7fb97a40bdb0] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    8/24/12 4:34:36.868 PM AppleMobileDeviceHelper[467]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x101076080 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 66, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:34:49.015 PM com.apple.usbmuxd[26]: _SendDetachNotification (thread 0x7fff7e934180): sending detach for device 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.: _BrowseReplyReceivedCallback got bonjour removal.
    8/24/12 4:34:49.016 PM iTunes[334]: _AMDDeviceDetached (thread 0x1148f1000): Device 'AMDevice 0x7fd2daef3370 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 66, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:34:49.017 PM ath[466]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x1005e3d40 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 66, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:34:49.020 PM iTunes[334]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:34:49.022 PM ath[1217]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:36:43.383 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:36:44.982 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:37:11.979 PM lsboxd[422]: @AE relay 4755524c:4755524c
    8/24/12 4:37:12.301 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:41:25.758 PM DashboardClient[4190]: com.weather.widget.Forecast: updating...
    8/24/12 4:41:44.747 PM com.apple.usbmuxd[26]: _SendAttachNotification (thread 0x7fff7e934180): sending attach for device b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.: _GetAddrInfoReplyReceivedCallback matched.
    8/24/12 4:41:44.848 PM usbmuxd[26]: _AMDeviceConnectByAddressAndPort (thread 0x100781000): IPv4
    8/24/12 4:41:44.930 PM iTunes[334]: _AMDDeviceAttachedCallbackv3 (thread 0x1148f1000): Device 'AMDevice 0x7fd2dc44a350 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 67, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:41:44.931 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x101047090 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 67, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:41:44.932 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1005e9260 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 67, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:41:45.241 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1005e9030 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 67, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:41:45.608 PM AppleMobileDeviceHelper[467]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x101076080 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 66, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:41:45.799 PM SyncServer[7840]: [0x7f8cf3c0bdb0] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    8/24/12 4:41:46.001 PM AppleMobileDeviceHelper[467]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1003a9610 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 67, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:41:46.872 PM com.apple.usbmuxd[26]: _SendAttachNotification (thread 0x7fff7e934180): sending attach for device 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.: _GetAddrInfoReplyReceivedCallback matched.
    8/24/12 4:41:47.024 PM usbmuxd[26]: _AMDeviceConnectByAddressAndPort (thread 0x101881000): IPv4
    8/24/12 4:41:47.101 PM iTunes[334]: _AMDDeviceAttachedCallbackv3 (thread 0x1148f1000): Device 'AMDevice 0x7fd2dc46dff0 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 68, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:41:47.103 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x10057c2d0 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 68, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:41:48.954 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1010516a0 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 68, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:41:48.955 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x101051ab0 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 67, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:41:50.271 PM AppleMobileDeviceHelper[467]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1033cc1b0 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 68, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:42:20.235 PM com.apple.usbmuxd[26]: _SendDetachNotification (thread 0x7fff7e934180): sending detach for device b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.: _BrowseReplyReceivedCallback got bonjour removal.
    8/24/12 4:42:20.236 PM iTunes[334]: _AMDDeviceDetached (thread 0x1148f1000): Device 'AMDevice 0x7fd2dc44a350 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 67, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:42:20.238 PM iTunes[334]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:42:20.239 PM ath[466]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:42:20.240 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1012f4760 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 68, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:43:14.151 PM com.apple.usbmuxd[26]: _SendDetachNotification (thread 0x7fff7e934180): sending detach for device 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.: _BrowseReplyReceivedCallback got bonjour removal.
    8/24/12 4:43:14.151 PM iTunes[334]: _AMDDeviceDetached (thread 0x1148f1000): Device 'AMDevice 0x7fd2dc46dff0 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 68, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:43:14.153 PM iTunes[334]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:43:14.156 PM ath[1217]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:43:14.159 PM ath[466]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x1012f4760 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 68, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:44:11.000 PM kernel[0]: nspace-handler-set-snapshot-time: 1345841053
    8/24/12 4:44:15.644 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:44:17.445 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:45:15.710 PM WindowServer[157]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    8/24/12 4:45:15.711 PM loginwindow[43]: find_shared_window: WID -1
    8/24/12 4:45:15.712 PM loginwindow[43]: CGSGetWindowTags: Invalid window 0xffffffff
    8/24/12 4:45:15.712 PM loginwindow[43]: find_shared_window: WID -1
    8/24/12 4:45:15.712 PM loginwindow[43]: CGSSetWindowTags: Invalid window 0xffffffff
    8/24/12 4:45:16.203 PM com.apple.time[11]: Next maintenance wake [Backup Interval]: <date: 0x7fdbb14490a0> Fri Aug 24 16:53:30 2012 EDT (approx)
    8/24/12 4:45:16.203 PM com.apple.time[11]: Requesting maintenance wake [Backup Interval]: <date: 0x7fdbb14490a0> Fri Aug 24 16:53:30 2012 EDT (approx)
    8/24/12 4:45:17.057 PM WindowServer[157]: Created shield window 0xe70 for display 0x04272100
    8/24/12 4:45:17.057 PM WindowServer[157]: device_generate_desktop_screenshot: authw 0x7ff1da647b10(2000), shield 0x7ff1da642bc0(2001)
    8/24/12 4:45:17.075 PM WindowServer[157]: device_generate_lock_screen_screenshot: authw 0x7ff1da647b10(2000), shield 0x7ff1da642bc0(2001)
    8/24/12 4:45:17.000 PM kernel[0]: /drv/ MacDevice.cpp:598   com_parallels_hypervisor_client::powerDownHandler: message e0000280
    8/24/12 4:45:17.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    8/24/12 4:45:17.000 PM kernel[0]: hibernate image path: /var/vm/sleepimage
    8/24/12 4:45:17.000 PM kernel[0]: sizeof(IOHibernateImageHeader) == 512
    8/24/12 4:45:17.000 PM kernel[0]: kern_open_file_for_direct_io(0) took 8 ms
    8/24/12 4:45:17.000 PM kernel[0]: Opened file /var/vm/sleepimage, size 8589934592, partition base 0x0, maxio 400000 ssd 0
    8/24/12 4:45:17.000 PM kernel[0]: hibernate image major 1, minor 0, blocksize 512, pollers 4
    8/24/12 4:45:17.000 PM kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    8/24/12 4:45:17.000 PM kernel[0]: hibernate_setup(0) took 0 ms
    8/24/12 4:45:17.000 PM kernel[0]: /drv/ MacModule.cpp:304   powerStateWillChangeTo: flags=4 stateNumber=2
    8/24/12 4:45:17.000 PM kernel[0]: /drv/ MacModule.cpp:309   powerStateWillChangeTo: found flag=kIOPMSleepCapability (4)
    8/24/12 4:45:17.000 PM kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    8/24/12 4:46:57.000 PM kernel[0]: IOSCSIPeripheralDeviceType00::setPowerState(0xffffff802d6e2200, 1 -> 0) timed out after 100670 ms
    8/24/12 4:46:57.000 PM kernel[0]: /drv/ MacModule.cpp:304   powerStateDidChangeTo: flags=4 stateNumber=2
    8/24/12 4:46:57.000 PM kernel[0]: /drv/ MacModule.cpp:309   powerStateDidChangeTo: found flag=kIOPMSleepCapability (4)
    8/24/12 4:46:57.000 PM kernel[0]: hibernate_page_list_setall start 0xffffff80e3497000, 0xffffff80e35d1000
    8/24/12 4:47:30.000 PM kernel[0]: hibernate_page_list_setall time: 651 ms
    8/24/12 4:47:30.000 PM kernel[0]: pages 1836030, wire 485835, act 431599, inact 1710, cleaned 0 spec 40, zf 49424, throt 0, could discard act 268019 inact 471436 purgeable 45264 spec 71098 cleaned 11605
    8/24/12 4:47:30.000 PM kernel[0]: hibernate_page_list_setall found pageCount 968608
    8/24/12 4:47:30.000 PM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    8/24/12 4:47:30.000 PM kernel[0]: IOHibernatePollerOpen(0)
    8/24/12 4:47:30.000 PM kernel[0]: encryptStart 132b0
    8/24/12 4:47:30.000 PM kernel[0]: writing 965950 pages
    8/24/12 4:47:30.000 PM kernel[0]: encryptEnd 29667000
    8/24/12 4:47:30.000 PM kernel[0]: image1Size 0x32a0b200, encryptStart1 0x132b0, End1 0x29667000
    8/24/12 4:47:30.000 PM kernel[0]: encryptStart 32a0b200
    8/24/12 4:47:30.000 PM kernel[0]: encryptEnd 642b7600
    8/24/12 4:47:30.000 PM kernel[0]: PMStats: Hibernate write took 31201 ms
    8/24/12 4:47:30.000 PM kernel[0]: all time: 31201 ms, comp bytes: 3956826112 time: 5028 ms 750 Mb/s, crypt bytes: 1525678416 time: 9835 ms 147 Mb/s,
    8/24/12 4:47:30.000 PM kernel[0]: image 1680569856, uncompressed 3956826112 (966022), compressed 1667100320 (42%), sum1 b872bd83, sum2 982d3a1
    8/24/12 4:47:30.000 PM kernel[0]: wired_pages_encrypted 385921, wired_pages_clear 97328, dirty_pages_encrypted 482773
    8/24/12 4:47:30.000 PM kernel[0]: hibernate_write_image done(0)
    8/24/12 4:47:30.000 PM kernel[0]: sleep
    8/24/12 4:50:30.630 PM WindowServer[157]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7ff1da647b10(2000), shield 0x7ff1da642bc0(2001), lock state 3
    8/24/12 4:50:30.631 PM WindowServer[157]: handle_will_sleep_auth_and_shield_windows: err 0x0
    8/24/12 4:50:30.000 PM kernel[0]: Wake reason: EC LID0
    8/24/12 4:50:30.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    8/24/12 4:50:30.000 PM kernel[0]: /drv/ MacModule.cpp:304   powerStateWillChangeTo: flags=2 stateNumber=3
    8/24/12 4:50:30.000 PM kernel[0]: /drv/ MacModule.cpp:305   powerStateWillChangeTo: found flag=kIOPMPowerOn (2)
    8/24/12 4:50:30.000 PM kernel[0]: /drv/ MacDevice.cpp:598   com_parallels_hypervisor_client::powerDownHandler: message e0000320
    8/24/12 4:50:30.000 PM kernel[0]: HID tickle 78 ms
    8/24/12 4:50:30.000 PM kernel[0]: /drv/ MacModule.cpp:304   powerStateDidChangeTo: flags=2 stateNumber=3
    8/24/12 4:50:30.000 PM kernel[0]: /drv/ MacModule.cpp:305   powerStateDidChangeTo: found flag=kIOPMPowerOn (2)
    8/24/12 4:50:30.000 PM kernel[0]: Previous Sleep Cause: 5
    8/24/12 4:50:30.000 PM kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    8/24/12 4:50:30.000 PM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    8/24/12 4:50:30.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    8/24/12 4:50:30.000 PM kernel[0]: en1: 802.11d country code set to 'X0'.
    8/24/12 4:50:30.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    8/24/12 4:50:30.000 PM kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    8/24/12 4:50:31.000 PM kernel[0]: en1: 802.11d country code set to 'US'.
    8/24/12 4:50:31.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    8/24/12 4:50:31.161 PM configd[16]: network changed: v4(en1-:192.168.0.180) DNS- Proxy- SMB
    8/24/12 4:50:31.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 00:22:b0:b7:1a:9f  MAC AUTH succeeded
    8/24/12 4:50:31.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    8/24/12 4:50:31.000 PM kernel[0]: AirPort: Link Up on en1
    8/24/12 4:50:31.000 PM kernel[0]: en1: BSSID changed to 00:22:b0:b7:1a:9f
    8/24/12 4:50:31.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    8/24/12 4:50:31.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    8/24/12 4:50:33.206 PM mDNSResponderHelper[7856]: do_mDNSInterfaceAdvtIoctl: ioctl call SIOCGIFINFO_IN6 failed - error (22) Invalid argument
    8/24/12 4:50:33.206 PM mDNSResponderHelper[7856]: do_mDNSInterfaceAdvtIoctl: ioctl call SIOCGIFINFO_IN6 failed - error (22) Invalid argument
    8/24/12 4:50:36.371 PM mDNSResponderHelper[7856]: do_mDNSInterfaceAdvtIoctl: ioctl call SIOCGIFINFO_IN6 failed - error (22) Invalid argument
    8/24/12 4:50:36.372 PM mDNSResponderHelper[7856]: do_mDNSInterfaceAdvtIoctl: ioctl call SIOCGIFINFO_IN6 failed - error (22) Invalid argument
    8/24/12 4:50:38.080 PM configd[16]: network changed: v4(en1+:192.168.0.180) DNS+ Proxy+ SMB
    8/24/12 4:50:38.103 PM UserEventAgent[11]: Captive: en1: Not probing 'grnn5' (protected network)
    8/24/12 4:50:38.158 PM configd[16]: network changed: v4(en1!:192.168.0.180) DNS Proxy SMB
    8/24/12 4:50:46.208 PM airportd[7853]: _doAutoJoin: Already associated to “grnn5”. Bailing on auto-join.
    8/24/12 4:51:08.422 PM com.apple.backupd-helper[7858]: Not starting Time Machine backup after wake - failed to resolve alias to backup volume.
    8/24/12 4:51:19.776 PM SyncServer[7864]: [0x7fbf3b40bdb0] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    8/24/12 4:51:21.569 PM iCalExternalSync[7862]: [0x7fd3d3c0e480] |Miscellaneous|Error| SyncServices precondition failure in [ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p954"
        sound = Basso;
        triggerduration = "-480";
    8/24/12 4:51:21.570 PM iCalExternalSync[7862]: [ICalExternalSync ]Encountered exception: [ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p954"
        sound = Basso;
        triggerduration = "-480";
    } withStack: (
              0   iCalExternalSync                    0x0000000100d3aa60 iCalExternalSync + 125536
              1   iCalExternalSync                    0x0000000100d29ac9 iCalExternalSync + 56009
              2   iCalExternalSync                    0x0000000100d39694 iCalExternalSync + 120468
              3   libdyld.dylib                       0x00007fff97a6d7e1 start + 0
              4   ???                                 0x0000000000000007 0x0 + 7
    8/24/12 4:51:21.571 PM iCalExternalSync[7862]: [ICalExternalSync ]NSException name:ISyncInvalidArgumentsException reason:[ISyncConcreteSession pushChangesFromRecord:withIdentifier:]: you can't change the record's entity name from com.apple.calendars.DisplayAlarm to com.apple.calendars.AudioAlarm in {
        "com.apple.ical.sound" = Basso;
        "com.apple.syncservices.KeepAwayFromServers" = 1;
        "com.apple.syncservices.RecordEntityName" = "com.apple.calendars.AudioAlarm";
        owner =     (
            "Event/p954"
        sound = Basso;
        triggerduration = "-480";
    8/24/12 4:51:21.573 PM SyncServer[7864]: [0x7fbf3b40bdb0] |Server|Warning| lost connection 0x7fbf3b4516f0 to com.apple.iCal
    8/24/12 4:52:10.775 PM prl_naptd[230]: Reloading configuration...
    8/24/12 4:52:10.000 PM kernel[0]: IOSCSIPeripheralDeviceType00::setPowerState(0xffffff802d6e2200, 0 -> 1) timed out after 100576 ms
    8/24/12 4:52:10.000 PM kernel[0]: en1: BSSID changed to 00:22:b0:b7:1a:9f
    8/24/12 4:52:10.000 PM kernel[0]: /drv/ MacDevice.cpp:598   com_parallels_hypervisor_client::powerDownHandler: message e0000300
    8/24/12 4:52:10.854 PM prl_naptd[230]: vnic0: DHCP/NAT for 10.211.55.1-10.211.55.254 netmask 255.255.255.0
    8/24/12 4:52:10.854 PM prl_naptd[230]: vnic1: DHCP for 10.37.129.1-10.37.129.254 netmask 255.255.255.0
    8/24/12 4:52:10.885 PM airportd[7865]: _doAutoJoin: Already associated to “grnn5”. Bailing on auto-join.
    8/24/12 4:52:29.701 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:52:31.353 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:52:40.890 PM com.apple.usbmuxd[26]: _SendAttachNotification (thread 0x7fff7e934180): sending attach for device 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.: _GetAddrInfoReplyReceivedCallback matched.
    8/24/12 4:52:41.187 PM usbmuxd[26]: _AMDeviceConnectByAddressAndPort (thread 0x100781000): IPv4
    8/24/12 4:52:41.276 PM iTunes[334]: _AMDDeviceAttachedCallbackv3 (thread 0x1148f1000): Device 'AMDevice 0x7fd2dc61f130 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 69, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:52:41.276 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x101051870 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 69, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:52:41.277 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1005ece20 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 69, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:52:41.561 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x10056bba0 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 69, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:52:41.994 PM AppleMobileDeviceHelper[467]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x1003a9610 {UDID = 5b51c6b3733c029f5ea62ab340f4155c46b750d1, device ID = 67, FullServiceName = b8:c7:5d:da:9b:a1@fe80::bac7:5dff:feda:9ba1._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:52:42.216 PM AppleMobileDeviceHelper[467]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x1033cc1b0 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 68, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:52:42.216 PM AppleMobileDeviceHelper[467]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1033ab750 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 69, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 4:52:52.724 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:52:55.289 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:53:04.299 PM com.apple.usbmuxd[26]: _SendDetachNotification (thread 0x7fff7e934180): sending detach for device 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.: _BrowseReplyReceivedCallback got bonjour removal.
    8/24/12 4:53:04.300 PM iTunes[334]: _AMDDeviceDetached (thread 0x1148f1000): Device 'AMDevice 0x7fd2dc61f130 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 69, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:53:04.300 PM ath[466]: _AMDDeviceDetached (thread 0x7fff7e934180): Device 'AMDevice 0x1005ece20 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 69, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' detached.
    8/24/12 4:53:04.302 PM iTunes[334]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:53:04.303 PM ath[1217]: _NotificationSocketReadCallbackGCD (thread 0x7fff7e934180): Unexpected connection closure...
    8/24/12 4:53:06.079 PM Dock[4182]: Unable to open IOHIDSystem (e00002bd)
    8/24/12 4:53:06.000 PM kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    8/24/12 4:53:31.413 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:53:34.887 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:53:36.740 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:53:43.105 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:54:00.739 PM com.apple.backupd-helper[7873]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    8/24/12 4:54:01.743 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:54:25.028 PM DashboardClient[4190]: com.weather.widget.Forecast: updating...
    8/24/12 4:54:28.827 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:54:45.066 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:54:46.401 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:54:51.660 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 4:59:33.303 PM lsboxd[422]: @AE relay 4755524c:4755524c
    8/24/12 4:59:33.654 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 5:00:45.430 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 5:00:48.049 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 5:04:16.313 PM WindowServer[157]: CGXRegisterWindowWithSystemStatusBar: window 6ad already registered
    8/24/12 5:04:16.980 PM WindowServer[157]: CGXDisableUpdate: UI updates were forcibly disabled by application "App Store" for over 1.00 seconds. Server has re-enabled them.
    8/24/12 5:04:17.025 PM WindowServer[157]: reenable_update_for_connection: UI updates were finally reenabled by application "App Store" after 1.05 seconds (server forcibly re-enabled them after 1.00 seconds)
    8/24/12 5:04:25.328 PM DashboardClient[4190]: com.weather.widget.Forecast: updating...
    8/24/12 5:07:26.099 PM com.apple.usbmuxd[26]: _SendAttachNotification (thread 0x7fff7e934180): sending attach for device 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.: _GetAddrInfoReplyReceivedCallback matched.
    8/24/12 5:07:26.474 PM usbmuxd[26]: _AMDeviceConnectByAddressAndPort (thread 0x100781000): IPv4
    8/24/12 5:07:26.625 PM ath[1217]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x10056a080 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 70, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 5:07:26.625 PM iTunes[334]: _AMDDeviceAttachedCallbackv3 (thread 0x1148f1000): Device 'AMDevice 0x7fd2dc625ab0 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 70, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 5:07:26.626 PM ath[466]: _AMDDeviceAttachedCallbackv3 (thread 0x7fff7e934180): Device 'AMDevice 0x1012f4760 {UDID = ff99bed4a08332ea6bbafa6f1bae928107783f0f, device ID = 70, FullServiceName = 78:a3:e4:4d:4a:46@fe80::7aa3:e4ff:fe4d:4a46._apple-mobdev._tcp.local.}' attached.
    8/24/12 5:07:27.505 PM ath[1217]: _AMDDeviceAttachedCa

    I don't think you quite understand how Time Machine really works. But then hardly anyone does. Time Machine is intended to be left enabled always whether a backup drive is connected or not. What Time Machine cannot handle properly is a situation where the backup drive loses power for whatever reason. Time Machine treats this, as does the OS, as an improper disconnect of an external drive without being properly ejected. This in turn throws Time Machine a little bit of a loop.
    For you I would suggest not using Time Machine. Instead use a third-party backup utility that you can either schedule or run manually as you wish. They will work with the same drive you have used for Time Machine, but you will need to first erase the Time Machine drive using Disk Utility. Please DO NOT try dragging the Time Machine backups to the Trash.
    Here are some good backup utilities you can try:
    Suggested Backup Software
      1. Carbon Copy Cloner
      2. Get Backup
      3. Deja Vu
      4. SuperDuper!
      5. Synk Pro
      6. Tri-Backup
    Others may be found at MacUpdate. Each one can be used for a trial period. No need to pay for one until you've decided on which one you like best. I, for example, use Carbon Copy Cloner but please don't take that as a recommendation over the others. It's just my preference. All can be operated manually or can be set up to backup on a schedule you determine. Some can even be set up to backup as soon as the backup drive is connected.
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files.

  • Cannot Open Form Created on Separate Thread After Closing

    My application communicates with a device that has several sensors.  As the sensors collect data, they send messages over the com port.  I have written a class to communicate with the device.  As the messages come in and are processed, the
    class raises events that the application responds to.
    The main window of the application handles the communication with the device and displays several statistics based on the data collected.  When the user presses a button on the device, a specific event is raised.  The main window create a separate
    thread and opens a child window.  When the child window is open, the user opens a valve to dispense the product.  As the product is dispensed, a flow meter connected to the device measures the volume of product dispensed.  The flow meter generates
    messages to indicate the volume dispensed.  I need to be able to send messages from the main window to the child window so that the child window displays the volume.  When the user is done, they close the valve dispensing the product and press the
    "End" button on the child window.  The child window then updates several variables on the main window, makes a couple of database calls to record how much product was dispensed and by whom and then closes.
    I need to run the child window using a separate thread as both windows need to be able to process commands.  If only one window has control the program doesn't work at all.  I have it figured out so that everything is working.  I can open
    the child window, dispense product, se the amount of product dispensed in the child window (the main window processes commands from the device and updates the label on the child window using a delegate), closes the window (using Me.Close()) and updates the
    main display with the updated data.  The problem is that when a user goes to dispense product a second time, I get the following error:
      A first chance exception of type 'System.ObjectDisposedException' occurred in System.Windows.Forms.dll
      Additional information: Cannot access a disposed object.
    I thought that maybe I could hide the window (change Me.Close() to Me.Hide) and then just show it.  When I do that I get this error:
      A first chance exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll
      Additional information: Cross-thread operation not valid: Control 'frmPour' accessed from a thread other than the thread it was created on.
    Both of these errors make sense to me, I just can't figure out how to make it work.
    First I have to declare the child window as a global variable as I need to access the window from a couple of the event handlers in the main form.
    Public frmMeasure As New frmPour
    When the user presses the button on the device to dispense the product, the event handler executes this code to open the child window.
    Private Sub StartPour(sAuthName As String, sAuthToken As String, iStatus As Integer) Handles Device.Pour
    Dim th As System.Threading.Thread = New Threading.Thread(AddressOf Me.OpenDispenseWindow)
    th.SetApartmentState(ApartmentState.STA)
    th.Start()
    End If
    End Sub
    Which executes this code:
    Public Sub OpenDispenseWindow()
    frmMeasure.sNameProperty = sCurrentUserName
    frmMeasure.sAuthTokenIDProperty = sUserToken
    Application.Run(frmMeasure)
    bAuthenticated = False
    bPouring = False
    dSessionVolume += GetTapConversion(sCurrentValve) * iFinalTick
    UpdateDisplayDelegate(iValveID)
    End Sub
    It doesn't matter if I use Me.Close() or Me.Hide(), both methods fail on the Application.Run(frmMeasure) line with the errors shown above. 
    For the Me.Close() method, my thinking is that the global frmMeasure object is getting disposed when I close the child window.  Is there any way that I can re-instantiate it when I go to display the window again?
    For the Me.Hide method, is there any way that I can track the thread that created it in the main window and when I go to call it a second time, detect that it is already available and just Show() it?
    Any hints, tips or suggestions are appreciated.
    Thanks.
    John
    John

    To be honest, I have only grasped < 100% of your message in detail, but...: Windows that have a parent<->child relation must be running in the same thread. In addition, after closing a modeless window, you must not use it anymore. Instead, create
    a new instance.
    What happens if you do not create a new thread but instead open the child in the same thread (which is obligatory)? You wrote it doesn't work, but I don't know why?
    "First I have to declare the child window as a global variable".
    How do you define "global"? Normally this is a variable in a Module declared with the scope Public or Friend. But I guess you mean a field of the Form (a variable at class level in the Form).
    "I need to be able to send messages from the main window to the child window so that the child window displays the volume."
    Why does the main window has to send the messages? Can't the child window handle the device's messages itself?
    "I need to run the child window using a separate thread as both windows need to be able to process commands."
    Process commands from the device, or commands from the user operating the Forms?
    Armin

  • Detecting the send event in Outlook addin

    I'm trying to write an Outlook AddIn app in C# using Visual Studio 2012.  I need to detect when the send button is clicked in a current email.  I'll want to perform some actions after the send button has been clicked.   
    I assume an event handler needs to be created, but I'm not sure where- at the item level, or application level.  I created a mail item object with Outlook.MailItem publicItem = (Outlook.MailItem).this.OutlookItem.  It seems like I should be detecting
    publicItem.send but I'm not clear on how and where to use event handlers in this case.  
    I added a checkbox, and Visual Studio created publicCheckBox_Changed(object sender, EventArgs e) for me.  To check if the box was checked, I used  'if(publicCheckBox.checked) { do stuff }.   Is detecting the send event similar? 
    I'm new to c# and Outlook Addins, and fairly new to coding.  
    Thanks for your help. 
    Wayne

    Hello Wayne,
    In the check box Clicked event you can add a user property to the MailItem (see UserProperties.Add). Then in the ItemSend event ( see the Application class) handler you can check out the property value - whether it is set or not. Be aware, the Cancel parameter
    passed to ItemSend event handler allows to prevent the item from sending.

  • Open Sale Order Value (FD33) not getting diminished even after closing SO?

    Hi,
    Upon Executing FD33 and clicking the status view for a Customer say XYZ , and then choosing EXTRAS-Open Sale Order . Say the value of open sale orders being shown is 75000. Even after closing the open sale orders (By Selecting VA05 and Putting reason for Rejection), and then also the Open Sales Order value is not getting diminished.
    What could be the reason ?
    Pls help.
    Regrds,
    Binayak

    Hi Binayak,
    As mentioned by you, running of Credit re-org program 'RVKRED77' is the only solution for this problem and it is known problem in SAP.
    Some precautions
    1. Always run the program in background by scheduling a job.
    2. The idle time is around midnight when no user is working on SAP.
    3. Some time the job fails as some other program may be updating same tables as this program. In such cases re-schedule the job at different time.
    4. You may run the program 'RVKRED88' which will simulate without actual updation of credit values.
    Hope this clarifies..
    Regards,
    Madhu.

Maybe you are looking for

  • Decode in a where clause with "in"

    Hi, I'm working with Oracle9i Enterprise Edition Release 9.2.0.7.0 I'm trying to write a function that retuns the number of days between two dates, minus holidays, minus saturdays and sundays. The dates are on a table (main_table) and the holidays ar

  • TS2634 ipad 3 charging problem?

    I have a ipad 3 that has a charging problem as of late. It will not  charge while it is on. I first have to turn my ipad off and then plug it  in and then the ipad will turn itself back on and will charge. Thats  the only way i can get it to charge.I

  • On Table manipulation

    Hello,   I got a doubt in manipulating table in a single view. Is it necessary to use the Component Controller in this case? Please solve this prob.. Thanks in advance. Vinod V

  • How to add column to iHistResult View

    Hi, I need to add a column to the iHistResult view. The column does not exist in BOL entity BTOrder attribute list. I am trying to add the Contact Person to the results list. ( Header Partner Function-Contact Person ). Any suggestions on how to proce

  • How put a border round a table row?

    I have a simple table, and want to put a border round each row - for some reason nothing I do works.  I would also like a large space between rows than between the individual cells but again can't work out how to do it. Can anyone help?