Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.7.1 #144

Merged
merged 2 commits into from
Jun 12, 2024
Merged
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: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 0.7.1 (2024-05-15)
--------------------------
Log the file name in errors from emitter (#143) thanks to @kaurov

Version 0.7.0 (2023-08-03)
--------------------------
Add retry capability for events that failed to send to collector in socket and sync emitter (#135)
Expand Down
2 changes: 1 addition & 1 deletion src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Constants {
* - SSL: the default for whether or not to use SSL Encryption
* - Type: the default for what type of request the emitter will be making (POST or GET)
*/
const TRACKER_VERSION = "php-0.7.0";
const TRACKER_VERSION = "php-0.7.1";
const DEFAULT_BASE_64 = true;
const DEBUG_LOG_FILES = true;
const CONTEXT_SCHEMA = "iglu:com.snowplowanalytics.snowplow/contexts/jsonschema/1-0-1";
Expand Down
2 changes: 1 addition & 1 deletion src/Emitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function setup($type, $debug, $buffer_size) {
if (self::DEBUG_LOG_FILES) {
if ($this->initDebug($type) !== true) {
$this->write_perms = false;
print_r("Unable to create debug log files: invalid write permissions.");
print_r("Unable to create debug log files: invalid write permissions for ".$this->debug_file);
}
}
}
Expand Down
Loading