Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
37933a3b
Unverified
Commit
37933a3b
authored
5 years ago
by
Richard van der Hoff
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Improve logging when generating config files (#5510)
Make it a bit clearer what's going on.
parent
5d6644ef
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
changelog.d/5510.misc
+1
-0
1 addition, 0 deletions
changelog.d/5510.misc
synapse/config/_base.py
+2
-1
2 additions, 1 deletion
synapse/config/_base.py
synapse/config/key.py
+1
-0
1 addition, 0 deletions
synapse/config/key.py
synapse/config/logger.py
+4
-0
4 additions, 0 deletions
synapse/config/logger.py
with
8 additions
and
1 deletion
changelog.d/5510.misc
0 → 100644
+
1
−
0
View file @
37933a3b
Improve logging when generating config files.
This diff is collapsed.
Click to expand it.
synapse/config/_base.py
+
2
−
1
View file @
37933a3b
...
@@ -289,6 +289,7 @@ class Config(object):
...
@@ -289,6 +289,7 @@ class Config(object):
)
)
(
config_path
,)
=
config_files
(
config_path
,)
=
config_files
if
not
cls
.
path_exists
(
config_path
):
if
not
cls
.
path_exists
(
config_path
):
print
(
"
Generating config file %s
"
%
(
config_path
,))
if
config_args
.
keys_directory
:
if
config_args
.
keys_directory
:
config_dir_path
=
config_args
.
keys_directory
config_dir_path
=
config_args
.
keys_directory
else
:
else
:
...
@@ -331,7 +332,7 @@ class Config(object):
...
@@ -331,7 +332,7 @@ class Config(object):
else
:
else
:
print
(
print
(
(
(
"
Config file %r already exists. Generating any missing
key
"
"
Config file %r already exists. Generating any missing
config
"
"
files.
"
"
files.
"
)
)
%
(
config_path
,)
%
(
config_path
,)
...
...
This diff is collapsed.
Click to expand it.
synapse/config/key.py
+
1
−
0
View file @
37933a3b
...
@@ -241,6 +241,7 @@ class KeyConfig(Config):
...
@@ -241,6 +241,7 @@ class KeyConfig(Config):
signing_key_path
=
config
[
"
signing_key_path
"
]
signing_key_path
=
config
[
"
signing_key_path
"
]
if
not
self
.
path_exists
(
signing_key_path
):
if
not
self
.
path_exists
(
signing_key_path
):
print
(
"
Generating signing key file %s
"
%
(
signing_key_path
,))
with
open
(
signing_key_path
,
"
w
"
)
as
signing_key_file
:
with
open
(
signing_key_path
,
"
w
"
)
as
signing_key_file
:
key_id
=
"
a_
"
+
random_string
(
4
)
key_id
=
"
a_
"
+
random_string
(
4
)
write_signing_keys
(
signing_key_file
,
(
generate_signing_key
(
key_id
),))
write_signing_keys
(
signing_key_file
,
(
generate_signing_key
(
key_id
),))
...
...
This diff is collapsed.
Click to expand it.
synapse/config/logger.py
+
4
−
0
View file @
37933a3b
...
@@ -137,6 +137,10 @@ class LoggingConfig(Config):
...
@@ -137,6 +137,10 @@ class LoggingConfig(Config):
log_config
=
config
.
get
(
"
log_config
"
)
log_config
=
config
.
get
(
"
log_config
"
)
if
log_config
and
not
os
.
path
.
exists
(
log_config
):
if
log_config
and
not
os
.
path
.
exists
(
log_config
):
log_file
=
self
.
abspath
(
"
homeserver.log
"
)
log_file
=
self
.
abspath
(
"
homeserver.log
"
)
print
(
"
Generating log config file %s which will log to %s
"
%
(
log_config
,
log_file
)
)
with
open
(
log_config
,
"
w
"
)
as
log_config_file
:
with
open
(
log_config
,
"
w
"
)
as
log_config_file
:
log_config_file
.
write
(
DEFAULT_LOG_CONFIG
.
substitute
(
log_file
=
log_file
))
log_config_file
.
write
(
DEFAULT_LOG_CONFIG
.
substitute
(
log_file
=
log_file
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment