Suppress member visibility on logger field.

This commit is contained in:
Erik C. Thauvin 2019-05-26 20:35:28 -07:00
parent a96c113825
commit f39020b276

View file

@ -119,6 +119,7 @@ open class PinboardPoster() {
var apiEndPoint: String = Constants.API_ENDPOINT
/** The logger instance. **/
@Suppress("MemberVisibilityCanBePrivate")
val logger: Logger by lazy { Logger.getLogger(PinboardPoster::class.java.simpleName) }
private val client by lazy { OkHttpClient() }