Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/example_integration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ int main() {
string _serverUrl = "https://your.server.ly";

if(_appKey.compare("YOUR_APP_KEY") == 0 || _serverUrl.compare("https://your.server.ly") == 0) {
cerr << "Please do not use default set of app key and server url" << endl;
printLog(LogLevel::WARNING, "[ExampleIntegration] Please do not use default set of app key and server url");
}

ct.start(_appKey, _serverUrl, 443, true);
Expand Down Expand Up @@ -164,7 +164,7 @@ int main() {
flag = false;
break;
default:
cout << "Option not found!" << endl;
printLog(LogLevel::DEBUG, "[ExampleIntegration] Please do not use default set of app key and server url");
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion include/countly.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ class Countly : public cly::CountlyDelegates {
/* Provide 'updateInterval' in seconds. */
inline void setAutomaticSessionUpdateInterval(unsigned short updateInterval) {
if (is_sdk_initialized) {
log(LogLevel::WARNING, "[Countly][setAutomaticSessionUpdateInterval] You can not set the session duration after SDK initialization.");
log(LogLevel::WARNING, "[Countly]setAutomaticSessionUpdateInterval, You can not set the session duration after SDK initialization.");
return;
}

Expand Down
Loading