uncomment debug prints
This commit is contained in:
parent
52cef76773
commit
6a3579120d
1 changed files with 7 additions and 6 deletions
|
|
@ -102,12 +102,6 @@ class MessageOverlayController extends State<MessageSelectionOverlay>
|
|||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
// debugPrint(
|
||||
// "selected token: ${widget._initialSelectedToken?.text.content} total_xp:${widget._initialSelectedToken?.xp} vocab_construct_xp: ${widget._initialSelectedToken?.vocabConstruct.points} daysSincelastUseInWordMeaning ${widget._initialSelectedToken?.daysSinceLastUseByType(ActivityTypeEnum.wordMeaning)}",
|
||||
// );
|
||||
// debugPrint(
|
||||
// "${widget._initialSelectedToken?.vocabConstruct.uses.map((u) => "${u.useType} ${u.timeStamp}").join(", ")}",
|
||||
// );
|
||||
|
||||
_getTokens();
|
||||
_setupSubscriptions();
|
||||
|
|
@ -117,6 +111,13 @@ class MessageOverlayController extends State<MessageSelectionOverlay>
|
|||
_selectedTargetTokenForWordMeaning!,
|
||||
);
|
||||
}
|
||||
|
||||
debugPrint(
|
||||
"selected token: ${widget._initialSelectedToken?.text.content} total_xp:${widget._initialSelectedToken?.xp} vocab_construct_xp: ${widget._initialSelectedToken?.vocabConstruct.points} daysSincelastUseInWordMeaning ${widget._initialSelectedToken?.daysSinceLastUseByType(ActivityTypeEnum.wordMeaning)}",
|
||||
);
|
||||
debugPrint(
|
||||
"${widget._initialSelectedToken?.vocabConstruct.uses.map((u) => "${u.useType} ${u.timeStamp}").join(", ")}",
|
||||
);
|
||||
}
|
||||
|
||||
void _setupSubscriptions() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue