In my laziness I just used the warn macro to send depreciation warnings. This is bad. For one it will blizzard the user with the same warning over and over if they are using old code. Base.depwarn() is the correct way of doing it and avoids this behaviour.
In my laziness I just used the warn macro to send depreciation warnings. This is bad. For one it will blizzard the user with the same warning over and over if they are using old code.
Base.depwarn()is the correct way of doing it and avoids this behaviour.