config logging - magemonkeystudio/fabled GitHub Wiki

📜 Config: Logging

The Logging section of config.yml allows you to control the level of debug output Fabled generates. This is useful during development or when troubleshooting problems with skills, classes, or other plugin features.

File location:

/plugins/Fabled/config.yml

🛠️ Logging Options

All values represent logging levels:

  • 0 = Disabled
  • 1-5 = Increasing verbosity
Logging:
  'attribute-load': '0'
  buff: '0'
  registration: '0'
  gui: '0'
  mana: '0'
Setting Description
attribute-load Logs attribute file loading and parsing
buff Logs when buffs or debuffs are applied from skills or mechanics
registration Logs skill and class registration during plugin startup
gui Logs GUI updates, such as menu changes or icon placement
mana Logs mana changes and regeneration events

✅ Recommended Usage

  • Use 1-3 while debugging skills or class setup.
  • Set all to 0 in production to reduce console spam.

🔗 Related Pages