-
Notifications
You must be signed in to change notification settings - Fork 0
Logging
polyrain edited this page Aug 1, 2021
·
1 revision
Logging is done through SLF4J, and is used for debugging.
There are several debugging levels which filter the type of logs you see.
Set logging preferences in logging.properties
.
Add logging to a class:
public class ExampleClass {
private static final Logger logger = LoggerFactory.getLogger(ExampleClass.class);
public ExampleClass () {
// example of logging something
logger.info("This is how you log something");
}
}
See slf4j's Logger for logging options.
- Player UI
- Popup Menus
- Obstacles
- Boss Enemies
- Progress Tracker
- Checkpoint Design and Functionality
- Score System
- Lives System
- Game Background
- Multiple game-level
- Visual Improvements
- Tutorial Level
- Character Design and Animations
- Character Damage Animations
- Player Animation Functionalities
- Player and Serpent Portal Transition
- Pop-up Menus
- Obstacles
- Lives & Score User Testing
- Buffs & Debuffs
- Buffs & Debuffs redesign
- Obstacle Animation
- Background Design
- Level 2 Background Appearance
- Enemy Monster User Testing
- Level 1 Floor Terrain Testing
- Introduction Screens User Testing
- Character Movement Interviews & User Testing
- Sound user testing
- Level 2 Obstacles and enemy
- Story, Loading, Level 4 and Win Condition Sound Design User Testing
- Giant Bug and Purple Squid animation user testing
- General Gameplay and Tutorial Level User Testing
- Level 4 Terrain User Testing
- Game Outro User Testing