Remove TAG from LVGL log API
The filename is appended at the beginning of the log output by default, we don't need to do it.
This commit is contained in:
parent
9c886307b2
commit
a0e915eebc
17 changed files with 58 additions and 82 deletions
|
@ -38,7 +38,6 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR TH
|
|||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
#define TAG "IL3820: "
|
||||
|
||||
/**
|
||||
* SSD1673, SSD1608 compatible EPD controller driver.
|
||||
|
@ -278,7 +277,7 @@ static void il3820_waitbusy(int wait_ms)
|
|||
vTaskDelay(10 / portTICK_RATE_MS);
|
||||
}
|
||||
|
||||
LV_LOG_ERROR( TAG, "busy exceeded %dms", i*10 );
|
||||
LV_LOG_ERROR("Busy exceeded %dms", i*10 );
|
||||
}
|
||||
|
||||
/* Set DC signal to command mode */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue