diff --git a/Modules/GameEngineKit/Sources/Specific/Xylophone/XylophoneView.swift b/Modules/GameEngineKit/Sources/Specific/Xylophone/XylophoneView.swift
index 5632011d49..a7c77bea4e 100644
--- a/Modules/GameEngineKit/Sources/Specific/Xylophone/XylophoneView.swift
+++ b/Modules/GameEngineKit/Sources/Specific/Xylophone/XylophoneView.swift
@@ -34,6 +34,8 @@ public struct XylophoneView: View {
             ForEach(kListOfXylophoneTiles) { tile in
                 Button {
                     xyloPlayer.noteOn(number: tile.noteNumber)
+                    // TODO(@ladislas): Light on Leka lights with tile.color
+                    print("Leka is \(tile.color)")
                 } label: {
                     tile.color
                 }