Here are plots:
ComplexPlot[Log[Abs[h[v]]], {v, 0 + 0*I, 10 - 10*I}] ComplexPlot3D[Log[Abs[h[v]]], {v, 0 + 0*I, 10 - 10*I},PlotPoints -> 50] It is difficult with the extrema since ComplexExpand[h[s + I*t]] takes 140.4 MB.The following works.
NMaximize[{ComplexExpand[Log[Abs[h[s + I*t]]]], s >= 0 && s <= 10 && t >= -10 && t <= 0}, {s, t}]
{56.0063, {s -> 1.21431*10^-9, t -> -10.}}
NMinimize[{ComplexExpand[Log[Abs[h[s+I*t]]]],s>=0&&s<=10&&t>=-10&&t<=0},{s,t}],Method->"DifferentialEvolution"]
{14-13.89773409 + 0. I, {s -> 80.31982, t -> -1.8800348265*10^-9}}

