histogram2d如何画对数的colorbar?

using Plots
using Random
using Distributions
x = rand(Normal(), 10000)
y = rand(Normal(), 10000)
histogram2d(x, y, color=cgrad(scale=:log10))

image
画图后仍然是线性colorbar,如何画成对数的?