Where is the power outage logging

Hi,

There was a power outage today, is there a log I can check when it happened?
Something like "System event" on Windows:
Code:
"The previous system shutdown at 1:31:05 PM on ‎7/‎14/‎2016 was unexpected."
XML view:
Code:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
        <Provider Name="EventLog" />
        <EventID Qualifiers="32768">6008</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2016-07-14T22:30:43.138027500Z" />
        <EventRecordID>12627</EventRecordID>
        <Channel>System</Channel>
        <Computer>XXXXXX</Computer>
        <Security />
    </System>
    <EventData>
        <Data>1:31:05 PM</Data>
        <Data>‎7/‎14/‎2016</Data>
        <Data />
        <Data />
        <Data>57671</Data>
        <Data />
        <Data />
        <Binary>...</Binary>
    </EventData>
</Event>
 
Back
Top