This is not exactly a bug. What happens is that you print the priority of the track even before the clip has been successfully loaded into the animator (the animator has to wait for the asset server to deliver the data of the animation).
If you add a task.wait(1) before printing the priority, you should see the expected value. Unfortunately there is no callback or event to notify you when the animation has been loaded.