mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 21:02:24 +03:00
Merge pull request #1952 from shlinkio/feature/rr-logs-improvement
Feature/rr logs improvement
This commit is contained in:
commit
97e9dfad67
4 changed files with 13 additions and 8 deletions
|
@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).
|
||||
|
||||
## [Unreleased]
|
||||
## [3.7.1] - 2023-12-17
|
||||
### Added
|
||||
* *Nothing*
|
||||
|
||||
|
@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this
|
|||
|
||||
### Fixed
|
||||
* [#1947](https://github.com/shlinkio/shlink/issues/1947) Fix error when importing short URLs while using Postgres.
|
||||
* [#1939](https://github.com/shlinkio/shlink/issues/1939) Fine-tune RoadRunner logs to avoid too many useless info.
|
||||
|
||||
|
||||
## [3.7.0] - 2023-11-25
|
||||
|
|
|
@ -45,12 +45,12 @@
|
|||
"php-middleware/request-id": "^4.1",
|
||||
"pugx/shortid-php": "^1.1",
|
||||
"ramsey/uuid": "^4.7",
|
||||
"shlinkio/shlink-common": "dev-main#4d0b6ca as 5.8",
|
||||
"shlinkio/shlink-common": "^5.7.1",
|
||||
"shlinkio/shlink-config": "^2.5",
|
||||
"shlinkio/shlink-event-dispatcher": "^3.1",
|
||||
"shlinkio/shlink-importer": "dev-main#4616c54 as 5.3",
|
||||
"shlinkio/shlink-installer": "dev-develop#cb0eaea as 8.7",
|
||||
"shlinkio/shlink-ip-geolocation": "dev-main#e8406aa as 3.4",
|
||||
"shlinkio/shlink-importer": "^5.2.1",
|
||||
"shlinkio/shlink-installer": "^8.6.1",
|
||||
"shlinkio/shlink-ip-geolocation": "^3.4",
|
||||
"shlinkio/shlink-json": "^1.1",
|
||||
"spiral/roadrunner": "^2023.2",
|
||||
"spiral/roadrunner-cli": "^2.5",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version: '3.0'
|
||||
version: '3'
|
||||
|
||||
rpc:
|
||||
listen: tcp://127.0.0.1:6001
|
||||
|
@ -38,3 +38,5 @@ logs:
|
|||
level: debug
|
||||
metrics:
|
||||
level: debug
|
||||
jobs:
|
||||
level: debug
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version: '3.0'
|
||||
version: '3'
|
||||
|
||||
rpc:
|
||||
listen: tcp://127.0.0.1:6001
|
||||
|
@ -33,4 +33,6 @@ logs:
|
|||
http:
|
||||
mode: 'off' # Disable logging as Shlink handles it internally
|
||||
server:
|
||||
level: debug # Everything written to worker stderr is logged
|
||||
level: info
|
||||
jobs:
|
||||
level: debug
|
||||
|
|
Loading…
Reference in a new issue