Skip to content

Commit

Permalink
Make logs quieter
Browse files Browse the repository at this point in the history
  • Loading branch information
U-lis committed Jul 9, 2024
1 parent 7e2d7b8 commit c587e87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ExploreAdventureBoss challenge
var outputExplorer = outputStates.GetExplorer(challenge.Season, challenge.AvatarAddress);
var exploreBoard = outputStates.GetExploreBoard(challenge.Season);

Log.Debug(
Log.Verbose(
$"[Adventure Boss] GetChallengeData: {challenge.Season}::{prevExplorer.Floor}~{outputExplorer.Floor}::{outputExplorer.UsedApPotion - prevExplorer.UsedApPotion}::{exploreBoard.TotalPoint}"
);
return new AdventureBossChallengeModel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ SweepAdventureBoss rush
var outputExplorer = outputStates.GetExplorer(rush.Season, rush.AvatarAddress);
var outputExploreBoard = outputStates.GetExploreBoard(rush.Season);

Log.Debug(
$"[Adventure Boss] GetChallengeData: {rush.Season}::{outputExplorer.Floor}::{outputExplorer.UsedApPotion - prevExplorer.UsedApPotion}::{outputExploreBoard.TotalPoint}"
Log.Verbose(
$"[Adventure Boss] GetRushData: {rush.Season}::{outputExplorer.Floor}::{outputExplorer.UsedApPotion - prevExplorer.UsedApPotion}::{outputExploreBoard.TotalPoint}"
);
return new AdventureBossRushModel
{
Expand Down

0 comments on commit c587e87

Please sign in to comment.