I would also add the name of the light, because if your light changes state, there will be a message with it’s state but you don’t know what device HA is talking about (assuming you have more than one device you want to know the state of it).
I suggest something like this:
payload: >
{% if states('light.bureau') == 'on' %}
Light in bureau is on and brightness is {{ (state_attr('light.bureau', 'brightness') / 255 * 100) | int }} percent.
{% else %}
Light in bureau is {{ states('light.bureau') }}
{% endif%}