diff --git a/Basic_Computer_Skills_for_Forensics/regex.zip b/Basic_Computer_Skills_for_Forensics/regex.zip deleted file mode 100644 index d59d3dc..0000000 Binary files a/Basic_Computer_Skills_for_Forensics/regex.zip and /dev/null differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/0_Number_Systems.pptx b/Basic_Computer_Skills_for_Forensics/regex/0_Number_Systems.pptx new file mode 100644 index 0000000..addf661 Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/0_Number_Systems.pptx differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/Animation.html b/Basic_Computer_Skills_for_Forensics/regex/Animation.html new file mode 100644 index 0000000..3f7e0ce --- /dev/null +++ b/Basic_Computer_Skills_for_Forensics/regex/Animation.html @@ -0,0 +1,111 @@ + + + + Lottie Animation + + + + + + + + + + +
+ + + diff --git a/Basic_Computer_Skills_for_Forensics/regex/CYFI727_Roster_2028.xlsx b/Basic_Computer_Skills_for_Forensics/regex/CYFI727_Roster_2028.xlsx new file mode 100644 index 0000000..aa583e4 Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/CYFI727_Roster_2028.xlsx differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/DefaultDDMStructureHelperImpl.java b/Basic_Computer_Skills_for_Forensics/regex/DefaultDDMStructureHelperImpl.java new file mode 100644 index 0000000..b930772 --- /dev/null +++ b/Basic_Computer_Skills_for_Forensics/regex/DefaultDDMStructureHelperImpl.java @@ -0,0 +1,296 @@ +/** + * Copyright (c) 2000-present Liferay, Inc. All rights reserved. + * + * This library is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 2.1 of the License, or (at your option) + * any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more + * details. + */ + +package com.liferay.dynamic.data.mapping.util.impl; + +import com.liferay.dynamic.data.mapping.io.DDMFormJSONDeserializer; +import com.liferay.dynamic.data.mapping.io.DDMFormLayoutJSONDeserializer; +import com.liferay.dynamic.data.mapping.io.DDMFormXSDDeserializer; +import com.liferay.dynamic.data.mapping.model.DDMForm; +import com.liferay.dynamic.data.mapping.model.DDMFormLayout; +import com.liferay.dynamic.data.mapping.model.DDMStructure; +import com.liferay.dynamic.data.mapping.model.DDMStructureConstants; +import com.liferay.dynamic.data.mapping.model.DDMTemplateConstants; +import com.liferay.dynamic.data.mapping.service.DDMStructureLocalService; +import com.liferay.dynamic.data.mapping.service.DDMTemplateLocalService; +import com.liferay.dynamic.data.mapping.storage.StorageType; +import com.liferay.dynamic.data.mapping.util.DDM; +import com.liferay.dynamic.data.mapping.util.DDMXML; +import com.liferay.dynamic.data.mapping.util.DefaultDDMStructureHelper; +import com.liferay.portal.kernel.language.LanguageUtil; +import com.liferay.portal.kernel.template.TemplateConstants; +import com.liferay.portal.kernel.upgrade.util.UpgradeProcessUtil; +import com.liferay.portal.kernel.util.FileUtil; +import com.liferay.portal.kernel.util.GetterUtil; +import com.liferay.portal.kernel.util.LocaleUtil; +import com.liferay.portal.kernel.util.StringPool; +import com.liferay.portal.kernel.util.StringUtil; +import com.liferay.portal.kernel.workflow.WorkflowConstants; +import com.liferay.portal.kernel.xml.Attribute; +import com.liferay.portal.kernel.xml.Document; +import com.liferay.portal.kernel.xml.Element; +import com.liferay.portal.kernel.xml.UnsecureSAXReaderUtil; +import com.liferay.portal.service.ServiceContext; +import com.liferay.portal.util.PortalUtil; +import com.liferay.portlet.documentlibrary.model.DLFileEntryTypeConstants; + +import java.util.HashMap; +import java.util.List; +import java.util.Locale; +import java.util.Map; + +import org.osgi.service.component.annotations.Component; +import org.osgi.service.component.annotations.Reference; + +/** + * @author Michael C. Han + */ +@Component(immediate = true) +public class DefaultDDMStructureHelperImpl + implements DefaultDDMStructureHelper { + + @Override + public void addDDMStructures( + long userId, long groupId, long classNameId, + ClassLoader classLoader, String fileName, + ServiceContext serviceContext) + throws Exception { + + Locale locale = PortalUtil.getSiteDefaultLocale(groupId); + + List structureElements = getDDMStructures( + classLoader, fileName, locale); + + for (Element structureElement : structureElements) { + boolean dynamicStructure = GetterUtil.getBoolean( + structureElement.elementText("dynamic-structure")); + + if (dynamicStructure) { + continue; + } + + String name = structureElement.elementText("name"); + + String description = structureElement.elementText("description"); + + String ddmStructureKey = name; + + DDMStructure ddmStructure = + _ddmStructureLocalService.fetchStructure( + groupId, classNameId, ddmStructureKey); + + if (ddmStructure != null) { + continue; + } + + Map nameMap = new HashMap<>(); + Map descriptionMap = new HashMap<>(); + + for (Locale curLocale : LanguageUtil.getAvailableLocales(groupId)) { + nameMap.put(curLocale, LanguageUtil.get(curLocale, name)); + descriptionMap.put( + curLocale, LanguageUtil.get(curLocale, description)); + } + + if (name.equals(DLFileEntryTypeConstants.NAME_IG_IMAGE) && + !UpgradeProcessUtil.isCreateIGImageDocumentType()) { + + continue; + } + + DDMForm ddmForm = getDDMForm(structureElement, locale); + + DDMFormLayout ddmFormLayout = getDDMFormLayout( + structureElement, ddmForm); + + serviceContext.setAttribute( + "status", WorkflowConstants.STATUS_APPROVED); + + ddmStructure = _ddmStructureLocalService.addStructure( + userId, groupId, + DDMStructureConstants.DEFAULT_PARENT_STRUCTURE_ID, classNameId, + ddmStructureKey, nameMap, descriptionMap, ddmForm, + ddmFormLayout, StorageType.JSON.toString(), + DDMStructureConstants.TYPE_DEFAULT, serviceContext); + + Element templateElement = structureElement.element("template"); + + if (templateElement == null) { + continue; + } + + String templateFileName = templateElement.elementText("file-name"); + + String script = StringUtil.read( + classLoader, + FileUtil.getPath(fileName) + StringPool.SLASH + + templateFileName); + + boolean cacheable = GetterUtil.getBoolean( + templateElement.elementText("cacheable")); + + _ddmTemplateLocalService.addTemplate( + userId, groupId, PortalUtil.getClassNameId(DDMStructure.class), + ddmStructure.getStructureId(), ddmStructure.getClassNameId(), + null, nameMap, null, DDMTemplateConstants.TEMPLATE_TYPE_DISPLAY, + DDMTemplateConstants.TEMPLATE_MODE_CREATE, + TemplateConstants.LANG_TYPE_FTL, script, cacheable, false, + StringPool.BLANK, null, serviceContext); + } + } + + @Override + public String getDynamicDDMStructureDefinition( + ClassLoader classLoader, String fileName, + String dynamicDDMStructureName, Locale locale) + throws Exception { + + List structureElements = getDDMStructures( + classLoader, fileName, locale); + + for (Element structureElement : structureElements) { + boolean dynamicStructure = GetterUtil.getBoolean( + structureElement.elementText("dynamic-structure")); + + if (!dynamicStructure) { + continue; + } + + String name = structureElement.elementText("name"); + + if (!name.equals(dynamicDDMStructureName)) { + continue; + } + + Element structureElementRootElement = structureElement.element( + "root"); + + return structureElementRootElement.asXML(); + } + + return null; + } + + protected DDMForm getDDMForm(Element structureElement, Locale locale) + throws Exception { + + Element structureElementDefinitionElement = structureElement.element( + "definition"); + + if (structureElementDefinitionElement != null) { + return _ddmFormJSONDeserializer.deserialize( + structureElementDefinitionElement.getTextTrim()); + } + + Element structureElementRootElement = structureElement.element("root"); + + String definition = structureElementRootElement.asXML(); + + Attribute defaultLocaleAttribute = + structureElementRootElement.attribute("default-locale"); + + Locale ddmStructureDefaultLocale = LocaleUtil.fromLanguageId( + defaultLocaleAttribute.getValue()); + + definition = _ddmXML.updateXMLDefaultLocale( + definition, ddmStructureDefaultLocale, locale); + + return _ddmFormXSDDeserializer.deserialize(definition); + } + + protected DDMFormLayout getDDMFormLayout( + Element structureElement, DDMForm ddmForm) + throws Exception { + + Element structureElementLayoutElement = structureElement.element( + "layout"); + + if (structureElementLayoutElement != null) { + return _ddmFormLayoutJSONDeserializer.deserialize( + structureElementLayoutElement.getTextTrim()); + } + + return _ddm.getDefaultDDMFormLayout(ddmForm); + } + + protected List getDDMStructures( + ClassLoader classLoader, String fileName, Locale locale) + throws Exception { + + String xml = StringUtil.read(classLoader, fileName); + + xml = StringUtil.replace(xml, "[$LOCALE_DEFAULT$]", locale.toString()); + + Document document = UnsecureSAXReaderUtil.read(xml); + + Element rootElement = document.getRootElement(); + + return rootElement.elements("structure"); + } + + @Reference(unbind = "-") + protected void setDDM(DDM ddm) { + _ddm = ddm; + } + + @Reference(unbind = "-") + protected void setDDMFormJSONDeserializer( + DDMFormJSONDeserializer ddmFormJSONDeserializer) { + + _ddmFormJSONDeserializer = ddmFormJSONDeserializer; + } + + @Reference(unbind = "-") + protected void setDDMFormLayoutJSONDeserializer( + DDMFormLayoutJSONDeserializer ddmFormLayoutJSONDeserializer) { + + _ddmFormLayoutJSONDeserializer = ddmFormLayoutJSONDeserializer; + } + + @Reference(unbind = "-") + protected void setDDMFormXSDDeserializer( + DDMFormXSDDeserializer ddmFormXSDDeserializer) { + + _ddmFormXSDDeserializer = ddmFormXSDDeserializer; + } + + @Reference(unbind = "-") + protected void setDDMStructureLocalService( + DDMStructureLocalService ddmStructureLocalService) { + + _ddmStructureLocalService = ddmStructureLocalService; + } + + @Reference(unbind = "-") + protected void setDDMTemplateLocalService( + DDMTemplateLocalService ddmTemplateLocalService) { + + _ddmTemplateLocalService = ddmTemplateLocalService; + } + + @Reference(unbind = "-") + protected void setDDMXML(DDMXML ddmXML) { + _ddmXML = ddmXML; + } + + private volatile DDM _ddm; + private volatile DDMFormJSONDeserializer _ddmFormJSONDeserializer; + private volatile DDMFormLayoutJSONDeserializer + _ddmFormLayoutJSONDeserializer; + private volatile DDMFormXSDDeserializer _ddmFormXSDDeserializer; + private volatile DDMStructureLocalService _ddmStructureLocalService; + private volatile DDMTemplateLocalService _ddmTemplateLocalService; + private volatile DDMXML _ddmXML; + +} \ No newline at end of file diff --git a/Basic_Computer_Skills_for_Forensics/regex/Detailed-System-Report.html b/Basic_Computer_Skills_for_Forensics/regex/Detailed-System-Report.html new file mode 100644 index 0000000..1c7685d --- /dev/null +++ b/Basic_Computer_Skills_for_Forensics/regex/Detailed-System-Report.html @@ -0,0 +1,1089 @@ + + + + + + Intel® Driver & Support Assistant - Detailed Report + + + + +

Intel® Driver & Support Assistant

+ +
+

Detailed Report

+

Last scan: 4/21/2022 9:44 PM

+ +
+

Computer

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ASUSTeK COMPUTER INC. ROG ZENITH II EXTREME ALPHA
System ManufacturerSystem manufacturer
System ModelSystem Product Name
System TypeDesktop
Motherboard ManufacturerASUSTeK COMPUTER INC.
Motherboard ProductROG ZENITH II EXTREME ALPHA
VersionRev 1.xx
BIOS Version1303
Date11/11/2020
SMBIOS Version3.2
Secure BootOff
+ +
+ +
+

Operating System

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Microsoft Windows 10 Pro (64-bit)
Release2009
Version21H2
OS Build10.0.19044
Build Branchvb_release
LocaleEnglish (United Kingdom)
Windows DirectoryC:\Windows
System DirectoryC:\Windows\system32
.NET Framework Versions2.0.50727.4927, 3.0.30729.4926, 3.5.30729.4926, 4.0.0.0, 4.8.04084
Installed Internet BrowsersMozilla Firefox, Google Chrome, Internet Explorer 11.789.19041.0, Microsoft Edge
+ +
+ +
+

Processor

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AMD Ryzen Threadripper 3970X 32-Core Processor
Device Details
ManufacturerAuthenticAMD
DescriptionAMD64 Family 23 Model 49 Stepping 0
Architecturex64
# of Cores32
# of Threads64
Processor Base Frequency3900 MHz
Current Voltage1.7
Level 2 Cache16384 Kb
Level 3 Cache131072 Kb
Processor Id0x30F10
Revision12544
AvailabilityRunning at full power
+ +
+ +
+

Graphics

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NVIDIA GeForce RTX 2080 SUPER
Device Details
Adapter CompatibilityNVIDIA
Video ProcessorGeForce RTX 2080 SUPER
Resolution3840 x 1600
Bits Per Pixel32
Number of Colors4294967296
Refresh Rate - Current59 Hz
Refresh Rate - Maximum174 Hz
Refresh Rate - Minimum59 Hz
ProviderNVIDIA
Version27.21.14.6089
Date12/11/2020
Adapter DAC TypeIntegrated RAMDAC
Adapter RAM4.00 GB
AvailabilityRunning at full power
StatusThis device is working properly.
LocationPCI bus 1, device 0, function 0
Device IdPCI\VEN_10DE&DEV_1E81&SUBSYS_13A010DE&REV_A1\4&1B360E81&0&0009
+ +
+ +
+

Audio

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
HD Pro Webcam C910
Device Details
ProviderLogitech
NameUSBAUDIO.sys
Version13.80.853.0
Date10/22/2012
Device IdUSB\VID_046D&PID_0821&MI_00\A&1B051F6F&0&0000
USB Audio 2.0
Device Details
ProviderMicrosoft
Nameusbaudio2.sys
Version10.0.19041.1
Date12/6/2019
Device IdUSB\VID_0B05&PID_1916&MI_00\9&F9B7816&0&0000
USB Audio Device
Device Details
ProviderMicrosoft
NameUSBAUDIO.sys
Version10.0.19041.1202
Date8/26/2021
Device IdUSB\VID_046D&PID_0AAF&MI_00\7&32201A99&0&0000
NVIDIA High Definition Audio
Device Details
ProviderNVIDIA Corporation
Namenvhda64v.sys
Version1.3.38.40
Date10/16/2020
Device IdHDAUDIO\FUNC_01&VEN_10DE&DEV_0092&SUBSYS_10DE13A0&REV_1001\5&175AA0AD&0&0001
USB Audio 2.0
Device Details
ProviderMicrosoft
Nameusbaudio2.sys
Version10.0.19041.1
Date12/6/2019
Device IdUSB\VID_0B05&PID_1915&MI_00\9&5BB9D7F&0&0000
NVIDIA Virtual Audio Device (Wave Extensible) (WDM)
Device Details
ProviderNVIDIA
Namenvvad64v.sys
Version4.13.0.0
Date3/14/2019
Device IdROOT\UNNAMED_DEVICE\0000
Iriun Webcam
Device Details
ProviderIriun
Nameiriuna0.sys
Version1.1.0.0
Date10/18/2020
Device IdROOT\MEDIA\0000
+ +
+ +
+

Networking and I/O

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Intel® Wi-Fi 6 AX200 160MHz
Device Details
ManufacturerIntel Corporation
AvailabilityRunning at full power
StatusThis device is working properly.
InstalledTrue
MAC AddressA4:B1:C1:35:A4:94
Service NameNetwtw10
ProviderIntel
Version22.40.0.7
Date3/3/2021
Device IdPCI\VEN_8086&DEV_2723&SUBSYS_00848086&REV_1A\6&2A827936&0&00380009
Revision1A
Intel® I211 Gigabit Network Connection
Device Details
ManufacturerIntel
AvailabilityRunning at full power
StatusThis device is working properly.
InstalledTrue
MAC Address3C:7C:3F:1C:90:62
Service Namee1rexpress
ProviderIntel
Version12.18.11.1
Date6/15/2020
Device IdPCI\VEN_8086&DEV_1539&SUBSYS_85F01043&REV_03\3C7C3FFFFF1C906200
Revision03
Marvell 10G Ethernet connection
Device Details
ManufacturerMarvell
AvailabilityRunning at full power
StatusThis device is working properly.
InstalledTrue
MAC Address3C:7C:3F:1C:90:63
Service Nameaqnic650
ProviderMarvell
Version2.2.1.0
Date9/15/2020
Device IdPCI\VEN_1D6A&DEV_07B1&SUBSYS_87571043&REV_02\6&1F37EFC8&0&00180009
Revision02
VirtualBox Host-Only Ethernet Adapter
Device Details
ManufacturerOracle Corporation
AvailabilityRunning at full power
StatusThis device is working properly.
InstalledTrue
MAC Address0A:00:27:00:00:03
Service NameVBoxNetAdp
ProviderOracle Corporation
Version6.1.26.45957
Date7/28/2021
Device IdROOT\NET\0000
+ +
+ +
+

Memory

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
128 GB
Device Details
Physical Memory - Total128 GB
Physical Memory - Available123.34 GB
Virtual Memory - Total146.92 GB
Virtual Memory - Available141.08 GB
Page FileC:\pagefile.sys
Page File Space19.00 GB
+ +
+ +
+

