We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fe2647 commit 3354a59Copy full SHA for 3354a59
1 file changed
analytics/src/analytics_desktop.cc
@@ -87,7 +87,6 @@ std::wstring Utf8ToWide(const std::string& utf8String) {
87
wideString.resize(pos);
88
}
89
90
-
91
return wideString;
92
93
@@ -131,12 +130,12 @@ void Initialize(const App& app) {
131
130
if (!g_analytics_dll) {
132
g_analytics_dll = LoadLibraryW(g_analytics_dll_filename.c_str());
133
if (g_analytics_dll) {
134
- LogInfo("Successfully loaded Analytics DLL %ls", g_analytics_dll_filename);
+ LogInfo("Loaded Google Analytics DLL");
+ FirebaseAnalytics_LoadAnalyticsFunctions(g_analytics_dll);
135
} else {
136
- LogError("Failed to load Analytics DLL %ls", g_analytics_dll_filename);
+ // Silently fail and continue in stub mode.
137
138
139
- FirebaseAnalytics_LoadAnalyticsFunctions(g_analytics_dll);
140
#endif
141
142
0 commit comments