docs: Update documentation with logging changes
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
438ffece72
commit
606625a3aa
|
@ -18,7 +18,7 @@ to see if any action is necessary on their part. The date of the most
|
||||||
recent change is included.
|
recent change is included.
|
||||||
|
|
||||||
Users:\
|
Users:\
|
||||||
[user_changes.md](/docs/user_changes.md) - March 4th 2021
|
[user_changes.md](/docs/user_changes.md) - March 6th 2021
|
||||||
|
|
||||||
Developers:\
|
Developers:\
|
||||||
[api_changes.md](/docs/api_changes.md) - January 31st 2021
|
[api_changes.md](/docs/api_changes.md) - January 31st 2021
|
||||||
|
|
|
@ -37,9 +37,9 @@ klippy_uds_address: /tmp/klippy_uds
|
||||||
# is /tmp/klippy_uds
|
# is /tmp/klippy_uds
|
||||||
max_upload_size: 1024
|
max_upload_size: 1024
|
||||||
# The maximum size allowed for a file upload (in MiB). Default is 1024 MiB.
|
# The maximum size allowed for a file upload (in MiB). Default is 1024 MiB.
|
||||||
enable_debug_logging: True
|
enable_debug_logging: False
|
||||||
# When set to True Moonraker will log in verbose mode. During this stage
|
# When set to True Moonraker will log in verbose mode. During this stage
|
||||||
# of development the default is True. In the future this will change.
|
# of development the default is False.
|
||||||
config_path:
|
config_path:
|
||||||
# The path to a directory where configuration files are located. This
|
# The path to a directory where configuration files are located. This
|
||||||
# directory may contain Klipper config files (printer.cfg) or Moonraker
|
# directory may contain Klipper config files (printer.cfg) or Moonraker
|
||||||
|
|
|
@ -13,3 +13,8 @@ trusted_clients:
|
||||||
cors_domains:
|
cors_domains:
|
||||||
# Allow CORS requests for Fluidd
|
# Allow CORS requests for Fluidd
|
||||||
http://app.fluidd.xyz
|
http://app.fluidd.xyz
|
||||||
|
|
||||||
|
# Enable Octoprint compatibility for Slicer uploads
|
||||||
|
# Supports Cura, Slic3r, and Slic3r dervivatives
|
||||||
|
# (PrusaSlicer, SuperSlicer)
|
||||||
|
[octoprint_compat]
|
||||||
|
|
|
@ -1,8 +1,15 @@
|
||||||
This file will track changes that require user intervention,
|
This file will track changes that require user intervention,
|
||||||
such as a configuration change or a reinstallation.
|
such as a configuration change or a reinstallation.
|
||||||
|
### March 6th 2021
|
||||||
|
- The `enable_debug_logging` in the `[server]` section now defaults
|
||||||
|
to `False`. This dramatically reduces the amount of logging produced
|
||||||
|
by Moonraker for the typical user.
|
||||||
|
|
||||||
### March 4th 2021
|
### March 4th 2021
|
||||||
- To enable Octoprint compatibility with slicer uploads it is now
|
- To enable Octoprint compatibility with slicer uploads it is now
|
||||||
required to add `[octoprint_compat]` to `moonraker.conf`.
|
required to add `[octoprint_compat]` to `moonraker.conf`. After
|
||||||
|
making this change it is necessary to restart the Moonraker service
|
||||||
|
so the module is loaded.
|
||||||
|
|
||||||
### December 31st 2020
|
### December 31st 2020
|
||||||
- The file manager no longer restricts the `config_path` to a folder
|
- The file manager no longer restricts the `config_path` to a folder
|
||||||
|
|
Loading…
Reference in New Issue