mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Removed NSLogs
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12715 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
96f42ce2d8
commit
c0f196d0ef
2 changed files with 6 additions and 4 deletions
|
@ -1,4 +1,9 @@
|
|||
2002-02-21 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
2002-02-24 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSTask.m: Removed NSLogs() accidantally left in after
|
||||
debugging. Reported by Fred Kiefer.
|
||||
|
||||
2002-02-23 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Headers/Foundation/NSObjCRuntime.h: Fix error in last change ...
|
||||
GSSelectorFromName() should not create a new selector while
|
||||
|
|
|
@ -739,15 +739,12 @@ pty_slave(const char* name)
|
|||
lpath = [full_path stringByAppendingPathComponent: prog];
|
||||
if ([mgr isExecutableFileAtPath: lpath] == NO)
|
||||
{
|
||||
NSLog(@"No executable in %@", lpath);
|
||||
lpath = [arch_path stringByAppendingPathComponent: prog];
|
||||
if ([mgr isExecutableFileAtPath: lpath] == NO)
|
||||
{
|
||||
NSLog(@"No executable in %@", lpath);
|
||||
lpath = [base_path stringByAppendingPathComponent: prog];
|
||||
if ([mgr isExecutableFileAtPath: lpath] == NO)
|
||||
{
|
||||
NSLog(@"No executable in %@", lpath);
|
||||
/*
|
||||
* Last resort - if the launch path was simply a program name
|
||||
* get NSBundle to try using the PATH environment
|
||||
|
|
Loading…
Reference in a new issue