Skip to content

Commit 50906cc

Browse files
Steveb-pnick-zh
andauthored
Add debug to issue template (#392)
* Add debug to issue template * Add comment Co-authored-by: Nick <[email protected]> * Remove unrelated code Co-authored-by: Nick <[email protected]> Co-authored-by: Nick <[email protected]>
1 parent a0c04cb commit 50906cc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/ISSUE_TEMPLATE

+9
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,12 @@ Please always include the following in an issue, so we can help faster:
1111
* librdkafka version:
1212
* php-rdkafka version:
1313
* kafka version:
14+
15+
If possible, add debug logs from librdkafka, which you can obtain by adjusting your configuration:
16+
```php
17+
<?php
18+
$conf = new RdKafka\Conf();
19+
// Add the two settings below for a more verbose output
20+
$conf->set('log_level', (string) LOG_DEBUG);
21+
$conf->set('debug', 'all');
22+
```

0 commit comments

Comments
 (0)