Skip to content

Commit 5ffab25

Browse files
Merge pull request #144 from snowplow/release/0.7.1
Release/0.7.1
2 parents f878fd9 + 07e5908 commit 5ffab25

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 0.7.1 (2024-05-15)
2+
--------------------------
3+
Log the file name in errors from emitter (#143) thanks to @kaurov
4+
15
Version 0.7.0 (2023-08-03)
26
--------------------------
37
Add retry capability for events that failed to send to collector in socket and sync emitter (#135)

src/Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Constants {
4545
* - SSL: the default for whether or not to use SSL Encryption
4646
* - Type: the default for what type of request the emitter will be making (POST or GET)
4747
*/
48-
const TRACKER_VERSION = "php-0.7.0";
48+
const TRACKER_VERSION = "php-0.7.1";
4949
const DEFAULT_BASE_64 = true;
5050
const DEBUG_LOG_FILES = true;
5151
const CONTEXT_SCHEMA = "iglu:com.snowplowanalytics.snowplow/contexts/jsonschema/1-0-1";

src/Emitter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function setup($type, $debug, $buffer_size) {
6060
if (self::DEBUG_LOG_FILES) {
6161
if ($this->initDebug($type) !== true) {
6262
$this->write_perms = false;
63-
print_r("Unable to create debug log files: invalid write permissions.");
63+
print_r("Unable to create debug log files: invalid write permissions for ".$this->debug_file);
6464
}
6565
}
6666
}

0 commit comments

Comments
 (0)