Logs ending with "2" and class property resetting automagically
Posted: 24 April 2020, 15:39
Hello,
I'm wondering why all my logs are suffixed with "2".
In constructor:
In method:
(NO OTHER CODE RELATED TO THIS PROPERTY)
I set debug in this method before and after setting the variable value to 1, it's ok at first call, at second call my variable went back to value 0...
Help, I'm going crazy
I'm wondering why all my logs are suffixed with "2".
I'm having some really really weird issues (my class variable are somehow reset... - not in my code, I debug everything for so long). I suspect there is something wrong running simultaneously.24/04 16:33:35 [debug] [T84988] [2318710/BuRner1] Top card: 8 ♣2
24/04 16:33:35 [debug] [T84988] [2318710/BuRner1] true2
24/04 16:33:35 [debug] [T84988] [2318710/BuRner1] Challenge try: 02
24/04 16:33:35 [debug] [T84988] [2318710/BuRner1] Challenge MAX try: 02
24/04 16:33:35 [debug] [T84988] [2318710/BuRner1] type_arg: 82
In constructor:
Code: Select all
$this->challengeMaxTry = 0;Code: Select all
$this->challengeMaxTry = 1;I set debug in this method before and after setting the variable value to 1, it's ok at first call, at second call my variable went back to value 0...
Help, I'm going crazy