diff --git a/src/core.c b/src/core.c index 0fa2f00d1..aa3bd5289 100644 --- a/src/core.c +++ b/src/core.c @@ -1221,8 +1221,6 @@ Ray GetMouseRay(Vector2 mousePosition, Camera camera) // Store values in a vector Vector3 deviceCoords = { x, y, z }; - TraceLog(LOG_DEBUG, "Device coordinates: (%f, %f, %f)", deviceCoords.x, deviceCoords.y, deviceCoords.z); - // Calculate view matrix from camera look at Matrix matView = MatrixLookAt(camera.position, camera.target, camera.up); diff --git a/src/models.c b/src/models.c index 8a498139b..0955b7b06 100644 --- a/src/models.c +++ b/src/models.c @@ -2525,8 +2525,6 @@ static Material LoadMTL(const char *fileName) { // TODO: Support multiple materials in a single .mtl sscanf(buffer, "newmtl %127s", mapFileName); - - TraceLog(LOG_INFO, "[%s] Loading material...", mapFileName); } case 'i': // illum int Illumination model {