Script Job Information Output

Is there a way to stop information output on job? For instance if I write:

function Get-Test {
return “Test”
}
Get-Test

I get “[information] Test” in the output. I know I can do > $null on every function but seems inefficient.