Skip to content

Commit fcf7e2e

Browse files
add start and stopped messages
1 parent 0990089 commit fcf7e2e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/pep.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1265,12 +1265,13 @@ int main(int argc, char *argv[])
12651265
init_pep_threads();
12661266
create_threads_pool(PEPPOOL_THREADS);
12671267

1268-
pep_warning("Pepsal started...");
1268+
PEP_DEBUG("Pepsal started...");
1269+
fprintf(stderr, "pepsal started...\n");
12691270
pthread_join(listener, &valptr);
12701271
pthread_join(poller, &valptr);
12711272
pthread_join(timer_sch, &valptr);
12721273
PEP_DEBUG("exiting...\n");
12731274
closelog();
1274-
pep_warning("Pepsal stopped...");
1275+
fprintf(stderr, "pepsal stopped...\n");
12751276
return 0;
12761277
}

0 commit comments

Comments
 (0)