The `get()` results in it being created at call-ti...
# android
a
The
get()
results in it being created at call-time (and each time something accesses
httpLogging
). Without the
get()
it's kind of like a constant field that is initialized once when the class is constructed with each access to
httpLogging
returning that value.
c
Thanks!