You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by zh...@apache.org on 2021/09/02 02:03:28 UTC

[dubbo-go] branch config-enhance updated (ddabb2e -> 299cac4)

This is an automated email from the ASF dual-hosted git repository.

zhaoyunxing pushed a change to branch config-enhance
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git.


    from ddabb2e  fix: support no registry (#1426)
     new 384e130  add logger config
     new 7379c14  feat: add getUrlMap & replace hump to underscore
     new c636de3  Merge branch 'config-enhance' into config-enhance-log
     new f6c81ae  fix: delete the init func in common/logger
     new 599ddd6  fix: replace '_' to '-' & delete test file in common/logger
     new 89be3e7  fix: delete "" in yaml file
     new 299cac4  Merge pull request #1419 from cjphaha/config-enhance-log

The 8007 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 common/logger/file_log.yml                         |  36 ------
 common/logger/log.yml                              |  27 ----
 common/logger/logger.go                            |  69 +----------
 common/logger/logger_test.go                       | 137 ---------------------
 config/logger_config.go                            | 106 ++++++++++++++++
 config/logger_config_test.go                       |  56 +++++++++
 config/root_config.go                              |   6 +-
 .../application.yaml => logger/empty_log.yaml}     |   1 +
 config/testdata/config/logger/file_log.yaml        |  44 +++++++
 config/testdata/config/logger/log.yaml             |  36 ++++++
 10 files changed, 248 insertions(+), 270 deletions(-)
 delete mode 100644 common/logger/file_log.yml
 delete mode 100644 common/logger/log.yml
 delete mode 100644 common/logger/logger_test.go
 create mode 100644 config/logger_config_test.go
 copy config/testdata/config/{registry/application.yaml => logger/empty_log.yaml} (80%)
 create mode 100644 config/testdata/config/logger/file_log.yaml
 create mode 100644 config/testdata/config/logger/log.yaml