Omit Learning Mapper notes from output

Posted by Synchro on Wed 29 Dec 2021 02:29 AM — 3 posts, 14,373 views.

#0
I'd like to omit the notes created by the Learning Mapper plugin from my output, so i don't see them. For example:

get: from_room: nil (process_new_room)
SET: current_room: 44D8
get: last_direction_moved: nil
get: current_room: 44D8 (process_new_room)
Finished processing new room
SET: last_direction_moved: nil

I still want the mapper to function but I don't want to see those messages in my output. Is there an easy way to hide them?
Australia Forum Administrator #1

I think I inadvertently left debugging on. Change this line:

https://github.com/nickgammon/plugins/blob/b3560c91112929195eb7303c76d6772b33ee2aaa/Learning_Mapper.lua#L94

From:

DEBUGGING = true

to:

DEBUGGING = false

That is around line 94 in Learning_Mapper.lua.

#2
Wonderful, thanks again!