Skip to content

Commit 7e87295

Browse files
committed
Changelog added
1 parent 1857587 commit 7e87295

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
21.11.0
2+
* Fixed session duration issue.
3+
* Added functionality to report event duration manually.
4+
* 'startOnCloud' in 'Countly' is deprecated and this is going to be removed in the future.

src/countly.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,12 @@ void Countly::start(const std::string& app_key, const std::string& host, int por
220220
mutex.unlock();
221221
}
222222

223+
224+
/**
225+
* startOnCloud is deprecated and this is going to be removed in the future.
226+
*/
223227
void Countly::startOnCloud(const std::string& app_key) {
228+
log(Countly::LogLevel::WARNING, "[Countly][startOnCloud] 'startOnCloud' is deprecated, this is going to be removed in the future.");
224229
this->start(app_key, "https://cloud.count.ly", 443);
225230
}
226231

0 commit comments

Comments
 (0)