Merge branch 'master' of github.com:hyperf-cloud/hyperf

This commit is contained in:
李铭昕 2019-06-21 13:26:29 +08:00
commit 0da96be9ed
4 changed files with 52 additions and 1 deletions

17
.github/ISSUE_TEMPLATE/---bug-report.md vendored Normal file
View File

@ -0,0 +1,17 @@
---
name: "\U0001F41B Bug report"
about: Create a report to help us improve
title: "[BUG] "
labels: bug
assignees: ''
---
- Hyperf Version: #.#.#
- PHP Version: `(php -v)` #.#.#
- Swoole Version: `(php --ri swoole)` #.#.#
### Description:
### Steps To Reproduce:

View File

@ -0,0 +1,20 @@
---
name: "\U0001F4A1 Feature request"
about: Suggest an idea for this project
title: "[FEATURE] "
labels: enhancement
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

View File

@ -0,0 +1,14 @@
---
name: "\U0001F9D0 Support Question"
about: Ask for help
title: "[QUESTION] "
labels: question
assignees: ''
---
## Before you submit this issue, you has been search all existed issues and search the [documentation](https://doc.hyperf.io)
- [] I've been search all existed issues
- [] I've been read all documentation
### Describe your question

View File

@ -56,7 +56,7 @@ class DbQueryExecutedListener implements ListenerInterface
}
}
$message = sprintf('[%s]%s', $event->time, $sql);
$message = sprintf('[%s][%s]%s', $event->connectionName, $event->time, $sql);
$this->logger->debug($message);
}
}