Reduce amount of logged info
This commit is contained in:
@@ -18,4 +18,8 @@ data class RecipeEntity(
|
||||
@ColumnInfo(name = "rating") val rating: Int?,
|
||||
@ColumnInfo(name = "date_added") val dateAdded: LocalDate,
|
||||
@ColumnInfo(name = "date_updated") val dateUpdated: LocalDateTime
|
||||
)
|
||||
) {
|
||||
override fun toString(): String {
|
||||
return "RecipeEntity(localId=$localId, remoteId=$remoteId, name='$name')"
|
||||
}
|
||||
}
|
||||
@@ -17,4 +17,8 @@ data class GetRecipeSummaryResponse(
|
||||
@SerialName("rating") val rating: Int?,
|
||||
@SerialName("dateAdded") val dateAdded: LocalDate,
|
||||
@SerialName("dateUpdated") val dateUpdated: LocalDateTime
|
||||
)
|
||||
) {
|
||||
override fun toString(): String {
|
||||
return "GetRecipeSummaryResponse(remoteId=$remoteId, name='$name')"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user