Skip to content

Commit

Permalink
refactor: Change logging level to debug for game and JVM args
Browse files Browse the repository at this point in the history
Signed-off-by: Suyashtnt <suyashtnt@gmail.com>
  • Loading branch information
Suya1671 committed Jun 5, 2024
1 parent 06bd7ed commit c1cc9c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/copper/src/launcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ impl Launcher {
let mut game_args = MinecraftArgs::new(self, &self.manifest).parse_minecraft_args();
let mut jvm_args = JvmArgs::new(self, &self.manifest).parse_jvm_args();

info!("Game args: {:?}", game_args);
info!("JVM args: {:?}", jvm_args);
debug!("Game args: {:?}", game_args);
debug!("JVM args: {:?}", jvm_args);

let main_class = self.manifest.main_class();

Expand Down

0 comments on commit c1cc9c6

Please sign in to comment.