Any idea why these logs are not combined?
In[26]:= FullSimplify[
 Log[T0^2/(Ti1 Ti2)] - 
  Log[((Ti1 + ((c dT)/2 - c (-T0 + Ti1))/
      c) (Ti2 + (-((c dT)/2) - c (-T0 + Ti2))/c))/(Ti1 Ti2)]]
Out[26]= Log[T0^2/(Ti1 Ti2)] - Log[-((dT^2 - 4 T0^2)/(4 Ti1 Ti2))]
EDIT: Mathematica needs to know that these variables are not 0. Adding this line fixes it.
$Assumptions = {T0 > 0, Ti1 > 0, Ti2 > 0, c > 0}