Remove debug logging

* src/nsterm.m ([EmacsView copyRect:to:]): Remove logging as it's no
longer required.
This commit is contained in:
Alan Third 2021-10-28 11:21:00 +01:00
parent ddba3c3dba
commit 611736f3bc

View file

@ -7892,25 +7892,6 @@ - (void)copyRect:(NSRect)srcRect to:(NSPoint)dest
NSRect dstRect = NSMakeRect (dest.x, dest.y, NSWidth (srcRect),
NSHeight (srcRect));
NSRect frame = [self frame];
/* TODO: This check is an attempt to debug a rare graphical glitch
on macOS and should be removed before the Emacs 28 release. */
if (!NSContainsRect (frame, srcRect)
|| !NSContainsRect (frame, dstRect))
{
NSLog (@"[EmacsView copyRect:to:] Attempting to copy to or "
"from an area outside the graphics buffer.");
NSLog (@" Frame: (%f, %f) %f×%f",
NSMinX (frame), NSMinY (frame),
NSWidth (frame), NSHeight (frame));
NSLog (@" Source: (%f, %f) %f×%f",
NSMinX (srcRect), NSMinY (srcRect),
NSWidth (srcRect), NSHeight (srcRect));
NSLog (@" Destination: (%f, %f) %f×%f",
NSMinX (dstRect), NSMinY (dstRect),
NSWidth (dstRect), NSHeight (dstRect));
}
#ifdef NS_IMPL_COCOA
if ([self wantsLayer])