From fbd8a39b0a18f938ea3624e0c095de6e407e2db5 Mon Sep 17 00:00:00 2001 From: MagicBot Date: Mon, 2 May 2022 20:00:36 +0000 Subject: [PATCH] Update 'Debugging with MagicBox' --- Debugging-with-MagicBox.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Debugging-with-MagicBox.md b/Debugging-with-MagicBox.md index 49207ed..b14d5c9 100644 --- a/Debugging-with-MagicBox.md +++ b/Debugging-with-MagicBox.md @@ -42,4 +42,16 @@ Use this new configuration to connect your IDE to MagicBox. The game will begin Breakpoint was hit! -![breakpoint](https://cdn.discordapp.com/attachments/534260038039109632/970665403376357416/unknown.png) \ No newline at end of file +![breakpoint](https://cdn.discordapp.com/attachments/534260038039109632/970665403376357416/unknown.png) + +### Profiling your code + +Another important aspect of development is to profile your code. Not just to see how slow your new routine runs; the profiler will catch every error masked due to empty try-catch blocks. It will tell you when you are generating 2000 objects a second. Your new branch might appear to be running fine but have *hidden issues*. + +![profiler](https://media.discordapp.net/attachments/398576832485654529/513765550506377257/unknown.png?width=877&height=335) + +There are many choices available free and otherwise for Java profilers. We have tried most. The Profiler of choice for the Magicbane team is [YourKit](https://www.yourkit.com/). The game has built-in support for profiling as it does debugging. + +`./mbstart.sh -profile` + +The YourKit agent is not being shipped with the image. Choice of profiler is the perrogative of your team.