Integrate is a symbolic solver,then use a exact numbers not numeric one.
For me calculating time is almost the same.
Mathematica 10.2
F[n_] := Integrate[Exp[I n x] Sin[x] x^-1 Log[x], {x, 0, 2 Pi}];
F[1] // N // AbsoluteTiming
(* {16.2086,-1.07069+0.649257 \[ImaginaryI]}*)
Mathematica 12.0
F[n_] := Integrate[Exp[I n x] Sin[x] x^-1 Log[x], {x, 0, 2 Pi}];
F[1] // N // AbsoluteTiming
(* {17.1023,-1.07069+0.649257 \[ImaginaryI]}*)
Regards M.I.