NullPointerException on RowClient accessor after closing RowSetIterator

I have a situation where I create 2 RowSets to 2 different View objects instances.
if I close the first RowSet, I get a NullPointerException when I am iterating over the second one .
While the second iteration, iterator.next() returns a valid object, but invoking any of its properties throws a NullPointerException?
If I don't close the first RowSetIterator, it works. But I suppose I should close all the secondary iterators I create.
What Am I missing here?
ViewObject studentView = findViewObject("StudentList");
RowSet studentRowSet = view.createRowSet(null);
try {
while(studentRowSet.hasNext()) {
StudentRowClient student = (studentRowClient) studentRowSet.next();
System.out.println("Student Info : " + student.getName());
} finally {
studentRowSet.closeRowSet(); // COMMENT THIS LINE TO WORK
ViewObject courseView = findViewObject("CourseList");
RowSet courseRowSet = view.createRowSet(null);
try {
while(courseRowSet.hasNext()) {
CourseRowClient student = (CourseRowClient) courseView.next();
System.out.println("Course Info : " + courseView.getName()); // getName() throws NullPointerException
} finally {
courseRowSet.closeRowSet();
}

If you are going to iterate over an existing rowset, you should use the createRowSetIterator() API, rather than createRowSet.
If you use this instead, does your example work?
See this document for the most commonly used ADF Business Components API's and an overview of when you call them, when you override them, and what they do.
See this part of the document specifically:
http://www.oracle.com/technology/products/jdev/tips/muench/mostcommon/index.html#rowset

Similar Messages

  • 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.

  • FIrefox 4 beta does not work anymore. Directly after start-up (my homepage is showing) is firefox hanging, showing an hour glass. No button, URL or whatever can be used, except for the close button. But even after closing firefox, it keeps on running.

    Even after closing down the application, the firefox task remains running in the background and must be killed with Windows Task Control.
    Even deinstalling and installing the latest beta version does not solve it. Unfortunately I have to use Google Chrome Now.

    Ok. I disabled hardware acceleration. The only extension is the McAfee Scriptscan for Firefox 15.1.0, which was already disabled. I then disabled all plugins (Acrobat, Google Update, Intel Identity Protection (2x), Java Deployment Toolkit, Java Platform, MS Office 2013, Quicktime, Shockwave, Silverlight), which were all up to date.
    Normal or safe mode still has same result. No startup, no option button and no customize.
    Thanks for your help. Got any other suggestions?

  • After closing request plan data are not longer displayed

    Hello all,
    guess it's a standard problem but can't find a solution in the forum.
    Scenario:
    I created a planning cube and an aggregation level with two key figures, a workbook
    based on the planning cube and a cube with actual data. The workbook showed the
    the actual data and the so far entered plan data, so everything worked fine, but after closing the request
    in the plan cube manually by switching to loading and back, the workbook doesn't show the plan data anymore.
    Planning is not finished, so its necessary to see the already planned values.
    Thanks
    jg

    Hi,
    I think this is an inconsistency of the OLAP cache used in the plan buffer. Clear the cache of the plan buffer query via RSRT or RSR_CACHE. The plan buffer query has the following technical name
    - IC/!!1IC if the input ready query is defined on an aggregation level on the InfoCube or on a multiprovder that contains an aggregation level as partprovider that is defined on InfoCube IC
    - MPRO/!!1MPRO if the input ready query is defined on an aggregation level on the multiprovider MPRO
    For a final solution earch for notes in the area of OLAP and OLAP cache in connection with planning.
    Regards
    Gregor

  • After closing serversocket, process remains

    Hi everyone,
    I'm trying to learn to write a client/server program. I begin by creating a serversocket and waiting for data. When I close the program, the serversocket still remains even when I create handlers that try to close the socket after the GUI has been closed.
    The server is as follows:
    try
                   ServerSocket myServerSocket = new ServerSocket(6666);
                   myServerSocket.setReuseAddress(true);
                   writeToDebugger("Server successfully created.  Listening on port 6666\n");
                   //     open a socket for listening for multiple requests
                   while(listening)
                             clientSocket = myServerSocket.accept();
                             //clientSocket.setReuseAddress(true);
                             writeToDebugger("Client " + clientSocket.getInetAddress().toString() + " accepted.");
                             //store clientSocket information
                             out = new PrintWriter(
                                    clientSocket.getOutputStream(), true);
                             in = new BufferedReader(
                                      new InputStreamReader(
                                          clientSocket.getInputStream()));
                             while ((inputLine = in.readLine()) != null && inputLine != "")
                                  writeToDebugger(inputLine);
                             //breaker = inputLine.indexOf(',');
                             //store the incoming request's information --- username of requestor is first param, requested username is second param
                             //database.put(inputLine.substring(0, breaker), clientSocket.getInetAddress());
                             //return the IP address of the username lookup
                             //out.print(database.get(inputLine.substring(breaker+1)));     
              }Here is my closing handler:
    public void windowClosed(WindowEvent arg0) {
              listening=false;
              try
                   System.out.println("CLOSING FOR REAL");
                   if(clientSocket!=null)
                        clientSocket.close();
                        clientSocket.shutdownInput();
                        clientSocket.shutdownOutput();
                   if(myServerSocket!=null)
                        myServerSocket.close();
                   if(out!=null)
                        out.flush();
                        out.close();
                   if(in!=null)
                        in.close();
                   System.out.println("DONE CLOSING");
              catch(Exception e)
                   System.out.println(e.getMessage());
         }If someone could please tell me why I have to go into the task manager to close the process after I have already closed the GUI, I'd really appreciate it.
    Thanks in advance,
    Julian

    And you're doing all these closes in the wrong order, and redundantly.
    Just close 'out' and the ServerSocket, doesn't matter in what order here.
    All the other closes and shutdowns are redundant. Calling shutdownXXX after closing the socket does nothing (and calling them just before closing the socket would add nothing to what close() already does). Closing the client socket before closing the output stream built around the socket output stream denies the output stream the chance to flush.

  • Changes in stock value of the material even after closing period

    The client closes the accounts every month end. Say they close the books of accounts for the month of Jan’07 on 31st Jan 2007. After closing the account they are running MC.9 to know the stock value of different plants for the previous month. i.e.  for the month of Jan’07. But every day when the client runs the MC.9 they found some differences in the stock price & quantity.
    For better understanding, consider they close the period on 31st Jan. When they run the MC.9 on 2nd Feb it shows the value say 100$ and qty of 100. When we run the same report on 4th Feb the value got changed to say 98$ and qty remain same. Again when we run on 6th Feb the value is changed again to say 102$ and stock is 100.
    We checked the MB51 with posting date & entered date. We could not find any back posting.
    What could be the reason for the  variation in the stock price & qty ? Any pointers will be highly appricated.

    Hi Venkat,
    Your previous posting talked about variation in stock value and now you are saying that there are changes in stock qty also. So the better option would be to check those material which has variation and compare them with other standard reports to get a solution. Export the list of material to an excel sheet and compare them with that of the other reports. This would help you to find the materials which has changes and you can narrow down to the root cause. Once you get the material then u can go by posting date and find the movements.
    Hope this helps. Reward if u find it useful.
    regards
    Anand.C

  • Project commitment shows even after closing PO

    Hi,
    I have developed a program to short close PO (in mass).  This program marks Delivery indicator and sets Latest GR Date.
    After running this program POs are short closed and To be delivered qty/value shows zero in MM reports such as ME2N.
    The problem is that this does not close commitments in Project.  When I run PS report (say CJI5), I get those POs as open and the remaining values are still shown as open commitment in PS.
    Please help me understand how to close this project commitment.
    Regards,
    UT

    I think this will work.  I ran RKANBU01 program after closing PO through my program and it successfully closed open commitments.
    I will confirm once I'm done with my testings...
    Thanks a lot!
    Regards,
    UT

  • After closing the Firefox browser, a message appears "Severe error: Cannot load resource file; can not run". What could be wrong?

    The message: "Severe Error; Can 't load resourse file; can not run" appears after closing Firefox4. All other applications on my pc do not have this problem.

    I've found text of this error in npdjvu.dll plugin, remove it and error seems to disappear.

  • Returning to the parameter form in a report after closing the report page

    hi all,
    tell me a way to get the following solution
    how can we return back to the parameter form of a "parameterised
    report" after closing to the report window.
    i ve tried a little bit with "srw_run_report"
    reply me as quick as possible
    prabhakaran

    Try using menu options
    Tools\Parameter Form Builder
    you can either select/deselect any parameter from the list

  • 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.

  • I keep getting this message after closing Firefox and attempt to reopen-Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system.

    I keep getting this message after closing Firefox and attempt to reopen-Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system.

    See:
    * http://kb.mozillazine.org/Recovering_a_missing_profile
    * http://kb.mozillazine.org/Profile_in_use

  • 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.

  • 'You can post in new year only after closing the previous year

    Hello Experts,
    I am also getting same error while executing depreciation run AFAB ''You can post in new year only after closing the previous year''.
    I found one OSS Note 18800 and it is saying solution as below ...
    At the first depreciation posting in the new fiscal year after a shortened fiscal year, the fiscal year variants must, in all cases, still be entered in asset customizing and in FI customizing for the affected company code. If necessary, all periods for the following fiscal year must be maintained with the variant of the shortened fiscal year.
    Up to 2.2D the following correction must also be installed:
    Please carry out the syntax check only in main program SAPLAFAR.
    But in my case there is no shortended fiscal year.
    Can I apply this OSS note correction instructions ?
    Please suggest me.

    Hi
    I don't think so. Moreover that is applicable till 2.2D.
    Moreover depreciation is to be run for all periods you have not run earlier. Please check upto which period dep run has happened. Thereafter close the fiscal years in order thro AJAB.
    S Jayaram

  • Windows 8.1 desktop refresh required after closing mstsc

    In Windows 8.1 Pro with Update (64-bit), in desktop mode, after closing the mstsc app (click X in title bar) during an mstsc session to a Window 7 Ent SP1 workstation, the contents of the mstsc window remain displayed and a desktop refresh (right-click->refresh
    on the desktop) is required to refresh the desktop to clear the stale content from the display. This does not happen when using mstsc to connect to a legacy Win XP Pro workstation.
    Video adapter is an integrated Intel P4600/P4700 with latest drivers provided my Microsoft Update (v10.18.10.3621) in multi-monitor (3 monitors) mode. The mstsc is only active on one monitor.
    Anyone else seen this issue?

    Monitor refresh rate (all 3 of them is set to 60hz). Only options on the primary display are 59 or 60Hz.
    Setting the refresh rate to 59Hz produces same results. Setting back to 60Hz produces same results.
    Sometimes part of the desktop on the monitor with the mstsc window needs to be refreshed, sometimes all of it under the mstsc windows needs to be refreshed, and sometimes, but rarely, the desktop never needs to be refreshed after closing mstsc to this specific
    target.
    The mstsc session is not a full screen session and is opened as per:
    C:\Windows\System32\mstsc.exe "<path to rdp file>.rdp" /w:2560 /h:1530
    on a 30" display set for 2560x1600, 32bpp, 60Hz
    To clarify, the specific issue manifests when I disconnect the session -- ie. clicking the X in the title bar, then clicking OK in the dialog "Your remote session will be disconnected". The "Your remote session will be disconnected" dialog
    disappears (sometimes), and the mstsc windows title bar disappears but some or all of everything else that was inside the mstsc windows (from the remote system) remains displayed (even the mstsc bottom window border) until the desktop is refreshed.
    I do note that if I set the mstsc session to full screen and then close/disconnect the session while it is in full screen, that the refresh required after disconnect issue does not manifest.
    I am not sure if this is a functional issue in the mstsc client in Windows 8.1 (file version 6.3.9600.16384) or is more generally display/explorer specific. If the issue is broader, I am only noticing it with mstsc.
    I've also updated to the latest Intel HD Graphics driver (rel: 2014-08-29) and no difference.

  • I have customized my Firefox toolbar. After closing the browser and then reopening it, the toolbar has returned to the way it was before I customized it. How do I get my customization of the toolbar to become permanent?

    I have customized my Firefox toolbar several times. After closing the browser and then reopening it, the toolbar has returned to the way it was before I customized it each time. How do I get my customization of the toolbar to become permanent?
    It has occurred with Firefox 4.0.1 and 5.0

    see http://kb.mozillazine.org/Corrupt_localstore.rdf
    Take a picture of your toolbars so you can easily reconstruct them from the default after solving the the problem.
    If it happens to you it will probably happen again in the future so you might want to keep some copies of your modified localstore.rdf file so you can delete the bad one and rename one of the replacements in waiting. Saving, copying and renaming must be done with Firefox down, of course.

Maybe you are looking for