Storage

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Samsung SSD 970 EVO Plus 2TB
Device Details
Capacity1863.01 GB
Version2B2QEXM7
Serial Number0025_385A_01AE_CC5F.
Partitions1
ProviderMicrosoft
Version10.0.19041.789
Date6/21/2006
Device IdSCSI\DISK&VEN_NVME&PROD_SAMSUNG_SSD_970\5&144CE71E&0&000000
Device Path\\.\PHYSICALDRIVE3
D:
File SystemNTFS
CompressedFalse
Capacity1863.00 GB
Free Space1226.36 GB
WDC WD80EFZX-68UW8N0
Device Details
Capacity7452.03 GB
Version83.H0A83
Serial NumberR6GVDJPY
Partitions1
ProviderMicrosoft
Version10.0.19041.789
Date6/21/2006
Device IdSCSI\DISK&VEN_WDC&PROD_WD80EFZX-68UW8N0\7&30AD277B&0&000000
Device Path\\.\PHYSICALDRIVE1
E:
File SystemNTFS
CompressedFalse
Capacity7452.02 GB
Free Space4874.49 GB
SanDisk Ultra II 960GB
Device Details
Capacity894.25 GB
VersionX41100RL
Serial Number161161442053
Partitions2
ProviderMicrosoft
Version10.0.19041.789
Date6/21/2006
Device IdSCSI\DISK&VEN_SANDISK&PROD_ULTRA_II_960GB\7&2A9DABF9&0&010000
Device Path\\.\PHYSICALDRIVE0
Seagate BUP BK SCSI Disk Device
Device Details
Capacity3726.02 GB
Version0304
Serial NumberNA7PT9P1
Partitions2
ProviderMicrosoft
Version10.0.19041.789
Date6/21/2006
Device IdSCSI\DISK&VEN_SEAGATE&PROD_BUP_BK\A&19C33E6B&0&000000
Device Path\\.\PHYSICALDRIVE4
H:
File SystemNTFS
CompressedFalse
Capacity3579.41 GB
Free Space1328.94 GB
J:
File SystemNTFS
CompressedFalse
Capacity146.48 GB
Free Space9.55 GB
Samsung SSD 970 EVO Plus 2TB
Device Details
Capacity1863.01 GB
Version2B2QEXM7
Serial Number0025_385A_01AE_CC9B.
Partitions3
ProviderMicrosoft
Version10.0.19041.789
Date6/21/2006
Device IdSCSI\DISK&VEN_NVME&PROD_SAMSUNG_SSD_970\5&1B7D41D1&0&000000
Device Path\\.\PHYSICALDRIVE2
C:
File SystemNTFS
CompressedFalse
Capacity1862.41 GB
Free Space916.78 GB
Seagate Backup+ Desk SCSI Disk Device
Device Details
Capacity3726.02 GB
Version040B
Serial NumberNA7H32WW
Partitions1
ProviderMicrosoft
Version10.0.19041.789
Date6/21/2006
Device IdSCSI\DISK&VEN_SEAGATE&PROD_BACKUP+__DESK\A&228DD575&0&000000
Device Path\\.\PHYSICALDRIVE5
K:
File SystemNTFS
CompressedFalse
Capacity3725.90 GB
Free Space3190.41 GB
+ +
+ + + +
+ + + \ No newline at end of file diff --git a/Basic_Computer_Skills_for_Forensics/regex/JLECmd.zip b/Basic_Computer_Skills_for_Forensics/regex/JLECmd.zip new file mode 100644 index 0000000..196254d Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/JLECmd.zip differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/REGEX Cheat Sheet.pdf b/Basic_Computer_Skills_for_Forensics/regex/REGEX Cheat Sheet.pdf new file mode 100644 index 0000000..32e26a5 Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/REGEX Cheat Sheet.pdf differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/RisetotheChallengeSaveDate1963.jpg b/Basic_Computer_Skills_for_Forensics/regex/RisetotheChallengeSaveDate1963.jpg new file mode 100644 index 0000000..7c799c5 Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/RisetotheChallengeSaveDate1963.jpg differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/ScriptablePointer.java b/Basic_Computer_Skills_for_Forensics/regex/ScriptablePointer.java new file mode 100644 index 0000000..1fd23c3 --- /dev/null +++ b/Basic_Computer_Skills_for_Forensics/regex/ScriptablePointer.java @@ -0,0 +1,98 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.cocoon.components.flow.javascript; + +import java.util.Locale; + +import org.apache.commons.jxpath.ri.QName; +import org.apache.commons.jxpath.ri.model.NodePointer; +import org.apache.commons.jxpath.ri.model.beans.PropertyPointer; +import org.apache.commons.jxpath.ri.model.dynamic.DynamicPointer; +import org.mozilla.javascript.NativeArray; +import org.mozilla.javascript.Scriptable; +import org.mozilla.javascript.ScriptableObject; +import org.mozilla.javascript.Wrapper; + +/** + * + * @version CVS $Id: ScriptablePointer.java 433543 2006-08-22 06:22:54Z crossley $ + */ +public class ScriptablePointer extends DynamicPointer { + + Scriptable node; + + final static ScriptablePropertyHandler handler = + new ScriptablePropertyHandler(); + + public ScriptablePointer(NodePointer parent, + QName name, + Scriptable object) { + super(parent, name, object, handler); + node = object; + } + + public ScriptablePointer(QName name, + Scriptable object, + Locale locale) { + super(name, object, handler, locale); + node = object; + } + + public PropertyPointer getPropertyPointer(){ + return new ScriptablePropertyPointer(this, handler); + } + + public int getLength() { + Object obj = getBaseValue(); + if (obj instanceof Scriptable) { + Scriptable node = (Scriptable)obj; + if (node instanceof NativeArray) { + return (int)((NativeArray)node).jsGet_length(); + } + if (ScriptableObject.hasProperty(node, "length")) { + Object val = ScriptableObject.getProperty(node, "length"); + if (val instanceof Number) { + return ((Number)val).intValue(); + } + } + } + return super.getLength(); + } + + public Object getImmediateNode() { + Object value; + if (index == WHOLE_COLLECTION) { + value = node; + } else { + value = ScriptableObject.getProperty(node, index); + if (value == Scriptable.NOT_FOUND) { + value = node; // hack: same behavior as ValueUtils.getValue() + } + } + if (value instanceof Wrapper) { + value = ((Wrapper)value).unwrap(); + } + return value; + } + + public void setValue(Object value){ + if (getParent() != null) { + getParent().setValue(value); + } + } + +} diff --git a/Basic_Computer_Skills_for_Forensics/regex/active_contracts_by_vendor_name_excluded.xls b/Basic_Computer_Skills_for_Forensics/regex/active_contracts_by_vendor_name_excluded.xls new file mode 100644 index 0000000..5c22846 Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/active_contracts_by_vendor_name_excluded.xls differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/customers.docx b/Basic_Computer_Skills_for_Forensics/regex/customers.docx new file mode 100644 index 0000000..5eb935c Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/customers.docx differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/drive_fs.txt b/Basic_Computer_Skills_for_Forensics/regex/drive_fs.txt new file mode 100644 index 0000000..6962494 --- /dev/null +++ b/Basic_Computer_Skills_for_Forensics/regex/drive_fs.txt @@ -0,0 +1,3874 @@ +------------------------------------- +drive_fs log started +version: 57.0.5.0 +changelist 441824622 with baseline 437344536 in a mint client based on //depot/branches/drive_fs_release_branch/437344536.1/google3 +------------------------------------- +2022-04-22T01:45:41.575ZI [24980:log_writer_thread] instrumentation.cc:113:OpenLogFileInDirectory Logging to C:\Users\Weife\AppData\Local\Google\DriveFS\Logs\drive_fs.txt +2022-04-22T01:45:41.576ZI [24680:NonCelloThread] drive_fs_main.cc:153:LogExistingCrashReports No existing crash reports found. +2022-04-22T01:45:41.576ZI [24680:NonCelloThread] drive_fs_main.cc:392:PrintCommandLine C:\Program Files\Google\Drive File Stream\57.0.5.0\GoogleDriveFS.exe --crash_handler_token=\\.\pipe\crashpad_24212_WCXEKXPTVXNKQIYA --parent_version=57.0.5.0 --startup_mode +2022-04-22T01:45:41.584ZI [24680:NonCelloThread] drive_fs_main.cc:136:InitializeLanguage Initializing with detected language: en-GB +2022-04-22T01:45:41.586ZI [24680:NonCelloThread] i18n.cc:311:InitializeI18n I18n initialized with en-gb +2022-04-22T01:45:41.816ZI [24680:NonCelloThread] drive_fs.cc:516:RunDriveFS Options: argv_0: "C:\\Program Files\\Google\\Drive File Stream\\57.0.5.0\\GoogleDriveFS.exe" +base_path: "C:\\Users\\Weife\\AppData\\Local\\Google\\DriveFS" +ipc_pipe_path: "\\\\.\\Pipe\\GoogleDriveFSPipe_Weife" +shell_ipc_pipe_path: "\\\\.\\Pipe\\GoogleDriveFSPipe_Weife_shell" +crash_handler_token: "\\\\.\\pipe\\crashpad_24212_WCXEKXPTVXNKQIYA" +enable_tracing: false +enable_ui: true +enable_file_dances: true +use_fake_cello_fs: false +enable_poll_for_changes: true +drive_create_options { + use_fake_cloud_store: false + authorize_new_user: false + refresh_token: "" + user_email: "" + token_uri: "" + auth_uri: "" + metadata_server_auth_uri: "" + user_id: "" +} +enable_field_event_recording: true +open_gdoc_path: "" +started_by_installer: false +locale: "" +force_onboarding: false +log_connection_details: false +use_intranet_connectivity_to_check_online: false +crash_handler_init_status: SUCCESS +cello_options { + drive_api_options { + apiary_trace_token: "" + apiary_trace_regex: "" + dapper_trace_regex: "" + functional_tests_dir_path: "" + } +} +open_gdocs_root: false +open_gsheets_root: false +open_gslides_root: false +crash_on_core_start: false +use_curl_logging_scribe: false +force_case_sensitivity: false +new_gsuite_file: "" +account_settings_from_file_path: "" +parent_version: "57.0.5.0" +open_all_dialogs: false +startup_mode: true +fake_multiaccount_ui: false +feature_config_override { + global { + } + account { + } +} +fake_migration_file_viewer_data: false +global_feature_config { + drive_dot: true + share_dialog: true + shell_ipc: true + pause_syncing_option: true + bandwidth_throttling: true + structured_logging: true + context_menu_force_refresh_folder: true + status_window_click_show_file_in_file_manager: true + outlook_addin: false + autostart_preference: true + gui_autostart_option: true + mojave_overlays_fix: false + curl_proxy_authentication: true + gui_reset_preferences_menu_option: true + cancel_upload_option: true + force_refresh_folder_normal_menu: false + structured_log_max_file_size_kbytes: 2048 + ask_to_copy_files_for_pending_uploads: true + inform_users_of_pending_uploads: true + same_content_dedupe_interval_ms: 600000 + dedupe_interval_ms: 2000 + support_status_notification: true + deprecation_date: "2099-12-31" + deprecation_warning_threshold: 30 + min_supported_os_version: "0.0.0" + crash_oom_threshold_mb: 1048576 + allow_search: true + finish_syncing_files_option: true + osxfuse_process_blacklist: "esets_daemon;scep_daemon" + osxfuse_lock_abort_test: false + osxfuse_sched_flags_offset_override: 4294967295 + enforce_single_parent: true + add_shortcut_menu: true + meet_outlook_addin: false + hidden_attr_support: true + spotlight_timestamp_fsctl_support: true + mac_disk_arbitration_unmount: true + current_drive_fs_version: "57.0.4.0" + enable_goose_mode: false + file_revisions_virtual_folder: true + unlocked_mac_buf_unmap: true + spork_migration: false + enable_apl_upload: true + use_mac_fileprovider: false + trim_parents_during_cloud_merge: true + trim_parents_during_commit: true + create_gsuite_file: true + switchblade: true + switchblade_open_files_via_shortcut: true + file_provider_quick_access_polling_interval_sec: 43200 + show_quick_access_in_search_dialog: true + use_spork_notifications: true + include_user_email_in_feedback: true + mac_smb_port: 0 + osxfuse_sched_flags_offset_override_arm: 4294967295 + current_os_version: "Windows/10.0.19044" + cancel_com_calls: true + enable_skip_redirect_for_editor_files: true + enable_file_provider_migration: true + show_download_link: false + logging_on_cello_thread_startup: false + enable_mirror_merge_folder_warning: true + mac_smb_dialect_mode: 10 + dokan_set_internal_file_index: true + context_menu_create_editor_files: false + file_revisions_file_provider: true + mac_smb_nobrowse: true + disable_jsoncpp: false + special_folder_change_notification: true + file_provider_auto_enable_domains: true + enable_fst: false + repair_kext_management_directory: true + purge_non_system_apl_photos_roots: false + instrument_http_client: true + enable_mirror_roots_context: true + com_api_thread_stuck_threshold_sec: 0 + num_metrics_batches_per_request: 70 + max_metrics_per_event_code_per_batch: 200 + bns_migration_window_closed: true + encrypt_and_upload: false + show_non_running_accounts: false + enable_shell_ipc_based_progress: false + enable_mount_in_sidebar_setting: false + allow_multiple_smb_connections: true + persistent_smb_port_auto_selection: false +} +photos_scope: "" +show_sign_in_dialog_if_no_user: true +show_preferences_dialog_debug_menu: false +crash_in_execution_context: false +enable_physical_http_logging: false + +2022-04-22T01:45:41.817ZI [24680:NonCelloThread] drive_fs.cc:155:LogSystemConfig OS: Windows/10.0.19044 +2022-04-22T01:45:41.817ZI [24680:NonCelloThread] drive_fs.cc:162:LogSystemConfig Architecture: x86_64 +2022-04-22T01:45:41.817ZI [24680:NonCelloThread] drive_fs.cc:170:LogSystemConfig Total RAM: 127.87 GiB +2022-04-22T01:45:41.817ZI [24680:NonCelloThread] drive_fs.cc:186:LogSystemConfig Disk space: 984.21 GB free / 1999.74 GB total +2022-04-22T01:45:41.817ZI [24680:NonCelloThread] drive_fs.cc:193:LogSystemConfig Timezone: UTC+0000 (UTC) +2022-04-22T01:45:41.821ZI [24680:NonCelloThread] preferences_manager.cc:107:GetUserPreferences user_preferences for no_user: { +global { + content_cache_base_path: "D:\\cloud_storage\\google_drive" + disable_ssl_validation: false + disable_crl_check: false + direct_connection: false + do_not_show_dialogs { + mount_point_changed: false + confirm_shared_folder_move_in: false + confirm_shared_folder_move_out: false + confirm_td_file_move_out: false + confirm_move_to_untrusted_td: false + warning_move_to_untrusted_td: false + warning_td_file_move_out: false + warning_shared_folder_move_in: false + warning_shared_folder_move_out: false + preferences_dialog_tour: true + spork_tour_notification: true + google_drive_tab_onboarding: true + } + autostart_on_login: true + outlook_attachment_size_threshold_mbytes: 10 + disable_outlook_plugin: false + disable_meet_outlook_plugin: false + disable_add_account: false + allowed_accounts_pattern: ".*" + stalled_progress_seconds: 5 + open_office_files_in_docs: true + enable_smb: false + prompt_to_backup_devices: true + trust_system_root_certs: false + disable_gpu: false + search_hot_key: 1 +} +account { + mount_point_path: "G" + disable_realtime_presence: false + machine_root_doc_id: "" + photos_upload_quality: ORIGINAL_QUALITY + photos_upload_screenshots: true + photos_upload_raw_files: true + old_mirrored_my_drive_path: "" + mirrored_my_drive_watch_path: "" + hide_mount_point: false + show_mount_point_in_sidebar: true + mac_smb_port: 0 +} +} +2022-04-22T01:45:41.821ZI [24680:NonCelloThread] preferences_manager.cc:138:GetEffectivePreferences effective_preferences for no_user: { +global { + content_cache_base_path: "D:\\cloud_storage\\google_drive" + disable_ssl_validation: false + disable_crl_check: false + direct_connection: false + do_not_show_dialogs { + mount_point_changed: false + confirm_shared_folder_move_in: false + confirm_shared_folder_move_out: false + confirm_td_file_move_out: false + confirm_move_to_untrusted_td: false + warning_move_to_untrusted_td: false + warning_td_file_move_out: false + warning_shared_folder_move_in: false + warning_shared_folder_move_out: false + preferences_dialog_tour: true + spork_tour_notification: true + google_drive_tab_onboarding: true + } + autostart_on_login: true + outlook_attachment_size_threshold_mbytes: 10 + disable_outlook_plugin: false + disable_meet_outlook_plugin: false + disable_add_account: false + allowed_accounts_pattern: ".*" + stalled_progress_seconds: 5 + open_office_files_in_docs: true + enable_smb: false + prompt_to_backup_devices: true + trust_system_root_certs: false + disable_gpu: false + search_hot_key: 1 +} +account { + mount_point_path: "G" + disable_realtime_presence: false + machine_root_doc_id: "" + photos_upload_quality: ORIGINAL_QUALITY + photos_upload_screenshots: true + photos_upload_raw_files: true + old_mirrored_my_drive_path: "" + mirrored_my_drive_watch_path: "" + hide_mount_point: false + show_mount_point_in_sidebar: true + mac_smb_port: 0 +} +} +2022-04-22T01:45:41.825ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T01:45:41.847ZI [24680:NonCelloThread] app.cc:616:RegisterOutlookAddInHelper Google Drive Outlook Add-in: Outlook add-in already unregistered. +2022-04-22T01:45:41.847ZI [24680:NonCelloThread] app.cc:616:RegisterOutlookAddInHelper Google Meet Outlook Add-in: Outlook add-in already unregistered. +2022-04-22T01:45:41.940ZI [24680:NonCelloThread] dialog.cc:78:ResetViewViaDifferencer Resetting UpdateViewDifferencer. +2022-04-22T01:45:41.973ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{127c7816-f0f7-4e7f-a742-c15ba0c6dbe3}\ description. name: HHD_8T, uuid: 127c7816-f0f7-4e7f-a742-c15ba0c6dbe3, device_number: 1785692579, mount_point: E:\, fs_type: NTFS, device_type: Internal +2022-04-22T01:45:41.974ZI [25348:MediaManagerThread] media_manager.cc:899:AddMediaInternal Media was added [Media: media_id="127c7816-f0f7-4e7f-a742-c15ba0c6dbe3" name="HHD_8T" file_system="NTFS" mount_point(raw)="E:\" device_type="Internal" device_number=1785692579 writable="true"] +2022-04-22T01:45:41.976ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{3e1eb17e-8fc6-41d3-9b93-4cd51a491898}\ description. name: , uuid: 3e1eb17e-8fc6-41d3-9b93-4cd51a491898, device_number: 1244877934, mount_point: C:\, fs_type: NTFS, device_type: Internal +2022-04-22T01:45:41.976ZI [25348:MediaManagerThread] media_manager.cc:899:AddMediaInternal Media was added [Media: media_id="3e1eb17e-8fc6-41d3-9b93-4cd51a491898" name="" file_system="NTFS" mount_point(raw)="C:\" device_type="Internal" device_number=1244877934 writable="true"] +2022-04-22T01:45:41.977ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{d7108bea-086b-4ef6-8867-d5eb92a1e443}\ description. name: , uuid: d7108bea-086b-4ef6-8867-d5eb92a1e443, device_number: 1187879682, mount_point: , fs_type: NTFS, device_type: Internal +2022-04-22T01:45:41.977ZE [25368:VolumeListenerThread] volume_listener_win.cc:397:GetVolumeFromGuidPath \\?\Volume{d7108bea-086b-4ef6-8867-d5eb92a1e443}\ has no mount point. +2022-04-22T01:45:41.977ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{8df4a63c-ef91-4599-b3e3-ef649b73ff07}\ description. name: New Volume, uuid: 8df4a63c-ef91-4599-b3e3-ef649b73ff07, device_number: 3965908745, mount_point: D:\, fs_type: NTFS, device_type: Internal +2022-04-22T01:45:41.978ZI [25348:MediaManagerThread] media_manager.cc:899:AddMediaInternal Media was added [Media: media_id="8df4a63c-ef91-4599-b3e3-ef649b73ff07" name="New Volume" file_system="NTFS" mount_point(raw)="D:\" device_type="Internal" device_number=3965908745 writable="true"] +2022-04-22T01:45:41.978ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{011e0ff6-fec6-4859-bff7-9c039d31f97d}\ description. name: Seagate3T, uuid: 011e0ff6-fec6-4859-bff7-9c039d31f97d, device_number: 2559564023, mount_point: H:\, fs_type: NTFS, device_type: Internal +2022-04-22T01:45:41.979ZI [25348:MediaManagerThread] media_manager.cc:899:AddMediaInternal Media was added [Media: media_id="011e0ff6-fec6-4859-bff7-9c039d31f97d" name="Seagate3T" file_system="NTFS" mount_point(raw)="H:\" device_type="Internal" device_number=2559564023 writable="true"] +2022-04-22T01:45:41.979ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{58a1dde4-058d-4dae-8e4b-e9f587af6cda}\ description. name: , uuid: 58a1dde4-058d-4dae-8e4b-e9f587af6cda, device_number: 576008738, mount_point: J:\, fs_type: NTFS, device_type: Internal +2022-04-22T01:45:41.980ZI [25348:MediaManagerThread] media_manager.cc:899:AddMediaInternal Media was added [Media: media_id="58a1dde4-058d-4dae-8e4b-e9f587af6cda" name="" file_system="NTFS" mount_point(raw)="J:\" device_type="Internal" device_number=576008738 writable="true"] +2022-04-22T01:45:41.980ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{72311b3f-6165-4e8f-a90e-8ac46959b774}\ description. name: Seagate_Backup_B, uuid: 72311b3f-6165-4e8f-a90e-8ac46959b774, device_number: 2292306930, mount_point: K:\, fs_type: NTFS, device_type: Internal +2022-04-22T01:45:41.981ZI [25348:MediaManagerThread] media_manager.cc:899:AddMediaInternal Media was added [Media: media_id="72311b3f-6165-4e8f-a90e-8ac46959b774" name="Seagate_Backup_B" file_system="NTFS" mount_point(raw)="K:\" device_type="Internal" device_number=2292306930 writable="true"] +2022-04-22T01:45:41.981ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{aa3d4f88-1106-469e-9598-96f292d29851}\ description. name: , uuid: aa3d4f88-1106-469e-9598-96f292d29851, device_number: 2549945382, mount_point: , fs_type: FAT, device_type: Internal +2022-04-22T01:45:41.981ZE [25368:VolumeListenerThread] volume_listener_win.cc:397:GetVolumeFromGuidPath \\?\Volume{aa3d4f88-1106-469e-9598-96f292d29851}\ has no mount point. +2022-04-22T01:45:41.982ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{a20eed56-6b31-4d5c-ae70-f1b18e10d6a9}\ description. name: , uuid: a20eed56-6b31-4d5c-ae70-f1b18e10d6a9, device_number: 372403260, mount_point: , fs_type: FAT, device_type: Internal +2022-04-22T01:45:41.982ZE [25368:VolumeListenerThread] volume_listener_win.cc:397:GetVolumeFromGuidPath \\?\Volume{a20eed56-6b31-4d5c-ae70-f1b18e10d6a9}\ has no mount point. +2022-04-22T01:45:41.982ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{338bfb24-02b7-11ec-ac1d-a4b1c135a498}\ description. name: pCloud Drive, uuid: 338bfb24-02b7-11ec-ac1d-a4b1c135a498, device_number: 1409414134, mount_point: P:\, fs_type: FAT, device_type: Removable +2022-04-22T01:45:41.982ZI [25348:MediaManagerThread] media_manager.cc:899:AddMediaInternal Media was added [Media: media_id="338bfb24-02b7-11ec-ac1d-a4b1c135a498" name="pCloud Drive" file_system="FAT" mount_point(raw)="P:\" device_type="Removable" device_number=1409414134 writable="true"] +2022-04-22T01:45:41.982ZI [25348:MediaManagerThread] media_manager.cc:908:AddMediaInternal Skip adding ignored media: [Media: media_id="338bfb24-02b7-11ec-ac1d-a4b1c135a498" name="pCloud Drive" file_system="FAT" mount_point(raw)="P:\" device_type="Removable" device_number=1409414134 writable="true"] +2022-04-22T01:45:44.138ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T01:45:44.170ZI [27576:SwitchbladeDelegateImpl] switchblade_installer.cc:78:InstallSwitchblade Switchblade Chrome extension is already installed. +2022-04-22T01:45:44.170ZI [27576:SwitchbladeDelegateImpl] switchblade_installer_win.cc:52:InstallSwitchbladeNativeHostManifest Installing Switchblade native host manifest... +2022-04-22T01:45:44.171ZI [27576:SwitchbladeDelegateImpl] switchblade_installer_win.cc:67:InstallSwitchbladeNativeHostManifest Switchblade native host manifest written to C:\Users\Weife\AppData\Local\Google\DriveFS\com.google.drive.nativeproxy.json +2022-04-22T01:45:44.171ZI [27576:SwitchbladeDelegateImpl] switchblade_installer_win.cc:86:InstallSwitchbladeNativeHostManifest Switchblade native host manifest written to C:\Users\Weife\AppData\Local\Google\DriveFS\com.google.drive.nativeproxy.json and configured in registry +2022-04-22T01:45:44.172ZI [24680:NonCelloThread] curl_api.cc:1314:Create SSL verification with built in certificates +2022-04-22T01:45:44.180ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T01:45:44.181ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T01:45:44.181ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T01:45:44.181ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-22T01:45:44.196ZI [24680:NonCelloThread] client.cc:517:LogWindowsFilterDrivers Nonstandard filter drivers present: bindflt.sys (556d9232df19b942) easyanticheat.sys (c833a09ab3cd99aa) +2022-04-22T01:45:44.196ZI [24680:NonCelloThread] client.cc:522:LogWindowsFilterDrivers Nonstandard filter driver combo hash: 71f27dcb44dfab5f +2022-04-22T01:45:44.198ZI [24680:NonCelloThread] uiext.cc:68:SaveFlagsToRegistry Set Explorer extension keys. +2022-04-22T01:45:44.220ZI [24680:NonCelloThread] global_features_manager.cc:244:CompositeAll Compositing global features based on 1 accounts +2022-04-22T01:45:44.220ZI [24680:NonCelloThread] global_features_manager.cc:260:CompositeAll Composited global features *WITHOUT* overrides: drive_dot: true +share_dialog: true +shell_ipc: true +pause_syncing_option: true +bandwidth_throttling: true +structured_logging: true +context_menu_force_refresh_folder: true +status_window_click_show_file_in_file_manager: true +outlook_addin: false +autostart_preference: true +gui_autostart_option: true +mojave_overlays_fix: false +curl_proxy_authentication: true +gui_reset_preferences_menu_option: true +cancel_upload_option: true +force_refresh_folder_normal_menu: false +structured_log_max_file_size_kbytes: 2048 +ask_to_copy_files_for_pending_uploads: true +inform_users_of_pending_uploads: true +same_content_dedupe_interval_ms: 600000 +dedupe_interval_ms: 2000 +support_status_notification: true +deprecation_date: "2099-12-31" +deprecation_warning_threshold: 30 +min_supported_os_version: "0.0.0" +crash_oom_threshold_mb: 1048576 +allow_search: true +finish_syncing_files_option: true +osxfuse_process_blacklist: "esets_daemon;scep_daemon" +osxfuse_lock_abort_test: false +osxfuse_sched_flags_offset_override: 4294967295 +enforce_single_parent: true +add_shortcut_menu: true +meet_outlook_addin: false +hidden_attr_support: true +spotlight_timestamp_fsctl_support: true +mac_disk_arbitration_unmount: true +current_drive_fs_version: "57.0.5.0" +enable_goose_mode: false +file_revisions_virtual_folder: true +unlocked_mac_buf_unmap: true +spork_migration: false +enable_apl_upload: true +use_mac_fileprovider: false +trim_parents_during_cloud_merge: true +trim_parents_during_commit: true +create_gsuite_file: true +switchblade: true +switchblade_open_files_via_shortcut: true +file_provider_quick_access_polling_interval_sec: 43200 +show_quick_access_in_search_dialog: true +use_spork_notifications: true +include_user_email_in_feedback: true +mac_smb_port: 0 +osxfuse_sched_flags_offset_override_arm: 4294967295 +current_os_version: "Windows/10.0.19044" +cancel_com_calls: true +enable_skip_redirect_for_editor_files: true +enable_file_provider_migration: true +show_download_link: false +logging_on_cello_thread_startup: false +enable_mirror_merge_folder_warning: true +mac_smb_dialect_mode: 10 +dokan_set_internal_file_index: true +context_menu_create_editor_files: false +file_revisions_file_provider: true +mac_smb_nobrowse: true +disable_jsoncpp: false +special_folder_change_notification: true +file_provider_auto_enable_domains: true +enable_fst: false +repair_kext_management_directory: true +purge_non_system_apl_photos_roots: false +instrument_http_client: true +enable_mirror_roots_context: true +com_api_thread_stuck_threshold_sec: 0 +num_metrics_batches_per_request: 70 +max_metrics_per_event_code_per_batch: 200 +bns_migration_window_closed: true +encrypt_and_upload: false +show_non_running_accounts: false +enable_shell_ipc_based_progress: false +enable_mount_in_sidebar_setting: false +allow_multiple_smb_connections: true +persistent_smb_port_auto_selection: false + +2022-04-22T01:45:44.221ZI [24680:NonCelloThread] preferences.cc:93:UpgradeLegacyAccountPreferences UpgradeLegacyAccountPreferences declining +2022-04-22T01:45:44.222ZI [24680:NonCelloThread] preferences_manager.cc:107:GetUserPreferences user_preferences for 116443198218440817097: { +global { + content_cache_base_path: "D:\\cloud_storage\\google_drive" + disable_ssl_validation: false + disable_crl_check: false + direct_connection: false + do_not_show_dialogs { + mount_point_changed: false + confirm_shared_folder_move_in: false + confirm_shared_folder_move_out: false + confirm_td_file_move_out: false + confirm_move_to_untrusted_td: false + warning_move_to_untrusted_td: false + warning_td_file_move_out: false + warning_shared_folder_move_in: false + warning_shared_folder_move_out: false + preferences_dialog_tour: true + spork_tour_notification: true + google_drive_tab_onboarding: true + } + autostart_on_login: true + outlook_attachment_size_threshold_mbytes: 10 + disable_outlook_plugin: false + disable_meet_outlook_plugin: false + disable_add_account: false + allowed_accounts_pattern: ".*" + stalled_progress_seconds: 5 + open_office_files_in_docs: true + enable_smb: false + prompt_to_backup_devices: true + trust_system_root_certs: false + disable_gpu: false + search_hot_key: 1 +} +account { + mount_point_path: "G" + disable_realtime_presence: false + machine_root_doc_id: "" + photos_upload_quality: STANDARD_QUALITY + photos_upload_screenshots: true + photos_upload_raw_files: true + old_mirrored_my_drive_path: "" + mirrored_my_drive_watch_path: "" + hide_mount_point: false + show_mount_point_in_sidebar: true + mac_smb_port: 0 +} +} +2022-04-22T01:45:44.222ZI [24680:NonCelloThread] preferences_manager.cc:138:GetEffectivePreferences effective_preferences for 116443198218440817097: { +global { + content_cache_base_path: "D:\\cloud_storage\\google_drive" + disable_ssl_validation: false + disable_crl_check: false + direct_connection: false + do_not_show_dialogs { + mount_point_changed: false + confirm_shared_folder_move_in: false + confirm_shared_folder_move_out: false + confirm_td_file_move_out: false + confirm_move_to_untrusted_td: false + warning_move_to_untrusted_td: false + warning_td_file_move_out: false + warning_shared_folder_move_in: false + warning_shared_folder_move_out: false + preferences_dialog_tour: true + spork_tour_notification: true + google_drive_tab_onboarding: true + } + autostart_on_login: true + outlook_attachment_size_threshold_mbytes: 10 + disable_outlook_plugin: false + disable_meet_outlook_plugin: false + disable_add_account: false + allowed_accounts_pattern: ".*" + stalled_progress_seconds: 5 + open_office_files_in_docs: true + enable_smb: false + prompt_to_backup_devices: true + trust_system_root_certs: false + disable_gpu: false + search_hot_key: 1 +} +account { + mount_point_path: "G" + disable_realtime_presence: false + machine_root_doc_id: "" + photos_upload_quality: STANDARD_QUALITY + photos_upload_screenshots: true + photos_upload_raw_files: true + old_mirrored_my_drive_path: "" + mirrored_my_drive_watch_path: "" + hide_mount_point: false + show_mount_point_in_sidebar: true + mac_smb_port: 0 +} +} +2022-04-22T01:45:44.222ZI [24680:NonCelloThread] client.cc:4175:MaybeStartupOptionsForSavedAccount Returning options set for token: [AccountToken: persistable_token="116443198218440817097"] +2022-04-22T01:45:44.222ZI [24680:NonCelloThread] client.cc:4186:MaybeStartupOptionsForSavedAccount AccountFeatureConfig for 116443198218440817097 loaded from disk: thumbnails: true +deprecated: false +metadata_cache_reset_counter: 5 +spotlight: true +max_operation_batch_size: 15 +temporary_items_virtual_folder: true +local_disk_aware_get_free_space: true +max_parallel_background_cloud_queries: 3 +relocatable_content_cache: true +content_cache_max_kbytes: 1000000000 +fcm_token_generation: 1 +content_download_http_416_workaround: true +crash_on_failed_thread_checker_assert: true +allow_windows_system_user_access: false +dokan_oplocks: true +max_parallel_downloads_per_file: 5 +two_level_folder_prefetch: false +computers_virtual_folder: true +max_parallel_push_task_instances: 15 +emm_support: false +fetch_content_bytes_before_cancel_percent_multiplier: 500 +quicklook_thumbnails: true +min_bytes_saved_to_split_request: 9223372036854775807 +reset_account_after_fatal_local_store_failure: true +detect_stable_id_reuse: true +supply_json_gdoc_content: false +dokan_dispatch_monitor_check_ms: 10000 +dokan_dispatch_monitor_warn_ms: 60000 +sqlite_normal_transaction_sync: true +finder_process_names: "DesktopServicesHelper" +reset_account_after_local_largest_change_id_corrupt: true +emm_secondary_identifier: false +crash_on_cello_assert: false +force_cloud_recreate_order: true +allow_subscription_task: true +resubscribe_retry_interval_msec: 7200000 +account_backup_manager: true +account_backup_preservation_days: 30 +content_cache_reset_evictable_files_counter: 0 +allowed_new_gdoc_file_name_pattern: ".*Google Docs.*\\.gdoc|.*Google Sheets.*\\.gsheet|.*Google Slides.*\\.gslides" +reset_file_content_on_revert_flow: true +finder_create_file_handler_timeout_ms: 600000 +content_cache_reset_pinned_counter: 0 +debounce_ms: 200 +shortcut_links_use_item_id: true +repair_stable_id_reuse: true +fuse_symlink_to_shortcut_support: true +fuse_symlink_create_support: true +fuse_symlink_read_support: true +account_update_sec: 86400 +test_value_0: 0 +test_value_1: 0 +test_value_2: 0 +test_value_3: 0 +test_value_4: 0 +dokan_allow_optimistic_release: true +max_parallel_resumable_uploads: 1 +dokan_driver_request_batching: true +handle_unauthorized_resumable_uploads: true +content_cache_capacity_heuristic: EXCLUDE_NONEVICTABLE +dokan_fcb_garbage_collection_interval_ms: 2000 +photos_extensions: "jpg,jpeg,jpe,png,gif,heif,heic,tif,tiff,webp,bmp,dib,ico,jp2,j2c,jpf,j2k,jpx,dng,raw,arw,crw,cr2,cr3,dcr,dc2,erf,kc2,kdc,k25,mdc,mef,mos,mrw,nef,nrw,orf,pef,qtk,raf,rdc,rw2,srf,srw,sr2,x3f,3fr" +videos_extensions: "3g2,3gp,asf,avi,divx,flv,m2t,m2ts,m4v,mkv,mmv,mng,mod,mov,mp4,mpe,mpg,mpeg,mts,ogv,qt,tod,webm,wmv" +disable_spotlight_permission_preheat: true +photos_debounce_edit_time_ms: 1800000 +empty_file_with_open_handle_upload_delay_ms: 600000 +enable_photo_min_size_filtering: true +emm_fully_qualified_hostname: true +support_local_create_shared_drives: false +subscription_task_throttle_time_ms: 300000 +subscription_task_max_operations: 50 +emm_get_serial_via_wmi_on_windows: true +max_bytes_per_fetch_content_request: 268435456 +spork_beta_group: "" +is_dasher_user: false +lookup_spam_detection_time_unit_ms: 1000 +lookup_spam_detection_min_number_of_events: 100 +lookup_spam_detection_duration_ms: 30000 +open_spam_detection_time_unit_ms: 1000 +open_spam_detection_min_number_of_events: 100 +open_spam_detection_duration_ms: 30000 +admin_enabled_photos: true +photos_max_simultaneous_uploads: 3 +photos_hq_charged_expectation: true +enable_cse: false +disable_security_update_enabled_cloud_change: true +dokan_use_fsctl_events: true +photos_extensions_to_ignore: "crdownload" +enable_g1: true +metadata_cache_update_counter: 1 +mdcu_max_item_count_per_request: 1000 +emm_send_device_encryption_status: false +emm_send_device_screen_lock_status: false +allow_hqpc_exemptions: true +dokan_disable_file_network_physical_name_info: true +admin_enabled_bns: true +file_provider_cache_reset_counter: 0 +content_cache_entry_cache_implementation: LRU +migration_local_scan_fatal_statuses_mac: "" +allow_send_scopes: false +enable_dynamic_list_changes_page_sizing: false +dynamic_page_sizing_min_page_size: 1 +dynamic_page_sizing_min_capacity_reached_count: 5 +dynamic_page_sizing_increase_frequency_threshold_ms: 600000 +dynamic_page_sizing_decrease_frequency_threshold_ms: 300000 +min_operation_batch_size: 2 +enable_smb_spotlight_rpc: false +throttled_qps_for_spamming_process: 0 +send_mtime_updates_to_drive: false +send_atime_updates_to_drive: false +file_provider_list_batch_size_multiplier: 10 +file_provider_update_batch_size_multiplier: 10 +smb_unmount_with_diskutil: false +dokan_pull_event_ahead: false +dokan_fcb_avl_table: false +min_spamming_process_throttling_time_ms: 600000 +max_spamming_process_throttling_time_ms: 18000000 + +2022-04-22T01:45:44.223ZI [24680:NonCelloThread] client.cc:4011:operator() Started 0 of 1 core(s). +2022-04-22T01:45:44.223ZI [24680:NonCelloThread] client.cc:4175:MaybeStartupOptionsForSavedAccount Returning options set for token: [AccountToken: persistable_token="116443198218440817097"] +2022-04-22T01:45:44.224ZI [24680:NonCelloThread] client.cc:4186:MaybeStartupOptionsForSavedAccount AccountFeatureConfig for 116443198218440817097 loaded from disk: thumbnails: true +deprecated: false +metadata_cache_reset_counter: 5 +spotlight: true +max_operation_batch_size: 15 +temporary_items_virtual_folder: true +local_disk_aware_get_free_space: true +max_parallel_background_cloud_queries: 3 +relocatable_content_cache: true +content_cache_max_kbytes: 1000000000 +fcm_token_generation: 1 +content_download_http_416_workaround: true +crash_on_failed_thread_checker_assert: true +allow_windows_system_user_access: false +dokan_oplocks: true +max_parallel_downloads_per_file: 5 +two_level_folder_prefetch: false +computers_virtual_folder: true +max_parallel_push_task_instances: 15 +emm_support: false +fetch_content_bytes_before_cancel_percent_multiplier: 500 +quicklook_thumbnails: true +min_bytes_saved_to_split_request: 9223372036854775807 +reset_account_after_fatal_local_store_failure: true +detect_stable_id_reuse: true +supply_json_gdoc_content: false +dokan_dispatch_monitor_check_ms: 10000 +dokan_dispatch_monitor_warn_ms: 60000 +sqlite_normal_transaction_sync: true +finder_process_names: "DesktopServicesHelper" +reset_account_after_local_largest_change_id_corrupt: true +emm_secondary_identifier: false +crash_on_cello_assert: false +force_cloud_recreate_order: true +allow_subscription_task: true +resubscribe_retry_interval_msec: 7200000 +account_backup_manager: true +account_backup_preservation_days: 30 +content_cache_reset_evictable_files_counter: 0 +allowed_new_gdoc_file_name_pattern: ".*Google Docs.*\\.gdoc|.*Google Sheets.*\\.gsheet|.*Google Slides.*\\.gslides" +reset_file_content_on_revert_flow: true +finder_create_file_handler_timeout_ms: 600000 +content_cache_reset_pinned_counter: 0 +debounce_ms: 200 +shortcut_links_use_item_id: true +repair_stable_id_reuse: true +fuse_symlink_to_shortcut_support: true +fuse_symlink_create_support: true +fuse_symlink_read_support: true +account_update_sec: 86400 +test_value_0: 0 +test_value_1: 0 +test_value_2: 0 +test_value_3: 0 +test_value_4: 0 +dokan_allow_optimistic_release: true +max_parallel_resumable_uploads: 1 +dokan_driver_request_batching: true +handle_unauthorized_resumable_uploads: true +content_cache_capacity_heuristic: EXCLUDE_NONEVICTABLE +dokan_fcb_garbage_collection_interval_ms: 2000 +photos_extensions: "jpg,jpeg,jpe,png,gif,heif,heic,tif,tiff,webp,bmp,dib,ico,jp2,j2c,jpf,j2k,jpx,dng,raw,arw,crw,cr2,cr3,dcr,dc2,erf,kc2,kdc,k25,mdc,mef,mos,mrw,nef,nrw,orf,pef,qtk,raf,rdc,rw2,srf,srw,sr2,x3f,3fr" +videos_extensions: "3g2,3gp,asf,avi,divx,flv,m2t,m2ts,m4v,mkv,mmv,mng,mod,mov,mp4,mpe,mpg,mpeg,mts,ogv,qt,tod,webm,wmv" +disable_spotlight_permission_preheat: true +photos_debounce_edit_time_ms: 1800000 +empty_file_with_open_handle_upload_delay_ms: 600000 +enable_photo_min_size_filtering: true +emm_fully_qualified_hostname: true +support_local_create_shared_drives: false +subscription_task_throttle_time_ms: 300000 +subscription_task_max_operations: 50 +emm_get_serial_via_wmi_on_windows: true +max_bytes_per_fetch_content_request: 268435456 +spork_beta_group: "" +is_dasher_user: false +lookup_spam_detection_time_unit_ms: 1000 +lookup_spam_detection_min_number_of_events: 100 +lookup_spam_detection_duration_ms: 30000 +open_spam_detection_time_unit_ms: 1000 +open_spam_detection_min_number_of_events: 100 +open_spam_detection_duration_ms: 30000 +admin_enabled_photos: true +photos_max_simultaneous_uploads: 3 +photos_hq_charged_expectation: true +enable_cse: false +disable_security_update_enabled_cloud_change: true +dokan_use_fsctl_events: true +photos_extensions_to_ignore: "crdownload" +enable_g1: true +metadata_cache_update_counter: 1 +mdcu_max_item_count_per_request: 1000 +emm_send_device_encryption_status: false +emm_send_device_screen_lock_status: false +allow_hqpc_exemptions: true +dokan_disable_file_network_physical_name_info: true +admin_enabled_bns: true +file_provider_cache_reset_counter: 0 +content_cache_entry_cache_implementation: LRU +migration_local_scan_fatal_statuses_mac: "" +allow_send_scopes: false +enable_dynamic_list_changes_page_sizing: false +dynamic_page_sizing_min_page_size: 1 +dynamic_page_sizing_min_capacity_reached_count: 5 +dynamic_page_sizing_increase_frequency_threshold_ms: 600000 +dynamic_page_sizing_decrease_frequency_threshold_ms: 300000 +min_operation_batch_size: 2 +enable_smb_spotlight_rpc: false +throttled_qps_for_spamming_process: 0 +send_mtime_updates_to_drive: false +send_atime_updates_to_drive: false +file_provider_list_batch_size_multiplier: 10 +file_provider_update_batch_size_multiplier: 10 +smb_unmount_with_diskutil: false +dokan_pull_event_ahead: false +dokan_fcb_avl_table: false +min_spamming_process_throttling_time_ms: 600000 +max_spamming_process_throttling_time_ms: 18000000 + +2022-04-22T01:45:44.225ZE [27644:core_116443198218440817097] metrics_delegate.cc:63:ParseAssertionIdFeatureFlagList Got empty (or whitespace only) assertion ids +2022-04-22T01:45:44.226ZI [27644:core_116443198218440817097] curl_api.cc:1314:Create SSL verification with built in certificates +2022-04-22T01:45:44.226ZI [27644:core_116443198218440817097] curl_api.cc:1314:Create SSL verification with built in certificates +2022-04-22T01:45:44.226ZI [27644:core_116443198218440817097] account_context.cc:352:CreateCredential Restored credential with user ID: 116443198218440817097 +2022-04-22T01:45:44.226ZI [27644:core_116443198218440817097] drive_cloud_store_provider.cc:37:CreateDriveCloudStore Using Drive API v2 +2022-04-22T01:45:44.227ZI [27644:core_116443198218440817097] curl_api.cc:1314:Create SSL verification with built in certificates +2022-04-22T01:45:44.227ZI [27644:core_116443198218440817097] account_context.cc:567:operator() Missing scopes mask: 0x0 +2022-04-22T01:45:44.231ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T01:45:44.233ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T01:45:44.233ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T01:45:44.233ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-22T01:45:44.234ZI [24680:NonCelloThread] uiext.cc:68:SaveFlagsToRegistry Set Explorer extension keys. +2022-04-22T01:45:44.237ZI [24680:NonCelloThread] client.cc:3651:StartAccountAuthComplete Authorized as frank.w.xu@gmail.com (116443198218440817097) +2022-04-22T01:45:44.247ZE [25348:MediaManagerThread] media_manager.cc:2931:PushRoots Pushing SlurpRoots had a non-success status: Status::UNSUPPORTED +2022-04-22T01:45:44.256ZI [24680:NonCelloThread] uiext.cc:68:SaveFlagsToRegistry Set Explorer extension keys. +2022-04-22T01:45:44.258ZE [25348:MediaManagerThread] media_manager.cc:2937:PushRoots Pushing MirrorRoots had a non-success status: Status::UNSUPPORTED +2022-04-22T01:45:44.259ZE [25348:MediaManagerThread] media_manager.cc:2931:PushRoots Pushing SlurpRoots had a non-success status: Status::UNSUPPORTED +2022-04-22T01:45:44.260ZI [24680:NonCelloThread] uiext.cc:68:SaveFlagsToRegistry Set Explorer extension keys. +2022-04-22T01:45:44.260ZE [25348:MediaManagerThread] media_manager.cc:2937:PushRoots Pushing MirrorRoots had a non-success status: Status::UNSUPPORTED +2022-04-22T01:45:44.260ZE [25348:MediaManagerThread] media_manager.cc:2931:PushRoots Pushing SlurpRoots had a non-success status: Status::UNSUPPORTED +2022-04-22T01:45:44.260ZI [24680:NonCelloThread] uiext.cc:68:SaveFlagsToRegistry Set Explorer extension keys. +2022-04-22T01:45:44.260ZE [25348:MediaManagerThread] media_manager.cc:2937:PushRoots Pushing MirrorRoots had a non-success status: Status::UNSUPPORTED +2022-04-22T01:45:44.261ZE [25348:MediaManagerThread] media_manager.cc:2931:PushRoots Pushing SlurpRoots had a non-success status: Status::UNSUPPORTED +2022-04-22T01:45:44.261ZI [24680:NonCelloThread] uiext.cc:68:SaveFlagsToRegistry Set Explorer extension keys. +2022-04-22T01:45:44.261ZE [25348:MediaManagerThread] media_manager.cc:2937:PushRoots Pushing MirrorRoots had a non-success status: Status::UNSUPPORTED +2022-04-22T01:45:44.261ZE [25348:MediaManagerThread] media_manager.cc:2931:PushRoots Pushing SlurpRoots had a non-success status: Status::UNSUPPORTED +2022-04-22T01:45:44.262ZI [24680:NonCelloThread] uiext.cc:68:SaveFlagsToRegistry Set Explorer extension keys. +2022-04-22T01:45:44.262ZE [25348:MediaManagerThread] media_manager.cc:2937:PushRoots Pushing MirrorRoots had a non-success status: Status::UNSUPPORTED +2022-04-22T01:45:44.370ZI [27644:core_116443198218440817097] shared_config_win.cc:128:RefreshExplorerPids New explorer PIDs 1: 11344 +2022-04-22T01:45:44.372ZI [27644:core_116443198218440817097] stream.cc:575:InitCelloFS new_user=false +2022-04-22T01:45:44.378ZI [27644:core_116443198218440817097] platform.cc:216:SetLocalTitleCaseSensitive Local filenames are set to be case insensitive. +2022-04-22T01:45:44.381ZI [27644:core_116443198218440817097] cello_fs.cc:390:InitInternal Content cache at: D:\cloud_storage\google_drive\116443198218440817097\content_cache +2022-04-22T01:45:44.381ZI [27644:core_116443198218440817097] cello_fs.cc:395:InitInternal Thumbnail cache at: C:\Users\Weife\AppData\Local\Google\DriveFS\116443198218440817097\thumbnails_cache +2022-04-22T01:45:44.381ZI [27644:core_116443198218440817097] cello_fs.cc:413:InitInternal Sqlite DB at: C:\Users\Weife\AppData\Local\Google\DriveFS\116443198218440817097\metadata_sqlite_db +2022-04-22T01:45:44.381ZE [27644:core_116443198218440817097] metrics_delegate.cc:63:ParseAssertionIdFeatureFlagList Got empty (or whitespace only) assertion ids +2022-04-22T01:45:44.383ZI [26256:MetricsTransportThread] legacy_metrics_transport.cc:384:ProcessRequestsOnBackgroundThread Metrics failed to send, Status::TEMPORARILY_UNAVAILABLE +2022-04-22T01:45:44.384ZI [27644:core_116443198218440817097] file_system_change_replayer.cc:95:operator() Cloud change replayer client ID: 24676 +2022-04-22T01:45:44.385ZI [27644:core_116443198218440817097] network_status_listener_win.cc:143:ListenForNetworkStatusChange Callback registered. +2022-04-22T01:45:44.387ZI [27644:core_116443198218440817097][STRM] content_cache.cc:272:Initialize Content cache capacity (bytes): 4611686018427386880 +2022-04-22T01:45:44.387ZI [27644:core_116443198218440817097][STRM] content_cache.cc:281:Initialize Sparse files supported: true +2022-04-22T01:45:44.388ZI [18708:Blocking Disk IO] content_cache.cc:394:InitializeOnIOThread Cache index at: C:\Users\Weife\AppData\Local\Google\DriveFS\116443198218440817097\content_cache\chunks.db +2022-04-22T01:45:44.400ZI [27644:core_116443198218440817097][STRM] content_cache.cc:272:Initialize Content cache capacity (bytes): 104857600 +2022-04-22T01:45:44.400ZI [27644:core_116443198218440817097][STRM] content_cache.cc:281:Initialize Sparse files supported: true +2022-04-22T01:45:44.401ZI [18708:Blocking Disk IO] content_cache.cc:394:InitializeOnIOThread Cache index at: C:\Users\Weife\AppData\Local\Google\DriveFS\116443198218440817097\thumbnails_cache\chunks.db +2022-04-22T01:45:44.442ZI [27644:core_116443198218440817097][STRM] token_bucket.cc:249:Create TokenBucket initialized with max_bucket_size of 300, with each request requiring 10 tokens +2022-04-22T01:45:44.442ZI [27644:core_116443198218440817097][STRM] token_bucket.cc:249:Create TokenBucket initialized with max_bucket_size of 300, with each request requiring 10 tokens +2022-04-22T01:45:44.442ZI [27644:core_116443198218440817097][STRM] token_bucket.cc:249:Create TokenBucket initialized with max_bucket_size of 1000, with each request requiring 10 tokens +2022-04-22T01:45:44.449ZI [27644:core_116443198218440817097][STRM] metrics_delegate.h:265:RecordInitializeLatencies KBytes read from disk during startup: 1941 +2022-04-22T01:45:44.459ZI [27644:core_116443198218440817097] metadata_update_manager.cc:373:UpdateInternal (stream) All MDCU batches are completed. +2022-04-22T01:45:44.459ZI [27644:core_116443198218440817097] sync_engine.cc:1800:MaybeStartRepeatingPushTaskTimer Starting repeating push task timer with interval 30000ms +2022-04-22T01:45:44.461ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 + +2022-04-22T01:45:44.463ZI [27644:core_116443198218440817097] virtual_folders.cc:173:Init Local folders at: C:\Users\Weife\AppData\Local\Google\DriveFS\116443198218440817097\local_folders +2022-04-22T01:45:44.468ZE [27644:core_116443198218440817097] metrics_delegate.cc:63:ParseAssertionIdFeatureFlagList Got empty (or whitespace only) assertion ids +2022-04-22T01:45:44.471ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T01:45:44.471ZI [27644:core_116443198218440817097][STRM] fetch_task.cc:579:RunInternal Largest local change id for My Drive at startup: 756636 +2022-04-22T01:45:44.472ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T01:45:44.472ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T01:45:44.472ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-22T01:45:44.478ZI [27644:core_116443198218440817097] network_status_listener_win.cc:143:ListenForNetworkStatusChange Callback registered. +2022-04-22T01:45:44.526ZI [27644:core_116443198218440817097][MIRR] metrics_delegate.h:265:RecordInitializeLatencies KBytes read from disk during startup: 847 +2022-04-22T01:45:44.536ZI [27644:core_116443198218440817097] metadata_update_manager.cc:373:UpdateInternal (mirror) All MDCU batches are completed. +2022-04-22T01:45:44.536ZI [27644:core_116443198218440817097] sync_engine.cc:1800:MaybeStartRepeatingPushTaskTimer Starting repeating push task timer with interval 30000ms +2022-04-22T01:45:44.537ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 + +2022-04-22T01:45:44.537ZI [27644:core_116443198218440817097] core.cc:680:CheckFeatureConfig Polling latest feature flags +2022-04-22T01:45:44.539ZI [27644:core_116443198218440817097][MIRR] fetch_task.cc:579:RunInternal Largest local change id for My Drive at startup: 756636 +2022-04-22T01:45:44.548ZI [26748:proxy_resolver_thread] proxy.cc:173:GetProxyForUrlInternal Proxy type resolved to 0 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=spork_onboarding, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=multi_account_preferences, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=generate_diagnostic_info, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_metrics_implementation, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_osxfuse_read_blacklist, value=false +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_kernel_based_change_replayer, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=changelog_download_throttle_time_ms, value=16000 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_fileprovider_for_migrated_users, value=false +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=raw_photos_extension, value=arw,crw,cr2,cr3,dcr,dc2,erf,kc2,kdc,k25,mdc,mef,mos,mrw,nef,nrw,orf,pef,qtk,raf,raw,rdc,rw2,srf,srw,sr2,x3f,3fr +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_suppress_file_name_in_event_context, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=auto_purge_trash_warning_notification, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=disable_spam_throttling_on_write_duration_ms, value=0 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=test_feature_flag_with_escape, value=New Google Docs\.gdoc|New Google Sheets\.gsheet|New Google Slides\.gslides +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=cello_subfolder_sharing_propagation, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=gui_bandwidth_throttling_control, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_photos, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_storage_saver_strings, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=macos_copy_resource_to_config_dir, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=shortcut_support, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fcm_implementation_type, value=2 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=default_ui_theme, value=1 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_concurrent_merged_read_optimization, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_after_wakeup_ms, value=1400000000 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=attach_logs_to_feedback_option, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_modern_feature_flags, value=false +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_unique_user_id, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=subfolder_sharing_support, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_switchblade, value=false +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_content_bytes_before_cancel_multiplier, value=1 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_migration_to_user_id_directory, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=metadata_db_vacuum, value=false +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=unlocked_mac_getxattr, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_mirrored_my_drive, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_context_menu_via_ipc, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=max_slow_operation_minidump_count, value=0 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=apiary_free_mode, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_ms, value=1400000000 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_read_backwards_heuristics, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=feedback, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=mirror_sync, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_nas_to_photos, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_start_date, value=2020-10-13 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=async_dokan_bridge, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=block_mac_antivirus, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_photos, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enabled, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=preferences_dialog, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=rescue_accounts, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=onboarding, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_noop_test_feature_2, value=false +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_shared_drives_api, value=true +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_start_date, value=2020-10-13 +2022-04-22T01:45:45.472ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=local_machine_override_preferences, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=sync_client_migration, value=false +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=detailed_move_warning_messages, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_actual_spam_throttling, value=false +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=migrate_to_account_directories, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_multi_account, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=check_can_add_folder_from_another_drive, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_feature_flags, value=LAUNCH_DISABLED +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_first_warning_start_date, value=2020-09-15 +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_drive, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_win7_patch_required_notification, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_skip_projector_for_office_files, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_rename_td_notification, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=request_team_drive_customer_id, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_end_date, value=2020-12-09 +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link_notification, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_file_organizer_capabilities, value=true +2022-04-22T01:45:45.473ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=customer_type, value=CONSUMER +2022-04-22T01:45:45.473ZI [27644:core_116443198218440817097] core.cc:649:ApplyFeatureConfigChange No changes to effective feature flags +2022-04-22T01:45:45.473ZI [24680:NonCelloThread] global_features_manager.cc:211:SetGlobalFeatures Set global features for account 116443198218440817097 +2022-04-22T01:45:45.473ZI [24680:NonCelloThread] global_features_manager.cc:244:CompositeAll Compositing global features based on 1 accounts +2022-04-22T01:45:45.473ZI [24680:NonCelloThread] global_features_manager.cc:260:CompositeAll Composited global features *WITHOUT* overrides: drive_dot: true +share_dialog: true +shell_ipc: true +pause_syncing_option: true +bandwidth_throttling: true +structured_logging: true +context_menu_force_refresh_folder: true +status_window_click_show_file_in_file_manager: true +outlook_addin: false +autostart_preference: true +gui_autostart_option: true +mojave_overlays_fix: false +curl_proxy_authentication: true +gui_reset_preferences_menu_option: true +cancel_upload_option: true +force_refresh_folder_normal_menu: false +structured_log_max_file_size_kbytes: 2048 +ask_to_copy_files_for_pending_uploads: true +inform_users_of_pending_uploads: true +same_content_dedupe_interval_ms: 600000 +dedupe_interval_ms: 2000 +support_status_notification: true +deprecation_date: "2099-12-31" +deprecation_warning_threshold: 30 +min_supported_os_version: "0.0.0" +crash_oom_threshold_mb: 1048576 +allow_search: true +finish_syncing_files_option: true +osxfuse_process_blacklist: "esets_daemon;scep_daemon" +osxfuse_lock_abort_test: false +osxfuse_sched_flags_offset_override: 4294967295 +enforce_single_parent: true +add_shortcut_menu: true +meet_outlook_addin: false +hidden_attr_support: true +spotlight_timestamp_fsctl_support: true +mac_disk_arbitration_unmount: true +current_drive_fs_version: "57.0.5.0" +enable_goose_mode: false +file_revisions_virtual_folder: true +unlocked_mac_buf_unmap: true +spork_migration: false +enable_apl_upload: true +use_mac_fileprovider: false +trim_parents_during_cloud_merge: true +trim_parents_during_commit: true +create_gsuite_file: true +switchblade: true +switchblade_open_files_via_shortcut: true +file_provider_quick_access_polling_interval_sec: 43200 +show_quick_access_in_search_dialog: true +use_spork_notifications: true +include_user_email_in_feedback: true +mac_smb_port: 0 +osxfuse_sched_flags_offset_override_arm: 4294967295 +current_os_version: "Windows/10.0.19044" +cancel_com_calls: true +enable_skip_redirect_for_editor_files: true +enable_file_provider_migration: true +show_download_link: false +logging_on_cello_thread_startup: false +enable_mirror_merge_folder_warning: true +mac_smb_dialect_mode: 10 +dokan_set_internal_file_index: true +context_menu_create_editor_files: false +file_revisions_file_provider: true +mac_smb_nobrowse: true +disable_jsoncpp: false +special_folder_change_notification: true +file_provider_auto_enable_domains: true +enable_fst: false +repair_kext_management_directory: true +purge_non_system_apl_photos_roots: false +instrument_http_client: true +enable_mirror_roots_context: true +com_api_thread_stuck_threshold_sec: 0 +num_metrics_batches_per_request: 70 +max_metrics_per_event_code_per_batch: 200 +bns_migration_window_closed: true +encrypt_and_upload: false +show_non_running_accounts: false +enable_shell_ipc_based_progress: false +enable_mount_in_sidebar_setting: false +allow_multiple_smb_connections: true +persistent_smb_port_auto_selection: false + +2022-04-22T01:45:45.478ZE [27644:core_116443198218440817097] folder_thumbnails_win.cc:338:NotifyDesktopIniChanged Filesystem is not ready but folder icon created for [EntryId: value=41] +2022-04-22T01:45:45.480ZI [27644:core_116443198218440817097] third_party/dokan/src/dokancc/file_system.cc:210:Mount Mounting file system with requested mount point: G +2022-04-22T01:45:45.480ZI [27644:core_116443198218440817097] third_party/dokan/src/dokancc/device.cc:42:OpenGlobalDevice Opened global dokan device: \\.\GoogleDriveFS_3758 +2022-04-22T01:45:45.485ZI [27644:core_116443198218440817097] third_party/dokan/src/dokancc/file_system.cc:264:Mount Successfully mounted device name: \Volume{0946a5b5-f5ea-3949-be9f-060c193265ca} with mount point: G: +2022-04-22T01:45:45.486ZI [27644:core_116443198218440817097] dispatch_monitor.cc:41:Mounted Starting dispatch monitor. +2022-04-22T01:45:45.486ZI [27644:core_116443198218440817097] operation_monitor.cc:75:Start Starting operation monitor with poll interval 4000 and slow operation threshold 20000 +2022-04-22T01:45:45.486ZI [27644:core_116443198218440817097] third_party/dokan/src/dokancc/file_system.cc:272:Mount Mounted callback returned. +2022-04-22T01:45:45.486ZI [27644:core_116443198218440817097] third_party/dokan/src/dokancc/file_system.cc:418:ReceiveIo The file system is now safe to access. +2022-04-22T01:45:45.487ZE [28252:NonCelloThread] trash_folder.cc:237:RegisterRecycleBinSize Failed to RegOpenKeyEx for Recycle Bin size: 0x2 +2022-04-22T01:45:45.490ZI [27644:core_116443198218440817097] curl_api.cc:1314:Create SSL verification with built in certificates +2022-04-22T01:45:45.490ZI [27644:core_116443198218440817097] curl_api.cc:1314:Create SSL verification with built in certificates +2022-04-22T01:45:45.490ZE [27644:core_116443198218440817097] metrics_delegate.cc:63:ParseAssertionIdFeatureFlagList Got empty (or whitespace only) assertion ids +2022-04-22T01:45:45.490ZI [27644:core_116443198218440817097] push_notification_manager.cc:102:PushNotificationManager Jitter introduced to backoff start, using 1239ms. +2022-04-22T01:45:45.491ZI [27644:core_116443198218440817097] token_bucket.cc:249:Create TokenBucket initialized with max_bucket_size of 1, with each request requiring 11.1111 tokens +2022-04-22T01:45:45.491ZE [27644:core_116443198218440817097] metrics_delegate.cc:63:ParseAssertionIdFeatureFlagList Got empty (or whitespace only) assertion ids +2022-04-22T01:45:45.491ZI [27644:core_116443198218440817097] core.cc:257:operator() InitInternalSync completed with status Status::SUCCESS +2022-04-22T01:45:45.552ZI [24680:NonCelloThread] controller_win.cc:251:Start Starting Dot controller. +2022-04-22T01:45:45.553ZI [24680:NonCelloThread] presence_tracker.cc:550:NotifyPauseSyncing Syncing is on +2022-04-22T01:45:45.553ZI [27644:core_116443198218440817097] platform.cc:184:SetIsBackgroundSyncingEnabled Background syncing has been enabled +2022-04-22T01:45:45.553ZE [28264:PhotosSlurpTransporter] photos_slurp_transporter.cc:197:operator() Attempt to pause/resume before successful init +2022-04-22T01:45:45.553ZI [24680:NonCelloThread] uiext.cc:68:SaveFlagsToRegistry Set Explorer extension keys. +2022-04-22T01:45:45.554ZI [24680:NonCelloThread] client.cc:3794:operator() Started core successfully for account [AccountToken: persistable_token="116443198218440817097"] +2022-04-22T01:45:45.554ZI [24680:NonCelloThread] client.cc:4011:operator() Started 1 of 1 core(s). +2022-04-22T01:45:45.554ZI [24680:NonCelloThread] drive_fs.cc:368:operator() Startup tracing disabled +2022-04-22T01:45:45.555ZI [28340:trace_writer_thread] instrumentation.cc:587:operator() Writing Chrome Trace to C:\Users\Weife\AppData\Local\Google\DriveFS\Logs\startup_trace_2022-04-22T01_45_45.json +2022-04-22T01:45:45.556ZI [24680:NonCelloThread] sidebar_utils_win.cc:41:CreateFavorite Favorites are obsolete for Windows 10 and later +2022-04-22T01:45:45.556ZI [24680:NonCelloThread] client.cc:3361:NotifyIfDeprecated Verifying deprecation status to notify the user. +2022-04-22T01:45:45.556ZI [24680:NonCelloThread] support_status.cc:98:IsCurrentOSGreaterOrEqual Current OS Version 10.0.19044. +2022-04-22T01:45:45.556ZI [24680:NonCelloThread] support_status.cc:55:GetCurrentSupportStatus OS supported: Yes +2022-04-22T01:45:45.556ZI [24680:NonCelloThread] support_status.cc:56:GetCurrentSupportStatus Days left to deprecate: 28377 +2022-04-22T01:45:45.556ZI [24680:NonCelloThread] support_status.cc:98:IsCurrentOSGreaterOrEqual Current OS Version 10.0.19044. +2022-04-22T01:45:45.556ZI [24680:NonCelloThread] client.cc:943:NotifyIfMountPointChanged Account [AccountToken: persistable_token="116443198218440817097"] mounted at 'G:' +2022-04-22T01:45:45.559ZI [24680:NonCelloThread] status_dialog.cc:421:OnAccountsChanged A new account was added +2022-04-22T01:45:45.566ZI [27644:core_116443198218440817097] slurp.cc:168:operator() Drive Slurp: Received new SyncRoots: [ +] +2022-04-22T01:45:45.566ZI [27644:core_116443198218440817097] slurp.cc:102:GetSlurpRootsDiff Generated Diff with roots_to_slurp: 0 roots_to_purge: 0 roots_to_stop: 0 disconnected_roots: 0 roots_to_forget: 0 +2022-04-22T01:45:45.566ZI [27644:core_116443198218440817097] slurp.cc:168:operator() Photos Slurp: Received new SyncRoots: [ +] +2022-04-22T01:45:45.566ZI [27644:core_116443198218440817097] slurp.cc:102:GetSlurpRootsDiff Generated Diff with roots_to_slurp: 0 roots_to_purge: 0 roots_to_stop: 0 disconnected_roots: 0 roots_to_forget: 0 +2022-04-22T01:45:45.567ZI [24680:NonCelloThread] uiext.cc:68:SaveFlagsToRegistry Set Explorer extension keys. +2022-04-22T01:45:45.567ZI [25488:mirror_116443198218440817097_COM] mirror.cc:313:MirrorRoots Received new mirror roots: [] +2022-04-22T01:45:45.569ZI [28340:trace_writer_thread] instrumentation.cc:589:operator() Trace successfully written +2022-04-22T01:45:46.481ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Entered event start. +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Finding mount entry; lockGlobal = 0; mount point = \DosDevices\G:. +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log No mount entry found. +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Creating disk device; mount point = G; mount ID = 1l +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Set volume security descriptor successfully. +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log disk device name: "\Device\Volume{0946a5b5-f5ea-3949-be9f-060c193265ca}"; symbolic link name: " +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log \DosDevices\Global\Volume{0946a5b5-f5ea-3949-be9f-060c193265ca}"; mount point: "\DosDevices\G:" +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log ; type: 8 +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log SymbolicLink: "\DosDevices\Global\Volume{0946a5b5-f5ea-3949-be9f-060c193265ca}" -> "\Device\Vol +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log ume{0946a5b5-f5ea-3949-be9f-060c193265ca}" created +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Inserted new mount entry. +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Event start using mount ID: 1; device name: \Volume{0946a5b5-f5ea-3949-be9f-060c193265ca}. +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Mounting volume using MountPoint "\DosDevices\G:" device "\Device\Volume{0946a5b5-f5ea-3949-be9 +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log f-060c193265ca}" +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Finding mount entry; lockGlobal = 1; mount point = . +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Found entry with matching device name: \Device\Volume{0946a5b5-f5ea-3949-be9f-060c193265ca} +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Starting FCB garbage collector with 2000 ms interval. +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Mount entry found: \DosDevices\G: -> \Device\Volume{0946a5b5-f5ea-3949-be9f-060c193265ca} +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Mount manager is querying for desired drive letter. ForceDriveLetterAutoAssignment = 0 +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Returning suggested name: "\DosDevices\G:" +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Link created: "\??\Volume{b167338d-c1dd-11ec-ac56-a4b1c135a498}" +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Link created: "\DosDevices\G:" +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Link name matches the current one. +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Mounting successfully done. +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Returning actual mount point G +2022-04-22T01:45:46.482ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Finished event start with status 1 and flags: 0 +2022-04-22T01:45:46.483ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Handle created before IOCTL_EVENT_WAIT for file "(null)" +2022-04-22T01:45:46.483ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Handle created before IOCTL_EVENT_WAIT for file "(null)" +2022-04-22T01:45:46.483ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Handle created before IOCTL_EVENT_WAIT for file "\$Extend\$Reparse:$R:$INDEX_ALLOCATION" +2022-04-22T01:45:46.483ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Opened file with user mode dispatch blocked: "\__drive_fs_keepalive" +2022-04-22T01:45:46.483ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Opened keepalive file from process 24676. +2022-04-22T01:45:46.483ZI [25056:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Activating keepalive handle from process 24676. +2022-04-22T01:45:47.596ZE [27644:core_116443198218440817097][MIRR] metrics_delegate.h:500:RecordChangesFetchedCount No histogram for unknown poll reason +2022-04-22T01:46:08.368ZI [27644:core_116443198218440817097] push_notification_manager.cc:160:Initialize Reusing GCM auth_data +2022-04-22T01:46:08.554ZI [27644:core_116443198218440817097] gcm.cc:345:operator() GCM successfully connected. +2022-04-22T01:46:08.554ZI [27644:core_116443198218440817097] push_notification_manager.cc:241:operator() Successfully connected PushNotificationManager. +2022-04-22T01:47:14.187ZI [27592:proxy_resolver_thread] proxy.cc:173:GetProxyForUrlInternal Proxy type resolved to 0 +2022-04-22T01:47:44.414ZI [27644:core_116443198218440817097] cello_fs.cc:5707:UpdateContentCacheCapacity Changing content cache capacity to 251134 MBytes +2022-04-22T01:47:44.414ZI [27644:core_116443198218440817097] content_cache_capacity_heuristic.cc:241:operator() Content cache used: 4 MiB +2022-04-22T01:47:44.414ZI [27644:core_116443198218440817097] content_cache_capacity_heuristic.cc:249:operator() New content cache capacity used: 0% +2022-04-22T01:47:44.414ZI [27644:core_116443198218440817097] content_cache_capacity_heuristic.cc:256:operator() Free disk space (excluding content cache): 1255672 MiB +2022-04-22T01:47:44.414ZI [27644:core_116443198218440817097] content_cache_capacity_heuristic.cc:265:operator() Evictable amount of content cache: 0% +2022-04-22T01:48:51.695ZI [25368:VolumeListenerThread] volume_listener_win.cc:276:VolumeAdded Volume added: G:\ +2022-04-22T01:48:51.696ZI [25368:VolumeListenerThread] volume_listener_win.cc:390:GetVolumeFromGuidPath \\?\Volume{b167338d-c1dd-11ec-ac56-a4b1c135a498}\ description. name: Google Drive, uuid: b167338d-c1dd-11ec-ac56-a4b1c135a498, device_number: 428019990, mount_point: G:\, fs_type: DriveFS, device_type: Internal +2022-04-22T01:48:51.697ZI [25348:MediaManagerThread] media_manager.cc:899:AddMediaInternal Media was added [Media: media_id="b167338d-c1dd-11ec-ac56-a4b1c135a498" name="Google Drive" file_system="DriveFS" mount_point(raw)="G:\" device_type="Internal" device_number=428019990 writable="true"] +2022-04-22T01:48:51.699ZI [28244:NonCelloThread] third_party/dokan/src/dokancc/file_system.cc:393:PostStart PostStart completed. +2022-04-22T01:48:51.699ZI [27644:core_116443198218440817097] slurp.cc:168:operator() Drive Slurp: Received new SyncRoots: [ +] +2022-04-22T01:48:51.699ZI [27644:core_116443198218440817097] slurp.cc:102:GetSlurpRootsDiff Generated Diff with roots_to_slurp: 0 roots_to_purge: 0 roots_to_stop: 0 disconnected_roots: 0 roots_to_forget: 0 +2022-04-22T01:48:51.699ZI [27644:core_116443198218440817097] slurp.cc:168:operator() Photos Slurp: Received new SyncRoots: [ +] +2022-04-22T01:48:51.699ZI [27644:core_116443198218440817097] slurp.cc:102:GetSlurpRootsDiff Generated Diff with roots_to_slurp: 0 roots_to_purge: 0 roots_to_stop: 0 disconnected_roots: 0 roots_to_forget: 0 +2022-04-22T01:48:51.700ZI [24680:NonCelloThread] uiext.cc:68:SaveFlagsToRegistry Set Explorer extension keys. +2022-04-22T01:48:51.700ZI [25488:mirror_116443198218440817097_COM] mirror.cc:313:MirrorRoots Received new mirror roots: [] +2022-04-22T01:50:46.474ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T01:50:47.675ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T01:50:47.675ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T01:50:49.224ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T01:51:11.393ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x000109A6 +2022-04-22T01:51:11.393ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x000109A4 +2022-04-22T01:51:11.393ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x000109A4: OSError +2022-04-22T01:51:11.393ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get PowerPoint window for 0x000109A4: OSError +2022-04-22T01:51:11.393ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for PowerPoint to start responding to COM requests. +2022-04-22T02:05:44.462ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T02:05:44.541ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T02:23:13.547ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x000509EC +2022-04-22T02:23:13.547ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x000409A6 +2022-04-22T02:23:13.547ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x000409A6: OSError +2022-04-22T02:23:13.547ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get PowerPoint window for 0x000409A6: OSError +2022-04-22T02:23:13.547ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for PowerPoint to start responding to COM requests. +2022-04-22T02:23:14.249ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x000509EC +2022-04-22T02:23:14.249ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x000409A6 +2022-04-22T02:23:14.249ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x000409A6: OSError +2022-04-22T02:23:14.749ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x000509EC +2022-04-22T02:23:14.749ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x000409A6 +2022-04-22T02:23:14.749ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x000409A6: OSError +2022-04-22T02:23:15.250ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x000509EC +2022-04-22T02:23:15.250ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x000409A6 +2022-04-22T02:23:15.250ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x000409A6: OSError +2022-04-22T02:23:15.751ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x000509EC +2022-04-22T02:23:15.751ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x000409A6 +2022-04-22T02:23:15.751ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x000409A6: OSError +2022-04-22T02:23:16.251ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x000509EC +2022-04-22T02:23:16.251ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x000409A6 +2022-04-22T02:23:16.251ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x000409A6: OSError +2022-04-22T02:23:16.752ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x000509EC +2022-04-22T02:23:16.752ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x000409A6 +2022-04-22T02:23:16.752ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x000409A6: OSError +2022-04-22T02:25:44.462ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T02:25:44.541ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T02:33:14.307ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T02:33:14.627ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T02:33:19.675ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T02:33:20.771ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T02:33:23.860ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T02:33:24.570ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T02:45:44.462ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T02:45:44.541ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T02:47:15.155ZI [28312:CurlWorker0] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T02:47:15.192ZI [28312:CurlWorker0] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-22T02:47:15.213ZI [28312:CurlWorker0] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#0) +2022-04-22T02:47:15.213ZI [28312:CurlWorker0] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T02:47:15.273ZI [28312:CurlWorker0] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T02:47:15.288ZI [28312:CurlWorker0] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T02:47:15.290ZI [28312:CurlWorker0] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T02:47:15.339ZI [28312:CurlWorker0] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T02:47:15.340ZI [28312:CurlWorker0] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T02:47:15.342ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T03:05:44.462ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T03:05:44.542ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T03:17:10.509ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 28 to Status::TIMEOUT_EXCEEDED +2022-04-22T03:17:10.936ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::TIMEOUT_EXCEEDED +2022-04-22T03:17:10.936ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::TIMEOUT_EXCEEDED +2022-04-22T03:17:10.936ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::TIMEOUT_EXCEEDED, schedule retry +2022-04-22T03:17:10.936ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T03:17:10.936ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T03:17:10.936ZI [27644:core_116443198218440817097] core.cc:680:CheckFeatureConfig Polling latest feature flags +2022-04-22T03:17:10.948ZE [33428:CurlWorker7] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T03:17:10.949ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB4F3AC0: 0 https://www.googleapis.com/drive/v2internal/changes?supportsAllDrives=true&includeItemsFromAllDrives=true&includeCorpusRemovals=true&includeDeleted=true&includeSubscribed=true&spaces=DRIVE%2cPHOTOS&startChangeId=1&filters=DRIVE_DATASERVICE&fields=kind%2clargestChangeId%2cselfLink&reason=302&syncType=2&openDrive=false transport: Status::UNAVAILABLE_WHILE_OFFLINE reader: Status::SUCCESS +2022-04-22T03:17:10.949ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB4F3AC0: (no response body) +2022-04-22T03:17:10.949ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:5327:operator() Failed to parse Date header, `', with error = Failed to parse input +2022-04-22T03:17:10.949ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB4F3AC0: 0 https://www.googleapis.com/drive/v2internal/changes?supportsAllDrives=true&includeItemsFromAllDrives=true&includeCorpusRemovals=true&includeDeleted=true&includeSubscribed=true&spaces=DRIVE%2cPHOTOS&startChangeId=1&driveId=0AA-mqmvfJLB5Uk9PVA&fields=kind%2clargestChangeId%2cselfLink&reason=302&syncType=2&openDrive=false transport: Status::UNAVAILABLE_WHILE_OFFLINE reader: Status::SUCCESS +2022-04-22T03:17:10.949ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB4F3AC0: (no response body) +2022-04-22T03:17:10.949ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:5327:operator() Failed to parse Date header, `', with error = Failed to parse input +2022-04-22T03:17:10.949ZE [33432:CurlWorker8] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T03:17:10.949ZE [33424:CurlWorker6] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T11:06:49.503ZI [33044:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Wake from sleep detected. +2022-04-22T11:06:50.598ZE [27644:core_116443198218440817097][STRM] fetch_task.cc:854:FetchCloudChangeIds Can't get largest change id: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T11:06:50.598ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB4FA000: 0 https://www.googleapis.com/drive/v2internal/changes?supportsAllDrives=true&includeItemsFromAllDrives=true&includeCorpusRemovals=true&includeDeleted=true&includeSubscribed=true&spaces=DRIVE%2cPHOTOS&startChangeId=1&filters=DRIVE_DATASERVICE&fields=kind%2clargestChangeId%2cselfLink&reason=302&syncType=2&openDrive=false transport: Status::UNAVAILABLE_WHILE_OFFLINE reader: Status::SUCCESS +2022-04-22T11:06:50.599ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB4FA000: (no response body) +2022-04-22T11:06:50.599ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:5327:operator() Failed to parse Date header, `', with error = Failed to parse input +2022-04-22T11:06:50.599ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB4FA000: 0 https://www.googleapis.com/drive/v2internal/changes?supportsAllDrives=true&includeItemsFromAllDrives=true&includeCorpusRemovals=true&includeDeleted=true&includeSubscribed=true&spaces=DRIVE%2cPHOTOS&startChangeId=1&driveId=0AA-mqmvfJLB5Uk9PVA&fields=kind%2clargestChangeId%2cselfLink&reason=302&syncType=2&openDrive=false transport: Status::UNAVAILABLE_WHILE_OFFLINE reader: Status::SUCCESS +2022-04-22T11:06:50.599ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB4FA000: (no response body) +2022-04-22T11:06:50.599ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:5327:operator() Failed to parse Date header, `', with error = Failed to parse input +2022-04-22T11:06:50.599ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB23EB40: 0 https://www.googleapis.com/drive/v2internal/settings?namespace=FEATURE_SWITCH&namespace=DRIVE_BE&namespace=UPLOADER transport: Status::SUCCESS reader: Status::SUCCESS +2022-04-22T11:06:50.599ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB23EB40: (no response body) +2022-04-22T11:06:50.599ZE [27644:core_116443198218440817097] core.cc:684:operator() Failed to fetch latest feature flags: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T11:06:50.599ZE [27644:core_116443198218440817097][MIRR] fetch_task.cc:854:FetchCloudChangeIds Can't get largest change id: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T11:06:50.600ZI [34804:CurlWorker1] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T11:06:50.649ZI [34804:CurlWorker1] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-22T11:06:50.684ZI [34804:CurlWorker1] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#0) +2022-04-22T11:06:50.684ZI [34804:CurlWorker1] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T11:06:50.794ZI [34804:CurlWorker1] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T11:06:50.801ZI [34804:CurlWorker1] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T11:06:50.807ZI [34804:CurlWorker1] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T11:06:50.830ZI [27644:core_116443198218440817097] gcm.cc:345:operator() GCM successfully connected. +2022-04-22T11:06:50.830ZI [27644:core_116443198218440817097] push_notification_manager.cc:241:operator() Successfully connected PushNotificationManager. +2022-04-22T11:06:50.871ZI [34804:CurlWorker1] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T11:06:50.871ZI [34804:CurlWorker1] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T11:06:50.874ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T11:06:51.196ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T11:06:51.215ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T11:06:51.220ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T11:06:51.224ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T11:06:51.226ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T11:06:51.226ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T11:06:51.227ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T11:06:51.230ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T11:06:51.235ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T11:06:51.235ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T11:06:51.238ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T11:06:51.241ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T11:06:51.246ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T11:06:51.248ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T11:06:51.252ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T11:06:51.253ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T11:06:51.255ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T11:06:51.256ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T11:06:51.258ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T11:06:51.259ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T11:06:51.261ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T11:06:51.261ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T11:06:51.263ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T11:06:51.265ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T11:14:21.675ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T11:14:23.330ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T11:14:23.330ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T11:14:25.049ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00110956 +2022-04-22T11:14:25.049ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Word 0x0005052C +2022-04-22T11:14:25.049ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Word window for 0x0005052C: OSError +2022-04-22T11:14:25.049ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Word window for 0x0005052C: OSError +2022-04-22T11:14:25.049ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Word to start responding to COM requests. +2022-04-22T11:14:27.196ZI [28336:DotOfficeApi] com_helpers.cc:109:GetComWindowInternal Word 0x0005052C is in Protected View +2022-04-22T11:14:27.196ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Word window for 0x0005052C: Unavailable +2022-04-22T11:14:27.196ZE [28336:DotOfficeApi] office_api_win.cc:155:MaybeWaitForAppToStart Not waiting on Word after Unavailable +2022-04-22T11:14:27.196ZE [28336:DotOfficeApi] async_office_api_win.cc:247:ConnectToHostInternal Can't connect to 000000000005052C of Word: Unavailable +2022-04-22T11:14:34.547ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwG child of window 0x00010E9A +2022-04-22T11:14:35.359ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000B0518 +2022-04-22T11:14:35.361ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000B0518 +2022-04-22T11:14:35.361ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000B0518 +2022-04-22T11:14:35.376ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00110956 +2022-04-22T11:17:32.155ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T11:26:48.854ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T11:26:48.855ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T11:46:48.861ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T11:46:48.862ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T11:48:01.377ZE [2112:CurlWorker0] curl_api.cc:136:StatusFromCurlCode Unsupported curl code 56, mapping to NETWORK_TRANSPORT_ERROR: +2022-04-22T11:48:01.377ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::NETWORK_TRANSPORT_ERROR +2022-04-22T11:48:01.377ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::NETWORK_TRANSPORT_ERROR +2022-04-22T11:48:01.377ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::NETWORK_TRANSPORT_ERROR, schedule retry +2022-04-22T11:48:02.817ZI [27644:core_116443198218440817097] gcm.cc:345:operator() GCM successfully connected. +2022-04-22T11:48:02.817ZI [27644:core_116443198218440817097] push_notification_manager.cc:241:operator() Successfully connected PushNotificationManager. +2022-04-22T12:06:48.862ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T12:06:48.862ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T12:06:51.791ZI [16568:CurlWorker2] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T12:06:51.825ZI [16568:CurlWorker2] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-22T12:06:51.847ZI [16568:CurlWorker2] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#0) +2022-04-22T12:06:51.847ZI [16568:CurlWorker2] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T12:06:51.911ZI [16568:CurlWorker2] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T12:06:51.919ZI [16568:CurlWorker2] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T12:06:51.921ZI [16568:CurlWorker2] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T12:06:51.980ZI [16568:CurlWorker2] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T12:06:51.980ZI [16568:CurlWorker2] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T12:06:51.982ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T12:26:48.862ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T12:26:48.862ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T12:46:48.863ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T12:46:48.863ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T12:48:49.030ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00160C8A +2022-04-22T13:00:44.284ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:00:44.994ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:06:48.876ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T13:06:48.876ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T13:06:52.812ZI [12348:CurlWorker3] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T13:06:52.843ZI [12348:CurlWorker3] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-22T13:06:52.866ZI [12348:CurlWorker3] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#0) +2022-04-22T13:06:52.867ZI [12348:CurlWorker3] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T13:06:52.932ZI [12348:CurlWorker3] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T13:06:52.941ZI [12348:CurlWorker3] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T13:06:52.943ZI [12348:CurlWorker3] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T13:06:52.998ZI [12348:CurlWorker3] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T13:06:52.998ZI [12348:CurlWorker3] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T13:06:53.028ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T13:26:48.881ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T13:26:48.881ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T13:30:41.799ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x000110DA +2022-04-22T13:30:41.799ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x000110D2 +2022-04-22T13:30:41.799ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x000110D2: OSError +2022-04-22T13:30:41.799ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get PowerPoint window for 0x000110D2: OSError +2022-04-22T13:30:41.799ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for PowerPoint to start responding to COM requests. +2022-04-22T13:40:38.652ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 28 to Status::TIMEOUT_EXCEEDED +2022-04-22T13:40:38.653ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::TIMEOUT_EXCEEDED +2022-04-22T13:40:38.653ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::TIMEOUT_EXCEEDED +2022-04-22T13:40:38.653ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::TIMEOUT_EXCEEDED, schedule retry +2022-04-22T13:40:41.916ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:40:41.916ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:40:41.916ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:40:41.916ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::UNAVAILABLE_WHILE_OFFLINE, schedule retry +2022-04-22T13:40:44.408ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:40:44.408ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:40:44.408ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:40:44.408ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::UNAVAILABLE_WHILE_OFFLINE, schedule retry +2022-04-22T13:40:51.386ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:40:51.386ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:40:51.386ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:40:51.386ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::UNAVAILABLE_WHILE_OFFLINE, schedule retry +2022-04-22T13:41:00.374ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:41:01.020ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:41:03.332ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:41:03.332ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:41:03.332ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:41:03.332ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::UNAVAILABLE_WHILE_OFFLINE, schedule retry +2022-04-22T13:41:25.190ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:41:25.190ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:41:25.190ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:41:25.190ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::UNAVAILABLE_WHILE_OFFLINE, schedule retry +2022-04-22T13:42:06.895ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:42:06.895ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:42:06.895ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:42:06.895ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::UNAVAILABLE_WHILE_OFFLINE, schedule retry +2022-04-22T13:43:28.283ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:43:28.284ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:43:28.284ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:43:28.284ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::UNAVAILABLE_WHILE_OFFLINE, schedule retry +2022-04-22T13:46:07.062ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:46:07.062ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:46:07.062ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T13:46:07.062ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::UNAVAILABLE_WHILE_OFFLINE, schedule retry +2022-04-22T13:46:48.883ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T13:46:48.883ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T13:51:26.251ZI [27644:core_116443198218440817097] gcm.cc:345:operator() GCM successfully connected. +2022-04-22T13:51:26.251ZI [27644:core_116443198218440817097] push_notification_manager.cc:241:operator() Successfully connected PushNotificationManager. +2022-04-22T13:51:59.433ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:52:00.031ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:52:00.390ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:52:01.034ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:52:03.020ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwG child of window 0x0007109E +2022-04-22T13:52:40.063ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:52:43.210ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x001209F0 +2022-04-22T13:52:48.391ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00070E2A +2022-04-22T13:53:10.888ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x001209F0 +2022-04-22T13:53:10.891ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00070E2A +2022-04-22T13:53:35.591ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00070E2A +2022-04-22T13:53:35.595ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:53:39.451ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:53:40.065ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:53:40.795ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:53:53.789ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:53:54.446ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:53:54.713ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:54:08.820ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:54:09.405ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:54:10.802ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:59:34.131ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00080FA6 +2022-04-22T13:59:39.478ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:59:39.480ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00080FA6 +2022-04-22T13:59:42.300ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:59:42.889ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:59:44.109ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:59:45.457ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T13:59:46.046ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T14:01:30.442ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T14:01:31.083ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T14:01:34.936ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T14:01:35.555ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T14:06:48.898ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T14:06:48.898ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T14:06:54.010ZI [24416:CurlWorker4] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T14:06:54.045ZI [24416:CurlWorker4] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-22T14:06:54.068ZI [24416:CurlWorker4] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#0) +2022-04-22T14:06:54.068ZI [24416:CurlWorker4] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T14:06:54.349ZI [24416:CurlWorker4] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T14:06:54.358ZI [24416:CurlWorker4] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T14:06:54.359ZI [24416:CurlWorker4] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T14:06:54.405ZI [24416:CurlWorker4] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T14:06:54.405ZI [24416:CurlWorker4] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T14:06:54.409ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T14:26:48.905ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T14:26:48.905ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T14:41:52.630ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T14:46:48.908ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T14:46:48.908ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T14:49:41.077ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00080FA6 +2022-04-22T14:49:41.083ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T15:06:48.858ZI [27644:core_116443198218440817097] core.cc:680:CheckFeatureConfig Polling latest feature flags +2022-04-22T15:06:48.920ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T15:06:48.920ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=spork_onboarding, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=multi_account_preferences, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=generate_diagnostic_info, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_metrics_implementation, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_osxfuse_read_blacklist, value=false +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_kernel_based_change_replayer, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=changelog_download_throttle_time_ms, value=16000 +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_fileprovider_for_migrated_users, value=false +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=raw_photos_extension, value=arw,crw,cr2,cr3,dcr,dc2,erf,kc2,kdc,k25,mdc,mef,mos,mrw,nef,nrw,orf,pef,qtk,raf,raw,rdc,rw2,srf,srw,sr2,x3f,3fr +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_suppress_file_name_in_event_context, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_failover_for_home_dir_fs_type, value=false +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=auto_purge_trash_warning_notification, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=disable_spam_throttling_on_write_duration_ms, value=0 +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=test_feature_flag_with_escape, value=New Google Docs\.gdoc|New Google Sheets\.gsheet|New Google Slides\.gslides +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=cello_subfolder_sharing_propagation, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=gui_bandwidth_throttling_control, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_mirror_switch_unpinned_item_batch_size, value=0 +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_photos, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_storage_saver_strings, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=macos_copy_resource_to_config_dir, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=shortcut_support, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fcm_implementation_type, value=2 +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=default_ui_theme, value=1 +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_concurrent_merged_read_optimization, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_after_wakeup_ms, value=1400000000 +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=attach_logs_to_feedback_option, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_modern_feature_flags, value=false +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_unique_user_id, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=subfolder_sharing_support, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_switchblade, value=false +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_content_bytes_before_cancel_multiplier, value=1 +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_migration_to_user_id_directory, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=metadata_db_vacuum, value=false +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=unlocked_mac_getxattr, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_mirrored_my_drive, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_context_menu_via_ipc, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=max_slow_operation_minidump_count, value=0 +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=apiary_free_mode, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_ms, value=1400000000 +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_read_backwards_heuristics, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=feedback, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=mirror_sync, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_nas_to_photos, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_start_date, value=2020-10-13 +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=async_dokan_bridge, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=block_mac_antivirus, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_photos, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enabled, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=preferences_dialog, value=true +2022-04-22T15:06:50.206ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=rescue_accounts, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=onboarding, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_noop_test_feature_2, value=false +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_shared_drives_api, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_start_date, value=2020-10-13 +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=local_machine_override_preferences, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=sync_client_migration, value=false +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=detailed_move_warning_messages, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_enable_ipc_root_symlink, value=false +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_actual_spam_throttling, value=false +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=migrate_to_account_directories, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_multi_account, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=check_can_add_folder_from_another_drive, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_feature_flags, value=LAUNCH_DISABLED +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_first_warning_start_date, value=2020-09-15 +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_drive, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_win7_patch_required_notification, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_skip_projector_for_office_files, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_rename_td_notification, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=request_team_drive_customer_id, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_end_date, value=2020-12-09 +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link_notification, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_file_organizer_capabilities, value=true +2022-04-22T15:06:50.207ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=customer_type, value=CONSUMER +2022-04-22T15:06:50.207ZI [27644:core_116443198218440817097] core.cc:649:ApplyFeatureConfigChange No changes to effective feature flags +2022-04-22T15:06:50.207ZI [24680:NonCelloThread] global_features_manager.cc:211:SetGlobalFeatures Set global features for account 116443198218440817097 +2022-04-22T15:06:50.207ZI [24680:NonCelloThread] global_features_manager.cc:244:CompositeAll Compositing global features based on 1 accounts +2022-04-22T15:06:50.207ZI [24680:NonCelloThread] global_features_manager.cc:260:CompositeAll Composited global features *WITHOUT* overrides: drive_dot: true +share_dialog: true +shell_ipc: true +pause_syncing_option: true +bandwidth_throttling: true +structured_logging: true +context_menu_force_refresh_folder: true +status_window_click_show_file_in_file_manager: true +outlook_addin: false +autostart_preference: true +gui_autostart_option: true +mojave_overlays_fix: false +curl_proxy_authentication: true +gui_reset_preferences_menu_option: true +cancel_upload_option: true +force_refresh_folder_normal_menu: false +structured_log_max_file_size_kbytes: 2048 +ask_to_copy_files_for_pending_uploads: true +inform_users_of_pending_uploads: true +same_content_dedupe_interval_ms: 600000 +dedupe_interval_ms: 2000 +support_status_notification: true +deprecation_date: "2099-12-31" +deprecation_warning_threshold: 30 +min_supported_os_version: "0.0.0" +crash_oom_threshold_mb: 1048576 +allow_search: true +finish_syncing_files_option: true +osxfuse_process_blacklist: "esets_daemon;scep_daemon" +osxfuse_lock_abort_test: false +osxfuse_sched_flags_offset_override: 4294967295 +enforce_single_parent: true +add_shortcut_menu: true +meet_outlook_addin: false +hidden_attr_support: true +spotlight_timestamp_fsctl_support: true +mac_disk_arbitration_unmount: true +current_drive_fs_version: "57.0.5.0" +enable_goose_mode: false +file_revisions_virtual_folder: true +unlocked_mac_buf_unmap: true +spork_migration: false +enable_apl_upload: true +use_mac_fileprovider: false +trim_parents_during_cloud_merge: true +trim_parents_during_commit: true +create_gsuite_file: true +switchblade: true +switchblade_open_files_via_shortcut: true +file_provider_quick_access_polling_interval_sec: 43200 +show_quick_access_in_search_dialog: true +use_spork_notifications: true +include_user_email_in_feedback: true +mac_smb_port: 0 +osxfuse_sched_flags_offset_override_arm: 4294967295 +current_os_version: "Windows/10.0.19044" +cancel_com_calls: true +enable_skip_redirect_for_editor_files: true +enable_file_provider_migration: true +show_download_link: false +logging_on_cello_thread_startup: false +enable_mirror_merge_folder_warning: true +mac_smb_dialect_mode: 10 +dokan_set_internal_file_index: true +context_menu_create_editor_files: false +file_revisions_file_provider: true +mac_smb_nobrowse: true +disable_jsoncpp: false +special_folder_change_notification: true +file_provider_auto_enable_domains: true +enable_fst: false +repair_kext_management_directory: true +purge_non_system_apl_photos_roots: false +instrument_http_client: true +enable_mirror_roots_context: true +com_api_thread_stuck_threshold_sec: 0 +num_metrics_batches_per_request: 70 +max_metrics_per_event_code_per_batch: 200 +bns_migration_window_closed: true +encrypt_and_upload: false +show_non_running_accounts: false +enable_shell_ipc_based_progress: false +enable_mount_in_sidebar_setting: false +allow_multiple_smb_connections: true +persistent_smb_port_auto_selection: false +file_provider_disabled_notification_interval_mins: 0 + +2022-04-22T15:06:55.187ZI [36948:CurlWorker5] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T15:06:55.216ZI [36948:CurlWorker5] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.32.109:443... +2022-04-22T15:06:55.245ZI [36948:CurlWorker5] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.32.109) port 443 (#0) +2022-04-22T15:06:55.245ZI [36948:CurlWorker5] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T15:06:55.308ZI [36948:CurlWorker5] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T15:06:55.314ZI [36948:CurlWorker5] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T15:06:55.316ZI [36948:CurlWorker5] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T15:06:55.372ZI [36948:CurlWorker5] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T15:06:55.372ZI [36948:CurlWorker5] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T15:06:55.374ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T15:15:46.304ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00160C8A +2022-04-22T15:16:19.393ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00160C8A +2022-04-22T15:16:26.659ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00160C8A +2022-04-22T15:16:32.621ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00160C8A +2022-04-22T15:17:46.026ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00160C8A +2022-04-22T15:18:04.587ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00110956 +2022-04-22T15:18:04.603ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00110956 +2022-04-22T15:18:04.605ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00110956 +2022-04-22T15:18:07.737ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00110956 +2022-04-22T15:18:22.387ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00040E32 +2022-04-22T15:18:22.388ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Word 0x00070AB0 +2022-04-22T15:18:22.388ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Word window for 0x00070AB0: OSError +2022-04-22T15:18:22.388ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Word window for 0x00070AB0: OSError +2022-04-22T15:18:22.388ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Word to start responding to COM requests. +2022-04-22T15:20:57.963ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00080FA6 +2022-04-22T15:22:04.535ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00080FA6 +2022-04-22T15:22:04.537ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T15:22:06.756ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T15:22:07.366ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T15:22:08.019ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T15:22:21.524ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00040E32 +2022-04-22T15:22:21.535ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00040E32 +2022-04-22T15:22:21.537ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00040E32 +2022-04-22T15:26:48.921ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T15:26:48.921ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T15:46:48.933ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T15:46:48.933ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T15:53:05.017ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00040EA0 +2022-04-22T16:06:48.946ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T16:06:48.946ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T16:06:56.433ZI [20496:CurlWorker6] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T16:06:56.462ZI [20496:CurlWorker6] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-22T16:06:56.493ZI [20496:CurlWorker6] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#0) +2022-04-22T16:06:56.493ZI [20496:CurlWorker6] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T16:06:56.560ZI [20496:CurlWorker6] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T16:06:56.566ZI [20496:CurlWorker6] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T16:06:56.568ZI [20496:CurlWorker6] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T16:06:56.629ZI [20496:CurlWorker6] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T16:06:56.632ZI [20496:CurlWorker6] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T16:06:56.635ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T16:26:48.951ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T16:26:48.952ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T16:31:21.415ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00120E44 +2022-04-22T16:32:06.796ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x000212FE +2022-04-22T16:32:06.796ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x000212F8 +2022-04-22T16:32:06.796ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x000212F8: OSError +2022-04-22T16:32:06.796ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x000212F8: OSError +2022-04-22T16:32:06.796ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-22T16:36:58.085ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00011382 +2022-04-22T16:38:21.153ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00011382 +2022-04-22T16:38:21.156ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00040EA0 +2022-04-22T16:38:21.159ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T16:40:35.572ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T16:40:35.572ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T16:40:35.583ZE [12688:CurlWorker29] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T16:40:35.583ZE [37652:CurlWorker28] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T16:40:35.583ZE [32704:CurlWorker27] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T16:40:35.583ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB64C3F0: 0 https://www.googleapis.com/drive/v2internal/changes?supportsAllDrives=true&includeItemsFromAllDrives=true&includeCorpusRemovals=true&includeDeleted=true&includeSubscribed=true&spaces=DRIVE%2cPHOTOS&startChangeId=1&filters=DRIVE_DATASERVICE&fields=kind%2clargestChangeId%2cselfLink&reason=302&syncType=2&openDrive=false transport: Status::UNAVAILABLE_WHILE_OFFLINE reader: Status::SUCCESS +2022-04-22T16:40:35.583ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB64C3F0: (no response body) +2022-04-22T16:40:35.583ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:5327:operator() Failed to parse Date header, `', with error = Failed to parse input +2022-04-22T16:40:35.583ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB64C3F0: 0 https://www.googleapis.com/drive/v2internal/changes?supportsAllDrives=true&includeItemsFromAllDrives=true&includeCorpusRemovals=true&includeDeleted=true&includeSubscribed=true&spaces=DRIVE%2cPHOTOS&startChangeId=1&driveId=0AA-mqmvfJLB5Uk9PVA&fields=kind%2clargestChangeId%2cselfLink&reason=302&syncType=2&openDrive=false transport: Status::UNAVAILABLE_WHILE_OFFLINE reader: Status::SUCCESS +2022-04-22T16:40:35.583ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB64C3F0: (no response body) +2022-04-22T16:40:35.583ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:5327:operator() Failed to parse Date header, `', with error = Failed to parse input +2022-04-22T16:40:35.583ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB64DD40: 0 https://www.googleapis.com/drive/v2internal/changes?supportsAllDrives=true&includeItemsFromAllDrives=true&includeCorpusRemovals=true&includeDeleted=true&includeSubscribed=true&spaces=DRIVE%2cPHOTOS&startChangeId=1&filters=DRIVE_DATASERVICE&fields=kind%2clargestChangeId%2cselfLink&reason=302&syncType=2&openDrive=false transport: Status::UNAVAILABLE_WHILE_OFFLINE reader: Status::SUCCESS +2022-04-22T16:40:35.583ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB64DD40: (no response body) +2022-04-22T16:40:35.583ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:5327:operator() Failed to parse Date header, `', with error = Failed to parse input +2022-04-22T16:40:35.583ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB64DD40: 0 https://www.googleapis.com/drive/v2internal/changes?supportsAllDrives=true&includeItemsFromAllDrives=true&includeCorpusRemovals=true&includeDeleted=true&includeSubscribed=true&spaces=DRIVE%2cPHOTOS&startChangeId=1&driveId=0AA-mqmvfJLB5Uk9PVA&fields=kind%2clargestChangeId%2cselfLink&reason=302&syncType=2&openDrive=false transport: Status::UNAVAILABLE_WHILE_OFFLINE reader: Status::SUCCESS +2022-04-22T16:40:35.584ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB64DD40: (no response body) +2022-04-22T16:40:35.584ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:5327:operator() Failed to parse Date header, `', with error = Failed to parse input +2022-04-22T16:40:35.584ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EC31ABB0: 0 https://play.googleapis.com/log transport: Status::SUCCESS reader: Status::SUCCESS +2022-04-22T16:40:35.584ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog req.hdr 00000230EC31ABB0: Content-Type= +2022-04-22T16:40:35.584ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EC31ABB0: (no response body) +2022-04-22T16:40:35.584ZE [26256:MetricsTransportThread] legacy_metrics_transport.cc:199:SendRequest Request failed: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T16:40:35.584ZI [26256:MetricsTransportThread] legacy_metrics_transport.cc:384:ProcessRequestsOnBackgroundThread Metrics failed to send, Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T16:40:35.584ZE [27644:core_116443198218440817097][MIRR] fetch_task.cc:854:FetchCloudChangeIds Can't get largest change id: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T16:40:35.584ZE [27644:core_116443198218440817097][STRM] fetch_task.cc:854:FetchCloudChangeIds Can't get largest change id: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T18:39:25.505ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 28 to Status::TIMEOUT_EXCEEDED +2022-04-22T18:39:25.505ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::TIMEOUT_EXCEEDED +2022-04-22T18:39:25.505ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::TIMEOUT_EXCEEDED +2022-04-22T18:39:25.505ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::TIMEOUT_EXCEEDED, schedule retry +2022-04-22T18:39:26.930ZI [27644:core_116443198218440817097] gcm.cc:345:operator() GCM successfully connected. +2022-04-22T18:39:26.930ZI [27644:core_116443198218440817097] push_notification_manager.cc:241:operator() Successfully connected PushNotificationManager. +2022-04-22T18:39:27.172ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T18:39:27.213ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T18:39:27.242ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T18:39:27.358ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T18:39:27.362ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T18:39:27.365ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T18:39:27.368ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T18:39:27.370ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T18:39:27.371ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T18:39:27.374ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T18:39:27.376ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T18:39:27.384ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T18:39:27.401ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T18:39:27.403ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T18:39:27.413ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T18:39:27.414ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T18:39:27.417ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T18:39:27.420ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T18:39:27.440ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T18:39:27.442ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T18:39:27.445ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T18:39:27.445ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T18:39:27.450ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T18:39:27.454ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:153:UpdateState State changed to existing value ONLINE, so not notifying. +2022-04-22T18:39:29.820ZI [14436:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Wake from sleep detected. +2022-04-22T18:39:44.822ZI [20992:CurlWorker7] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T18:39:44.852ZI [20992:CurlWorker7] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-22T18:39:44.874ZI [20992:CurlWorker7] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#0) +2022-04-22T18:39:44.874ZI [20992:CurlWorker7] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T18:39:44.923ZI [20992:CurlWorker7] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T18:39:44.926ZI [20992:CurlWorker7] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T18:39:44.928ZI [20992:CurlWorker7] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T18:39:44.977ZI [20992:CurlWorker7] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T18:39:44.977ZI [20992:CurlWorker7] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T18:39:44.979ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T18:39:51.270ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:40:14.356ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:40:26.894ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:41:07.897ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:41:07.899ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00120E44 +2022-04-22T18:41:08.655ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:41:09.417ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:45:11.614ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:45:12.332ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:46:08.175ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:49:25.046ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:49:25.874ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:49:30.015ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:49:30.896ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:49:31.957ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T18:58:52.955ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T18:58:56.341ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T18:58:56.342ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T18:59:24.793ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T18:59:24.793ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T19:01:18.738ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00040EA0 +2022-04-22T19:01:36.093ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000810A0 +2022-04-22T19:02:25.744ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000810A0 +2022-04-22T19:02:25.746ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T19:02:25.748ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00040EA0 +2022-04-22T19:06:48.271ZI [27644:core_116443198218440817097] core.cc:680:CheckFeatureConfig Polling latest feature flags +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=spork_onboarding, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=multi_account_preferences, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=generate_diagnostic_info, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_metrics_implementation, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_osxfuse_read_blacklist, value=false +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_kernel_based_change_replayer, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=changelog_download_throttle_time_ms, value=16000 +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_fileprovider_for_migrated_users, value=false +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=raw_photos_extension, value=arw,crw,cr2,cr3,dcr,dc2,erf,kc2,kdc,k25,mdc,mef,mos,mrw,nef,nrw,orf,pef,qtk,raf,raw,rdc,rw2,srf,srw,sr2,x3f,3fr +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_suppress_file_name_in_event_context, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_failover_for_home_dir_fs_type, value=false +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=auto_purge_trash_warning_notification, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=disable_spam_throttling_on_write_duration_ms, value=0 +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=test_feature_flag_with_escape, value=New Google Docs\.gdoc|New Google Sheets\.gsheet|New Google Slides\.gslides +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=cello_subfolder_sharing_propagation, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=gui_bandwidth_throttling_control, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_mirror_switch_unpinned_item_batch_size, value=0 +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_photos, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_storage_saver_strings, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=macos_copy_resource_to_config_dir, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=shortcut_support, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fcm_implementation_type, value=2 +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=default_ui_theme, value=1 +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_concurrent_merged_read_optimization, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_after_wakeup_ms, value=1400000000 +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=attach_logs_to_feedback_option, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_modern_feature_flags, value=false +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_unique_user_id, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=subfolder_sharing_support, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_switchblade, value=false +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_content_bytes_before_cancel_multiplier, value=1 +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_migration_to_user_id_directory, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=metadata_db_vacuum, value=false +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=unlocked_mac_getxattr, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_mirrored_my_drive, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_context_menu_via_ipc, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=max_slow_operation_minidump_count, value=0 +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=apiary_free_mode, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_ms, value=1400000000 +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_read_backwards_heuristics, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=feedback, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=mirror_sync, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_nas_to_photos, value=true +2022-04-22T19:06:55.423ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_start_date, value=2020-10-13 +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=async_dokan_bridge, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=block_mac_antivirus, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_photos, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enabled, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=preferences_dialog, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=rescue_accounts, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=onboarding, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_noop_test_feature_2, value=false +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_shared_drives_api, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_start_date, value=2020-10-13 +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=local_machine_override_preferences, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=sync_client_migration, value=false +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=detailed_move_warning_messages, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_enable_ipc_root_symlink, value=false +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_actual_spam_throttling, value=false +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=migrate_to_account_directories, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_multi_account, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=check_can_add_folder_from_another_drive, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_feature_flags, value=LAUNCH_DISABLED +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_first_warning_start_date, value=2020-09-15 +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_drive, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_win7_patch_required_notification, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_skip_projector_for_office_files, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_rename_td_notification, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=request_team_drive_customer_id, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_end_date, value=2020-12-09 +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link_notification, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_file_organizer_capabilities, value=true +2022-04-22T19:06:55.424ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=customer_type, value=CONSUMER +2022-04-22T19:06:55.424ZI [27644:core_116443198218440817097] core.cc:649:ApplyFeatureConfigChange No changes to effective feature flags +2022-04-22T19:06:55.424ZI [24680:NonCelloThread] global_features_manager.cc:211:SetGlobalFeatures Set global features for account 116443198218440817097 +2022-04-22T19:06:55.424ZI [24680:NonCelloThread] global_features_manager.cc:244:CompositeAll Compositing global features based on 1 accounts +2022-04-22T19:06:55.424ZI [24680:NonCelloThread] global_features_manager.cc:260:CompositeAll Composited global features *WITHOUT* overrides: drive_dot: true +share_dialog: true +shell_ipc: true +pause_syncing_option: true +bandwidth_throttling: true +structured_logging: true +context_menu_force_refresh_folder: true +status_window_click_show_file_in_file_manager: true +outlook_addin: false +autostart_preference: true +gui_autostart_option: true +mojave_overlays_fix: false +curl_proxy_authentication: true +gui_reset_preferences_menu_option: true +cancel_upload_option: true +force_refresh_folder_normal_menu: false +structured_log_max_file_size_kbytes: 2048 +ask_to_copy_files_for_pending_uploads: true +inform_users_of_pending_uploads: true +same_content_dedupe_interval_ms: 600000 +dedupe_interval_ms: 2000 +support_status_notification: true +deprecation_date: "2099-12-31" +deprecation_warning_threshold: 30 +min_supported_os_version: "0.0.0" +crash_oom_threshold_mb: 1048576 +allow_search: true +finish_syncing_files_option: true +osxfuse_process_blacklist: "esets_daemon;scep_daemon" +osxfuse_lock_abort_test: false +osxfuse_sched_flags_offset_override: 4294967295 +enforce_single_parent: true +add_shortcut_menu: true +meet_outlook_addin: false +hidden_attr_support: true +spotlight_timestamp_fsctl_support: true +mac_disk_arbitration_unmount: true +current_drive_fs_version: "57.0.5.0" +enable_goose_mode: false +file_revisions_virtual_folder: true +unlocked_mac_buf_unmap: true +spork_migration: false +enable_apl_upload: true +use_mac_fileprovider: false +trim_parents_during_cloud_merge: true +trim_parents_during_commit: true +create_gsuite_file: true +switchblade: true +switchblade_open_files_via_shortcut: true +file_provider_quick_access_polling_interval_sec: 43200 +show_quick_access_in_search_dialog: true +use_spork_notifications: true +include_user_email_in_feedback: true +mac_smb_port: 0 +osxfuse_sched_flags_offset_override_arm: 4294967295 +current_os_version: "Windows/10.0.19044" +cancel_com_calls: true +enable_skip_redirect_for_editor_files: true +enable_file_provider_migration: true +show_download_link: false +logging_on_cello_thread_startup: false +enable_mirror_merge_folder_warning: true +mac_smb_dialect_mode: 10 +dokan_set_internal_file_index: true +context_menu_create_editor_files: false +file_revisions_file_provider: true +mac_smb_nobrowse: true +special_folder_change_notification: true +file_provider_auto_enable_domains: true +enable_fst: false +repair_kext_management_directory: true +purge_non_system_apl_photos_roots: false +instrument_http_client: true +show_offline_files_menu_option: false +enable_mirror_roots_context: true +com_api_thread_stuck_threshold_sec: 0 +num_metrics_batches_per_request: 70 +max_metrics_per_event_code_per_batch: 200 +bns_migration_window_closed: true +encrypt_and_upload: false +show_non_running_accounts: false +enable_shell_ipc_based_progress: false +enable_mount_in_sidebar_setting: false +allow_multiple_smb_connections: true +persistent_smb_port_auto_selection: false +file_provider_disabled_notification_interval_mins: 0 + +2022-04-22T19:19:24.793ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T19:19:24.793ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T19:39:24.794ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T19:39:24.794ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T20:14:35.555ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 28 to Status::TIMEOUT_EXCEEDED +2022-04-22T20:14:35.555ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::TIMEOUT_EXCEEDED +2022-04-22T20:14:35.555ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::TIMEOUT_EXCEEDED +2022-04-22T20:14:35.555ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::TIMEOUT_EXCEEDED, schedule retry +2022-04-22T20:14:35.555ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T20:14:35.555ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T20:14:35.565ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T20:14:35.566ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: Could not resolve host: accounts.google.com +2022-04-22T20:14:35.566ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: Closing connection 0 +2022-04-22T20:14:35.566ZE [36760:CurlWorker8] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T20:14:35.566ZE [27644:core_116443198218440817097] oauth_credential.cc:245:operator() Failed to refresh token. Transport error: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T20:14:35.566ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:5273:operator() Failed to request access token with status Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-22T20:14:35.566ZI [27644:core_116443198218440817097] token_bucket.cc:106:DecreaseCapacity BucketFiller decreased capacity to 150 +2022-04-22T20:14:35.566ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB627910: 0 https://play.googleapis.com/log transport: Status::SUCCESS reader: Status::SUCCESS +2022-04-22T20:14:35.566ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog req.hdr 00000230EB627910: Content-Type= +2022-04-22T20:14:35.566ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB627910: (no response body) +2022-04-22T20:14:35.566ZE [26256:MetricsTransportThread] legacy_metrics_transport.cc:199:SendRequest Request failed: Status::TEMPORARILY_UNAVAILABLE +2022-04-22T20:14:35.566ZI [26256:MetricsTransportThread] legacy_metrics_transport.cc:384:ProcessRequestsOnBackgroundThread Metrics failed to send, Status::TEMPORARILY_UNAVAILABLE +2022-04-22T20:14:36.638ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T20:14:36.638ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T20:14:36.640ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: offline +2022-04-22T20:14:36.640ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: offline +2022-04-22T20:14:36.641ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state OFFLINE +2022-04-22T20:14:36.641ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state OFFLINE +2022-04-22T20:14:36.641ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to offline +2022-04-22T20:14:36.641ZI [26748:proxy_resolver_thread] proxy.cc:106:operator() Network status changed, resetting proxy to UNKNOWN +2022-04-22T20:14:36.641ZI [28264:PhotosSlurpTransporter] closure_retry.cc:44:operator() Online status changed to false +2022-04-22T20:14:36.641ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T20:14:36.643ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: offline +2022-04-22T20:14:36.643ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state OFFLINE +2022-04-22T20:14:36.643ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to offline +2022-04-22T20:14:36.793ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T20:14:36.793ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T20:14:36.794ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T20:14:36.794ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-22T20:14:36.794ZI [26748:proxy_resolver_thread] proxy.cc:106:operator() Network status changed, resetting proxy to UNKNOWN +2022-04-22T20:14:36.794ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to online +2022-04-22T20:14:36.794ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T20:14:36.794ZI [27644:core_116443198218440817097] core.cc:505:operator() Polling feature flags since we are now online +2022-04-22T20:14:36.794ZI [27644:core_116443198218440817097] core.cc:680:CheckFeatureConfig Polling latest feature flags +2022-04-22T20:14:36.794ZI [28264:PhotosSlurpTransporter] closure_retry.cc:44:operator() Online status changed to true +2022-04-22T20:14:36.794ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T20:14:36.795ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T20:14:36.795ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T20:14:36.795ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T20:14:36.795ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-22T20:14:36.795ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to online +2022-04-22T20:14:36.795ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T20:14:36.795ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-22T20:14:36.829ZI [26748:proxy_resolver_thread] proxy.cc:173:GetProxyForUrlInternal Proxy type resolved to 0 +2022-04-22T20:14:36.829ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T20:14:36.955ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-22T20:14:36.987ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#1) +2022-04-22T20:14:36.987ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T20:14:37.063ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T20:14:37.076ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T20:14:37.081ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T20:14:37.082ZI [27644:core_116443198218440817097] gcm.cc:345:operator() GCM successfully connected. +2022-04-22T20:14:37.082ZI [27644:core_116443198218440817097] push_notification_manager.cc:241:operator() Successfully connected PushNotificationManager. +2022-04-22T20:14:37.134ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T20:14:37.135ZI [36760:CurlWorker8] curl_api.cc:1027:LogCurlInfo == Info: Connection #1 to host accounts.google.com left intact +2022-04-22T20:14:37.137ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=spork_onboarding, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=multi_account_preferences, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=generate_diagnostic_info, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_metrics_implementation, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_osxfuse_read_blacklist, value=false +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_kernel_based_change_replayer, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=changelog_download_throttle_time_ms, value=16000 +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_fileprovider_for_migrated_users, value=false +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=raw_photos_extension, value=arw,crw,cr2,cr3,dcr,dc2,erf,kc2,kdc,k25,mdc,mef,mos,mrw,nef,nrw,orf,pef,qtk,raf,raw,rdc,rw2,srf,srw,sr2,x3f,3fr +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_suppress_file_name_in_event_context, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_failover_for_home_dir_fs_type, value=false +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=auto_purge_trash_warning_notification, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=disable_spam_throttling_on_write_duration_ms, value=0 +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=test_feature_flag_with_escape, value=New Google Docs\.gdoc|New Google Sheets\.gsheet|New Google Slides\.gslides +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=cello_subfolder_sharing_propagation, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=gui_bandwidth_throttling_control, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_mirror_switch_unpinned_item_batch_size, value=0 +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_photos, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_storage_saver_strings, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=macos_copy_resource_to_config_dir, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=shortcut_support, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fcm_implementation_type, value=2 +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=default_ui_theme, value=1 +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_concurrent_merged_read_optimization, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_after_wakeup_ms, value=1400000000 +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=attach_logs_to_feedback_option, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_modern_feature_flags, value=false +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_unique_user_id, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=subfolder_sharing_support, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_switchblade, value=false +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_content_bytes_before_cancel_multiplier, value=1 +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_migration_to_user_id_directory, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=metadata_db_vacuum, value=false +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=unlocked_mac_getxattr, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_mirrored_my_drive, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_context_menu_via_ipc, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=max_slow_operation_minidump_count, value=0 +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=apiary_free_mode, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_ms, value=1400000000 +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_read_backwards_heuristics, value=true +2022-04-22T20:14:38.405ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=feedback, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=mirror_sync, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_nas_to_photos, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_start_date, value=2020-10-13 +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=async_dokan_bridge, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=block_mac_antivirus, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_photos, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enabled, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=preferences_dialog, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=rescue_accounts, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=onboarding, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_noop_test_feature_2, value=false +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_shared_drives_api, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_start_date, value=2020-10-13 +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=local_machine_override_preferences, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=sync_client_migration, value=false +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=detailed_move_warning_messages, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_enable_ipc_root_symlink, value=false +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_actual_spam_throttling, value=false +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=migrate_to_account_directories, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_multi_account, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=check_can_add_folder_from_another_drive, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_feature_flags, value=LAUNCH_DISABLED +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_first_warning_start_date, value=2020-09-15 +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_drive, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_win7_patch_required_notification, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_skip_projector_for_office_files, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_rename_td_notification, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=request_team_drive_customer_id, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_end_date, value=2020-12-09 +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link_notification, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_file_organizer_capabilities, value=true +2022-04-22T20:14:38.406ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=customer_type, value=CONSUMER +2022-04-22T20:14:38.406ZI [27644:core_116443198218440817097] core.cc:649:ApplyFeatureConfigChange No changes to effective feature flags +2022-04-22T20:14:38.409ZI [24680:NonCelloThread] global_features_manager.cc:211:SetGlobalFeatures Set global features for account 116443198218440817097 +2022-04-22T20:14:38.409ZI [24680:NonCelloThread] global_features_manager.cc:244:CompositeAll Compositing global features based on 1 accounts +2022-04-22T20:14:38.409ZI [24680:NonCelloThread] global_features_manager.cc:260:CompositeAll Composited global features *WITHOUT* overrides: drive_dot: true +share_dialog: true +shell_ipc: true +pause_syncing_option: true +bandwidth_throttling: true +structured_logging: true +context_menu_force_refresh_folder: true +status_window_click_show_file_in_file_manager: true +outlook_addin: false +autostart_preference: true +gui_autostart_option: true +mojave_overlays_fix: false +curl_proxy_authentication: true +gui_reset_preferences_menu_option: true +cancel_upload_option: true +force_refresh_folder_normal_menu: false +structured_log_max_file_size_kbytes: 2048 +ask_to_copy_files_for_pending_uploads: true +inform_users_of_pending_uploads: true +same_content_dedupe_interval_ms: 600000 +dedupe_interval_ms: 2000 +support_status_notification: true +deprecation_date: "2099-12-31" +deprecation_warning_threshold: 30 +min_supported_os_version: "0.0.0" +crash_oom_threshold_mb: 1048576 +allow_search: true +finish_syncing_files_option: true +osxfuse_process_blacklist: "esets_daemon;scep_daemon" +osxfuse_lock_abort_test: false +osxfuse_sched_flags_offset_override: 4294967295 +enforce_single_parent: true +add_shortcut_menu: true +meet_outlook_addin: false +hidden_attr_support: true +spotlight_timestamp_fsctl_support: true +mac_disk_arbitration_unmount: true +current_drive_fs_version: "57.0.5.0" +enable_goose_mode: false +file_revisions_virtual_folder: true +unlocked_mac_buf_unmap: true +spork_migration: false +enable_apl_upload: true +use_mac_fileprovider: false +trim_parents_during_cloud_merge: true +trim_parents_during_commit: true +create_gsuite_file: true +switchblade: true +switchblade_open_files_via_shortcut: true +file_provider_quick_access_polling_interval_sec: 43200 +show_quick_access_in_search_dialog: true +use_spork_notifications: true +include_user_email_in_feedback: true +mac_smb_port: 0 +osxfuse_sched_flags_offset_override_arm: 4294967295 +current_os_version: "Windows/10.0.19044" +cancel_com_calls: true +enable_skip_redirect_for_editor_files: true +enable_file_provider_migration: true +show_download_link: false +logging_on_cello_thread_startup: false +enable_mirror_merge_folder_warning: true +mac_smb_dialect_mode: 10 +dokan_set_internal_file_index: true +context_menu_create_editor_files: false +file_revisions_file_provider: true +mac_smb_nobrowse: true +special_folder_change_notification: true +file_provider_auto_enable_domains: true +enable_fst: false +repair_kext_management_directory: true +purge_non_system_apl_photos_roots: false +instrument_http_client: true +show_offline_files_menu_option: false +enable_mirror_roots_context: true +com_api_thread_stuck_threshold_sec: 0 +num_metrics_batches_per_request: 70 +max_metrics_per_event_code_per_batch: 200 +bns_migration_window_closed: true +encrypt_and_upload: false +show_non_running_accounts: false +enable_shell_ipc_based_progress: false +enable_mount_in_sidebar_setting: false +allow_multiple_smb_connections: true +persistent_smb_port_auto_selection: false +file_provider_disabled_notification_interval_mins: 0 +enable_search_hot_key: false + +2022-04-22T20:14:39.802ZI [30868:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Wake from sleep detected. +2022-04-22T20:14:51.999ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:14:52.001ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00040EA0 +2022-04-22T20:14:53.130ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:14:55.483ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:06.563ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:07.163ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:07.542ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:08.190ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:09.950ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:10.575ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:13.815ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:14.637ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:17.623ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:18.214ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:15:19.024ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:16:54.893ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000313B0 +2022-04-22T20:19:32.310ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000313B0 +2022-04-22T20:31:16.751ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:31:17.394ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:31:17.684ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:31:23.038ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000A1342 +2022-04-22T20:31:36.387ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000A1342 +2022-04-22T20:34:35.555ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T20:34:35.555ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T20:35:01.097ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000A1342 +2022-04-22T20:35:11.699ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000A1342 +2022-04-22T20:37:13.361ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x00200D3C +2022-04-22T20:37:13.361ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x00110F74 +2022-04-22T20:37:13.361ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x00110F74: OSError +2022-04-22T20:37:13.361ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get PowerPoint window for 0x00110F74: OSError +2022-04-22T20:37:13.361ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for PowerPoint to start responding to COM requests. +2022-04-22T20:39:01.288ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x000D12F0 +2022-04-22T20:39:01.288ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x00200478 +2022-04-22T20:39:01.288ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x00200478: OSError +2022-04-22T20:39:01.288ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get PowerPoint window for 0x00200478: OSError +2022-04-22T20:39:01.288ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for PowerPoint to start responding to COM requests. +2022-04-22T20:42:03.252ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T20:42:05.346ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T20:42:05.346ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T20:46:24.428ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T20:46:26.193ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T20:46:26.193ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T20:46:37.405ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T20:46:39.679ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T20:46:39.679ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T20:47:35.494ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000A1342 +2022-04-22T20:48:18.808ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000A1342 +2022-04-22T20:48:20.948ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:21.522ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:27.975ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:28.299ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:28.379ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:28.647ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:38.425ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:44.398ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:44.993ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:52.924ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:53.778ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:54.830ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x0014102C +2022-04-22T20:48:59.313ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x0014102C +2022-04-22T20:48:59.315ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:48:59.421ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:49:26.940ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x0014102C +2022-04-22T20:49:32.325ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x0014102C +2022-04-22T20:49:32.327ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:49:32.842ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:49:33.765ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:49:34.412ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:49:34.709ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:49:40.239ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x001E0F7E +2022-04-22T20:52:53.458ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x001E0F7E +2022-04-22T20:52:55.188ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:52:55.930ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:52:56.205ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T20:53:24.058ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x00390F06 +2022-04-22T20:53:24.058ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x00211318 +2022-04-22T20:53:24.058ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x00211318: OSError +2022-04-22T20:53:24.058ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get PowerPoint window for 0x00211318: OSError +2022-04-22T20:53:24.058ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for PowerPoint to start responding to COM requests. +2022-04-22T20:54:00.610ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x001F1320 +2022-04-22T20:54:00.610ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x0018131E +2022-04-22T20:54:00.610ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x0018131E: OSError +2022-04-22T20:54:00.610ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get PowerPoint window for 0x0018131E: OSError +2022-04-22T20:54:00.610ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for PowerPoint to start responding to COM requests. +2022-04-22T20:54:35.555ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T20:54:35.556ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T20:55:11.294ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000D0F8E +2022-04-22T20:55:37.920ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x000D0F8E +2022-04-22T20:56:17.680ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T20:56:19.305ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T20:56:19.305ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T20:56:41.842ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T20:56:44.358ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T20:56:44.358ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T20:57:46.883ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T20:57:50.281ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T20:57:50.281ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T20:59:42.759ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T20:59:44.188ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T20:59:44.188ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T21:14:35.555ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T21:14:35.556ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T21:16:06.352ZI [20516:CurlWorker9] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T21:16:06.382ZI [20516:CurlWorker9] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.250.80.77:443... +2022-04-22T21:16:06.399ZI [20516:CurlWorker9] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.250.80.77) port 443 (#0) +2022-04-22T21:16:06.399ZI [20516:CurlWorker9] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T21:16:06.458ZI [20516:CurlWorker9] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T21:16:06.465ZI [20516:CurlWorker9] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T21:16:06.466ZI [20516:CurlWorker9] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T21:16:06.525ZI [20516:CurlWorker9] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T21:16:06.525ZI [20516:CurlWorker9] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T21:16:06.527ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T21:28:28.462ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T21:28:31.864ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T21:28:31.864ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T21:31:44.168ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x003D0CFA +2022-04-22T21:31:44.168ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x001A07D6 +2022-04-22T21:31:44.168ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x001A07D6: OSError +2022-04-22T21:31:44.168ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get PowerPoint window for 0x001A07D6: OSError +2022-04-22T21:31:44.168ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for PowerPoint to start responding to COM requests. +2022-04-22T21:32:32.938ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-22T21:32:35.020ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-22T21:32:35.021ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-22T21:34:00.481ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x00440DC0 +2022-04-22T21:34:00.481ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x002C1300 +2022-04-22T21:34:00.481ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x002C1300: OSError +2022-04-22T21:34:00.481ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get PowerPoint window for 0x002C1300: OSError +2022-04-22T21:34:00.481ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for PowerPoint to start responding to COM requests. +2022-04-22T21:34:34.680ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find mdiClass child of window 0x002B09F6 +2022-04-22T21:34:34.680ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for PowerPoint 0x00380AD6 +2022-04-22T21:34:34.680ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get PowerPoint window for 0x00380AD6: OSError +2022-04-22T21:34:34.680ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get PowerPoint window for 0x00380AD6: OSError +2022-04-22T21:34:34.680ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for PowerPoint to start responding to COM requests. +2022-04-22T21:34:35.556ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T21:34:35.556ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T21:54:35.557ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T21:54:35.557ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T22:14:35.557ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T22:14:35.557ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T22:16:07.335ZI [22072:CurlWorker10] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T22:16:07.365ZI [22072:CurlWorker10] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-22T22:16:07.384ZI [22072:CurlWorker10] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#0) +2022-04-22T22:16:07.385ZI [22072:CurlWorker10] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T22:16:07.446ZI [22072:CurlWorker10] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T22:16:07.454ZI [22072:CurlWorker10] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T22:16:07.456ZI [22072:CurlWorker10] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T22:16:07.509ZI [22072:CurlWorker10] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T22:16:07.509ZI [22072:CurlWorker10] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T22:16:07.512ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T22:17:36.624ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 28 to Status::TIMEOUT_EXCEEDED +2022-04-22T22:17:36.624ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::TIMEOUT_EXCEEDED +2022-04-22T22:17:36.624ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::TIMEOUT_EXCEEDED +2022-04-22T22:17:36.624ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::TIMEOUT_EXCEEDED, schedule retry +2022-04-22T22:18:40.544ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T22:18:40.560ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T22:18:40.560ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T22:18:40.560ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: offline +2022-04-22T22:18:40.561ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state OFFLINE +2022-04-22T22:18:40.562ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: offline +2022-04-22T22:18:40.562ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: offline +2022-04-22T22:18:40.563ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state OFFLINE +2022-04-22T22:18:40.563ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to offline +2022-04-22T22:18:40.563ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state OFFLINE +2022-04-22T22:18:40.563ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to offline +2022-04-22T22:18:40.563ZI [26748:proxy_resolver_thread] proxy.cc:106:operator() Network status changed, resetting proxy to UNKNOWN +2022-04-22T22:18:40.563ZI [28264:PhotosSlurpTransporter] closure_retry.cc:44:operator() Online status changed to false +2022-04-22T22:18:41.250ZI [26748:proxy_resolver_thread] proxy.cc:173:GetProxyForUrlInternal Proxy type resolved to 0 +2022-04-22T22:18:41.520ZI [27644:core_116443198218440817097] gcm.cc:345:operator() GCM successfully connected. +2022-04-22T22:18:41.520ZI [27644:core_116443198218440817097] push_notification_manager.cc:241:operator() Successfully connected PushNotificationManager. +2022-04-22T22:18:41.595ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T22:18:41.608ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T22:18:41.615ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-22T22:18:41.624ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T22:18:41.678ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T22:18:41.678ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T22:18:41.787ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-22T22:18:41.787ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T22:18:41.787ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-22T22:18:41.792ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-22T22:18:41.792ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-22T22:18:41.792ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to online +2022-04-22T22:18:41.793ZI [26748:proxy_resolver_thread] proxy.cc:106:operator() Network status changed, resetting proxy to UNKNOWN +2022-04-22T22:18:41.793ZI [27644:core_116443198218440817097] core.cc:505:operator() Polling feature flags since we are now online +2022-04-22T22:18:41.793ZI [27644:core_116443198218440817097] core.cc:680:CheckFeatureConfig Polling latest feature flags +2022-04-22T22:18:41.793ZI [28264:PhotosSlurpTransporter] closure_retry.cc:44:operator() Online status changed to true +2022-04-22T22:18:41.796ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-22T22:18:41.796ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to online +2022-04-22T22:18:41.801ZI [26748:proxy_resolver_thread] proxy.cc:173:GetProxyForUrlInternal Proxy type resolved to 0 +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=spork_onboarding, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=multi_account_preferences, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=generate_diagnostic_info, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_metrics_implementation, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_osxfuse_read_blacklist, value=false +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_kernel_based_change_replayer, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=changelog_download_throttle_time_ms, value=16000 +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_fileprovider_for_migrated_users, value=false +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=raw_photos_extension, value=arw,crw,cr2,cr3,dcr,dc2,erf,kc2,kdc,k25,mdc,mef,mos,mrw,nef,nrw,orf,pef,qtk,raf,raw,rdc,rw2,srf,srw,sr2,x3f,3fr +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_suppress_file_name_in_event_context, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_failover_for_home_dir_fs_type, value=false +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=auto_purge_trash_warning_notification, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=disable_spam_throttling_on_write_duration_ms, value=0 +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=test_feature_flag_with_escape, value=New Google Docs\.gdoc|New Google Sheets\.gsheet|New Google Slides\.gslides +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=cello_subfolder_sharing_propagation, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=gui_bandwidth_throttling_control, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_mirror_switch_unpinned_item_batch_size, value=0 +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_photos, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_storage_saver_strings, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=macos_copy_resource_to_config_dir, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=shortcut_support, value=true +2022-04-22T22:18:43.102ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fcm_implementation_type, value=2 +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=default_ui_theme, value=1 +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_concurrent_merged_read_optimization, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_after_wakeup_ms, value=1400000000 +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=attach_logs_to_feedback_option, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_modern_feature_flags, value=false +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_unique_user_id, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=subfolder_sharing_support, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_switchblade, value=false +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_content_bytes_before_cancel_multiplier, value=1 +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_migration_to_user_id_directory, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=metadata_db_vacuum, value=false +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=unlocked_mac_getxattr, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_mirrored_my_drive, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_context_menu_via_ipc, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=max_slow_operation_minidump_count, value=0 +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=apiary_free_mode, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_ms, value=1400000000 +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_read_backwards_heuristics, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=feedback, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=mirror_sync, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_nas_to_photos, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_start_date, value=2020-10-13 +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=async_dokan_bridge, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=block_mac_antivirus, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_photos, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enabled, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=preferences_dialog, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=rescue_accounts, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=onboarding, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_noop_test_feature_2, value=false +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_shared_drives_api, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_start_date, value=2020-10-13 +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=local_machine_override_preferences, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=sync_client_migration, value=false +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=detailed_move_warning_messages, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_enable_ipc_root_symlink, value=false +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_actual_spam_throttling, value=false +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=migrate_to_account_directories, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_multi_account, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=check_can_add_folder_from_another_drive, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_feature_flags, value=LAUNCH_DISABLED +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_first_warning_start_date, value=2020-09-15 +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_drive, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_win7_patch_required_notification, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_skip_projector_for_office_files, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_rename_td_notification, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=request_team_drive_customer_id, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_end_date, value=2020-12-09 +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link_notification, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_file_organizer_capabilities, value=true +2022-04-22T22:18:43.103ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=customer_type, value=CONSUMER +2022-04-22T22:18:43.103ZI [27644:core_116443198218440817097] core.cc:649:ApplyFeatureConfigChange No changes to effective feature flags +2022-04-22T22:18:43.104ZI [24680:NonCelloThread] global_features_manager.cc:211:SetGlobalFeatures Set global features for account 116443198218440817097 +2022-04-22T22:18:43.104ZI [24680:NonCelloThread] global_features_manager.cc:244:CompositeAll Compositing global features based on 1 accounts +2022-04-22T22:18:43.104ZI [24680:NonCelloThread] global_features_manager.cc:260:CompositeAll Composited global features *WITHOUT* overrides: drive_dot: true +share_dialog: true +shell_ipc: true +pause_syncing_option: true +bandwidth_throttling: true +structured_logging: true +context_menu_force_refresh_folder: true +status_window_click_show_file_in_file_manager: true +outlook_addin: false +autostart_preference: true +gui_autostart_option: true +mojave_overlays_fix: false +curl_proxy_authentication: true +gui_reset_preferences_menu_option: true +cancel_upload_option: true +force_refresh_folder_normal_menu: false +structured_log_max_file_size_kbytes: 2048 +ask_to_copy_files_for_pending_uploads: true +inform_users_of_pending_uploads: true +same_content_dedupe_interval_ms: 600000 +dedupe_interval_ms: 2000 +support_status_notification: true +deprecation_date: "2099-12-31" +deprecation_warning_threshold: 30 +min_supported_os_version: "0.0.0" +crash_oom_threshold_mb: 1048576 +allow_search: true +finish_syncing_files_option: true +osxfuse_process_blacklist: "esets_daemon;scep_daemon" +osxfuse_lock_abort_test: false +osxfuse_sched_flags_offset_override: 4294967295 +enforce_single_parent: true +add_shortcut_menu: true +meet_outlook_addin: false +hidden_attr_support: true +spotlight_timestamp_fsctl_support: true +mac_disk_arbitration_unmount: true +current_drive_fs_version: "57.0.5.0" +enable_goose_mode: false +file_revisions_virtual_folder: true +unlocked_mac_buf_unmap: true +spork_migration: false +enable_apl_upload: true +use_mac_fileprovider: false +trim_parents_during_cloud_merge: true +trim_parents_during_commit: true +create_gsuite_file: true +switchblade: true +switchblade_open_files_via_shortcut: true +file_provider_quick_access_polling_interval_sec: 43200 +show_quick_access_in_search_dialog: true +use_spork_notifications: true +include_user_email_in_feedback: true +mac_smb_port: 0 +osxfuse_sched_flags_offset_override_arm: 4294967295 +current_os_version: "Windows/10.0.19044" +cancel_com_calls: true +enable_skip_redirect_for_editor_files: true +enable_file_provider_migration: true +show_download_link: false +logging_on_cello_thread_startup: false +enable_mirror_merge_folder_warning: true +mac_smb_dialect_mode: 10 +dokan_set_internal_file_index: true +context_menu_create_editor_files: false +file_revisions_file_provider: true +mac_smb_nobrowse: true +special_folder_change_notification: true +file_provider_auto_enable_domains: true +enable_fst: false +repair_kext_management_directory: true +purge_non_system_apl_photos_roots: false +instrument_http_client: true +show_offline_files_menu_option: false +enable_mirror_roots_context: true +com_api_thread_stuck_threshold_sec: 0 +num_metrics_batches_per_request: 70 +max_metrics_per_event_code_per_batch: 200 +bns_migration_window_closed: true +encrypt_and_upload: false +show_non_running_accounts: false +enable_shell_ipc_based_progress: false +enable_mount_in_sidebar_setting: false +allow_multiple_smb_connections: true +persistent_smb_port_auto_selection: false +file_provider_disabled_notification_interval_mins: 0 +enable_search_hot_key: false + +2022-04-22T22:18:44.345ZI [39736:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Wake from sleep detected. +2022-04-22T22:34:34.958ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T22:34:34.958ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T22:35:05.878ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T22:35:06.553ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T22:35:07.929ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T22:38:17.841ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T22:38:18.465ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T22:38:20.548ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00010C64 +2022-04-22T22:54:30.947ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00160CD2 +2022-04-22T22:54:34.958ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T22:54:34.958ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T22:54:55.352ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00160CD2 +2022-04-22T23:06:47.085ZI [27644:core_116443198218440817097] core.cc:680:CheckFeatureConfig Polling latest feature flags +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=spork_onboarding, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=multi_account_preferences, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=generate_diagnostic_info, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_metrics_implementation, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_osxfuse_read_blacklist, value=false +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_kernel_based_change_replayer, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=changelog_download_throttle_time_ms, value=16000 +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_fileprovider_for_migrated_users, value=false +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=raw_photos_extension, value=arw,crw,cr2,cr3,dcr,dc2,erf,kc2,kdc,k25,mdc,mef,mos,mrw,nef,nrw,orf,pef,qtk,raf,raw,rdc,rw2,srf,srw,sr2,x3f,3fr +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_suppress_file_name_in_event_context, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_failover_for_home_dir_fs_type, value=false +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=auto_purge_trash_warning_notification, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=disable_spam_throttling_on_write_duration_ms, value=0 +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=test_feature_flag_with_escape, value=New Google Docs\.gdoc|New Google Sheets\.gsheet|New Google Slides\.gslides +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=cello_subfolder_sharing_propagation, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=gui_bandwidth_throttling_control, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_mirror_switch_unpinned_item_batch_size, value=0 +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_photos, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_storage_saver_strings, value=true +2022-04-22T23:06:48.634ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=macos_copy_resource_to_config_dir, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=shortcut_support, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fcm_implementation_type, value=2 +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=default_ui_theme, value=1 +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_concurrent_merged_read_optimization, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_after_wakeup_ms, value=1400000000 +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=attach_logs_to_feedback_option, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_modern_feature_flags, value=false +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_unique_user_id, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=subfolder_sharing_support, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_switchblade, value=false +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_content_bytes_before_cancel_multiplier, value=1 +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_migration_to_user_id_directory, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=metadata_db_vacuum, value=false +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=unlocked_mac_getxattr, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_mirrored_my_drive, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_context_menu_via_ipc, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=max_slow_operation_minidump_count, value=0 +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=apiary_free_mode, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_ms, value=1400000000 +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_read_backwards_heuristics, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=feedback, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=mirror_sync, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_nas_to_photos, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_start_date, value=2020-10-13 +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=async_dokan_bridge, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=block_mac_antivirus, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_photos, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enabled, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=preferences_dialog, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=rescue_accounts, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=onboarding, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_noop_test_feature_2, value=false +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_shared_drives_api, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_start_date, value=2020-10-13 +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=local_machine_override_preferences, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=sync_client_migration, value=false +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=detailed_move_warning_messages, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_enable_ipc_root_symlink, value=false +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_actual_spam_throttling, value=false +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=migrate_to_account_directories, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_multi_account, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=check_can_add_folder_from_another_drive, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_feature_flags, value=LAUNCH_DISABLED +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_first_warning_start_date, value=2020-09-15 +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_drive, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_win7_patch_required_notification, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_skip_projector_for_office_files, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_rename_td_notification, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=request_team_drive_customer_id, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_end_date, value=2020-12-09 +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link_notification, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_file_organizer_capabilities, value=true +2022-04-22T23:06:48.635ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=customer_type, value=CONSUMER +2022-04-22T23:06:48.635ZI [27644:core_116443198218440817097] core.cc:649:ApplyFeatureConfigChange No changes to effective feature flags +2022-04-22T23:06:48.635ZI [24680:NonCelloThread] global_features_manager.cc:211:SetGlobalFeatures Set global features for account 116443198218440817097 +2022-04-22T23:06:48.635ZI [24680:NonCelloThread] global_features_manager.cc:244:CompositeAll Compositing global features based on 1 accounts +2022-04-22T23:06:48.635ZI [24680:NonCelloThread] global_features_manager.cc:260:CompositeAll Composited global features *WITHOUT* overrides: drive_dot: true +share_dialog: true +shell_ipc: true +pause_syncing_option: true +bandwidth_throttling: true +structured_logging: true +context_menu_force_refresh_folder: true +status_window_click_show_file_in_file_manager: true +outlook_addin: false +autostart_preference: true +gui_autostart_option: true +mojave_overlays_fix: false +curl_proxy_authentication: true +gui_reset_preferences_menu_option: true +cancel_upload_option: true +force_refresh_folder_normal_menu: false +structured_log_max_file_size_kbytes: 2048 +ask_to_copy_files_for_pending_uploads: true +inform_users_of_pending_uploads: true +same_content_dedupe_interval_ms: 600000 +dedupe_interval_ms: 2000 +support_status_notification: true +deprecation_date: "2099-12-31" +deprecation_warning_threshold: 30 +min_supported_os_version: "0.0.0" +crash_oom_threshold_mb: 1048576 +allow_search: true +finish_syncing_files_option: true +osxfuse_process_blacklist: "esets_daemon;scep_daemon" +osxfuse_lock_abort_test: false +osxfuse_sched_flags_offset_override: 4294967295 +enforce_single_parent: true +add_shortcut_menu: true +meet_outlook_addin: false +hidden_attr_support: true +spotlight_timestamp_fsctl_support: true +mac_disk_arbitration_unmount: true +current_drive_fs_version: "57.0.5.0" +enable_goose_mode: false +file_revisions_virtual_folder: true +unlocked_mac_buf_unmap: true +spork_migration: false +enable_apl_upload: true +use_mac_fileprovider: false +trim_parents_during_cloud_merge: true +trim_parents_during_commit: true +create_gsuite_file: true +switchblade: true +switchblade_open_files_via_shortcut: true +file_provider_quick_access_polling_interval_sec: 43200 +show_quick_access_in_search_dialog: true +use_spork_notifications: true +include_user_email_in_feedback: true +mac_smb_port: 0 +osxfuse_sched_flags_offset_override_arm: 4294967295 +current_os_version: "Windows/10.0.19044" +cancel_com_calls: true +enable_skip_redirect_for_editor_files: true +enable_file_provider_migration: true +show_download_link: false +logging_on_cello_thread_startup: false +enable_mirror_merge_folder_warning: true +mac_smb_dialect_mode: 10 +dokan_set_internal_file_index: true +context_menu_create_editor_files: false +file_revisions_file_provider: true +mac_smb_nobrowse: true +special_folder_change_notification: true +file_provider_auto_enable_domains: true +enable_fst: false +repair_kext_management_directory: true +purge_non_system_apl_photos_roots: false +instrument_http_client: true +show_offline_files_menu_option: false +enable_mirror_roots_context: true +com_api_thread_stuck_threshold_sec: 0 +num_metrics_batches_per_request: 70 +max_metrics_per_event_code_per_batch: 200 +bns_migration_window_closed: true +encrypt_and_upload: false +show_non_running_accounts: false +enable_shell_ipc_based_progress: false +enable_mount_in_sidebar_setting: false +allow_multiple_smb_connections: true +persistent_smb_port_auto_selection: false +file_provider_disabled_notification_interval_mins: 0 +enable_mount_as_folder_setting: false +enable_search_hot_key: false + +2022-04-22T23:10:22.096ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00050E98 +2022-04-22T23:10:22.600ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00050E98 +2022-04-22T23:10:26.478ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00200C8A +2022-04-22T23:10:27.039ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwG child of window 0x000B0E5C +2022-04-22T23:11:12.757ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00200C8A +2022-04-22T23:14:34.958ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T23:14:34.958ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T23:16:08.609ZI [37584:CurlWorker11] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-22T23:16:08.652ZI [37584:CurlWorker11] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.250.65.173:443... +2022-04-22T23:16:08.681ZI [37584:CurlWorker11] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.250.65.173) port 443 (#0) +2022-04-22T23:16:08.681ZI [37584:CurlWorker11] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-22T23:16:08.764ZI [37584:CurlWorker11] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-22T23:16:08.795ZI [37584:CurlWorker11] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-22T23:16:08.797ZI [37584:CurlWorker11] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-22T23:16:08.859ZI [37584:CurlWorker11] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-22T23:16:08.859ZI [37584:CurlWorker11] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-22T23:16:08.862ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-22T23:34:34.958ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-22T23:34:34.958ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T00:10:11.588ZE [2112:CurlWorker0] curl_api.cc:141:StatusFromCurlCode Remapped curl code 28 to Status::TIMEOUT_EXCEEDED +2022-04-23T00:10:11.588ZE [27644:core_116443198218440817097] gcm.cc:572:OnConnectError GCM connection error: Status::TIMEOUT_EXCEEDED +2022-04-23T00:10:11.588ZE [27644:core_116443198218440817097] push_notification_manager.cc:481:OnGCMConnection GCM Connection failed: Status::TIMEOUT_EXCEEDED +2022-04-23T00:10:11.588ZE [27644:core_116443198218440817097] push_notification_manager.cc:51:HandleStatus GCM connect failed with error Status::TIMEOUT_EXCEEDED, schedule retry +2022-04-23T00:10:11.588ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T00:10:11.588ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T00:10:12.612ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-23T00:10:12.613ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: offline +2022-04-23T00:10:12.613ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-23T00:10:12.613ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state OFFLINE +2022-04-23T00:10:12.614ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: offline +2022-04-23T00:10:12.614ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-23T00:10:12.614ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state OFFLINE +2022-04-23T00:10:12.614ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to offline +2022-04-23T00:10:12.614ZI [26748:proxy_resolver_thread] proxy.cc:106:operator() Network status changed, resetting proxy to UNKNOWN +2022-04-23T00:10:12.614ZI [28264:PhotosSlurpTransporter] closure_retry.cc:44:operator() Online status changed to false +2022-04-23T00:10:12.614ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: offline +2022-04-23T00:10:12.615ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state OFFLINE +2022-04-23T00:10:12.615ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to offline +2022-04-23T00:10:12.720ZI [26748:proxy_resolver_thread] proxy.cc:173:GetProxyForUrlInternal Proxy type resolved to 0 +2022-04-23T00:10:12.736ZE [30316:CurlWorker40] curl_api.cc:141:StatusFromCurlCode Remapped curl code 6 to Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-23T00:10:12.736ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Request 00000230EB6DD6A0: 0 https://play.googleapis.com/log transport: Status::SUCCESS reader: Status::SUCCESS +2022-04-23T00:10:12.736ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog req.hdr 00000230EB6DD6A0: Content-Type= +2022-04-23T00:10:12.736ZE [27644:core_116443198218440817097] drive_v2_cloud_store.cc:4200:DumpToLog Response body 00000230EB6DD6A0: (no response body) +2022-04-23T00:10:12.736ZE [26256:MetricsTransportThread] legacy_metrics_transport.cc:199:SendRequest Request failed: Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-23T00:10:12.736ZI [26256:MetricsTransportThread] legacy_metrics_transport.cc:384:ProcessRequestsOnBackgroundThread Metrics failed to send, Status::UNAVAILABLE_WHILE_OFFLINE +2022-04-23T00:10:13.110ZI [27644:core_116443198218440817097] gcm.cc:345:operator() GCM successfully connected. +2022-04-23T00:10:13.110ZI [27644:core_116443198218440817097] push_notification_manager.cc:241:operator() Successfully connected PushNotificationManager. +2022-04-23T00:10:13.956ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-23T00:10:13.984ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-23T00:10:14.004ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:221:CheckConnection Checking connection state. +2022-04-23T00:10:14.116ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-23T00:10:14.165ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-23T00:10:14.166ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-23T00:10:14.174ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-23T00:10:14.174ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:250:CheckConnection This adapter is online. +2022-04-23T00:10:14.174ZI [27588:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-23T00:10:14.181ZI [26744:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-23T00:10:14.181ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to online +2022-04-23T00:10:14.181ZI [26748:proxy_resolver_thread] proxy.cc:106:operator() Network status changed, resetting proxy to UNKNOWN +2022-04-23T00:10:14.181ZI [27644:core_116443198218440817097] core.cc:505:operator() Polling feature flags since we are now online +2022-04-23T00:10:14.181ZI [27644:core_116443198218440817097] core.cc:680:CheckFeatureConfig Polling latest feature flags +2022-04-23T00:10:14.181ZI [28264:PhotosSlurpTransporter] closure_retry.cc:44:operator() Online status changed to true +2022-04-23T00:10:14.190ZI [26748:proxy_resolver_thread] proxy.cc:173:GetProxyForUrlInternal Proxy type resolved to 0 +2022-04-23T00:10:14.199ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:260:CheckConnection Result: online +2022-04-23T00:10:14.205ZI [25460:NetworkStatusListener_COM] network_status_listener_win.cc:150:UpdateState Notifying of change to state ONLINE +2022-04-23T00:10:14.205ZI [27644:core_116443198218440817097] cello.cc:442:operator() got notified of network change to online +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=spork_onboarding, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=multi_account_preferences, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=generate_diagnostic_info, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_metrics_implementation, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_osxfuse_read_blacklist, value=false +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_kernel_based_change_replayer, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=changelog_download_throttle_time_ms, value=16000 +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_fileprovider_for_migrated_users, value=false +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=raw_photos_extension, value=arw,crw,cr2,cr3,dcr,dc2,erf,kc2,kdc,k25,mdc,mef,mos,mrw,nef,nrw,orf,pef,qtk,raf,raw,rdc,rw2,srf,srw,sr2,x3f,3fr +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_suppress_file_name_in_event_context, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_failover_for_home_dir_fs_type, value=false +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=auto_purge_trash_warning_notification, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=disable_spam_throttling_on_write_duration_ms, value=0 +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=test_feature_flag_with_escape, value=New Google Docs\.gdoc|New Google Sheets\.gsheet|New Google Slides\.gslides +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=cello_subfolder_sharing_propagation, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=gui_bandwidth_throttling_control, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_mirror_switch_unpinned_item_batch_size, value=0 +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_photos, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_storage_saver_strings, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=macos_copy_resource_to_config_dir, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=shortcut_support, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fcm_implementation_type, value=2 +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=default_ui_theme, value=1 +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_concurrent_merged_read_optimization, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_after_wakeup_ms, value=1400000000 +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=attach_logs_to_feedback_option, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_modern_feature_flags, value=false +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_unique_user_id, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=subfolder_sharing_support, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_switchblade, value=false +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_content_bytes_before_cancel_multiplier, value=1 +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=allow_migration_to_user_id_directory, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=metadata_db_vacuum, value=false +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=unlocked_mac_getxattr, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_mirrored_my_drive, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=fetch_context_menu_via_ipc, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=max_slow_operation_minidump_count, value=0 +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=apiary_free_mode, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=dokan_keep_alive_timeout_ms, value=1400000000 +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_read_backwards_heuristics, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=feedback, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=mirror_sync, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_nas_to_photos, value=true +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_start_date, value=2020-10-13 +2022-04-23T00:10:15.227ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=async_dokan_bridge, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=block_mac_antivirus, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_photos, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enabled, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=preferences_dialog, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=rescue_accounts, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=onboarding, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_noop_test_feature_2, value=false +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_shared_drives_api, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_start_date, value=2020-10-13 +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=local_machine_override_preferences, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=sync_client_migration, value=false +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=detailed_move_warning_messages, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=file_provider_enable_ipc_root_symlink, value=false +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_actual_spam_throttling, value=false +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=migrate_to_account_directories, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_multi_account, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=check_can_add_folder_from_another_drive, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_modern_feature_flags, value=LAUNCH_DISABLED +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_first_warning_start_date, value=2020-09-15 +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=slurp_devices_to_drive, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_win7_patch_required_notification, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=enable_skip_projector_for_office_files, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=show_rename_td_notification, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=request_team_drive_customer_id, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=trash_auto_purge_second_warning_end_date, value=2020-12-09 +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=context_menu_copy_link_notification, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=use_file_organizer_capabilities, value=true +2022-04-23T00:10:15.228ZE [27644:core_116443198218440817097] feature_config.cc:88:DeserializeFeature Ignoring feature that failed to deserialize: key=customer_type, value=CONSUMER +2022-04-23T00:10:15.228ZI [27644:core_116443198218440817097] core.cc:649:ApplyFeatureConfigChange No changes to effective feature flags +2022-04-23T00:10:15.228ZI [24680:NonCelloThread] global_features_manager.cc:211:SetGlobalFeatures Set global features for account 116443198218440817097 +2022-04-23T00:10:15.228ZI [24680:NonCelloThread] global_features_manager.cc:244:CompositeAll Compositing global features based on 1 accounts +2022-04-23T00:10:15.228ZI [24680:NonCelloThread] global_features_manager.cc:260:CompositeAll Composited global features *WITHOUT* overrides: drive_dot: true +share_dialog: true +shell_ipc: true +pause_syncing_option: true +bandwidth_throttling: true +structured_logging: true +context_menu_force_refresh_folder: true +status_window_click_show_file_in_file_manager: true +outlook_addin: false +autostart_preference: true +gui_autostart_option: true +mojave_overlays_fix: false +curl_proxy_authentication: true +gui_reset_preferences_menu_option: true +cancel_upload_option: true +force_refresh_folder_normal_menu: false +structured_log_max_file_size_kbytes: 2048 +ask_to_copy_files_for_pending_uploads: true +inform_users_of_pending_uploads: true +same_content_dedupe_interval_ms: 600000 +dedupe_interval_ms: 2000 +support_status_notification: true +deprecation_date: "2099-12-31" +deprecation_warning_threshold: 30 +min_supported_os_version: "0.0.0" +crash_oom_threshold_mb: 1048576 +allow_search: true +finish_syncing_files_option: true +osxfuse_process_blacklist: "esets_daemon;scep_daemon" +osxfuse_lock_abort_test: false +osxfuse_sched_flags_offset_override: 4294967295 +enforce_single_parent: true +add_shortcut_menu: true +meet_outlook_addin: false +hidden_attr_support: true +spotlight_timestamp_fsctl_support: true +mac_disk_arbitration_unmount: true +current_drive_fs_version: "57.0.5.0" +enable_goose_mode: false +file_revisions_virtual_folder: true +unlocked_mac_buf_unmap: true +spork_migration: false +enable_apl_upload: true +use_mac_fileprovider: false +trim_parents_during_cloud_merge: true +trim_parents_during_commit: true +create_gsuite_file: true +switchblade: true +switchblade_open_files_via_shortcut: true +file_provider_quick_access_polling_interval_sec: 43200 +show_quick_access_in_search_dialog: true +use_spork_notifications: true +include_user_email_in_feedback: true +mac_smb_port: 0 +osxfuse_sched_flags_offset_override_arm: 4294967295 +current_os_version: "Windows/10.0.19044" +cancel_com_calls: true +enable_skip_redirect_for_editor_files: true +enable_file_provider_migration: true +show_download_link: false +logging_on_cello_thread_startup: false +enable_mirror_merge_folder_warning: true +mac_smb_dialect_mode: 10 +dokan_set_internal_file_index: true +context_menu_create_editor_files: false +file_revisions_file_provider: true +mac_smb_nobrowse: true +special_folder_change_notification: true +file_provider_auto_enable_domains: true +enable_fst: false +repair_kext_management_directory: true +purge_non_system_apl_photos_roots: false +instrument_http_client: true +show_offline_files_menu_option: false +enable_mirror_roots_context: true +com_api_thread_stuck_threshold_sec: 0 +num_metrics_batches_per_request: 70 +max_metrics_per_event_code_per_batch: 200 +bns_migration_window_closed: true +encrypt_and_upload: false +show_non_running_accounts: false +enable_shell_ipc_based_progress: false +enable_mount_in_sidebar_setting: false +allow_multiple_smb_connections: true +persistent_smb_port_auto_selection: false +file_provider_disabled_notification_interval_mins: 0 +enable_mount_as_folder_setting: false +enable_search_hot_key: false + +2022-04-23T00:10:15.681ZI [2664:NonCelloThread] third_party/dokan/src/dokancc/driver_log_subscriber.cc:85:Log Wake from sleep detected. +2022-04-23T00:10:27.669ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00050E98 +2022-04-23T00:10:28.330ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00050E98 +2022-04-23T00:10:29.231ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00050E98 +2022-04-23T00:10:29.965ZI [24680:NonCelloThread] system_api_win.cc:136:FindChildWindow Could not find _WwB child of window 0x00050E98 +2022-04-23T00:26:42.933ZI [39492:CurlWorker12] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-23T00:26:42.968ZI [39492:CurlWorker12] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-23T00:26:42.991ZI [39492:CurlWorker12] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#0) +2022-04-23T00:26:42.991ZI [39492:CurlWorker12] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-23T00:26:43.051ZI [39492:CurlWorker12] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-23T00:26:43.059ZI [39492:CurlWorker12] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-23T00:26:43.061ZI [39492:CurlWorker12] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-23T00:26:43.111ZI [39492:CurlWorker12] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-23T00:26:43.111ZI [39492:CurlWorker12] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-23T00:26:43.114ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-23T00:30:11.588ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T00:30:11.588ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T00:32:39.766ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x002B13FC +2022-04-23T00:32:39.766ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001A0B04 +2022-04-23T00:32:39.766ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001A0B04: OSError +2022-04-23T00:32:39.766ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x001A0B04: OSError +2022-04-23T00:32:39.767ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:32:40.468ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x002B13FC +2022-04-23T00:32:40.468ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001A0B04 +2022-04-23T00:32:40.468ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001A0B04: OSError +2022-04-23T00:32:40.969ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x002B13FC +2022-04-23T00:32:40.969ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001A0B04 +2022-04-23T00:32:40.969ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001A0B04: OSError +2022-04-23T00:32:41.470ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x002B13FC +2022-04-23T00:32:41.470ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001A0B04 +2022-04-23T00:32:41.470ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001A0B04: OSError +2022-04-23T00:32:41.971ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x002B13FC +2022-04-23T00:32:41.971ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001A0B04 +2022-04-23T00:32:41.971ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001A0B04: OSError +2022-04-23T00:33:03.874ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x000F0E1C +2022-04-23T00:33:03.874ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00110B84 +2022-04-23T00:33:03.874ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00110B84: OSError +2022-04-23T00:33:03.874ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00110B84: OSError +2022-04-23T00:33:03.874ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:33:04.576ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x000F0E1C +2022-04-23T00:33:04.576ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00110B84 +2022-04-23T00:33:04.576ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00110B84: OSError +2022-04-23T00:33:05.077ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x000F0E1C +2022-04-23T00:33:05.077ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00110B84 +2022-04-23T00:33:05.077ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00110B84: OSError +2022-04-23T00:33:05.578ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x000F0E1C +2022-04-23T00:33:05.578ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00110B84 +2022-04-23T00:33:05.578ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00110B84: OSError +2022-04-23T00:33:06.079ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x000F0E1C +2022-04-23T00:33:06.079ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00110B84 +2022-04-23T00:33:06.079ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00110B84: OSError +2022-04-23T00:33:22.835ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00110E1C +2022-04-23T00:33:22.835ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x000B1284 +2022-04-23T00:33:22.835ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x000B1284: OSError +2022-04-23T00:33:22.835ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x000B1284: OSError +2022-04-23T00:33:22.835ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:33:23.737ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00110E1C +2022-04-23T00:33:23.737ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x000B1284 +2022-04-23T00:33:23.737ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x000B1284: OSError +2022-04-23T00:33:24.238ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00110E1C +2022-04-23T00:33:24.238ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x000B1284 +2022-04-23T00:33:24.238ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x000B1284: OSError +2022-04-23T00:33:24.739ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00110E1C +2022-04-23T00:33:24.739ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x000B1284 +2022-04-23T00:33:24.739ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x000B1284: OSError +2022-04-23T00:33:25.240ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00110E1C +2022-04-23T00:33:25.240ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x000B1284 +2022-04-23T00:33:25.240ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x000B1284: OSError +2022-04-23T00:33:42.176ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00140ED2 +2022-04-23T00:33:42.176ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00441066 +2022-04-23T00:33:42.176ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00441066: OSError +2022-04-23T00:33:42.176ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00441066: OSError +2022-04-23T00:33:42.176ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:33:42.877ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00140ED2 +2022-04-23T00:33:42.877ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00441066 +2022-04-23T00:33:42.877ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00441066: OSError +2022-04-23T00:33:43.378ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00140ED2 +2022-04-23T00:33:43.379ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00441066 +2022-04-23T00:33:43.379ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00441066: OSError +2022-04-23T00:33:43.879ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00140ED2 +2022-04-23T00:33:43.879ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00441066 +2022-04-23T00:33:43.879ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00441066: OSError +2022-04-23T00:34:20.639ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0018112A +2022-04-23T00:34:20.640ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x002C0A74 +2022-04-23T00:34:20.640ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x002C0A74: OSError +2022-04-23T00:34:20.640ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x002C0A74: OSError +2022-04-23T00:34:20.640ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:34:21.341ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0018112A +2022-04-23T00:34:21.341ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x002C0A74 +2022-04-23T00:34:21.341ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x002C0A74: OSError +2022-04-23T00:34:21.841ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0018112A +2022-04-23T00:34:21.841ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x002C0A74 +2022-04-23T00:34:21.841ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x002C0A74: OSError +2022-04-23T00:34:22.342ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0018112A +2022-04-23T00:34:22.342ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x002C0A74 +2022-04-23T00:34:22.342ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x002C0A74: OSError +2022-04-23T00:34:22.843ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0018112A +2022-04-23T00:34:22.843ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x002C0A74 +2022-04-23T00:34:22.843ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x002C0A74: OSError +2022-04-23T00:37:11.798ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00320FCE +2022-04-23T00:37:11.798ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00160EA2 +2022-04-23T00:37:11.798ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00160EA2: OSError +2022-04-23T00:37:11.798ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00160EA2: OSError +2022-04-23T00:37:11.798ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:37:12.499ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00320FCE +2022-04-23T00:37:12.499ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00160EA2 +2022-04-23T00:37:12.499ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00160EA2: OSError +2022-04-23T00:37:12.999ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00320FCE +2022-04-23T00:37:12.999ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00160EA2 +2022-04-23T00:37:12.999ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00160EA2: OSError +2022-04-23T00:37:13.500ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00320FCE +2022-04-23T00:37:13.500ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00160EA2 +2022-04-23T00:37:13.500ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00160EA2: OSError +2022-04-23T00:37:28.078ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00340BF4 +2022-04-23T00:37:28.078ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x0022124E +2022-04-23T00:37:28.078ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x0022124E: OSError +2022-04-23T00:37:28.078ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x0022124E: OSError +2022-04-23T00:37:28.078ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:37:28.779ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00340BF4 +2022-04-23T00:37:28.780ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x0022124E +2022-04-23T00:37:28.780ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x0022124E: OSError +2022-04-23T00:37:29.280ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00340BF4 +2022-04-23T00:37:29.280ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x0022124E +2022-04-23T00:37:29.280ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x0022124E: OSError +2022-04-23T00:37:29.781ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00340BF4 +2022-04-23T00:37:29.781ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x0022124E +2022-04-23T00:37:29.781ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x0022124E: OSError +2022-04-23T00:37:30.281ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00340BF4 +2022-04-23T00:37:30.281ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x0022124E +2022-04-23T00:37:30.281ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x0022124E: OSError +2022-04-23T00:37:51.992ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004A0C0E +2022-04-23T00:37:51.992ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001C0B86 +2022-04-23T00:37:51.992ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001C0B86: OSError +2022-04-23T00:37:51.992ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x001C0B86: OSError +2022-04-23T00:37:51.992ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:37:52.694ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004A0C0E +2022-04-23T00:37:52.694ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001C0B86 +2022-04-23T00:37:52.694ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001C0B86: OSError +2022-04-23T00:37:53.195ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004A0C0E +2022-04-23T00:37:53.195ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001C0B86 +2022-04-23T00:37:53.195ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001C0B86: OSError +2022-04-23T00:37:53.695ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004A0C0E +2022-04-23T00:37:53.695ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001C0B86 +2022-04-23T00:37:53.695ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001C0B86: OSError +2022-04-23T00:37:54.196ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004A0C0E +2022-04-23T00:37:54.196ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001C0B86 +2022-04-23T00:37:54.196ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001C0B86: OSError +2022-04-23T00:38:17.756ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004C0D20 +2022-04-23T00:38:17.756ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00590A60 +2022-04-23T00:38:17.756ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00590A60: OSError +2022-04-23T00:38:17.756ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00590A60: OSError +2022-04-23T00:38:17.756ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:38:18.458ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004C0D20 +2022-04-23T00:38:18.458ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00590A60 +2022-04-23T00:38:18.458ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00590A60: OSError +2022-04-23T00:38:48.756ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x01980B5A +2022-04-23T00:38:48.756ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003913CA +2022-04-23T00:38:48.756ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003913CA: OSError +2022-04-23T00:38:48.756ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x003913CA: OSError +2022-04-23T00:38:48.756ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:38:49.457ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x01980B5A +2022-04-23T00:38:49.457ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003913CA +2022-04-23T00:38:49.457ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003913CA: OSError +2022-04-23T00:38:49.958ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x01980B5A +2022-04-23T00:38:49.958ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003913CA +2022-04-23T00:38:49.958ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003913CA: OSError +2022-04-23T00:38:50.459ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x01980B5A +2022-04-23T00:38:50.459ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003913CA +2022-04-23T00:38:50.459ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003913CA: OSError +2022-04-23T00:38:50.959ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x01980B5A +2022-04-23T00:38:50.959ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003913CA +2022-04-23T00:38:50.959ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003913CA: OSError +2022-04-23T00:39:11.787ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004112F0 +2022-04-23T00:39:11.787ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00500D20 +2022-04-23T00:39:11.787ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00500D20: OSError +2022-04-23T00:39:11.787ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00500D20: OSError +2022-04-23T00:39:11.787ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:39:12.488ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004112F0 +2022-04-23T00:39:12.488ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00500D20 +2022-04-23T00:39:12.488ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00500D20: OSError +2022-04-23T00:39:12.989ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004112F0 +2022-04-23T00:39:12.989ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00500D20 +2022-04-23T00:39:12.989ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00500D20: OSError +2022-04-23T00:39:13.489ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004112F0 +2022-04-23T00:39:13.489ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00500D20 +2022-04-23T00:39:13.489ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00500D20: OSError +2022-04-23T00:39:13.989ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004112F0 +2022-04-23T00:39:13.990ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00500D20 +2022-04-23T00:39:13.990ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00500D20: OSError +2022-04-23T00:39:32.285ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x002710B0 +2022-04-23T00:39:32.285ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00390B90 +2022-04-23T00:39:32.285ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00390B90: OSError +2022-04-23T00:39:32.285ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00390B90: OSError +2022-04-23T00:39:32.286ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:39:32.986ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x002710B0 +2022-04-23T00:39:32.987ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00390B90 +2022-04-23T00:39:32.987ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00390B90: OSError +2022-04-23T00:39:33.487ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x002710B0 +2022-04-23T00:39:33.487ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00390B90 +2022-04-23T00:39:33.487ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00390B90: OSError +2022-04-23T00:39:33.988ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x002710B0 +2022-04-23T00:39:33.988ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00390B90 +2022-04-23T00:39:33.988ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00390B90: OSError +2022-04-23T00:39:53.676ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0053091E +2022-04-23T00:39:53.676ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x002B0B84 +2022-04-23T00:39:53.676ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x002B0B84: OSError +2022-04-23T00:39:53.676ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x002B0B84: OSError +2022-04-23T00:39:53.676ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:40:07.322ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0055091E +2022-04-23T00:40:07.323ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00301344 +2022-04-23T00:40:07.323ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00301344: OSError +2022-04-23T00:40:07.323ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00301344: OSError +2022-04-23T00:40:07.323ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:40:08.024ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0055091E +2022-04-23T00:40:08.024ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00301344 +2022-04-23T00:40:08.024ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00301344: OSError +2022-04-23T00:40:08.525ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0055091E +2022-04-23T00:40:08.525ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00301344 +2022-04-23T00:40:08.525ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00301344: OSError +2022-04-23T00:40:09.025ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0055091E +2022-04-23T00:40:09.025ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00301344 +2022-04-23T00:40:09.025ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00301344: OSError +2022-04-23T00:40:09.526ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0055091E +2022-04-23T00:40:09.526ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00301344 +2022-04-23T00:40:09.526ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00301344: OSError +2022-04-23T00:41:11.044ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00311344 +2022-04-23T00:41:11.044ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00611066 +2022-04-23T00:41:11.044ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00611066: OSError +2022-04-23T00:41:11.044ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00611066: OSError +2022-04-23T00:41:11.044ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:41:11.746ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00311344 +2022-04-23T00:41:11.746ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00611066 +2022-04-23T00:41:11.746ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00611066: OSError +2022-04-23T00:41:56.248ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00610F60 +2022-04-23T00:41:56.248ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00340F1A +2022-04-23T00:41:56.248ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00340F1A: OSError +2022-04-23T00:41:56.248ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00340F1A: OSError +2022-04-23T00:41:56.248ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:44:14.622ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x003C0914 +2022-04-23T00:44:14.622ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x004C0EDC +2022-04-23T00:44:14.622ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x004C0EDC: OSError +2022-04-23T00:44:14.622ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x004C0EDC: OSError +2022-04-23T00:44:14.623ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:44:15.325ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x003C0914 +2022-04-23T00:44:15.325ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x004C0EDC +2022-04-23T00:44:15.325ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x004C0EDC: OSError +2022-04-23T00:44:15.825ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x003C0914 +2022-04-23T00:44:15.825ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x004C0EDC +2022-04-23T00:44:15.825ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x004C0EDC: OSError +2022-04-23T00:44:16.325ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x003C0914 +2022-04-23T00:44:16.325ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x004C0EDC +2022-04-23T00:44:16.325ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x004C0EDC: OSError +2022-04-23T00:45:10.549ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00270C78 +2022-04-23T00:45:10.549ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003313C6 +2022-04-23T00:45:10.549ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003313C6: OSError +2022-04-23T00:45:10.549ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x003313C6: OSError +2022-04-23T00:45:10.549ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:45:11.251ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00270C78 +2022-04-23T00:45:11.251ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003313C6 +2022-04-23T00:45:11.251ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003313C6: OSError +2022-04-23T00:45:11.752ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00270C78 +2022-04-23T00:45:11.752ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003313C6 +2022-04-23T00:45:11.752ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003313C6: OSError +2022-04-23T00:45:12.253ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00270C78 +2022-04-23T00:45:12.253ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003313C6 +2022-04-23T00:45:12.253ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003313C6: OSError +2022-04-23T00:45:38.293ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x001A1294 +2022-04-23T00:45:38.293ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x005E091E +2022-04-23T00:45:38.293ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x005E091E: OSError +2022-04-23T00:45:38.293ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x005E091E: OSError +2022-04-23T00:45:38.293ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:45:38.994ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x001A1294 +2022-04-23T00:45:38.994ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x005E091E +2022-04-23T00:45:38.994ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x005E091E: OSError +2022-04-23T00:45:39.494ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x001A1294 +2022-04-23T00:45:39.494ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x005E091E +2022-04-23T00:45:39.494ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x005E091E: OSError +2022-04-23T00:45:39.994ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x001A1294 +2022-04-23T00:45:39.994ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x005E091E +2022-04-23T00:45:39.994ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x005E091E: OSError +2022-04-23T00:45:52.173ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x001C1294 +2022-04-23T00:45:52.173ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x004110A2 +2022-04-23T00:45:52.173ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x004110A2: OSError +2022-04-23T00:45:52.173ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x004110A2: OSError +2022-04-23T00:45:52.173ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:45:52.873ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x001C1294 +2022-04-23T00:45:52.873ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x004110A2 +2022-04-23T00:45:52.874ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x004110A2: OSError +2022-04-23T00:45:53.374ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x001C1294 +2022-04-23T00:45:53.374ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x004110A2 +2022-04-23T00:45:53.374ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x004110A2: OSError +2022-04-23T00:45:53.875ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x001C1294 +2022-04-23T00:45:53.875ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x004110A2 +2022-04-23T00:45:53.875ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x004110A2: OSError +2022-04-23T00:46:14.826ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x006B0C08 +2022-04-23T00:46:14.826ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00760A42 +2022-04-23T00:46:14.826ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00760A42: OSError +2022-04-23T00:46:14.826ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00760A42: OSError +2022-04-23T00:46:14.826ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:46:15.528ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x006B0C08 +2022-04-23T00:46:15.528ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00760A42 +2022-04-23T00:46:15.528ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00760A42: OSError +2022-04-23T00:46:16.029ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x006B0C08 +2022-04-23T00:46:16.029ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00760A42 +2022-04-23T00:46:16.029ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00760A42: OSError +2022-04-23T00:46:16.530ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x006B0C08 +2022-04-23T00:46:16.530ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00760A42 +2022-04-23T00:46:16.530ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00760A42: OSError +2022-04-23T00:47:11.806ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x006E0D86 +2022-04-23T00:47:11.806ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00730CF8 +2022-04-23T00:47:11.806ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00730CF8: OSError +2022-04-23T00:47:11.806ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00730CF8: OSError +2022-04-23T00:47:11.806ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:47:12.507ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x006E0D86 +2022-04-23T00:47:12.507ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00730CF8 +2022-04-23T00:47:12.507ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00730CF8: OSError +2022-04-23T00:47:13.008ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x006E0D86 +2022-04-23T00:47:13.008ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00730CF8 +2022-04-23T00:47:13.008ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00730CF8: OSError +2022-04-23T00:47:13.508ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x006E0D86 +2022-04-23T00:47:13.508ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00730CF8 +2022-04-23T00:47:13.508ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00730CF8: OSError +2022-04-23T00:47:24.669ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00700D86 +2022-04-23T00:47:24.669ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x006D0F48 +2022-04-23T00:47:24.669ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x006D0F48: OSError +2022-04-23T00:47:24.669ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x006D0F48: OSError +2022-04-23T00:47:24.669ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:47:25.370ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00700D86 +2022-04-23T00:47:25.370ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x006D0F48 +2022-04-23T00:47:25.370ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x006D0F48: OSError +2022-04-23T00:47:25.870ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00700D86 +2022-04-23T00:47:25.870ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x006D0F48 +2022-04-23T00:47:25.870ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x006D0F48: OSError +2022-04-23T00:47:26.371ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00700D86 +2022-04-23T00:47:26.371ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x006D0F48 +2022-04-23T00:47:26.371ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x006D0F48: OSError +2022-04-23T00:47:56.109ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x000D0FE8 +2022-04-23T00:47:56.109ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003F1284 +2022-04-23T00:47:56.109ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003F1284: OSError +2022-04-23T00:47:56.109ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x003F1284: OSError +2022-04-23T00:47:56.109ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:47:56.811ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x000D0FE8 +2022-04-23T00:47:56.811ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003F1284 +2022-04-23T00:47:56.811ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003F1284: OSError +2022-04-23T00:47:57.312ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x000D0FE8 +2022-04-23T00:47:57.312ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003F1284 +2022-04-23T00:47:57.312ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003F1284: OSError +2022-04-23T00:47:57.813ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x000D0FE8 +2022-04-23T00:47:57.813ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x003F1284 +2022-04-23T00:47:57.813ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x003F1284: OSError +2022-04-23T00:48:09.832ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00740D86 +2022-04-23T00:48:09.832ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00310B34 +2022-04-23T00:48:09.832ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00310B34: OSError +2022-04-23T00:48:09.832ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00310B34: OSError +2022-04-23T00:48:09.832ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T00:48:10.533ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00740D86 +2022-04-23T00:48:10.533ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00310B34 +2022-04-23T00:48:10.533ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00310B34: OSError +2022-04-23T00:48:11.034ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00740D86 +2022-04-23T00:48:11.034ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00310B34 +2022-04-23T00:48:11.034ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00310B34: OSError +2022-04-23T00:48:11.534ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00740D86 +2022-04-23T00:48:11.534ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00310B34 +2022-04-23T00:48:11.534ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00310B34: OSError +2022-04-23T00:50:11.589ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T00:50:11.589ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T01:07:58.624ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-23T01:08:01.792ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-23T01:08:01.792ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-23T01:09:23.390ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-23T01:09:25.400ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-23T01:09:25.400ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-23T01:09:31.796ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:31.796ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:31.796ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:31.796ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:31.796ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T01:09:32.698ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:32.698ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:32.698ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:33.199ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:33.199ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:33.199ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:33.700ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:33.700ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:33.700ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:34.201ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:34.201ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:34.201ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:34.702ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:34.702ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:34.702ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:35.202ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:35.202ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:35.202ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:35.703ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:35.703ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:35.703ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:36.204ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:36.204ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:36.204ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:36.704ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:36.704ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:36.704ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:37.205ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00750C08 +2022-04-23T01:09:37.205ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x007912B4 +2022-04-23T01:09:37.205ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x007912B4: OSError +2022-04-23T01:09:37.705ZE [28336:DotOfficeApi] office_api_win.cc:162:MaybeWaitForAppToStart Excel unavailable after waiting. +2022-04-23T01:09:37.705ZE [28336:DotOfficeApi] async_office_api_win.cc:247:ConnectToHostInternal Can't connect to 00000000007912B4 of Excel: OSError +2022-04-23T01:09:48.673ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004D10B0 +2022-04-23T01:09:48.673ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00760C08 +2022-04-23T01:09:48.673ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00760C08: OSError +2022-04-23T01:09:48.673ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00760C08: OSError +2022-04-23T01:09:48.673ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T01:09:49.374ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x004D10B0 +2022-04-23T01:09:49.374ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00760C08 +2022-04-23T01:09:49.374ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00760C08: OSError +2022-04-23T01:10:11.589ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T01:10:11.589ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T01:10:43.073ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-23T01:10:45.256ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-23T01:10:45.256ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-23T01:11:18.422ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0065120C +2022-04-23T01:11:18.422ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x006A04FE +2022-04-23T01:11:18.422ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x006A04FE: OSError +2022-04-23T01:11:18.422ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x006A04FE: OSError +2022-04-23T01:11:18.422ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T01:11:19.124ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0065120C +2022-04-23T01:11:19.124ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x006A04FE +2022-04-23T01:11:19.124ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x006A04FE: OSError +2022-04-23T01:11:19.625ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x0065120C +2022-04-23T01:11:19.625ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x006A04FE +2022-04-23T01:11:19.625ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x006A04FE: OSError +2022-04-23T01:11:28.791ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-23T01:11:30.763ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-23T01:11:30.763ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-23T01:11:39.302ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00360B34 +2022-04-23T01:11:39.302ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001B1030 +2022-04-23T01:11:39.302ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001B1030: OSError +2022-04-23T01:11:39.302ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x001B1030: OSError +2022-04-23T01:11:39.302ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T01:11:40.003ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00360B34 +2022-04-23T01:11:40.003ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x001B1030 +2022-04-23T01:11:40.003ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x001B1030: OSError +2022-04-23T01:26:43.877ZI [39364:CurlWorker13] curl_api.cc:1027:LogCurlInfo == Info: timeout on name lookup is not supported +2022-04-23T01:26:43.916ZI [39364:CurlWorker13] curl_api.cc:1027:LogCurlInfo == Info: Trying 142.251.40.237:443... +2022-04-23T01:26:43.936ZI [39364:CurlWorker13] curl_api.cc:1027:LogCurlInfo == Info: Connected to accounts.google.com (142.251.40.237) port 443 (#0) +2022-04-23T01:26:43.936ZI [39364:CurlWorker13] curl_api.cc:1027:LogCurlInfo == Info: schannel: disabled automatic use of client certificate +2022-04-23T01:26:43.996ZI [39364:CurlWorker13] curl_api.cc:1027:LogCurlInfo == Info: schannel: added 36 certificate(s) from CA file '(memory blob)' +2022-04-23T01:26:44.005ZI [39364:CurlWorker13] curl_api.cc:1027:LogCurlInfo == Info: schannel: connection hostname (accounts.google.com) validated against certificate name (accounts.google.com) +2022-04-23T01:26:44.006ZI [39364:CurlWorker13] curl_api.cc:1027:LogCurlInfo == Info: We are completely uploaded and fine +2022-04-23T01:26:44.065ZI [39364:CurlWorker13] curl_api.cc:1027:LogCurlInfo == Info: Mark bundle as not supporting multiuse +2022-04-23T01:26:44.065ZI [39364:CurlWorker13] curl_api.cc:1027:LogCurlInfo == Info: Connection #0 to host accounts.google.com left intact +2022-04-23T01:26:44.068ZI [27644:core_116443198218440817097] oauth_credential.cc:391:Update Stored credential successfully +2022-04-23T01:30:11.589ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T01:30:11.589ZI [27644:core_116443198218440817097] sync_engine.cc:1766:operator() Sync engine activity state: +operation_queue_size: 0 +all_downloads: 0 +operation_queue_unique_size: 0 +change_ids_up_to_date: true +largest_local_change_id: 756636 +fetching_changes: false + +2022-04-23T01:35:52.058ZI [28336:DotOfficeApi] system_api_win.cc:136:FindChildWindow Could not find EXCEL7 child of window 0x00180E92 +2022-04-23T01:35:52.058ZE [28336:DotOfficeApi] com_helpers.cc:104:GetComWindowInternal Can't find accessible window for Excel 0x00370B34 +2022-04-23T01:35:52.058ZE [28336:DotOfficeApi] office_api_win.cc:566:GetComWindow Can't get Excel window for 0x00370B34: OSError +2022-04-23T01:35:52.058ZE [28336:DotOfficeApi] office_api_win.cc:119:GetDocument Can't get Excel window for 0x00370B34: OSError +2022-04-23T01:35:52.058ZI [28336:DotOfficeApi] office_api_win.cc:408:ConnectToHost Waiting for Excel to start responding to COM requests. +2022-04-23T01:36:55.681ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-23T01:36:58.933ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-23T01:36:58.933ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-23T01:37:44.451ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-23T01:37:47.686ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-23T01:37:47.686ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + +2022-04-23T01:38:30.685ZI [25248:ipc_thread] ipc_socket_win.cc:274:GetNextConnection Accepting next connection +2022-04-23T01:38:33.140ZE [25248:ipc_thread] ipc_socket_win.cc:117:operator() GetOverlappedResult() failed: +2022-04-23T01:38:33.140ZE [25248:ipc_thread] ipc_socket_win.cc:118:operator() 109: The pipe has been ended. + diff --git a/Basic_Computer_Skills_for_Forensics/regex/informant.ost b/Basic_Computer_Skills_for_Forensics/regex/informant.ost new file mode 100644 index 0000000..d1da1a3 Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/informant.ost differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/iolang.py b/Basic_Computer_Skills_for_Forensics/regex/iolang.py new file mode 100644 index 0000000..c1fbe90 --- /dev/null +++ b/Basic_Computer_Skills_for_Forensics/regex/iolang.py @@ -0,0 +1,62 @@ +""" + pygments.lexers.iolang + ~~~~~~~~~~~~~~~~~~~~~~ + + Lexers for the Io language. + + :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +from pygments.lexer import RegexLexer +from pygments.token import Text, Comment, Operator, Keyword, Name, String, \ + Number + +__all__ = ['IoLexer'] + + +class IoLexer(RegexLexer): + """ + For `Io `_ (a small, prototype-based + programming language) source. + + .. versionadded:: 0.10 + """ + name = 'Io' + filenames = ['*.io'] + aliases = ['io'] + mimetypes = ['text/x-iosrc'] + tokens = { + 'root': [ + (r'\n', Text), + (r'\s+', Text), + # Comments + (r'//(.*?)\n', Comment.Single), + (r'#(.*?)\n', Comment.Single), + (r'/(\\\n)?[*](.|\n)*?[*](\\\n)?/', Comment.Multiline), + (r'/\+', Comment.Multiline, 'nestedcomment'), + # DoubleQuotedString + (r'"(\\\\|\\[^\\]|[^"\\])*"', String), + # Operators + (r'::=|:=|=|\(|\)|;|,|\*|-|\+|>|<|@|!|/|\||\^|\.|%|&|\[|\]|\{|\}', + Operator), + # keywords + (r'(clone|do|doFile|doString|method|for|if|else|elseif|then)\b', + Keyword), + # constants + (r'(nil|false|true)\b', Name.Constant), + # names + (r'(Object|list|List|Map|args|Sequence|Coroutine|File)\b', + Name.Builtin), + (r'[a-zA-Z_]\w*', Name), + # numbers + (r'(\d+\.?\d*|\d*\.\d+)([eE][+-]?[0-9]+)?', Number.Float), + (r'\d+', Number.Integer) + ], + 'nestedcomment': [ + (r'[^+/]+', Comment.Multiline), + (r'/\+', Comment.Multiline, '#push'), + (r'\+/', Comment.Multiline, '#pop'), + (r'[+/]', Comment.Multiline), + ] + } diff --git a/Basic_Computer_Skills_for_Forensics/regex/regex.zip b/Basic_Computer_Skills_for_Forensics/regex/regex.zip new file mode 100644 index 0000000..3efe55c Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/regex.zip differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/sample_resume.pdf b/Basic_Computer_Skills_for_Forensics/regex/sample_resume.pdf new file mode 100644 index 0000000..90bdb4d Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/sample_resume.pdf differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/sample_resumes.pdf b/Basic_Computer_Skills_for_Forensics/regex/sample_resumes.pdf new file mode 100644 index 0000000..444a6ed Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/sample_resumes.pdf differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/ub_building.jpg b/Basic_Computer_Skills_for_Forensics/regex/ub_building.jpg new file mode 100644 index 0000000..a3b9388 Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/ub_building.jpg differ diff --git a/Basic_Computer_Skills_for_Forensics/regex/ub_building2.jpg b/Basic_Computer_Skills_for_Forensics/regex/ub_building2.jpg new file mode 100644 index 0000000..296f7a5 Binary files /dev/null and b/Basic_Computer_Skills_for_Forensics/regex/ub_building2.jpg differ