### Description It would be great if the logfire.instrument decorator supported the _level argument in the same way that logfire.span does. ie the below should behave the same ` import logfire @logfire.instrument('Running foo', _level='debug') def foo_1(): logfire.debug('Inside foo 1') def foo_2(): with logfire.span('Running foo', _level='debug'): logfire.debug('Inside foo 2') if __name__ == "__main__": foo_1() foo_2() `